OP-1810 FOC
Squashed commit for clean commit as discussed in code review Uncrustify
3
Makefile
@ -209,10 +209,9 @@ export OPGCSSYNTHDIR := $(BUILD_DIR)/openpilotgcs-synthetics
|
||||
DIRS += $(OPGCSSYNTHDIR)
|
||||
|
||||
# Define supported board lists
|
||||
ALL_BOARDS := coptercontrol oplinkmini revolution osd revoproto simposix discoveryf4bare gpsplatinum
|
||||
ALL_BOARDS := oplinkmini revolution osd revoproto simposix discoveryf4bare gpsplatinum
|
||||
|
||||
# Short names of each board (used to display board name in parallel builds)
|
||||
coptercontrol_short := 'cc '
|
||||
oplinkmini_short := 'oplm'
|
||||
revolution_short := 'revo'
|
||||
osd_short := 'osd '
|
||||
|
@ -353,7 +353,6 @@ enum usb_cdc_notification {
|
||||
|
||||
enum usb_product_ids {
|
||||
USB_PRODUCT_ID_OPENPILOT_MAIN = 0x415A,
|
||||
USB_PRODUCT_ID_COPTERCONTROL = 0x415B,
|
||||
USB_PRODUCT_ID_OPLINK = 0x415C,
|
||||
USB_PRODUCT_ID_CC3D = 0x415D,
|
||||
USB_PRODUCT_ID_REVOLUTION = 0x415E,
|
||||
@ -364,9 +363,9 @@ enum usb_product_ids {
|
||||
enum usb_op_board_ids {
|
||||
USB_OP_BOARD_ID_OPENPILOT_MAIN = 1,
|
||||
/* Board ID 2 may be unused or AHRS */
|
||||
USB_OP_BOARD_ID_OPLINK = 3,
|
||||
USB_OP_BOARD_ID_COPTERCONTROL = 4,
|
||||
USB_OP_BOARD_ID_REVOLUTION = 5,
|
||||
USB_OP_BOARD_ID_OPLINK = 3,
|
||||
/* USB_OP_BOARD_ID_COPTERCONTROL = 4, */
|
||||
USB_OP_BOARD_ID_REVOLUTION = 5,
|
||||
USB_OP_BOARD_ID_OSD = 6,
|
||||
} __attribute__((packed));
|
||||
|
||||
|
@ -1,23 +0,0 @@
|
||||
BOARD_TYPE := 0x04
|
||||
BOARD_REVISION := 0x02
|
||||
BOOTLOADER_VERSION := 0x04
|
||||
HW_TYPE := 0x01
|
||||
|
||||
MCU := cortex-m3
|
||||
CHIP := STM32F103CBT
|
||||
BOARD := STM32103CB_CC_Rev1
|
||||
MODEL := MD
|
||||
MODEL_SUFFIX := _CC
|
||||
|
||||
OPENOCD_JTAG_CONFIG := foss-jtag.revb.cfg
|
||||
OPENOCD_CONFIG := stm32f1x.cfg
|
||||
|
||||
# Note: These must match the values in link_$(BOARD)_memory.ld
|
||||
BL_BANK_BASE := 0x08000000 # Start of bootloader flash
|
||||
BL_BANK_SIZE := 0x00003000 # Should include BD_INFO region
|
||||
FW_BANK_BASE := 0x08003000 # Start of firmware flash
|
||||
FW_BANK_SIZE := 0x0001D000 # Should include FW_DESC_SIZE
|
||||
|
||||
FW_DESC_SIZE := 0x00000064
|
||||
|
||||
OSCILLATOR_FREQ := 8000000
|
@ -1,1525 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @file board_hw_defs.c
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012.
|
||||
* @author PhoenixPilot, http://github.com/PhoenixPilot, Copyright (C) 2012
|
||||
* @addtogroup OpenPilotSystem OpenPilot System
|
||||
* @{
|
||||
* @addtogroup OpenPilotCore OpenPilot Core
|
||||
* @{
|
||||
* @brief Defines board specific static initializers for hardware for the CopterControl board.
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#define BOARD_REVISION_CC 1
|
||||
#define BOARD_REVISION_CC3D 2
|
||||
|
||||
#if defined(PIOS_INCLUDE_LED)
|
||||
|
||||
#include <pios_led_priv.h>
|
||||
static const struct pios_gpio pios_leds_cc[] = {
|
||||
[PIOS_LED_HEARTBEAT] = {
|
||||
.pin = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_6,
|
||||
.GPIO_Mode = GPIO_Mode_Out_PP,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
},
|
||||
},
|
||||
.active_low = true
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_gpio_cfg pios_led_cfg_cc = {
|
||||
.gpios = pios_leds_cc,
|
||||
.num_gpios = NELEMENTS(pios_leds_cc),
|
||||
};
|
||||
|
||||
static const struct pios_gpio pios_leds_cc3d[] = {
|
||||
[PIOS_LED_HEARTBEAT] = {
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_3,
|
||||
.GPIO_Mode = GPIO_Mode_Out_PP,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
},
|
||||
},
|
||||
.remap = GPIO_Remap_SWJ_JTAGDisable,
|
||||
.active_low = true
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_gpio_cfg pios_led_cfg_cc3d = {
|
||||
.gpios = pios_leds_cc3d,
|
||||
.num_gpios = NELEMENTS(pios_leds_cc3d),
|
||||
};
|
||||
|
||||
const struct pios_gpio_cfg *PIOS_BOARD_HW_DEFS_GetLedCfg(uint32_t board_revision)
|
||||
{
|
||||
switch (board_revision) {
|
||||
case BOARD_REVISION_CC: return &pios_led_cfg_cc;
|
||||
|
||||
case BOARD_REVISION_CC3D: return &pios_led_cfg_cc3d;
|
||||
|
||||
default: return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
#endif /* PIOS_INCLUDE_LED */
|
||||
|
||||
#if defined(PIOS_INCLUDE_SPI)
|
||||
|
||||
#include <pios_spi_priv.h>
|
||||
|
||||
/* Gyro interface */
|
||||
void PIOS_SPI_gyro_irq_handler(void);
|
||||
void DMA1_Channel2_IRQHandler() __attribute__((alias("PIOS_SPI_gyro_irq_handler")));
|
||||
void DMA1_Channel3_IRQHandler() __attribute__((alias("PIOS_SPI_gyro_irq_handler")));
|
||||
static const struct pios_spi_cfg pios_spi_gyro_cfg = {
|
||||
.regs = SPI1,
|
||||
.init = {
|
||||
.SPI_Mode = SPI_Mode_Master,
|
||||
.SPI_Direction = SPI_Direction_2Lines_FullDuplex,
|
||||
.SPI_DataSize = SPI_DataSize_8b,
|
||||
.SPI_NSS = SPI_NSS_Soft,
|
||||
.SPI_FirstBit = SPI_FirstBit_MSB,
|
||||
.SPI_CRCPolynomial = 7,
|
||||
.SPI_CPOL = SPI_CPOL_High,
|
||||
.SPI_CPHA = SPI_CPHA_2Edge,
|
||||
.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_16, /* 10 Mhz */
|
||||
},
|
||||
.use_crc = false,
|
||||
.dma = {
|
||||
.ahb_clk = RCC_AHBPeriph_DMA1,
|
||||
|
||||
.irq = {
|
||||
.flags = (DMA1_FLAG_TC2 | DMA1_FLAG_TE2 | DMA1_FLAG_HT2 | DMA1_FLAG_GL2),
|
||||
.init = {
|
||||
.NVIC_IRQChannel = DMA1_Channel2_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_MID,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
|
||||
.rx = {
|
||||
.channel = DMA1_Channel2,
|
||||
.init = {
|
||||
.DMA_PeripheralBaseAddr = (uint32_t)&(SPI1->DR),
|
||||
.DMA_DIR = DMA_DIR_PeripheralSRC,
|
||||
.DMA_PeripheralInc = DMA_PeripheralInc_Disable,
|
||||
.DMA_MemoryInc = DMA_MemoryInc_Enable,
|
||||
.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte,
|
||||
.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte,
|
||||
.DMA_Mode = DMA_Mode_Normal,
|
||||
.DMA_Priority = DMA_Priority_Medium,
|
||||
.DMA_M2M = DMA_M2M_Disable,
|
||||
},
|
||||
},
|
||||
.tx = {
|
||||
.channel = DMA1_Channel3,
|
||||
.init = {
|
||||
.DMA_PeripheralBaseAddr = (uint32_t)&(SPI1->DR),
|
||||
.DMA_DIR = DMA_DIR_PeripheralDST,
|
||||
.DMA_PeripheralInc = DMA_PeripheralInc_Disable,
|
||||
.DMA_MemoryInc = DMA_MemoryInc_Enable,
|
||||
.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte,
|
||||
.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte,
|
||||
.DMA_Mode = DMA_Mode_Normal,
|
||||
.DMA_Priority = DMA_Priority_Medium,
|
||||
.DMA_M2M = DMA_M2M_Disable,
|
||||
},
|
||||
},
|
||||
},
|
||||
.sclk = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_5,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
},
|
||||
},
|
||||
.miso = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_6,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IPU,
|
||||
},
|
||||
},
|
||||
.mosi = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_7,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
},
|
||||
},
|
||||
.slave_count = 1,
|
||||
.ssel = {
|
||||
{
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_4,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_Out_PP,
|
||||
},
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
static uint32_t pios_spi_gyro_id;
|
||||
void PIOS_SPI_gyro_irq_handler(void)
|
||||
{
|
||||
/* Call into the generic code to handle the IRQ for this specific device */
|
||||
PIOS_SPI_IRQ_Handler(pios_spi_gyro_id);
|
||||
}
|
||||
|
||||
|
||||
/* Flash/Accel Interface
|
||||
*
|
||||
* NOTE: Leave this declared as const data so that it ends up in the
|
||||
* .rodata section (ie. Flash) rather than in the .bss section (RAM).
|
||||
*/
|
||||
void PIOS_SPI_flash_accel_irq_handler(void);
|
||||
void DMA1_Channel4_IRQHandler() __attribute__((alias("PIOS_SPI_flash_accel_irq_handler")));
|
||||
void DMA1_Channel5_IRQHandler() __attribute__((alias("PIOS_SPI_flash_accel_irq_handler")));
|
||||
static const struct pios_spi_cfg pios_spi_flash_accel_cfg_cc3d = {
|
||||
.regs = SPI2,
|
||||
.init = {
|
||||
.SPI_Mode = SPI_Mode_Master,
|
||||
.SPI_Direction = SPI_Direction_2Lines_FullDuplex,
|
||||
.SPI_DataSize = SPI_DataSize_8b,
|
||||
.SPI_NSS = SPI_NSS_Soft,
|
||||
.SPI_FirstBit = SPI_FirstBit_MSB,
|
||||
.SPI_CRCPolynomial = 7,
|
||||
.SPI_CPOL = SPI_CPOL_High,
|
||||
.SPI_CPHA = SPI_CPHA_2Edge,
|
||||
.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_8,
|
||||
},
|
||||
.use_crc = false,
|
||||
.dma = {
|
||||
.ahb_clk = RCC_AHBPeriph_DMA1,
|
||||
|
||||
.irq = {
|
||||
.flags = (DMA1_FLAG_TC4 | DMA1_FLAG_TE4 | DMA1_FLAG_HT4 | DMA1_FLAG_GL4),
|
||||
.init = {
|
||||
.NVIC_IRQChannel = DMA1_Channel4_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
|
||||
.rx = {
|
||||
.channel = DMA1_Channel4,
|
||||
.init = {
|
||||
.DMA_PeripheralBaseAddr = (uint32_t)&(SPI2->DR),
|
||||
.DMA_DIR = DMA_DIR_PeripheralSRC,
|
||||
.DMA_PeripheralInc = DMA_PeripheralInc_Disable,
|
||||
.DMA_MemoryInc = DMA_MemoryInc_Enable,
|
||||
.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte,
|
||||
.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte,
|
||||
.DMA_Mode = DMA_Mode_Normal,
|
||||
.DMA_Priority = DMA_Priority_High,
|
||||
.DMA_M2M = DMA_M2M_Disable,
|
||||
},
|
||||
},
|
||||
.tx = {
|
||||
.channel = DMA1_Channel5,
|
||||
.init = {
|
||||
.DMA_PeripheralBaseAddr = (uint32_t)&(SPI2->DR),
|
||||
.DMA_DIR = DMA_DIR_PeripheralDST,
|
||||
.DMA_PeripheralInc = DMA_PeripheralInc_Disable,
|
||||
.DMA_MemoryInc = DMA_MemoryInc_Enable,
|
||||
.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte,
|
||||
.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte,
|
||||
.DMA_Mode = DMA_Mode_Normal,
|
||||
.DMA_Priority = DMA_Priority_High,
|
||||
.DMA_M2M = DMA_M2M_Disable,
|
||||
},
|
||||
},
|
||||
},
|
||||
.sclk = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_13,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
},
|
||||
},
|
||||
.miso = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_14,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IN_FLOATING,
|
||||
},
|
||||
},
|
||||
.mosi = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_15,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
},
|
||||
},
|
||||
.slave_count = 2,
|
||||
.ssel = {
|
||||
{
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_12,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_Out_PP,
|
||||
}
|
||||
},{
|
||||
.gpio = GPIOC,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_15,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_Out_PP,
|
||||
},
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_spi_cfg pios_spi_flash_accel_cfg_cc = {
|
||||
.regs = SPI2,
|
||||
.init = {
|
||||
.SPI_Mode = SPI_Mode_Master,
|
||||
.SPI_Direction = SPI_Direction_2Lines_FullDuplex,
|
||||
.SPI_DataSize = SPI_DataSize_8b,
|
||||
.SPI_NSS = SPI_NSS_Soft,
|
||||
.SPI_FirstBit = SPI_FirstBit_MSB,
|
||||
.SPI_CRCPolynomial = 7,
|
||||
.SPI_CPOL = SPI_CPOL_High,
|
||||
.SPI_CPHA = SPI_CPHA_2Edge,
|
||||
.SPI_BaudRatePrescaler = SPI_BaudRatePrescaler_8,
|
||||
},
|
||||
.use_crc = false,
|
||||
.dma = {
|
||||
.ahb_clk = RCC_AHBPeriph_DMA1,
|
||||
|
||||
.irq = {
|
||||
.flags = (DMA1_FLAG_TC4 | DMA1_FLAG_TE4 | DMA1_FLAG_HT4 | DMA1_FLAG_GL4),
|
||||
.init = {
|
||||
.NVIC_IRQChannel = DMA1_Channel4_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
|
||||
.rx = {
|
||||
.channel = DMA1_Channel4,
|
||||
.init = {
|
||||
.DMA_PeripheralBaseAddr = (uint32_t)&(SPI2->DR),
|
||||
.DMA_DIR = DMA_DIR_PeripheralSRC,
|
||||
.DMA_PeripheralInc = DMA_PeripheralInc_Disable,
|
||||
.DMA_MemoryInc = DMA_MemoryInc_Enable,
|
||||
.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte,
|
||||
.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte,
|
||||
.DMA_Mode = DMA_Mode_Normal,
|
||||
.DMA_Priority = DMA_Priority_High,
|
||||
.DMA_M2M = DMA_M2M_Disable,
|
||||
},
|
||||
},
|
||||
.tx = {
|
||||
.channel = DMA1_Channel5,
|
||||
.init = {
|
||||
.DMA_PeripheralBaseAddr = (uint32_t)&(SPI2->DR),
|
||||
.DMA_DIR = DMA_DIR_PeripheralDST,
|
||||
.DMA_PeripheralInc = DMA_PeripheralInc_Disable,
|
||||
.DMA_MemoryInc = DMA_MemoryInc_Enable,
|
||||
.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte,
|
||||
.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte,
|
||||
.DMA_Mode = DMA_Mode_Normal,
|
||||
.DMA_Priority = DMA_Priority_High,
|
||||
.DMA_M2M = DMA_M2M_Disable,
|
||||
},
|
||||
},
|
||||
},
|
||||
.sclk = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_13,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
},
|
||||
},
|
||||
.miso = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_14,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IN_FLOATING,
|
||||
},
|
||||
},
|
||||
.mosi = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_15,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
},
|
||||
},
|
||||
.slave_count = 2,
|
||||
.ssel = {
|
||||
{
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_12,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_Out_PP,
|
||||
}
|
||||
},{
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_7,
|
||||
.GPIO_Speed = GPIO_Speed_50MHz,
|
||||
.GPIO_Mode = GPIO_Mode_Out_PP,
|
||||
},
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
static uint32_t pios_spi_flash_accel_id;
|
||||
void PIOS_SPI_flash_accel_irq_handler(void)
|
||||
{
|
||||
/* Call into the generic code to handle the IRQ for this specific device */
|
||||
PIOS_SPI_IRQ_Handler(pios_spi_flash_accel_id);
|
||||
}
|
||||
|
||||
#endif /* PIOS_INCLUDE_SPI */
|
||||
|
||||
#if defined(PIOS_INCLUDE_FLASH)
|
||||
#include "pios_flashfs_logfs_priv.h"
|
||||
#include "pios_flash_jedec_priv.h"
|
||||
|
||||
static const struct flashfs_logfs_cfg flashfs_w25x_cfg = {
|
||||
.fs_magic = 0x99abcdef,
|
||||
.total_fs_size = 0x00080000, /* 512K bytes (128 sectors = entire chip) */
|
||||
.arena_size = 0x00010000, /* 256 * slot size */
|
||||
.slot_size = 0x00000100, /* 256 bytes */
|
||||
|
||||
.start_offset = 0, /* start at the beginning of the chip */
|
||||
.sector_size = 0x00001000, /* 4K bytes */
|
||||
.page_size = 0x00000100, /* 256 bytes */
|
||||
};
|
||||
|
||||
|
||||
static const struct flashfs_logfs_cfg flashfs_m25p_cfg = {
|
||||
.fs_magic = 0x99abceef,
|
||||
.total_fs_size = 0x00200000, /* 2M bytes (32 sectors = entire chip) */
|
||||
.arena_size = 0x00010000, /* 256 * slot size */
|
||||
.slot_size = 0x00000100, /* 256 bytes */
|
||||
|
||||
.start_offset = 0, /* start at the beginning of the chip */
|
||||
.sector_size = 0x00010000, /* 64K bytes */
|
||||
.page_size = 0x00000100, /* 256 bytes */
|
||||
};
|
||||
|
||||
#include "pios_flash.h"
|
||||
|
||||
#endif /* PIOS_INCLUDE_FLASH */
|
||||
|
||||
/*
|
||||
* ADC system
|
||||
*/
|
||||
#if defined(PIOS_INCLUDE_ADC)
|
||||
#include "pios_adc_priv.h"
|
||||
extern void PIOS_ADC_handler(void);
|
||||
void DMA1_Channel1_IRQHandler() __attribute__((alias("PIOS_ADC_handler")));
|
||||
// Remap the ADC DMA handler to this one
|
||||
static const struct pios_adc_cfg pios_adc_cfg = {
|
||||
.dma = {
|
||||
.ahb_clk = RCC_AHBPeriph_DMA1,
|
||||
.irq = {
|
||||
.flags = (DMA1_FLAG_TC1 | DMA1_FLAG_TE1 | DMA1_FLAG_HT1 | DMA1_FLAG_GL1),
|
||||
.init = {
|
||||
.NVIC_IRQChannel = DMA1_Channel1_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_MID,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
.rx = {
|
||||
.channel = DMA1_Channel1,
|
||||
.init = {
|
||||
.DMA_PeripheralBaseAddr = (uint32_t)&ADC1->DR,
|
||||
.DMA_DIR = DMA_DIR_PeripheralSRC,
|
||||
.DMA_PeripheralInc = DMA_PeripheralInc_Disable,
|
||||
.DMA_MemoryInc = DMA_MemoryInc_Enable,
|
||||
.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Word,
|
||||
.DMA_MemoryDataSize = DMA_MemoryDataSize_Word,
|
||||
.DMA_Mode = DMA_Mode_Circular,
|
||||
.DMA_Priority = DMA_Priority_High,
|
||||
.DMA_M2M = DMA_M2M_Disable,
|
||||
},
|
||||
}
|
||||
},
|
||||
.half_flag = DMA1_IT_HT1,
|
||||
.full_flag = DMA1_IT_TC1,
|
||||
};
|
||||
|
||||
void PIOS_ADC_handler()
|
||||
{
|
||||
PIOS_ADC_DMA_Handler();
|
||||
}
|
||||
#endif /* if defined(PIOS_INCLUDE_ADC) */
|
||||
|
||||
#include "pios_tim_priv.h"
|
||||
|
||||
static const TIM_TimeBaseInitTypeDef tim_1_2_3_4_time_base = {
|
||||
.TIM_Prescaler = (PIOS_MASTER_CLOCK / 1000000) - 1,
|
||||
.TIM_ClockDivision = TIM_CKD_DIV1,
|
||||
.TIM_CounterMode = TIM_CounterMode_Up,
|
||||
.TIM_Period = ((1000000 / PIOS_SERVO_UPDATE_HZ) - 1),
|
||||
.TIM_RepetitionCounter = 0x0000,
|
||||
};
|
||||
|
||||
static const struct pios_tim_clock_cfg tim_1_cfg = {
|
||||
.timer = TIM1,
|
||||
.time_base_init = &tim_1_2_3_4_time_base,
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = TIM1_CC_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_MID,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_tim_clock_cfg tim_2_cfg = {
|
||||
.timer = TIM2,
|
||||
.time_base_init = &tim_1_2_3_4_time_base,
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = TIM2_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_MID,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_tim_clock_cfg tim_3_cfg = {
|
||||
.timer = TIM3,
|
||||
.time_base_init = &tim_1_2_3_4_time_base,
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = TIM3_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_MID,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_tim_clock_cfg tim_4_cfg = {
|
||||
.timer = TIM4,
|
||||
.time_base_init = &tim_1_2_3_4_time_base,
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = TIM4_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_MID,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_tim_channel pios_tim_rcvrport_all_channels[] = {
|
||||
{
|
||||
.timer = TIM4,
|
||||
.timer_chan = TIM_Channel_1,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_6,
|
||||
.GPIO_Mode = GPIO_Mode_IPD,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM3,
|
||||
.timer_chan = TIM_Channel_2,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_5,
|
||||
.GPIO_Mode = GPIO_Mode_IPD,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
.remap = GPIO_PartialRemap_TIM3,
|
||||
},
|
||||
{
|
||||
.timer = TIM3,
|
||||
.timer_chan = TIM_Channel_3,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_0,
|
||||
.GPIO_Mode = GPIO_Mode_IPD,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM3,
|
||||
.timer_chan = TIM_Channel_4,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_1,
|
||||
.GPIO_Mode = GPIO_Mode_IPD,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM2,
|
||||
.timer_chan = TIM_Channel_1,
|
||||
.pin = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_0,
|
||||
.GPIO_Mode = GPIO_Mode_IPD,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM2,
|
||||
.timer_chan = TIM_Channel_2,
|
||||
.pin = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_1,
|
||||
.GPIO_Mode = GPIO_Mode_IPD,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_tim_channel pios_tim_servoport_all_pins[] = {
|
||||
{
|
||||
.timer = TIM4,
|
||||
.timer_chan = TIM_Channel_4,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_9,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM4,
|
||||
.timer_chan = TIM_Channel_3,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_8,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM4,
|
||||
.timer_chan = TIM_Channel_2,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_7,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM1,
|
||||
.timer_chan = TIM_Channel_1,
|
||||
.pin = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_8,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM3,
|
||||
.timer_chan = TIM_Channel_1,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_4,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
.remap = GPIO_PartialRemap_TIM3,
|
||||
},
|
||||
{
|
||||
.timer = TIM2,
|
||||
.timer_chan = TIM_Channel_3,
|
||||
.pin = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_2,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
static const struct pios_tim_channel pios_tim_servoport_rcvrport_pins[] = {
|
||||
{
|
||||
.timer = TIM4,
|
||||
.timer_chan = TIM_Channel_4,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_9,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM4,
|
||||
.timer_chan = TIM_Channel_3,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_8,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM4,
|
||||
.timer_chan = TIM_Channel_2,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_7,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM1,
|
||||
.timer_chan = TIM_Channel_1,
|
||||
.pin = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_8,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM3,
|
||||
.timer_chan = TIM_Channel_1,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_4,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
.remap = GPIO_PartialRemap_TIM3,
|
||||
},
|
||||
{
|
||||
.timer = TIM2,
|
||||
.timer_chan = TIM_Channel_3,
|
||||
.pin = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_2,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
// Receiver port pins
|
||||
// S3-S6 inputs are used as outputs in this case
|
||||
{
|
||||
.timer = TIM3,
|
||||
.timer_chan = TIM_Channel_3,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_0,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM3,
|
||||
.timer_chan = TIM_Channel_4,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_1,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM2,
|
||||
.timer_chan = TIM_Channel_1,
|
||||
.pin = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_0,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
.timer = TIM2,
|
||||
.timer_chan = TIM_Channel_2,
|
||||
.pin = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_1,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_tim_channel pios_tim_ppm_flexi_port = {
|
||||
.timer = TIM2,
|
||||
.timer_chan = TIM_Channel_4,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_11,
|
||||
.GPIO_Mode = GPIO_Mode_IPD,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
.remap = GPIO_PartialRemap2_TIM2,
|
||||
};
|
||||
|
||||
#if defined(PIOS_INCLUDE_USART)
|
||||
|
||||
#include "pios_usart_priv.h"
|
||||
|
||||
static const struct pios_usart_cfg pios_usart_generic_main_cfg = {
|
||||
.regs = USART1,
|
||||
.init = {
|
||||
.USART_BaudRate = 57600,
|
||||
.USART_WordLength = USART_WordLength_8b,
|
||||
.USART_Parity = USART_Parity_No,
|
||||
.USART_StopBits = USART_StopBits_1,
|
||||
.USART_HardwareFlowControl = USART_HardwareFlowControl_None,
|
||||
.USART_Mode = USART_Mode_Rx | USART_Mode_Tx,
|
||||
},
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = USART1_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_MID,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
.rx = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_10,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IPU,
|
||||
},
|
||||
},
|
||||
.tx = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_9,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_usart_cfg pios_usart_generic_flexi_cfg = {
|
||||
.regs = USART3,
|
||||
.init = {
|
||||
.USART_BaudRate = 57600,
|
||||
.USART_WordLength = USART_WordLength_8b,
|
||||
.USART_Parity = USART_Parity_No,
|
||||
.USART_StopBits = USART_StopBits_1,
|
||||
.USART_HardwareFlowControl = USART_HardwareFlowControl_None,
|
||||
.USART_Mode = USART_Mode_Rx | USART_Mode_Tx,
|
||||
},
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = USART3_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_MID,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
.rx = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_11,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IPU,
|
||||
},
|
||||
},
|
||||
.tx = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_10,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
#if defined(PIOS_INCLUDE_DSM)
|
||||
/*
|
||||
* Spektrum/JR DSM USART
|
||||
*/
|
||||
#include <pios_dsm_priv.h>
|
||||
|
||||
static const struct pios_usart_cfg pios_usart_dsm_main_cfg = {
|
||||
.regs = USART1,
|
||||
.init = {
|
||||
.USART_BaudRate = 115200,
|
||||
.USART_WordLength = USART_WordLength_8b,
|
||||
.USART_Parity = USART_Parity_No,
|
||||
.USART_StopBits = USART_StopBits_1,
|
||||
.USART_HardwareFlowControl = USART_HardwareFlowControl_None,
|
||||
.USART_Mode = USART_Mode_Rx,
|
||||
},
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = USART1_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
.rx = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_10,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IPU,
|
||||
},
|
||||
},
|
||||
.tx = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_9,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IN_FLOATING,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_dsm_cfg pios_dsm_main_cfg = {
|
||||
.bind = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_10,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_Out_PP,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_usart_cfg pios_usart_dsm_flexi_cfg = {
|
||||
.regs = USART3,
|
||||
.init = {
|
||||
.USART_BaudRate = 115200,
|
||||
.USART_WordLength = USART_WordLength_8b,
|
||||
.USART_Parity = USART_Parity_No,
|
||||
.USART_StopBits = USART_StopBits_1,
|
||||
.USART_HardwareFlowControl = USART_HardwareFlowControl_None,
|
||||
.USART_Mode = USART_Mode_Rx,
|
||||
},
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = USART3_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
.rx = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_11,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IPU,
|
||||
},
|
||||
},
|
||||
.tx = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_10,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IN_FLOATING,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_dsm_cfg pios_dsm_flexi_cfg = {
|
||||
.bind = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_11,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_Out_PP,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
#endif /* PIOS_INCLUDE_DSM */
|
||||
|
||||
|
||||
#if defined(PIOS_INCLUDE_SBUS)
|
||||
/*
|
||||
* S.Bus USART
|
||||
*/
|
||||
#include <pios_sbus_priv.h>
|
||||
|
||||
static const struct pios_usart_cfg pios_usart_sbus_main_cfg = {
|
||||
.regs = USART1,
|
||||
.init = {
|
||||
.USART_BaudRate = 100000,
|
||||
.USART_WordLength = USART_WordLength_8b,
|
||||
.USART_Parity = USART_Parity_Even,
|
||||
.USART_StopBits = USART_StopBits_2,
|
||||
.USART_HardwareFlowControl = USART_HardwareFlowControl_None,
|
||||
.USART_Mode = USART_Mode_Rx,
|
||||
},
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = USART1_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
.rx = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_10,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IPU,
|
||||
},
|
||||
},
|
||||
.tx = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_9,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IN_FLOATING,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_sbus_cfg pios_sbus_cfg = {
|
||||
/* Inverter configuration */
|
||||
.inv = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_2,
|
||||
.GPIO_Mode = GPIO_Mode_Out_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
.gpio_clk_func = RCC_APB2PeriphClockCmd,
|
||||
.gpio_clk_periph = RCC_APB2Periph_GPIOB,
|
||||
.gpio_inv_enable = Bit_SET,
|
||||
};
|
||||
|
||||
#endif /* PIOS_INCLUDE_SBUS */
|
||||
|
||||
/*
|
||||
* HK OSD
|
||||
*/
|
||||
static const struct pios_usart_cfg pios_usart_hkosd_main_cfg = {
|
||||
.regs = USART1,
|
||||
.init = {
|
||||
.USART_BaudRate = 57600,
|
||||
.USART_WordLength = USART_WordLength_8b,
|
||||
.USART_Parity = USART_Parity_No,
|
||||
.USART_StopBits = USART_StopBits_1,
|
||||
.USART_HardwareFlowControl = USART_HardwareFlowControl_None,
|
||||
.USART_Mode = USART_Mode_Rx | USART_Mode_Tx,
|
||||
},
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = USART1_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_MID,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
.rx = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_10,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IPU,
|
||||
},
|
||||
},
|
||||
.tx = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_9,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_usart_cfg pios_usart_hkosd_flexi_cfg = {
|
||||
.regs = USART3,
|
||||
.init = {
|
||||
.USART_BaudRate = 57600,
|
||||
.USART_WordLength = USART_WordLength_8b,
|
||||
.USART_Parity = USART_Parity_No,
|
||||
.USART_StopBits = USART_StopBits_1,
|
||||
.USART_HardwareFlowControl = USART_HardwareFlowControl_None,
|
||||
.USART_Mode = USART_Mode_Rx | USART_Mode_Tx,
|
||||
},
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = USART3_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_MID,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
.rx = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_11,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IPU,
|
||||
},
|
||||
},
|
||||
.tx = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_10,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_PP,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
#endif /* PIOS_INCLUDE_USART */
|
||||
|
||||
#if defined(PIOS_INCLUDE_COM)
|
||||
|
||||
#include "pios_com_priv.h"
|
||||
|
||||
#endif /* PIOS_INCLUDE_COM */
|
||||
|
||||
#if defined(PIOS_INCLUDE_RTC)
|
||||
/*
|
||||
* Realtime Clock (RTC)
|
||||
*/
|
||||
#include <pios_rtc_priv.h>
|
||||
|
||||
void PIOS_RTC_IRQ_Handler(void);
|
||||
void RTC_IRQHandler() __attribute__((alias("PIOS_RTC_IRQ_Handler")));
|
||||
static const struct pios_rtc_cfg pios_rtc_main_cfg = {
|
||||
.clksrc = RCC_RTCCLKSource_HSE_Div128,
|
||||
.prescaler = 100,
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = RTC_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_MID,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
void PIOS_RTC_IRQ_Handler(void)
|
||||
{
|
||||
PIOS_RTC_irq_handler();
|
||||
}
|
||||
|
||||
#endif /* if defined(PIOS_INCLUDE_RTC) */
|
||||
|
||||
#if defined(PIOS_INCLUDE_SERVO) && defined(PIOS_INCLUDE_TIM)
|
||||
/*
|
||||
* Servo outputs
|
||||
*/
|
||||
#include <pios_servo_priv.h>
|
||||
|
||||
const struct pios_servo_cfg pios_servo_cfg = {
|
||||
.tim_oc_init = {
|
||||
.TIM_OCMode = TIM_OCMode_PWM1,
|
||||
.TIM_OutputState = TIM_OutputState_Enable,
|
||||
.TIM_OutputNState = TIM_OutputNState_Disable,
|
||||
.TIM_Pulse = PIOS_SERVOS_INITIAL_POSITION,
|
||||
.TIM_OCPolarity = TIM_OCPolarity_High,
|
||||
.TIM_OCNPolarity = TIM_OCPolarity_High,
|
||||
.TIM_OCIdleState = TIM_OCIdleState_Reset,
|
||||
.TIM_OCNIdleState = TIM_OCNIdleState_Reset,
|
||||
},
|
||||
.channels = pios_tim_servoport_all_pins,
|
||||
.num_channels = NELEMENTS(pios_tim_servoport_all_pins),
|
||||
};
|
||||
|
||||
const struct pios_servo_cfg pios_servo_rcvr_cfg = {
|
||||
.tim_oc_init = {
|
||||
.TIM_OCMode = TIM_OCMode_PWM1,
|
||||
.TIM_OutputState = TIM_OutputState_Enable,
|
||||
.TIM_OutputNState = TIM_OutputNState_Disable,
|
||||
.TIM_Pulse = PIOS_SERVOS_INITIAL_POSITION,
|
||||
.TIM_OCPolarity = TIM_OCPolarity_High,
|
||||
.TIM_OCNPolarity = TIM_OCPolarity_High,
|
||||
.TIM_OCIdleState = TIM_OCIdleState_Reset,
|
||||
.TIM_OCNIdleState = TIM_OCNIdleState_Reset,
|
||||
},
|
||||
.channels = pios_tim_servoport_rcvrport_pins,
|
||||
.num_channels = NELEMENTS(pios_tim_servoport_rcvrport_pins),
|
||||
};
|
||||
|
||||
#endif /* PIOS_INCLUDE_SERVO && PIOS_INCLUDE_TIM */
|
||||
|
||||
/*
|
||||
* PPM Inputs
|
||||
*/
|
||||
#if defined(PIOS_INCLUDE_PPM)
|
||||
#include <pios_ppm_priv.h>
|
||||
|
||||
const struct pios_ppm_cfg pios_ppm_cfg = {
|
||||
.tim_ic_init = {
|
||||
.TIM_ICPolarity = TIM_ICPolarity_Rising,
|
||||
.TIM_ICSelection = TIM_ICSelection_DirectTI,
|
||||
.TIM_ICPrescaler = TIM_ICPSC_DIV1,
|
||||
.TIM_ICFilter = 0x0,
|
||||
},
|
||||
/* Use only the first channel for ppm */
|
||||
.channels = &pios_tim_rcvrport_all_channels[0],
|
||||
.num_channels = 1,
|
||||
};
|
||||
|
||||
const struct pios_ppm_cfg pios_ppm_pin8_cfg = {
|
||||
.tim_ic_init = {
|
||||
.TIM_ICPolarity = TIM_ICPolarity_Rising,
|
||||
.TIM_ICSelection = TIM_ICSelection_DirectTI,
|
||||
.TIM_ICPrescaler = TIM_ICPSC_DIV1,
|
||||
.TIM_ICFilter = 0x0,
|
||||
},
|
||||
/* Use only the first channel for ppm */
|
||||
.channels = &pios_tim_rcvrport_all_channels[5],
|
||||
.num_channels = 1,
|
||||
};
|
||||
|
||||
#endif /* PIOS_INCLUDE_PPM */
|
||||
|
||||
#if defined(PIOS_INCLUDE_PPM_FLEXI)
|
||||
#include <pios_ppm_priv.h>
|
||||
|
||||
const struct pios_ppm_cfg pios_ppm_flexi_cfg = {
|
||||
.tim_ic_init = {
|
||||
.TIM_ICPolarity = TIM_ICPolarity_Rising,
|
||||
.TIM_ICSelection = TIM_ICSelection_DirectTI,
|
||||
.TIM_ICPrescaler = TIM_ICPSC_DIV1,
|
||||
.TIM_ICFilter = 0x0,
|
||||
},
|
||||
.channels = &pios_tim_ppm_flexi_port,
|
||||
.num_channels = 1,
|
||||
};
|
||||
|
||||
#endif /* PIOS_INCLUDE_PPM_FLEXI */
|
||||
|
||||
/*
|
||||
* PWM Inputs
|
||||
*/
|
||||
#if defined(PIOS_INCLUDE_PWM)
|
||||
#include <pios_pwm_priv.h>
|
||||
|
||||
const struct pios_pwm_cfg pios_pwm_cfg = {
|
||||
.tim_ic_init = {
|
||||
.TIM_ICPolarity = TIM_ICPolarity_Rising,
|
||||
.TIM_ICSelection = TIM_ICSelection_DirectTI,
|
||||
.TIM_ICPrescaler = TIM_ICPSC_DIV1,
|
||||
.TIM_ICFilter = 0x0,
|
||||
},
|
||||
.channels = pios_tim_rcvrport_all_channels,
|
||||
.num_channels = NELEMENTS(pios_tim_rcvrport_all_channels),
|
||||
};
|
||||
|
||||
const struct pios_pwm_cfg pios_pwm_with_ppm_cfg = {
|
||||
.tim_ic_init = {
|
||||
.TIM_ICPolarity = TIM_ICPolarity_Rising,
|
||||
.TIM_ICSelection = TIM_ICSelection_DirectTI,
|
||||
.TIM_ICPrescaler = TIM_ICPSC_DIV1,
|
||||
.TIM_ICFilter = 0x0,
|
||||
},
|
||||
/* Leave the first channel for PPM use and use the rest for PWM */
|
||||
.channels = &pios_tim_rcvrport_all_channels[1],
|
||||
.num_channels = NELEMENTS(pios_tim_rcvrport_all_channels) - 1,
|
||||
};
|
||||
|
||||
#endif /* if defined(PIOS_INCLUDE_PWM) */
|
||||
|
||||
|
||||
/*
|
||||
* SONAR Inputs
|
||||
*/
|
||||
#if defined(PIOS_INCLUDE_HCSR04)
|
||||
#include <pios_hcsr04_priv.h>
|
||||
|
||||
static const struct pios_tim_channel pios_tim_hcsr04_port_all_channels[] = {
|
||||
{
|
||||
.timer = TIM3,
|
||||
.timer_chan = TIM_Channel_2,
|
||||
.pin = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_5,
|
||||
.GPIO_Mode = GPIO_Mode_IPD,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
.remap = GPIO_PartialRemap_TIM3,
|
||||
},
|
||||
};
|
||||
|
||||
const struct pios_hcsr04_cfg pios_hcsr04_cfg = {
|
||||
.tim_ic_init = {
|
||||
.TIM_ICPolarity = TIM_ICPolarity_Rising,
|
||||
.TIM_ICSelection = TIM_ICSelection_DirectTI,
|
||||
.TIM_ICPrescaler = TIM_ICPSC_DIV1,
|
||||
.TIM_ICFilter = 0x0,
|
||||
},
|
||||
.channels = pios_tim_hcsr04_port_all_channels,
|
||||
.num_channels = NELEMENTS(pios_tim_hcsr04_port_all_channels),
|
||||
.trigger = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_6,
|
||||
.GPIO_Mode = GPIO_Mode_Out_PP,
|
||||
.GPIO_Speed = GPIO_Speed_2MHz,
|
||||
},
|
||||
},
|
||||
};
|
||||
#endif /* if defined(PIOS_INCLUDE_HCSR04) */
|
||||
|
||||
#if defined(PIOS_INCLUDE_I2C)
|
||||
|
||||
#include <pios_i2c_priv.h>
|
||||
|
||||
/*
|
||||
* I2C Adapters
|
||||
*/
|
||||
|
||||
void PIOS_I2C_flexi_adapter_ev_irq_handler(void);
|
||||
void PIOS_I2C_flexi_adapter_er_irq_handler(void);
|
||||
void I2C2_EV_IRQHandler() __attribute__((alias("PIOS_I2C_flexi_adapter_ev_irq_handler")));
|
||||
void I2C2_ER_IRQHandler() __attribute__((alias("PIOS_I2C_flexi_adapter_er_irq_handler")));
|
||||
|
||||
static const struct pios_i2c_adapter_cfg pios_i2c_flexi_adapter_cfg = {
|
||||
.regs = I2C2,
|
||||
.init = {
|
||||
.I2C_Mode = I2C_Mode_I2C,
|
||||
.I2C_OwnAddress1 = 0,
|
||||
.I2C_Ack = I2C_Ack_Enable,
|
||||
.I2C_AcknowledgedAddress = I2C_AcknowledgedAddress_7bit,
|
||||
.I2C_DutyCycle = I2C_DutyCycle_2,
|
||||
.I2C_ClockSpeed = 400000, /* bits/s */
|
||||
},
|
||||
.transfer_timeout_ms = 50,
|
||||
.scl = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_10,
|
||||
.GPIO_Speed = GPIO_Speed_10MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_OD,
|
||||
},
|
||||
},
|
||||
.sda = {
|
||||
.gpio = GPIOB,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_11,
|
||||
.GPIO_Speed = GPIO_Speed_10MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_OD,
|
||||
},
|
||||
},
|
||||
.event = {
|
||||
.flags = 0, /* FIXME: check this */
|
||||
.init = {
|
||||
.NVIC_IRQChannel = I2C2_EV_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGHEST,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
.error = {
|
||||
.flags = 0, /* FIXME: check this */
|
||||
.init = {
|
||||
.NVIC_IRQChannel = I2C2_ER_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGHEST,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
uint32_t pios_i2c_flexi_adapter_id;
|
||||
void PIOS_I2C_flexi_adapter_ev_irq_handler(void)
|
||||
{
|
||||
/* Call into the generic code to handle the IRQ for this specific device */
|
||||
PIOS_I2C_EV_IRQ_Handler(pios_i2c_flexi_adapter_id);
|
||||
}
|
||||
|
||||
void PIOS_I2C_flexi_adapter_er_irq_handler(void)
|
||||
{
|
||||
/* Call into the generic code to handle the IRQ for this specific device */
|
||||
PIOS_I2C_ER_IRQ_Handler(pios_i2c_flexi_adapter_id);
|
||||
}
|
||||
|
||||
#endif /* PIOS_INCLUDE_I2C */
|
||||
|
||||
#if defined(PIOS_INCLUDE_GCSRCVR)
|
||||
#include "pios_gcsrcvr_priv.h"
|
||||
#endif /* PIOS_INCLUDE_GCSRCVR */
|
||||
|
||||
#if defined(PIOS_INCLUDE_RCVR)
|
||||
#include "pios_rcvr_priv.h"
|
||||
|
||||
#endif /* PIOS_INCLUDE_RCVR */
|
||||
|
||||
#if defined(PIOS_INCLUDE_USB)
|
||||
#include "pios_usb_priv.h"
|
||||
|
||||
static const struct pios_usb_cfg pios_usb_main_cfg_cc = {
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = USB_LP_CAN1_RX0_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_LOW,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
.vsense = {
|
||||
.gpio = GPIOC,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_15,
|
||||
.GPIO_Speed = GPIO_Speed_10MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_OD,
|
||||
},
|
||||
},
|
||||
.vsense_active_low = false
|
||||
};
|
||||
|
||||
static const struct pios_usb_cfg pios_usb_main_cfg_cc3d = {
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = USB_LP_CAN1_RX0_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_LOW,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
.vsense = {
|
||||
.gpio = GPIOC,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_14,
|
||||
.GPIO_Speed = GPIO_Speed_10MHz,
|
||||
.GPIO_Mode = GPIO_Mode_AF_OD,
|
||||
},
|
||||
},
|
||||
.vsense_active_low = false
|
||||
};
|
||||
|
||||
#include "pios_usb_board_data_priv.h"
|
||||
#include "pios_usb_desc_hid_cdc_priv.h"
|
||||
#include "pios_usb_desc_hid_only_priv.h"
|
||||
|
||||
#endif /* PIOS_INCLUDE_USB */
|
||||
|
||||
#if defined(PIOS_INCLUDE_COM_MSG)
|
||||
|
||||
#include <pios_com_msg_priv.h>
|
||||
|
||||
#endif /* PIOS_INCLUDE_COM_MSG */
|
||||
|
||||
#if defined(PIOS_INCLUDE_USB_HID)
|
||||
#include <pios_usb_hid_priv.h>
|
||||
|
||||
const struct pios_usb_hid_cfg pios_usb_hid_cfg = {
|
||||
.data_if = 2,
|
||||
.data_rx_ep = 1,
|
||||
.data_tx_ep = 1,
|
||||
};
|
||||
|
||||
#endif /* PIOS_INCLUDE_USB_HID */
|
||||
|
||||
#if defined(PIOS_INCLUDE_USB_RCTX)
|
||||
#include <pios_usb_rctx_priv.h>
|
||||
|
||||
const struct pios_usb_rctx_cfg pios_usb_rctx_cfg = {
|
||||
.data_if = 2,
|
||||
.data_tx_ep = 1,
|
||||
};
|
||||
|
||||
#endif /* PIOS_INCLUDE_USB_RCTX */
|
||||
|
||||
#if defined(PIOS_INCLUDE_USB_CDC)
|
||||
#include <pios_usb_cdc_priv.h>
|
||||
|
||||
const struct pios_usb_cdc_cfg pios_usb_cdc_cfg = {
|
||||
.ctrl_if = 0,
|
||||
.ctrl_tx_ep = 2,
|
||||
|
||||
.data_if = 1,
|
||||
.data_rx_ep = 3,
|
||||
.data_tx_ep = 3,
|
||||
};
|
||||
#endif /* PIOS_INCLUDE_USB_CDC */
|
@ -1,32 +0,0 @@
|
||||
#
|
||||
# Copyright (c) 2009-2013, The OpenPilot Team, http://www.openpilot.org
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
# for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along
|
||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
|
||||
ifndef OPENPILOT_IS_COOL
|
||||
$(error Top level Makefile must be used to build this target)
|
||||
endif
|
||||
|
||||
## The standard CMSIS startup
|
||||
SRC += $(CMSIS_DEVICEDIR)/system_stm32f10x.c
|
||||
|
||||
include ../board-info.mk
|
||||
include $(ROOT_DIR)/make/firmware-defs.mk
|
||||
include $(ROOT_DIR)/make/boot-defs.mk
|
||||
include $(ROOT_DIR)/make/common-defs.mk
|
||||
|
||||
$(info Making bootloader for CopterControl, board revision $(BOARD_REVISION))
|
||||
$(info Use BOARD_REVISION=1 for CC, BOARD_REVISION=2 for CC3D (default))
|
@ -1,115 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @addtogroup CopterControlBL CopterControl BootLoader
|
||||
* @brief These files contain the code to the CopterControl Bootloader.
|
||||
*
|
||||
* @{
|
||||
* @file common.c
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief This file contains various common defines for the BootLoader
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
#ifndef COMMON_H_
|
||||
#define COMMON_H_
|
||||
|
||||
// #include "board.h"
|
||||
|
||||
typedef enum {
|
||||
start, keepgoing,
|
||||
} DownloadAction;
|
||||
|
||||
/**************************************************/
|
||||
/* OP_DFU states */
|
||||
/**************************************************/
|
||||
|
||||
typedef enum {
|
||||
DFUidle, // 0
|
||||
uploading, // 1
|
||||
wrong_packet_received, // 2
|
||||
too_many_packets, // 3
|
||||
too_few_packets, // 4
|
||||
Last_operation_Success, // 5
|
||||
downloading, // 6
|
||||
BLidle, // 7
|
||||
Last_operation_failed, // 8
|
||||
uploadingStarting, // 9
|
||||
outsideDevCapabilities, // 10
|
||||
CRC_Fail, // 11
|
||||
failed_jump,
|
||||
// 12
|
||||
} DFUStates;
|
||||
/**************************************************/
|
||||
/* OP_DFU commands */
|
||||
/**************************************************/
|
||||
typedef enum {
|
||||
Reserved, // 0
|
||||
Req_Capabilities, // 1
|
||||
Rep_Capabilities, // 2
|
||||
EnterDFU, // 3
|
||||
JumpFW, // 4
|
||||
Reset, // 5
|
||||
Abort_Operation, // 6
|
||||
Upload, // 7
|
||||
Op_END, // 8
|
||||
Download_Req, // 9
|
||||
Download, // 10
|
||||
Status_Request, // 11
|
||||
Status_Rep
|
||||
// 12
|
||||
} DFUCommands;
|
||||
|
||||
typedef enum {
|
||||
High_Density, Medium_Density
|
||||
} DeviceType;
|
||||
/**************************************************/
|
||||
/* OP_DFU transfer types */
|
||||
/**************************************************/
|
||||
typedef enum {
|
||||
FW, // 0
|
||||
Descript
|
||||
// 2
|
||||
} DFUTransfer;
|
||||
/**************************************************/
|
||||
/* OP_DFU transfer port */
|
||||
/**************************************************/
|
||||
typedef enum {
|
||||
Usb, // 0
|
||||
Serial
|
||||
// 2
|
||||
} DFUPort;
|
||||
/**************************************************/
|
||||
/* OP_DFU programable programable HW types */
|
||||
/**************************************************/
|
||||
typedef enum {
|
||||
Self_flash, // 0
|
||||
Remote_flash_via_spi
|
||||
// 1
|
||||
} DFUProgType;
|
||||
/**************************************************/
|
||||
/* OP_DFU programable sources */
|
||||
/**************************************************/
|
||||
#define USB 0
|
||||
#define SPI 1
|
||||
|
||||
#define DownloadDelay 100000
|
||||
|
||||
#define MAX_DEL_RETRYS 3
|
||||
#define MAX_WRI_RETRYS 3
|
||||
|
||||
#endif /* COMMON_H_ */
|
@ -1,53 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @addtogroup CopterControlBL CopterControl BootLoader
|
||||
* @brief These files contain the code to the CopterControl Bootloader.
|
||||
* @{
|
||||
* @file pios_config.h
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief PiOS configuration header.
|
||||
* Central compile time config for the project.
|
||||
* In particular, pios_config.h is where you define which PiOS libraries
|
||||
* and features are included in the firmware.
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef PIOS_CONFIG_H
|
||||
#define PIOS_CONFIG_H
|
||||
|
||||
/* Enable/Disable PiOS modules */
|
||||
#define PIOS_INCLUDE_DELAY
|
||||
#define PIOS_INCLUDE_SYS
|
||||
#define PIOS_INCLUDE_IRQ
|
||||
#define PIOS_INCLUDE_GPIO
|
||||
#define PIOS_INCLUDE_USB
|
||||
#define PIOS_INCLUDE_USB_HID
|
||||
#define PIOS_INCLUDE_LED
|
||||
#define PIOS_INCLUDE_IAP
|
||||
#define PIOS_INCLUDE_COM
|
||||
#define PIOS_INCLUDE_COM_MSG
|
||||
#define PIOS_INCLUDE_BL_HELPER
|
||||
#define PIOS_INCLUDE_BL_HELPER_WRITE_SUPPORT
|
||||
|
||||
#endif /* PIOS_CONFIG_H */
|
||||
|
||||
/**
|
||||
* @}
|
||||
* @}
|
||||
*/
|
@ -1,53 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @addtogroup PIOS PIOS Core hardware abstraction layer
|
||||
* @{
|
||||
* @addtogroup PIOS_USB_BOARD Board specific USB definitions
|
||||
* @brief Board specific USB definitions
|
||||
* @{
|
||||
*
|
||||
* @file pios_usb_board_data.h
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief Board specific USB definitions
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef PIOS_USB_BOARD_DATA_H
|
||||
#define PIOS_USB_BOARD_DATA_H
|
||||
|
||||
// Note : changing below length will require changes to the USB buffer setup
|
||||
#define PIOS_USB_BOARD_HID_DATA_LENGTH 64
|
||||
|
||||
#define PIOS_USB_BOARD_EP_NUM 2
|
||||
|
||||
#include <pios_usb_defs.h> /* struct usb_* */
|
||||
|
||||
#define PIOS_USB_BOARD_PRODUCT_ID USB_PRODUCT_ID_COPTERCONTROL
|
||||
#define PIOS_USB_BOARD_DEVICE_VER USB_OP_DEVICE_VER(USB_OP_BOARD_ID_COPTERCONTROL, USB_OP_BOARD_MODE_BL)
|
||||
#define PIOS_USB_BOARD_SN_SUFFIX "+BL"
|
||||
|
||||
/*
|
||||
* The bootloader uses a simplified report structure
|
||||
* BL: <REPORT_ID><DATA>...<DATA>
|
||||
* FW: <REPORT_ID><LENGTH><DATA>...<DATA>
|
||||
* This define changes the behaviour in pios_usb_hid.c
|
||||
*/
|
||||
#define PIOS_USB_BOARD_BL_HID_HAS_NO_LENGTH_BYTE
|
||||
|
||||
#endif /* PIOS_USB_BOARD_DATA_H */
|
@ -1,223 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @addtogroup CopterControlBL CopterControl BootLoader
|
||||
* @brief These files contain the code to the CopterControl Bootloader.
|
||||
*
|
||||
* @{
|
||||
* @file main.c
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief This is the file with the main function of the OpenPilot BootLoader
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <pios.h>
|
||||
#include <pios_board_info.h>
|
||||
#include <op_dfu.h>
|
||||
#include <usb_lib.h>
|
||||
#include <pios_iap.h>
|
||||
#include <fifo_buffer.h>
|
||||
#include <pios_com_msg.h>
|
||||
|
||||
/* Prototype of PIOS_Board_Init() function */
|
||||
extern void PIOS_Board_Init(void);
|
||||
extern void FLASH_Download();
|
||||
#define BSL_HOLD_STATE ((PIOS_USB_DETECT_GPIO_PORT->IDR & PIOS_USB_DETECT_GPIO_PIN) ? 0 : 1)
|
||||
|
||||
/* Private typedef -----------------------------------------------------------*/
|
||||
typedef void (*pFunction)(void);
|
||||
/* Private define ------------------------------------------------------------*/
|
||||
/* Private macro -------------------------------------------------------------*/
|
||||
/* Private variables ---------------------------------------------------------*/
|
||||
pFunction Jump_To_Application;
|
||||
uint32_t JumpAddress;
|
||||
|
||||
/// LEDs PWM
|
||||
uint32_t period1 = 5000; // 5 mS
|
||||
uint32_t sweep_steps1 = 100; // * 5 mS -> 500 mS
|
||||
uint32_t period2 = 5000; // 5 mS
|
||||
uint32_t sweep_steps2 = 100; // * 5 mS -> 500 mS
|
||||
|
||||
|
||||
////////////////////////////////////////
|
||||
uint8_t tempcount = 0;
|
||||
|
||||
/* Extern variables ----------------------------------------------------------*/
|
||||
DFUStates DeviceState;
|
||||
int16_t status = 0;
|
||||
uint8_t JumpToApp = FALSE;
|
||||
uint8_t GO_dfu = FALSE;
|
||||
uint8_t USB_connected = FALSE;
|
||||
uint8_t User_DFU_request = FALSE;
|
||||
static uint8_t mReceive_Buffer[63];
|
||||
/* Private function prototypes -----------------------------------------------*/
|
||||
uint32_t LedPWM(uint32_t pwm_period, uint32_t pwm_sweep_steps, uint32_t count);
|
||||
uint8_t processRX();
|
||||
void jump_to_app();
|
||||
|
||||
int main()
|
||||
{
|
||||
PIOS_SYS_Init();
|
||||
PIOS_Board_Init();
|
||||
PIOS_IAP_Init();
|
||||
|
||||
USB_connected = PIOS_USB_CableConnected(0);
|
||||
|
||||
if (PIOS_IAP_CheckRequest() == TRUE) {
|
||||
PIOS_DELAY_WaitmS(1000);
|
||||
User_DFU_request = TRUE;
|
||||
PIOS_IAP_ClearRequest();
|
||||
}
|
||||
|
||||
GO_dfu = (USB_connected == TRUE) || (User_DFU_request == TRUE);
|
||||
|
||||
if (GO_dfu == TRUE) {
|
||||
PIOS_Board_Init();
|
||||
if (User_DFU_request == TRUE) {
|
||||
DeviceState = DFUidle;
|
||||
} else {
|
||||
DeviceState = BLidle;
|
||||
}
|
||||
} else {
|
||||
JumpToApp = TRUE;
|
||||
}
|
||||
|
||||
uint32_t stopwatch = 0;
|
||||
uint32_t prev_ticks = PIOS_DELAY_GetuS();
|
||||
while (TRUE) {
|
||||
/* Update the stopwatch */
|
||||
uint32_t elapsed_ticks = PIOS_DELAY_GetuSSince(prev_ticks);
|
||||
prev_ticks += elapsed_ticks;
|
||||
stopwatch += elapsed_ticks;
|
||||
|
||||
if (JumpToApp == TRUE) {
|
||||
jump_to_app();
|
||||
}
|
||||
|
||||
switch (DeviceState) {
|
||||
case Last_operation_Success:
|
||||
case uploadingStarting:
|
||||
case DFUidle:
|
||||
period1 = 5000;
|
||||
sweep_steps1 = 100;
|
||||
PIOS_LED_Off(PIOS_LED_HEARTBEAT);
|
||||
period2 = 0;
|
||||
break;
|
||||
case uploading:
|
||||
period1 = 5000;
|
||||
sweep_steps1 = 100;
|
||||
period2 = 2500;
|
||||
sweep_steps2 = 50;
|
||||
break;
|
||||
case downloading:
|
||||
period1 = 2500;
|
||||
sweep_steps1 = 50;
|
||||
PIOS_LED_Off(PIOS_LED_HEARTBEAT);
|
||||
period2 = 0;
|
||||
break;
|
||||
case BLidle:
|
||||
period1 = 0;
|
||||
PIOS_LED_On(PIOS_LED_HEARTBEAT);
|
||||
period2 = 0;
|
||||
break;
|
||||
default: // error
|
||||
period1 = 5000;
|
||||
sweep_steps1 = 100;
|
||||
period2 = 5000;
|
||||
sweep_steps2 = 100;
|
||||
}
|
||||
|
||||
if (period1 != 0) {
|
||||
if (LedPWM(period1, sweep_steps1, stopwatch)) {
|
||||
PIOS_LED_On(PIOS_LED_HEARTBEAT);
|
||||
} else {
|
||||
PIOS_LED_Off(PIOS_LED_HEARTBEAT);
|
||||
}
|
||||
} else {
|
||||
PIOS_LED_On(PIOS_LED_HEARTBEAT);
|
||||
}
|
||||
|
||||
if (period2 != 0) {
|
||||
if (LedPWM(period2, sweep_steps2, stopwatch)) {
|
||||
PIOS_LED_On(PIOS_LED_HEARTBEAT);
|
||||
} else {
|
||||
PIOS_LED_Off(PIOS_LED_HEARTBEAT);
|
||||
}
|
||||
} else {
|
||||
PIOS_LED_Off(PIOS_LED_HEARTBEAT);
|
||||
}
|
||||
|
||||
if (stopwatch > 50 * 1000 * 1000) {
|
||||
stopwatch = 0;
|
||||
}
|
||||
if ((stopwatch > 6 * 1000 * 1000) && ((DeviceState == BLidle) || (DeviceState == DFUidle && !USB_connected))) {
|
||||
JumpToApp = TRUE;
|
||||
}
|
||||
|
||||
processRX();
|
||||
DataDownload(start);
|
||||
}
|
||||
}
|
||||
|
||||
void jump_to_app()
|
||||
{
|
||||
const struct pios_board_info *bdinfo = &pios_board_info_blob;
|
||||
|
||||
if (((*(__IO uint32_t *)bdinfo->fw_base) & 0x2FFE0000) == 0x20000000) { /* Jump to user application */
|
||||
FLASH_Lock();
|
||||
RCC_APB2PeriphResetCmd(0xffffffff, ENABLE);
|
||||
RCC_APB1PeriphResetCmd(0xffffffff, ENABLE);
|
||||
RCC_APB2PeriphResetCmd(0xffffffff, DISABLE);
|
||||
RCC_APB1PeriphResetCmd(0xffffffff, DISABLE);
|
||||
_SetCNTR(0); // clear interrupt mask
|
||||
_SetISTR(0); // clear all requests
|
||||
JumpAddress = *(__IO uint32_t *)(bdinfo->fw_base + 4);
|
||||
Jump_To_Application = (pFunction)JumpAddress;
|
||||
/* Initialize user application's Stack Pointer */
|
||||
__set_MSP(*(__IO uint32_t *)bdinfo->fw_base);
|
||||
Jump_To_Application();
|
||||
} else {
|
||||
DeviceState = failed_jump;
|
||||
return;
|
||||
}
|
||||
}
|
||||
uint32_t LedPWM(uint32_t pwm_period, uint32_t pwm_sweep_steps, uint32_t count)
|
||||
{
|
||||
uint32_t curr_step = (count / pwm_period) % pwm_sweep_steps; /* 0 - pwm_sweep_steps */
|
||||
uint32_t pwm_duty = pwm_period * curr_step / pwm_sweep_steps; /* fraction of pwm_period */
|
||||
|
||||
uint32_t curr_sweep = (count / (pwm_period * pwm_sweep_steps)); /* ticks once per full sweep */
|
||||
|
||||
if (curr_sweep & 1) {
|
||||
pwm_duty = pwm_period - pwm_duty; /* reverse direction in odd sweeps */
|
||||
}
|
||||
return ((count % pwm_period) > pwm_duty) ? 1 : 0;
|
||||
}
|
||||
|
||||
uint8_t processRX()
|
||||
{
|
||||
if (PIOS_COM_MSG_Receive(PIOS_COM_TELEM_USB, mReceive_Buffer, sizeof(mReceive_Buffer))) {
|
||||
processComand(mReceive_Buffer);
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
int32_t platform_senddata(const uint8_t *msg, uint16_t msg_len)
|
||||
{
|
||||
return PIOS_COM_MSG_Send(PIOS_COM_TELEM_USB, msg, msg_len);
|
||||
}
|
@ -1,106 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
*
|
||||
* @file pios_board.c
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief Defines board specific static initializers for hardware for the CopterControl board.
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <pios.h>
|
||||
#include <pios_board_info.h>
|
||||
|
||||
/*
|
||||
* Pull in the board-specific static HW definitions.
|
||||
* Including .c files is a bit ugly but this allows all of
|
||||
* the HW definitions to be const and static to limit their
|
||||
* scope.
|
||||
*
|
||||
* NOTE: THIS IS THE ONLY PLACE THAT SHOULD EVER INCLUDE THIS FILE
|
||||
*/
|
||||
#include "../board_hw_defs.c"
|
||||
|
||||
uint32_t pios_com_telem_usb_id;
|
||||
|
||||
/**
|
||||
* PIOS_Board_Init()
|
||||
* initializes all the core subsystems on this specific hardware
|
||||
* called from System/openpilot.c
|
||||
*/
|
||||
static bool board_init_complete = false;
|
||||
void PIOS_Board_Init(void)
|
||||
{
|
||||
if (board_init_complete) {
|
||||
return;
|
||||
}
|
||||
|
||||
/* Enable Prefetch Buffer */
|
||||
FLASH_PrefetchBufferCmd(FLASH_PrefetchBuffer_Enable);
|
||||
|
||||
/* Flash 2 wait state */
|
||||
FLASH_SetLatency(FLASH_Latency_2);
|
||||
|
||||
/* Delay system */
|
||||
PIOS_DELAY_Init();
|
||||
|
||||
const struct pios_board_info *bdinfo = &pios_board_info_blob;
|
||||
|
||||
#if defined(PIOS_INCLUDE_LED)
|
||||
const struct pios_gpio_cfg *led_cfg = PIOS_BOARD_HW_DEFS_GetLedCfg(bdinfo->board_rev);
|
||||
PIOS_Assert(led_cfg);
|
||||
PIOS_LED_Init(led_cfg);
|
||||
#endif /* PIOS_INCLUDE_LED */
|
||||
|
||||
#if defined(PIOS_INCLUDE_USB)
|
||||
/* Initialize board specific USB data */
|
||||
PIOS_USB_BOARD_DATA_Init();
|
||||
|
||||
/* Activate the HID-only USB configuration */
|
||||
PIOS_USB_DESC_HID_ONLY_Init();
|
||||
|
||||
uint32_t pios_usb_id;
|
||||
switch (bdinfo->board_rev) {
|
||||
case BOARD_REVISION_CC:
|
||||
PIOS_USB_Init(&pios_usb_id, &pios_usb_main_cfg_cc);
|
||||
break;
|
||||
case BOARD_REVISION_CC3D:
|
||||
PIOS_USB_Init(&pios_usb_id, &pios_usb_main_cfg_cc3d);
|
||||
break;
|
||||
default:
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
#if defined(PIOS_INCLUDE_USB_HID) && defined(PIOS_INCLUDE_COM_MSG)
|
||||
uint32_t pios_usb_hid_id;
|
||||
if (PIOS_USB_HID_Init(&pios_usb_hid_id, &pios_usb_hid_cfg, pios_usb_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
if (PIOS_COM_MSG_Init(&pios_com_telem_usb_id, &pios_usb_hid_com_driver, pios_usb_hid_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_USB_HID && PIOS_INCLUDE_COM_MSG */
|
||||
|
||||
#endif /* PIOS_INCLUDE_USB */
|
||||
|
||||
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_CRC, ENABLE); // TODO Tirar
|
||||
|
||||
board_init_complete = true;
|
||||
}
|
||||
|
||||
void PIOS_ADC_DMA_Handler()
|
||||
{}
|
@ -1,148 +0,0 @@
|
||||
#
|
||||
# Copyright (c) 2009-2013, The OpenPilot Team, http://www.openpilot.org
|
||||
# Copyright (c) 2012, PhoenixPilot, http://github.com/PhoenixPilot
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
# for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License along
|
||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
|
||||
ifndef OPENPILOT_IS_COOL
|
||||
$(error Top level Makefile must be used to build this target)
|
||||
endif
|
||||
|
||||
include ../board-info.mk
|
||||
include $(ROOT_DIR)/make/firmware-defs.mk
|
||||
|
||||
# ARM DSP library
|
||||
USE_DSP_LIB ?= NO
|
||||
|
||||
# Set to YES to build a FW version that will erase data flash memory
|
||||
ERASE_FLASH ?= NO
|
||||
|
||||
# Set to yes to include Gcsreceiver module
|
||||
GCSRECEIVER ?= NO
|
||||
|
||||
# Enable Diag tasks ?
|
||||
DIAG_TASKS ?= NO
|
||||
|
||||
# List of mandatory modules to include
|
||||
MODULES += Attitude
|
||||
MODULES += Stabilization
|
||||
MODULES += Actuator
|
||||
MODULES += Receiver
|
||||
MODULES += ManualControl
|
||||
MODULES += FirmwareIAP
|
||||
MODULES += Telemetry
|
||||
|
||||
# List of optional modules to include
|
||||
OPTMODULES += CameraStab
|
||||
OPTMODULES += ComUsbBridge
|
||||
OPTMODULES += GPS
|
||||
OPTMODULES += TxPID
|
||||
OPTMODULES += Osd/osdoutput
|
||||
#OPTMODULES += Altitude
|
||||
#OPTMODULES += Fault
|
||||
|
||||
SRC += $(FLIGHTLIB)/notification.c
|
||||
|
||||
# Include all camera options
|
||||
CDEFS += -DUSE_INPUT_LPF -DUSE_GIMBAL_LPF -DUSE_GIMBAL_FF
|
||||
|
||||
|
||||
|
||||
# Erase flash firmware should be buildable from command line
|
||||
ifeq ($(ERASE_FLASH), YES)
|
||||
CDEFS += -DERASE_FLASH
|
||||
endif
|
||||
|
||||
# List C source files here (C dependencies are automatically generated).
|
||||
# Use file-extension c for "c-only"-files
|
||||
ifndef TESTAPP
|
||||
## The standard CMSIS startup
|
||||
SRC += $(CMSIS_DEVICEDIR)/system_stm32f10x.c
|
||||
|
||||
## Application Core
|
||||
SRC += ../pios_usb_board_data.c
|
||||
SRC += $(OPMODULEDIR)/System/systemmod.c
|
||||
SRC += $(OPSYSTEM)/coptercontrol.c
|
||||
SRC += $(OPSYSTEM)/pios_board.c
|
||||
SRC += $(FLIGHTLIB)/alarms.c
|
||||
SRC += $(FLIGHTLIB)/instrumentation.c
|
||||
SRC += $(OPUAVTALK)/uavtalk.c
|
||||
SRC += $(OPUAVOBJ)/uavobjectmanager.c
|
||||
SRC += $(OPUAVOBJ)/uavobjectpersistence.c
|
||||
SRC += $(OPUAVOBJ)/eventdispatcher.c
|
||||
|
||||
## UAVObjects
|
||||
SRC += $(OPUAVSYNTHDIR)/accessorydesired.c
|
||||
SRC += $(OPUAVSYNTHDIR)/objectpersistence.c
|
||||
SRC += $(OPUAVSYNTHDIR)/gcstelemetrystats.c
|
||||
SRC += $(OPUAVSYNTHDIR)/flighttelemetrystats.c
|
||||
SRC += $(OPUAVSYNTHDIR)/faultsettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/flightstatus.c
|
||||
SRC += $(OPUAVSYNTHDIR)/systemstats.c
|
||||
SRC += $(OPUAVSYNTHDIR)/systemalarms.c
|
||||
SRC += $(OPUAVSYNTHDIR)/systemsettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/stabilizationdesired.c
|
||||
SRC += $(OPUAVSYNTHDIR)/stabilizationsettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/stabilizationsettingsbank1.c
|
||||
SRC += $(OPUAVSYNTHDIR)/stabilizationsettingsbank2.c
|
||||
SRC += $(OPUAVSYNTHDIR)/stabilizationsettingsbank3.c
|
||||
SRC += $(OPUAVSYNTHDIR)/stabilizationstatus.c
|
||||
SRC += $(OPUAVSYNTHDIR)/stabilizationbank.c
|
||||
SRC += $(OPUAVSYNTHDIR)/actuatorcommand.c
|
||||
SRC += $(OPUAVSYNTHDIR)/actuatordesired.c
|
||||
SRC += $(OPUAVSYNTHDIR)/actuatorsettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/accelstate.c
|
||||
SRC += $(OPUAVSYNTHDIR)/accelgyrosettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/gyrostate.c
|
||||
SRC += $(OPUAVSYNTHDIR)/attitudestate.c
|
||||
SRC += $(OPUAVSYNTHDIR)/manualcontrolcommand.c
|
||||
SRC += $(OPUAVSYNTHDIR)/watchdogstatus.c
|
||||
SRC += $(OPUAVSYNTHDIR)/manualcontrolsettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/flightmodesettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/mixersettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/firmwareiapobj.c
|
||||
SRC += $(OPUAVSYNTHDIR)/attitudesettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/camerastabsettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/cameradesired.c
|
||||
SRC += $(OPUAVSYNTHDIR)/gpspositionsensor.c
|
||||
SRC += $(OPUAVSYNTHDIR)/gpsvelocitysensor.c
|
||||
SRC += $(OPUAVSYNTHDIR)/gpssettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/hwsettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/receiveractivity.c
|
||||
SRC += $(OPUAVSYNTHDIR)/mixerstatus.c
|
||||
SRC += $(OPUAVSYNTHDIR)/ratedesired.c
|
||||
SRC += $(OPUAVSYNTHDIR)/txpidsettings.c
|
||||
SRC += $(OPUAVSYNTHDIR)/mpu6000settings.c
|
||||
# Command line option for Gcsreceiver module
|
||||
ifeq ($(GCSRECEIVER), YES)
|
||||
SRC += $(OPUAVSYNTHDIR)/gcsreceiver.c
|
||||
endif
|
||||
# Enable Diag tasks and UAVOs needed
|
||||
ifeq ($(DIAG_TASKS), YES)
|
||||
CDEFS += -DDIAG_TASKS
|
||||
SRC += $(OPUAVSYNTHDIR)/taskinfo.c
|
||||
SRC += $(OPUAVSYNTHDIR)/callbackinfo.c
|
||||
SRC += $(OPUAVSYNTHDIR)/perfcounter.c
|
||||
SRC += $(OPUAVSYNTHDIR)/i2cstats.c
|
||||
endif
|
||||
else
|
||||
## Test Code
|
||||
SRC += $(OPTESTS)/test_common.c
|
||||
SRC += $(OPTESTS)/$(TESTAPP).c
|
||||
endif
|
||||
|
||||
include $(ROOT_DIR)/make/apps-defs.mk
|
||||
include $(ROOT_DIR)/make/common-defs.mk
|
@ -1,117 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @addtogroup OpenPilotSystem OpenPilot System
|
||||
* @brief These files are the core system files of OpenPilot.
|
||||
* They are the ground layer just above PiOS. In practice, OpenPilot actually starts
|
||||
* in the main() function of openpilot.c
|
||||
* @{
|
||||
* @addtogroup OpenPilotCore OpenPilot Core
|
||||
* @brief This is where the OP firmware starts. Those files also define the compile-time
|
||||
* options of the firmware.
|
||||
* @{
|
||||
* @file openpilot.c
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief Sets up and runs main OpenPilot tasks.
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "inc/openpilot.h"
|
||||
#include <uavobjectsinit.h>
|
||||
#include <hwsettings.h>
|
||||
|
||||
/* Task Priorities */
|
||||
#define PRIORITY_TASK_HOOKS (tskIDLE_PRIORITY + 3)
|
||||
|
||||
/* Global Variables */
|
||||
|
||||
/* Prototype of PIOS_Board_Init() function */
|
||||
extern void PIOS_Board_Init(void);
|
||||
extern void Stack_Change(void);
|
||||
|
||||
/**
|
||||
* OpenPilot Main function:
|
||||
*
|
||||
* Initialize PiOS<BR>
|
||||
* Create the "System" task (SystemModInitializein Modules/System/systemmod.c) <BR>
|
||||
* Start FreeRTOS Scheduler (vTaskStartScheduler) (Now handled by caller)
|
||||
* If something goes wrong, blink LED1 and LED2 every 100ms
|
||||
*
|
||||
*/
|
||||
int main()
|
||||
{
|
||||
/* NOTE: Do NOT modify the following start-up sequence */
|
||||
/* Any new initialization functions should be added in OpenPilotInit() */
|
||||
|
||||
/* Brings up System using CMSIS functions, enables the LEDs. */
|
||||
PIOS_SYS_Init();
|
||||
|
||||
/* Architecture dependant Hardware and
|
||||
* core subsystem initialisation
|
||||
* (see pios_board.c for your arch)
|
||||
* */
|
||||
PIOS_Board_Init();
|
||||
|
||||
#ifdef ERASE_FLASH
|
||||
PIOS_Flash_Jedec_EraseChip();
|
||||
#if defined(PIOS_LED_HEARTBEAT)
|
||||
PIOS_LED_Off(PIOS_LED_HEARTBEAT);
|
||||
#endif /* PIOS_LED_HEARTBEAT */
|
||||
while (1) {
|
||||
;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Initialize modules */
|
||||
MODULE_INITIALISE_ALL
|
||||
/* swap the stack to use the IRQ stack */
|
||||
Stack_Change();
|
||||
|
||||
/* Start the FreeRTOS scheduler, which should never return.
|
||||
*
|
||||
* NOTE: OpenPilot runs an operating system (FreeRTOS), which constantly calls
|
||||
* (schedules) function files (modules). These functions never return from their
|
||||
* while loops, which explains why each module has a while(1){} segment. Thus,
|
||||
* the OpenPilot software actually starts at the vTaskStartScheduler() function,
|
||||
* even though this is somewhat obscure.
|
||||
*
|
||||
* In addition, there are many main() functions in the OpenPilot firmware source tree
|
||||
* This is because each main() refers to a separate hardware platform. Of course,
|
||||
* C only allows one main(), so only the relevant main() function is compiled when
|
||||
* making a specific firmware.
|
||||
*
|
||||
*/
|
||||
vTaskStartScheduler();
|
||||
|
||||
/* If all is well we will never reach here as the scheduler will now be running. */
|
||||
|
||||
/* Do some indication to user that something bad just happened */
|
||||
while (1) {
|
||||
#if defined(PIOS_LED_HEARTBEAT)
|
||||
PIOS_LED_Toggle(PIOS_LED_HEARTBEAT);
|
||||
#endif /* PIOS_LED_HEARTBEAT */
|
||||
PIOS_DELAY_WaitmS(100);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @}
|
||||
* @}
|
||||
*/
|
@ -1,99 +0,0 @@
|
||||
#ifndef FREERTOS_CONFIG_H
|
||||
#define FREERTOS_CONFIG_H
|
||||
|
||||
/*-----------------------------------------------------------
|
||||
* Application specific definitions.
|
||||
*
|
||||
* These definitions should be adjusted for your particular hardware and
|
||||
* application requirements.
|
||||
*
|
||||
* THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE
|
||||
* FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE.
|
||||
*
|
||||
* See http://www.freertos.org/a00110.html.
|
||||
*----------------------------------------------------------*/
|
||||
|
||||
/**
|
||||
* @addtogroup PIOS PIOS
|
||||
* @{
|
||||
* @addtogroup FreeRTOS FreeRTOS
|
||||
* @{
|
||||
*/
|
||||
|
||||
/* Notes: We use 5 task priorities */
|
||||
|
||||
#define configUSE_PREEMPTION 1
|
||||
#define configUSE_IDLE_HOOK 1
|
||||
#define configUSE_TICK_HOOK 0
|
||||
#define configUSE_MALLOC_FAILED_HOOK 1
|
||||
#define configCPU_CLOCK_HZ ((unsigned long)72000000)
|
||||
#define configTICK_RATE_HZ ((portTickType)1000)
|
||||
#define configMAX_PRIORITIES ((unsigned portBASE_TYPE)5)
|
||||
#define configMINIMAL_STACK_SIZE ((unsigned short)48)
|
||||
#define configTOTAL_HEAP_SIZE ((size_t)(53 * 256))
|
||||
#define configMAX_TASK_NAME_LEN (6)
|
||||
#define configUSE_TRACE_FACILITY 0
|
||||
#define configUSE_16_BIT_TICKS 0
|
||||
#define configIDLE_SHOULD_YIELD 0
|
||||
#define configUSE_MUTEXES 1
|
||||
#define configUSE_RECURSIVE_MUTEXES 1
|
||||
#define configUSE_COUNTING_SEMAPHORES 0
|
||||
#define configUSE_ALTERNATIVE_API 0
|
||||
#define configQUEUE_REGISTRY_SIZE 0
|
||||
|
||||
/* Co-routine definitions. */
|
||||
#define configUSE_CO_ROUTINES 0
|
||||
#define configMAX_CO_ROUTINE_PRIORITIES (2)
|
||||
|
||||
/* Set the following definitions to 1 to include the API function, or zero
|
||||
to exclude the API function. */
|
||||
|
||||
#define INCLUDE_vTaskPrioritySet 1
|
||||
#define INCLUDE_uxTaskPriorityGet 1
|
||||
#define INCLUDE_vTaskDelete 1
|
||||
#define INCLUDE_vTaskCleanUpResources 0
|
||||
#define INCLUDE_vTaskSuspend 1
|
||||
#define INCLUDE_vTaskDelayUntil 1
|
||||
#define INCLUDE_vTaskDelay 1
|
||||
#define INCLUDE_xTaskGetSchedulerState 0
|
||||
#define INCLUDE_xTaskGetCurrentTaskHandle 1
|
||||
#define INCLUDE_uxTaskGetStackHighWaterMark 1
|
||||
|
||||
/* This is the raw value as per the Cortex-M3 NVIC. Values can be 255
|
||||
(lowest) to 1 (highest maskable) to 0 (highest non-maskable). */
|
||||
#define configKERNEL_INTERRUPT_PRIORITY 15 << 4 /* equivalent to NVIC priority 15 */
|
||||
#define configMAX_SYSCALL_INTERRUPT_PRIORITY 3 << 4 /* equivalent to NVIC priority 3 */
|
||||
|
||||
/* This is the value being used as per the ST library which permits 16
|
||||
priority values, 0 to 15. This must correspond to the
|
||||
configKERNEL_INTERRUPT_PRIORITY setting. Here 15 corresponds to the lowest
|
||||
NVIC value of 255. */
|
||||
#define configLIBRARY_KERNEL_INTERRUPT_PRIORITY 15
|
||||
|
||||
#if !defined(ARCH_POSIX) && !defined(ARCH_WIN32)
|
||||
#define CHECK_IRQ_STACK
|
||||
#endif
|
||||
|
||||
/* Enable run time stats collection */
|
||||
#define configGENERATE_RUN_TIME_STATS 1
|
||||
#define INCLUDE_uxTaskGetRunTime 1
|
||||
#define INCLUDE_xTaskGetIdleTaskHandle 1
|
||||
#define portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() \
|
||||
do { \
|
||||
(*(unsigned long *)0xe000edfc) |= (1 << 24); /* DEMCR |= DEMCR_TRCENA */ \
|
||||
(*(unsigned long *)0xe0001000) |= 1; /* DWT_CTRL |= DWT_CYCCNT_ENA */ \
|
||||
} \
|
||||
while (0)
|
||||
#define portGET_RUN_TIME_COUNTER_VALUE() (*(unsigned long *)0xe0001004) /* DWT_CYCCNT */
|
||||
|
||||
#ifdef DIAG_TASKS
|
||||
#define configCHECK_FOR_STACK_OVERFLOW 2
|
||||
#else
|
||||
#define configCHECK_FOR_STACK_OVERFLOW 1
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
#endif /* FREERTOS_CONFIG_H */
|
@ -1,52 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @addtogroup OpenPilotSystem OpenPilot System
|
||||
* @{
|
||||
* @addtogroup OpenPilotCore OpenPilot Core
|
||||
* @{
|
||||
* @file openpilot.h
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief Main OpenPilot header.
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef OPENPILOT_H
|
||||
#define OPENPILOT_H
|
||||
|
||||
/* PIOS Includes */
|
||||
#include <pios.h>
|
||||
|
||||
/* OpenPilot Libraries */
|
||||
#include <utlist.h>
|
||||
#include <uavobjectmanager.h>
|
||||
#include <eventdispatcher.h>
|
||||
#include <uavtalk.h>
|
||||
|
||||
#include "alarms.h"
|
||||
#include <mathmisc.h>
|
||||
|
||||
/* Global Functions */
|
||||
void OpenPilotInit(void);
|
||||
|
||||
#endif /* OPENPILOT_H */
|
||||
|
||||
/**
|
||||
* @}
|
||||
* @}
|
||||
*/
|
@ -1,81 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
*
|
||||
* @file pios_board.h
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief Defines board hardware for the OpenPilot Version 1.1 hardware.
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
|
||||
#ifndef PIOS_BOARD_H
|
||||
#define PIOS_BOARD_H
|
||||
|
||||
|
||||
// ------------------------
|
||||
// PIOS_LED
|
||||
// ------------------------
|
||||
// #define PIOS_LED_LED1_GPIO_PORT GPIOC
|
||||
// #define PIOS_LED_LED1_GPIO_PIN GPIO_Pin_12
|
||||
// #define PIOS_LED_LED1_GPIO_CLK RCC_APB2Periph_GPIOC
|
||||
// #define PIOS_LED_LED2_GPIO_PORT GPIOC
|
||||
// #define PIOS_LED_LED2_GPIO_PIN GPIO_Pin_13
|
||||
// #define PIOS_LED_LED2_GPIO_CLK RCC_APB2Periph_GPIOC
|
||||
#define PIOS_LED_NUM 2
|
||||
// #define PIOS_LED_PORTS { PIOS_LED_LED1_GPIO_PORT, PIOS_LED_LED2_GPIO_PORT }
|
||||
// #define PIOS_LED_PINS { PIOS_LED_LED1_GPIO_PIN, PIOS_LED_LED2_GPIO_PIN }
|
||||
// #define PIOS_LED_CLKS { PIOS_LED_LED1_GPIO_CLK, PIOS_LED_LED2_GPIO_CLK }
|
||||
|
||||
|
||||
// -------------------------
|
||||
// COM
|
||||
//
|
||||
// See also pios_board_posix.c
|
||||
// -------------------------
|
||||
// #define PIOS_USART_TX_BUFFER_SIZE 256
|
||||
#define PIOS_COM_BUFFER_SIZE 1024
|
||||
#define PIOS_UDP_RX_BUFFER_SIZE PIOS_COM_BUFFER_SIZE
|
||||
|
||||
#define PIOS_COM_TELEM_RF 0
|
||||
#define PIOS_COM_GPS 1
|
||||
#define PIOS_COM_TELEM_USB 2
|
||||
|
||||
#ifdef PIOS_ENABLE_AUX_UART
|
||||
#define PIOS_COM_AUX 3
|
||||
#define PIOS_COM_DEBUG PIOS_COM_AUX
|
||||
#endif
|
||||
|
||||
/**
|
||||
* glue macros for file IO
|
||||
* STM32 uses DOSFS for file IO
|
||||
*/
|
||||
#define PIOS_FOPEN_READ(filename, file) (file = fopen((char *)filename, "r")) == NULL
|
||||
|
||||
#define PIOS_FOPEN_WRITE(filename, file) (file = fopen((char *)filename, "w")) == NULL
|
||||
|
||||
#define PIOS_FREAD(file, bufferadr, length, resultadr) (*resultadr = fread((uint8_t *)bufferadr, 1, length, *file)) != length
|
||||
|
||||
#define PIOS_FWRITE(file, bufferadr, length, resultadr) *resultadr = fwrite((uint8_t *)bufferadr, 1, length, *file)
|
||||
|
||||
|
||||
#define PIOS_FCLOSE(file) fclose(file)
|
||||
|
||||
#define PIOS_FUNLINK(file) unlink((char *)filename)
|
||||
|
||||
#endif /* PIOS_BOARD_H */
|
@ -1,188 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @addtogroup OpenPilotSystem OpenPilot System
|
||||
* @{
|
||||
* @addtogroup OpenPilotCore OpenPilot Core
|
||||
* @{
|
||||
* @file pios_config.h
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010-2013.
|
||||
* @brief PiOS configuration header, the compile time config file for the PIOS.
|
||||
* Defines which PiOS libraries and features are included in the firmware.
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef PIOS_CONFIG_H
|
||||
#define PIOS_CONFIG_H
|
||||
|
||||
/*
|
||||
* Below is a complete list of PIOS configurable options.
|
||||
* Please do not remove or rearrange them. Only comment out
|
||||
* unused options in the list. See main pios.h header for more
|
||||
* details.
|
||||
*/
|
||||
|
||||
/* #define PIOS_INCLUDE_DEBUG_CONSOLE */
|
||||
/* #define DEBUG_LEVEL 0 */
|
||||
/* #define PIOS_ENABLE_DEBUG_PINS */
|
||||
|
||||
/* PIOS FreeRTOS support */
|
||||
#define PIOS_INCLUDE_FREERTOS
|
||||
|
||||
|
||||
/* PIOS CallbackScheduler support */
|
||||
#define PIOS_INCLUDE_CALLBACKSCHEDULER
|
||||
|
||||
/* PIOS bootloader helper */
|
||||
#define PIOS_INCLUDE_BL_HELPER
|
||||
/* #define PIOS_INCLUDE_BL_HELPER_WRITE_SUPPORT */
|
||||
|
||||
/* PIOS system functions */
|
||||
#define PIOS_INCLUDE_DELAY
|
||||
#define PIOS_INCLUDE_INITCALL
|
||||
#define PIOS_INCLUDE_SYS
|
||||
#define PIOS_INCLUDE_TASK_MONITOR
|
||||
// #define PIOS_INCLUDE_INSTRUMENTATION
|
||||
#define PIOS_INSTRUMENTATION_MAX_COUNTERS 5
|
||||
|
||||
/* PIOS hardware peripherals */
|
||||
#define PIOS_INCLUDE_IRQ
|
||||
#define PIOS_INCLUDE_RTC
|
||||
#define PIOS_INCLUDE_TIM
|
||||
#define PIOS_INCLUDE_USART
|
||||
#define PIOS_INCLUDE_ADC
|
||||
/* #define PIOS_INCLUDE_I2C */
|
||||
#define PIOS_INCLUDE_SPI
|
||||
#define PIOS_INCLUDE_GPIO
|
||||
#define PIOS_INCLUDE_EXTI
|
||||
#define PIOS_INCLUDE_WDG
|
||||
|
||||
/* PIOS USB functions */
|
||||
#define PIOS_INCLUDE_USB
|
||||
#define PIOS_INCLUDE_USB_HID
|
||||
#define PIOS_INCLUDE_USB_CDC
|
||||
#define PIOS_INCLUDE_USB_RCTX
|
||||
|
||||
/* PIOS sensor interfaces */
|
||||
#define PIOS_INCLUDE_ADXL345
|
||||
/* #define PIOS_INCLUDE_BMA180 */
|
||||
/* #define PIOS_INCLUDE_L3GD20 */
|
||||
#define PIOS_INCLUDE_MPU6000
|
||||
#define PIOS_MPU6000_ACCEL
|
||||
/* #define PIOS_INCLUDE_HMC5843 */
|
||||
/* #define PIOS_INCLUDE_HMC5X83 */
|
||||
/* #define PIOS_HMC5883_HAS_GPIOS */
|
||||
/* #define PIOS_INCLUDE_BMP085 */
|
||||
/* #define PIOS_INCLUDE_MS5611 */
|
||||
/* #define PIOS_INCLUDE_MPXV */
|
||||
/* #define PIOS_INCLUDE_ETASV3 */
|
||||
/* #define PIOS_INCLUDE_HCSR04 */
|
||||
|
||||
#define PIOS_SENSOR_RATE 500.0f
|
||||
|
||||
/* PIOS receiver drivers */
|
||||
#define PIOS_INCLUDE_PWM
|
||||
#define PIOS_INCLUDE_PPM
|
||||
#define PIOS_INCLUDE_PPM_FLEXI
|
||||
#define PIOS_INCLUDE_DSM
|
||||
#define PIOS_INCLUDE_SBUS
|
||||
/* #define PIOS_INCLUDE_GCSRCVR */
|
||||
/* #define PIOS_INCLUDE_OPLINKRCVR */
|
||||
|
||||
/* PIOS abstract receiver interface */
|
||||
#define PIOS_INCLUDE_RCVR
|
||||
|
||||
/* PIOS common peripherals */
|
||||
#define PIOS_INCLUDE_LED
|
||||
#define PIOS_INCLUDE_IAP
|
||||
#define PIOS_INCLUDE_SERVO
|
||||
/* #define PIOS_INCLUDE_I2C_ESC */
|
||||
/* #define PIOS_INCLUDE_OVERO */
|
||||
/* #define PIOS_OVERO_SPI */
|
||||
/* #define PIOS_INCLUDE_SDCARD */
|
||||
/* #define LOG_FILENAME "startup.log" */
|
||||
#define PIOS_INCLUDE_FLASH
|
||||
#define PIOS_INCLUDE_FLASH_LOGFS_SETTINGS
|
||||
/* #define FLASH_FREERTOS */
|
||||
/* #define PIOS_INCLUDE_FLASH_EEPROM */
|
||||
/* #define PIOS_INCLUDE_FLASH_INTERNAL */
|
||||
|
||||
/* PIOS radio modules */
|
||||
/* #define PIOS_INCLUDE_RFM22B */
|
||||
/* #define PIOS_INCLUDE_RFM22B_COM */
|
||||
/* #define PIOS_INCLUDE_PPM_OUT */
|
||||
/* #define PIOS_RFM22B_DEBUG_ON_TELEM */
|
||||
|
||||
/* PIOS misc peripherals */
|
||||
/* #define PIOS_INCLUDE_VIDEO */
|
||||
/* #define PIOS_INCLUDE_WAVE */
|
||||
/* #define PIOS_INCLUDE_UDP */
|
||||
|
||||
/* PIOS abstract comms interface with options */
|
||||
#define PIOS_INCLUDE_COM
|
||||
/* #define PIOS_INCLUDE_COM_MSG */
|
||||
#define PIOS_INCLUDE_TELEMETRY_RF
|
||||
/* #define PIOS_INCLUDE_COM_TELEM */
|
||||
/* #define PIOS_INCLUDE_COM_FLEXI */
|
||||
/* #define PIOS_INCLUDE_COM_AUX */
|
||||
/* #define PIOS_TELEM_PRIORITY_QUEUE */
|
||||
#define PIOS_INCLUDE_GPS
|
||||
#define PIOS_GPS_MINIMAL
|
||||
/* #define PIOS_INCLUDE_GPS_NMEA_PARSER */
|
||||
#define PIOS_INCLUDE_GPS_UBX_PARSER
|
||||
/* #define PIOS_GPS_SETS_HOMELOCATION */
|
||||
|
||||
/* Stabilization options */
|
||||
/* #define PIOS_QUATERNION_STABILIZATION */
|
||||
#define PIOS_EXCLUDE_ADVANCED_FEATURES
|
||||
/* Performance counters */
|
||||
#define IDLE_COUNTS_PER_SEC_AT_NO_LOAD 1995998
|
||||
|
||||
/* Alarm Thresholds */
|
||||
#define HEAP_LIMIT_WARNING 220
|
||||
#define HEAP_LIMIT_CRITICAL 40
|
||||
#define IRQSTACK_LIMIT_WARNING 100
|
||||
#define IRQSTACK_LIMIT_CRITICAL 60
|
||||
#define CPULOAD_LIMIT_WARNING 85
|
||||
#define CPULOAD_LIMIT_CRITICAL 95
|
||||
|
||||
/* Task stack sizes */
|
||||
#define PIOS_ACTUATOR_STACK_SIZE 820
|
||||
#define PIOS_MANUAL_STACK_SIZE 735
|
||||
#define PIOS_RECEIVER_STACK_SIZE 620
|
||||
#define PIOS_STABILIZATION_STACK_SIZE 400
|
||||
|
||||
#ifdef DIAG_TASKS
|
||||
#define PIOS_SYSTEM_STACK_SIZE 740
|
||||
#else
|
||||
#define PIOS_SYSTEM_STACK_SIZE 660
|
||||
#endif
|
||||
#define PIOS_TELEM_RX_STACK_SIZE 410
|
||||
#define PIOS_TELEM_TX_STACK_SIZE 560
|
||||
#define PIOS_EVENTDISPATCHER_STACK_SIZE 95
|
||||
|
||||
/* This can't be too high to stop eventdispatcher thread overflowing */
|
||||
#define PIOS_EVENTDISAPTCHER_QUEUE 10
|
||||
|
||||
/* Revolution series */
|
||||
/* #define REVOLUTION */
|
||||
|
||||
#endif /* PIOS_CONFIG_H */
|
||||
/**
|
||||
* @}
|
||||
* @}
|
||||
*/
|
@ -1,48 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
*
|
||||
* @file pios_config.h
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief PiOS configuration header.
|
||||
* Central compile time config for the project.
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
|
||||
#ifndef PIOS_CONFIG_POSIX_H
|
||||
#define PIOS_CONFIG_POSIX_H
|
||||
|
||||
|
||||
/* Enable/Disable PiOS Modules */
|
||||
#define PIOS_INCLUDE_SYS
|
||||
#define PIOS_INCLUDE_DELAY
|
||||
#define PIOS_INCLUDE_LED
|
||||
#define PIOS_INCLUDE_FREERTOS
|
||||
#define PIOS_INCLUDE_CALLBACKSCHEDULER
|
||||
#define PIOS_INCLUDE_TASK_MONITOR
|
||||
#define PIOS_INCLUDE_COM
|
||||
#define PIOS_INCLUDE_UDP
|
||||
#define PIOS_INCLUDE_SERVO
|
||||
|
||||
|
||||
/* Defaults for Logging */
|
||||
#define LOG_FILENAME "PIOS.LOG"
|
||||
#define STARTUP_LOG_ENABLED 1
|
||||
|
||||
#endif /* PIOS_CONFIG_POSIX_H */
|
@ -1,47 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @addtogroup PIOS PIOS Core hardware abstraction layer
|
||||
* @{
|
||||
* @addtogroup PIOS_USB_BOARD Board specific USB definitions
|
||||
* @brief Board specific USB definitions
|
||||
* @{
|
||||
*
|
||||
* @file pios_usb_board_data.h
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief Board specific USB definitions
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef PIOS_USB_BOARD_DATA_H
|
||||
#define PIOS_USB_BOARD_DATA_H
|
||||
|
||||
// Note : changing below length will require changes to the USB buffer setup
|
||||
#define PIOS_USB_BOARD_CDC_DATA_LENGTH 64
|
||||
#define PIOS_USB_BOARD_CDC_MGMT_LENGTH 32
|
||||
#define PIOS_USB_BOARD_HID_DATA_LENGTH 64
|
||||
|
||||
#define PIOS_USB_BOARD_EP_NUM 4
|
||||
|
||||
#include <pios_usb_defs.h> /* USB_* macros */
|
||||
|
||||
#define PIOS_USB_BOARD_PRODUCT_ID USB_PRODUCT_ID_COPTERCONTROL
|
||||
#define PIOS_USB_BOARD_DEVICE_VER USB_OP_DEVICE_VER(USB_OP_BOARD_ID_COPTERCONTROL, USB_OP_BOARD_MODE_FW)
|
||||
#define PIOS_USB_BOARD_SN_SUFFIX "+FW"
|
||||
|
||||
#endif /* PIOS_USB_BOARD_DATA_H */
|
@ -1,920 +0,0 @@
|
||||
/**
|
||||
*****************************************************************************
|
||||
* @file pios_board.c
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @author PhoenixPilot, http://github.com/PhoenixPilot, Copyright (C) 2012
|
||||
* @addtogroup OpenPilotSystem OpenPilot System
|
||||
* @{
|
||||
* @addtogroup OpenPilotCore OpenPilot Core
|
||||
* @{
|
||||
* @brief Defines board specific static initializers for hardware for the CopterControl board.
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "inc/openpilot.h"
|
||||
#include <pios_board_info.h>
|
||||
#include <uavobjectsinit.h>
|
||||
#include <hwsettings.h>
|
||||
#include <manualcontrolsettings.h>
|
||||
#include <gcsreceiver.h>
|
||||
#include <taskinfo.h>
|
||||
#include <sanitycheck.h>
|
||||
#include <actuatorsettings.h>
|
||||
|
||||
#ifdef PIOS_INCLUDE_INSTRUMENTATION
|
||||
#include <pios_instrumentation.h>
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_ADXL345)
|
||||
#include <pios_adxl345.h>
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Pull in the board-specific static HW definitions.
|
||||
* Including .c files is a bit ugly but this allows all of
|
||||
* the HW definitions to be const and static to limit their
|
||||
* scope.
|
||||
*
|
||||
* NOTE: THIS IS THE ONLY PLACE THAT SHOULD EVER INCLUDE THIS FILE
|
||||
*/
|
||||
#include "../board_hw_defs.c"
|
||||
|
||||
/* One slot per selectable receiver group.
|
||||
* eg. PWM, PPM, GCS, DSMMAINPORT, DSMFLEXIPORT, SBUS
|
||||
* NOTE: No slot in this map for NONE.
|
||||
*/
|
||||
uint32_t pios_rcvr_group_map[MANUALCONTROLSETTINGS_CHANNELGROUPS_NONE];
|
||||
|
||||
static SystemAlarmsExtendedAlarmStatusOptions CopterControlConfigHook();
|
||||
static void ActuatorSettingsUpdatedCb(UAVObjEvent *ev);
|
||||
|
||||
#define PIOS_COM_TELEM_RF_RX_BUF_LEN 32
|
||||
#define PIOS_COM_TELEM_RF_TX_BUF_LEN 12
|
||||
|
||||
#define PIOS_COM_GPS_RX_BUF_LEN 32
|
||||
|
||||
#define PIOS_COM_TELEM_USB_RX_BUF_LEN 65
|
||||
#define PIOS_COM_TELEM_USB_TX_BUF_LEN 65
|
||||
|
||||
#define PIOS_COM_BRIDGE_RX_BUF_LEN 65
|
||||
#define PIOS_COM_BRIDGE_TX_BUF_LEN 12
|
||||
|
||||
#define PIOS_COM_HKOSD_TX_BUF_LEN 22
|
||||
|
||||
#if defined(PIOS_INCLUDE_DEBUG_CONSOLE)
|
||||
#define PIOS_COM_DEBUGCONSOLE_TX_BUF_LEN 40
|
||||
uint32_t pios_com_debug_id;
|
||||
#endif /* PIOS_INCLUDE_DEBUG_CONSOLE */
|
||||
|
||||
uint32_t pios_com_telem_rf_id;
|
||||
uint32_t pios_com_telem_usb_id;
|
||||
uint32_t pios_com_vcp_id;
|
||||
uint32_t pios_com_gps_id;
|
||||
uint32_t pios_com_bridge_id;
|
||||
uint32_t pios_com_hkosd_id;
|
||||
|
||||
uint32_t pios_usb_rctx_id;
|
||||
|
||||
uintptr_t pios_uavo_settings_fs_id;
|
||||
uintptr_t pios_user_fs_id = 0;
|
||||
/**
|
||||
* Configuration for MPU6000 chip
|
||||
*/
|
||||
#if defined(PIOS_INCLUDE_MPU6000)
|
||||
#include "pios_mpu6000.h"
|
||||
#include "pios_mpu6000_config.h"
|
||||
static const struct pios_exti_cfg pios_exti_mpu6000_cfg __exti_config = {
|
||||
.vector = PIOS_MPU6000_IRQHandler,
|
||||
.line = EXTI_Line3,
|
||||
.pin = {
|
||||
.gpio = GPIOA,
|
||||
.init = {
|
||||
.GPIO_Pin = GPIO_Pin_3,
|
||||
.GPIO_Speed = GPIO_Speed_10MHz,
|
||||
.GPIO_Mode = GPIO_Mode_IN_FLOATING,
|
||||
},
|
||||
},
|
||||
.irq = {
|
||||
.init = {
|
||||
.NVIC_IRQChannel = EXTI3_IRQn,
|
||||
.NVIC_IRQChannelPreemptionPriority = PIOS_IRQ_PRIO_HIGH,
|
||||
.NVIC_IRQChannelSubPriority = 0,
|
||||
.NVIC_IRQChannelCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
.exti = {
|
||||
.init = {
|
||||
.EXTI_Line = EXTI_Line3, // matches above GPIO pin
|
||||
.EXTI_Mode = EXTI_Mode_Interrupt,
|
||||
.EXTI_Trigger = EXTI_Trigger_Rising,
|
||||
.EXTI_LineCmd = ENABLE,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
static const struct pios_mpu6000_cfg pios_mpu6000_cfg = {
|
||||
.exti_cfg = &pios_exti_mpu6000_cfg,
|
||||
.Fifo_store = PIOS_MPU6000_FIFO_TEMP_OUT | PIOS_MPU6000_FIFO_GYRO_X_OUT | PIOS_MPU6000_FIFO_GYRO_Y_OUT | PIOS_MPU6000_FIFO_GYRO_Z_OUT,
|
||||
// Clock at 8 khz, downsampled by 8 for 1000 Hz
|
||||
.Smpl_rate_div_no_dlp = 7,
|
||||
// Clock at 1 khz, downsampled by 1 for 1000 Hz
|
||||
.Smpl_rate_div_dlp = 0,
|
||||
.interrupt_cfg = PIOS_MPU6000_INT_CLR_ANYRD,
|
||||
.interrupt_en = PIOS_MPU6000_INTEN_DATA_RDY,
|
||||
.User_ctl = PIOS_MPU6000_USERCTL_DIS_I2C,
|
||||
.Pwr_mgmt_clk = PIOS_MPU6000_PWRMGMT_PLL_X_CLK,
|
||||
.accel_range = PIOS_MPU6000_ACCEL_8G,
|
||||
.gyro_range = PIOS_MPU6000_SCALE_2000_DEG,
|
||||
.filter = PIOS_MPU6000_LOWPASS_256_HZ,
|
||||
.orientation = PIOS_MPU6000_TOP_180DEG,
|
||||
.fast_prescaler = PIOS_SPI_PRESCALER_4,
|
||||
.std_prescaler = PIOS_SPI_PRESCALER_64,
|
||||
.max_downsample = 2
|
||||
};
|
||||
#endif /* PIOS_INCLUDE_MPU6000 */
|
||||
|
||||
/**
|
||||
* PIOS_Board_Init()
|
||||
* initializes all the core subsystems on this specific hardware
|
||||
* called from System/openpilot.c
|
||||
*/
|
||||
int32_t init_test;
|
||||
void PIOS_Board_Init(void)
|
||||
{
|
||||
/* Delay system */
|
||||
PIOS_DELAY_Init();
|
||||
|
||||
const struct pios_board_info *bdinfo = &pios_board_info_blob;
|
||||
|
||||
#if defined(PIOS_INCLUDE_LED)
|
||||
const struct pios_gpio_cfg *led_cfg = PIOS_BOARD_HW_DEFS_GetLedCfg(bdinfo->board_rev);
|
||||
PIOS_Assert(led_cfg);
|
||||
PIOS_LED_Init(led_cfg);
|
||||
#endif /* PIOS_INCLUDE_LED */
|
||||
|
||||
#ifdef PIOS_INCLUDE_INSTRUMENTATION
|
||||
PIOS_Instrumentation_Init(PIOS_INSTRUMENTATION_MAX_COUNTERS);
|
||||
#endif
|
||||
|
||||
#if defined(PIOS_INCLUDE_SPI)
|
||||
/* Set up the SPI interface to the serial flash */
|
||||
|
||||
switch (bdinfo->board_rev) {
|
||||
case BOARD_REVISION_CC:
|
||||
if (PIOS_SPI_Init(&pios_spi_flash_accel_id, &pios_spi_flash_accel_cfg_cc)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
break;
|
||||
case BOARD_REVISION_CC3D:
|
||||
if (PIOS_SPI_Init(&pios_spi_flash_accel_id, &pios_spi_flash_accel_cfg_cc3d)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
uintptr_t flash_id;
|
||||
switch (bdinfo->board_rev) {
|
||||
case BOARD_REVISION_CC:
|
||||
if (PIOS_Flash_Jedec_Init(&flash_id, pios_spi_flash_accel_id, 1)) {
|
||||
PIOS_DEBUG_Assert(0);
|
||||
}
|
||||
if (PIOS_FLASHFS_Logfs_Init(&pios_uavo_settings_fs_id, &flashfs_w25x_cfg, &pios_jedec_flash_driver, flash_id)) {
|
||||
PIOS_DEBUG_Assert(0);
|
||||
}
|
||||
break;
|
||||
case BOARD_REVISION_CC3D:
|
||||
if (PIOS_Flash_Jedec_Init(&flash_id, pios_spi_flash_accel_id, 0)) {
|
||||
PIOS_DEBUG_Assert(0);
|
||||
}
|
||||
if (PIOS_FLASHFS_Logfs_Init(&pios_uavo_settings_fs_id, &flashfs_m25p_cfg, &pios_jedec_flash_driver, flash_id)) {
|
||||
PIOS_DEBUG_Assert(0);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
PIOS_DEBUG_Assert(0);
|
||||
}
|
||||
|
||||
/* Initialize the task monitor */
|
||||
if (PIOS_TASK_MONITOR_Initialize(TASKINFO_RUNNING_NUMELEM)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
/* Initialize the delayed callback library */
|
||||
PIOS_CALLBACKSCHEDULER_Initialize();
|
||||
|
||||
/* Initialize UAVObject libraries */
|
||||
EventDispatcherInitialize();
|
||||
UAVObjInitialize();
|
||||
|
||||
#if defined(PIOS_INCLUDE_RTC)
|
||||
/* Initialize the real-time clock and its associated tick */
|
||||
PIOS_RTC_Init(&pios_rtc_main_cfg);
|
||||
#endif
|
||||
PIOS_IAP_Init();
|
||||
// check for safe mode commands from gcs
|
||||
if (PIOS_IAP_ReadBootCmd(0) == PIOS_IAP_CLEAR_FLASH_CMD_0 &&
|
||||
PIOS_IAP_ReadBootCmd(1) == PIOS_IAP_CLEAR_FLASH_CMD_1 &&
|
||||
PIOS_IAP_ReadBootCmd(2) == PIOS_IAP_CLEAR_FLASH_CMD_2) {
|
||||
PIOS_FLASHFS_Format(pios_uavo_settings_fs_id);
|
||||
PIOS_IAP_WriteBootCmd(0, 0);
|
||||
PIOS_IAP_WriteBootCmd(1, 0);
|
||||
PIOS_IAP_WriteBootCmd(2, 0);
|
||||
}
|
||||
|
||||
HwSettingsInitialize();
|
||||
|
||||
#ifndef ERASE_FLASH
|
||||
#ifdef PIOS_INCLUDE_WDG
|
||||
/* Initialize watchdog as early as possible to catch faults during init */
|
||||
PIOS_WDG_Init();
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Initialize the alarms library */
|
||||
AlarmsInitialize();
|
||||
|
||||
/* Check for repeated boot failures */
|
||||
uint16_t boot_count = PIOS_IAP_ReadBootCount();
|
||||
if (boot_count < 3) {
|
||||
PIOS_IAP_WriteBootCount(++boot_count);
|
||||
AlarmsClear(SYSTEMALARMS_ALARM_BOOTFAULT);
|
||||
} else {
|
||||
/* Too many failed boot attempts, force hwsettings to defaults */
|
||||
HwSettingsSetDefaults(HwSettingsHandle(), 0);
|
||||
AlarmsSet(SYSTEMALARMS_ALARM_BOOTFAULT, SYSTEMALARMS_ALARM_CRITICAL);
|
||||
}
|
||||
|
||||
/* Set up pulse timers */
|
||||
PIOS_TIM_InitClock(&tim_1_cfg);
|
||||
PIOS_TIM_InitClock(&tim_2_cfg);
|
||||
PIOS_TIM_InitClock(&tim_3_cfg);
|
||||
PIOS_TIM_InitClock(&tim_4_cfg);
|
||||
|
||||
#if defined(PIOS_INCLUDE_USB)
|
||||
/* Initialize board specific USB data */
|
||||
PIOS_USB_BOARD_DATA_Init();
|
||||
|
||||
|
||||
/* Flags to determine if various USB interfaces are advertised */
|
||||
bool usb_hid_present = false;
|
||||
bool usb_cdc_present = false;
|
||||
|
||||
#if defined(PIOS_INCLUDE_USB_CDC)
|
||||
if (PIOS_USB_DESC_HID_CDC_Init()) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
usb_hid_present = true;
|
||||
usb_cdc_present = true;
|
||||
#else
|
||||
if (PIOS_USB_DESC_HID_ONLY_Init()) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
usb_hid_present = true;
|
||||
#endif
|
||||
|
||||
uint32_t pios_usb_id;
|
||||
|
||||
switch (bdinfo->board_rev) {
|
||||
case BOARD_REVISION_CC:
|
||||
PIOS_USB_Init(&pios_usb_id, &pios_usb_main_cfg_cc);
|
||||
break;
|
||||
case BOARD_REVISION_CC3D:
|
||||
PIOS_USB_Init(&pios_usb_id, &pios_usb_main_cfg_cc3d);
|
||||
break;
|
||||
default:
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
#if defined(PIOS_INCLUDE_USB_CDC)
|
||||
|
||||
uint8_t hwsettings_usb_vcpport;
|
||||
/* Configure the USB VCP port */
|
||||
HwSettingsUSB_VCPPortGet(&hwsettings_usb_vcpport);
|
||||
|
||||
if (!usb_cdc_present) {
|
||||
/* Force VCP port function to disabled if we haven't advertised VCP in our USB descriptor */
|
||||
hwsettings_usb_vcpport = HWSETTINGS_USB_VCPPORT_DISABLED;
|
||||
}
|
||||
|
||||
switch (hwsettings_usb_vcpport) {
|
||||
case HWSETTINGS_USB_VCPPORT_DISABLED:
|
||||
break;
|
||||
case HWSETTINGS_USB_VCPPORT_USBTELEMETRY:
|
||||
#if defined(PIOS_INCLUDE_COM)
|
||||
{
|
||||
uint32_t pios_usb_cdc_id;
|
||||
if (PIOS_USB_CDC_Init(&pios_usb_cdc_id, &pios_usb_cdc_cfg, pios_usb_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
uint8_t *rx_buffer = (uint8_t *)pios_malloc(PIOS_COM_TELEM_USB_RX_BUF_LEN);
|
||||
uint8_t *tx_buffer = (uint8_t *)pios_malloc(PIOS_COM_TELEM_USB_TX_BUF_LEN);
|
||||
PIOS_Assert(rx_buffer);
|
||||
PIOS_Assert(tx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_telem_usb_id, &pios_usb_cdc_com_driver, pios_usb_cdc_id,
|
||||
rx_buffer, PIOS_COM_TELEM_USB_RX_BUF_LEN,
|
||||
tx_buffer, PIOS_COM_TELEM_USB_TX_BUF_LEN)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_COM */
|
||||
break;
|
||||
case HWSETTINGS_USB_VCPPORT_COMBRIDGE:
|
||||
#if defined(PIOS_INCLUDE_COM)
|
||||
{
|
||||
uint32_t pios_usb_cdc_id;
|
||||
if (PIOS_USB_CDC_Init(&pios_usb_cdc_id, &pios_usb_cdc_cfg, pios_usb_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
uint8_t *rx_buffer = (uint8_t *)pios_malloc(PIOS_COM_BRIDGE_RX_BUF_LEN);
|
||||
uint8_t *tx_buffer = (uint8_t *)pios_malloc(PIOS_COM_BRIDGE_TX_BUF_LEN);
|
||||
PIOS_Assert(rx_buffer);
|
||||
PIOS_Assert(tx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_vcp_id, &pios_usb_cdc_com_driver, pios_usb_cdc_id,
|
||||
rx_buffer, PIOS_COM_BRIDGE_RX_BUF_LEN,
|
||||
tx_buffer, PIOS_COM_BRIDGE_TX_BUF_LEN)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_COM */
|
||||
break;
|
||||
case HWSETTINGS_USB_VCPPORT_DEBUGCONSOLE:
|
||||
#if defined(PIOS_INCLUDE_COM)
|
||||
#if defined(PIOS_INCLUDE_DEBUG_CONSOLE)
|
||||
{
|
||||
uint32_t pios_usb_cdc_id;
|
||||
if (PIOS_USB_CDC_Init(&pios_usb_cdc_id, &pios_usb_cdc_cfg, pios_usb_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
uint8_t *tx_buffer = (uint8_t *)pios_malloc(PIOS_COM_DEBUGCONSOLE_TX_BUF_LEN);
|
||||
PIOS_Assert(tx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_debug_id, &pios_usb_cdc_com_driver, pios_usb_cdc_id,
|
||||
NULL, 0,
|
||||
tx_buffer, PIOS_COM_DEBUGCONSOLE_TX_BUF_LEN)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_DEBUG_CONSOLE */
|
||||
#endif /* PIOS_INCLUDE_COM */
|
||||
break;
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_USB_CDC */
|
||||
|
||||
#if defined(PIOS_INCLUDE_USB_HID)
|
||||
/* Configure the usb HID port */
|
||||
uint8_t hwsettings_usb_hidport;
|
||||
HwSettingsUSB_HIDPortGet(&hwsettings_usb_hidport);
|
||||
|
||||
if (!usb_hid_present) {
|
||||
/* Force HID port function to disabled if we haven't advertised HID in our USB descriptor */
|
||||
hwsettings_usb_hidport = HWSETTINGS_USB_HIDPORT_DISABLED;
|
||||
}
|
||||
|
||||
switch (hwsettings_usb_hidport) {
|
||||
case HWSETTINGS_USB_HIDPORT_DISABLED:
|
||||
break;
|
||||
case HWSETTINGS_USB_HIDPORT_USBTELEMETRY:
|
||||
#if defined(PIOS_INCLUDE_COM)
|
||||
{
|
||||
uint32_t pios_usb_hid_id;
|
||||
if (PIOS_USB_HID_Init(&pios_usb_hid_id, &pios_usb_hid_cfg, pios_usb_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
uint8_t *rx_buffer = (uint8_t *)pios_malloc(PIOS_COM_TELEM_USB_RX_BUF_LEN);
|
||||
uint8_t *tx_buffer = (uint8_t *)pios_malloc(PIOS_COM_TELEM_USB_TX_BUF_LEN);
|
||||
PIOS_Assert(rx_buffer);
|
||||
PIOS_Assert(tx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_telem_usb_id, &pios_usb_hid_com_driver, pios_usb_hid_id,
|
||||
rx_buffer, PIOS_COM_TELEM_USB_RX_BUF_LEN,
|
||||
tx_buffer, PIOS_COM_TELEM_USB_TX_BUF_LEN)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_COM */
|
||||
break;
|
||||
case HWSETTINGS_USB_HIDPORT_RCTRANSMITTER:
|
||||
#if defined(PIOS_INCLUDE_USB_RCTX)
|
||||
{
|
||||
if (PIOS_USB_RCTX_Init(&pios_usb_rctx_id, &pios_usb_rctx_cfg, pios_usb_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_USB_RCTX */
|
||||
break;
|
||||
}
|
||||
|
||||
#endif /* PIOS_INCLUDE_USB_HID */
|
||||
|
||||
#endif /* PIOS_INCLUDE_USB */
|
||||
|
||||
/* Configure the main IO port */
|
||||
uint8_t hwsettings_DSMxBind;
|
||||
HwSettingsDSMxBindGet(&hwsettings_DSMxBind);
|
||||
uint8_t hwsettings_cc_mainport;
|
||||
HwSettingsCC_MainPortGet(&hwsettings_cc_mainport);
|
||||
|
||||
switch (hwsettings_cc_mainport) {
|
||||
case HWSETTINGS_CC_MAINPORT_DISABLED:
|
||||
break;
|
||||
case HWSETTINGS_CC_MAINPORT_TELEMETRY:
|
||||
#if defined(PIOS_INCLUDE_TELEMETRY_RF)
|
||||
{
|
||||
uint32_t pios_usart_generic_id;
|
||||
if (PIOS_USART_Init(&pios_usart_generic_id, &pios_usart_generic_main_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint8_t *rx_buffer = (uint8_t *)pios_malloc(PIOS_COM_TELEM_RF_RX_BUF_LEN);
|
||||
uint8_t *tx_buffer = (uint8_t *)pios_malloc(PIOS_COM_TELEM_RF_TX_BUF_LEN);
|
||||
PIOS_Assert(rx_buffer);
|
||||
PIOS_Assert(tx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_telem_rf_id, &pios_usart_com_driver, pios_usart_generic_id,
|
||||
rx_buffer, PIOS_COM_TELEM_RF_RX_BUF_LEN,
|
||||
tx_buffer, PIOS_COM_TELEM_RF_TX_BUF_LEN)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_TELEMETRY_RF */
|
||||
break;
|
||||
case HWSETTINGS_CC_MAINPORT_SBUS:
|
||||
#if defined(PIOS_INCLUDE_SBUS)
|
||||
{
|
||||
uint32_t pios_usart_sbus_id;
|
||||
if (PIOS_USART_Init(&pios_usart_sbus_id, &pios_usart_sbus_main_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint32_t pios_sbus_id;
|
||||
if (PIOS_SBus_Init(&pios_sbus_id, &pios_sbus_cfg, &pios_usart_com_driver, pios_usart_sbus_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint32_t pios_sbus_rcvr_id;
|
||||
if (PIOS_RCVR_Init(&pios_sbus_rcvr_id, &pios_sbus_rcvr_driver, pios_sbus_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
pios_rcvr_group_map[MANUALCONTROLSETTINGS_CHANNELGROUPS_SBUS] = pios_sbus_rcvr_id;
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_SBUS */
|
||||
break;
|
||||
case HWSETTINGS_CC_MAINPORT_GPS:
|
||||
#if defined(PIOS_INCLUDE_GPS)
|
||||
{
|
||||
uint32_t pios_usart_generic_id;
|
||||
if (PIOS_USART_Init(&pios_usart_generic_id, &pios_usart_generic_main_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint8_t *rx_buffer = (uint8_t *)pios_malloc(PIOS_COM_GPS_RX_BUF_LEN);
|
||||
PIOS_Assert(rx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_gps_id, &pios_usart_com_driver, pios_usart_generic_id,
|
||||
rx_buffer, PIOS_COM_GPS_RX_BUF_LEN,
|
||||
NULL, 0)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_GPS */
|
||||
break;
|
||||
case HWSETTINGS_CC_MAINPORT_DSM:
|
||||
#if defined(PIOS_INCLUDE_DSM)
|
||||
{
|
||||
uint32_t pios_usart_dsm_id;
|
||||
if (PIOS_USART_Init(&pios_usart_dsm_id, &pios_usart_dsm_main_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint32_t pios_dsm_id;
|
||||
if (PIOS_DSM_Init(&pios_dsm_id,
|
||||
&pios_dsm_main_cfg,
|
||||
&pios_usart_com_driver,
|
||||
pios_usart_dsm_id,
|
||||
0)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint32_t pios_dsm_rcvr_id;
|
||||
if (PIOS_RCVR_Init(&pios_dsm_rcvr_id, &pios_dsm_rcvr_driver, pios_dsm_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
pios_rcvr_group_map[MANUALCONTROLSETTINGS_CHANNELGROUPS_DSMMAINPORT] = pios_dsm_rcvr_id;
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_DSM */
|
||||
break;
|
||||
case HWSETTINGS_CC_MAINPORT_DEBUGCONSOLE:
|
||||
#if defined(PIOS_INCLUDE_COM)
|
||||
#if defined(PIOS_INCLUDE_DEBUG_CONSOLE)
|
||||
{
|
||||
uint32_t pios_usart_generic_id;
|
||||
if (PIOS_USART_Init(&pios_usart_generic_id, &pios_usart_generic_main_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint8_t *tx_buffer = (uint8_t *)pios_malloc(PIOS_COM_DEBUGCONSOLE_TX_BUF_LEN);
|
||||
PIOS_Assert(tx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_debug_id, &pios_usart_com_driver, pios_usart_generic_id,
|
||||
NULL, 0,
|
||||
tx_buffer, PIOS_COM_DEBUGCONSOLE_TX_BUF_LEN)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_DEBUG_CONSOLE */
|
||||
#endif /* PIOS_INCLUDE_COM */
|
||||
break;
|
||||
case HWSETTINGS_CC_MAINPORT_COMBRIDGE:
|
||||
{
|
||||
uint32_t pios_usart_generic_id;
|
||||
if (PIOS_USART_Init(&pios_usart_generic_id, &pios_usart_generic_main_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint8_t *rx_buffer = (uint8_t *)pios_malloc(PIOS_COM_BRIDGE_RX_BUF_LEN);
|
||||
PIOS_Assert(rx_buffer);
|
||||
uint8_t *tx_buffer = (uint8_t *)pios_malloc(PIOS_COM_BRIDGE_TX_BUF_LEN);
|
||||
PIOS_Assert(tx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_bridge_id, &pios_usart_com_driver, pios_usart_generic_id,
|
||||
rx_buffer, PIOS_COM_BRIDGE_RX_BUF_LEN,
|
||||
tx_buffer, PIOS_COM_BRIDGE_TX_BUF_LEN)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case HWSETTINGS_CC_MAINPORT_OSDHK:
|
||||
{
|
||||
uint32_t pios_usart_hkosd_id;
|
||||
if (PIOS_USART_Init(&pios_usart_hkosd_id, &pios_usart_hkosd_main_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint8_t *tx_buffer = (uint8_t *)pios_malloc(PIOS_COM_HKOSD_TX_BUF_LEN);
|
||||
PIOS_Assert(tx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_hkosd_id, &pios_usart_com_driver, pios_usart_hkosd_id,
|
||||
NULL, 0,
|
||||
tx_buffer, PIOS_COM_HKOSD_TX_BUF_LEN)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
/* Configure the flexi port */
|
||||
uint8_t hwsettings_cc_flexiport;
|
||||
HwSettingsCC_FlexiPortGet(&hwsettings_cc_flexiport);
|
||||
|
||||
switch (hwsettings_cc_flexiport) {
|
||||
case HWSETTINGS_CC_FLEXIPORT_DISABLED:
|
||||
break;
|
||||
case HWSETTINGS_CC_FLEXIPORT_TELEMETRY:
|
||||
#if defined(PIOS_INCLUDE_TELEMETRY_RF)
|
||||
{
|
||||
uint32_t pios_usart_generic_id;
|
||||
if (PIOS_USART_Init(&pios_usart_generic_id, &pios_usart_generic_flexi_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
uint8_t *rx_buffer = (uint8_t *)pios_malloc(PIOS_COM_TELEM_RF_RX_BUF_LEN);
|
||||
uint8_t *tx_buffer = (uint8_t *)pios_malloc(PIOS_COM_TELEM_RF_TX_BUF_LEN);
|
||||
PIOS_Assert(rx_buffer);
|
||||
PIOS_Assert(tx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_telem_rf_id, &pios_usart_com_driver, pios_usart_generic_id,
|
||||
rx_buffer, PIOS_COM_TELEM_RF_RX_BUF_LEN,
|
||||
tx_buffer, PIOS_COM_TELEM_RF_TX_BUF_LEN)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_TELEMETRY_RF */
|
||||
break;
|
||||
case HWSETTINGS_CC_FLEXIPORT_COMBRIDGE:
|
||||
{
|
||||
uint32_t pios_usart_generic_id;
|
||||
if (PIOS_USART_Init(&pios_usart_generic_id, &pios_usart_generic_flexi_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint8_t *rx_buffer = (uint8_t *)pios_malloc(PIOS_COM_BRIDGE_RX_BUF_LEN);
|
||||
uint8_t *tx_buffer = (uint8_t *)pios_malloc(PIOS_COM_BRIDGE_TX_BUF_LEN);
|
||||
PIOS_Assert(rx_buffer);
|
||||
PIOS_Assert(tx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_bridge_id, &pios_usart_com_driver, pios_usart_generic_id,
|
||||
rx_buffer, PIOS_COM_BRIDGE_RX_BUF_LEN,
|
||||
tx_buffer, PIOS_COM_BRIDGE_TX_BUF_LEN)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case HWSETTINGS_CC_FLEXIPORT_GPS:
|
||||
#if defined(PIOS_INCLUDE_GPS)
|
||||
{
|
||||
uint32_t pios_usart_generic_id;
|
||||
if (PIOS_USART_Init(&pios_usart_generic_id, &pios_usart_generic_flexi_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
uint8_t *rx_buffer = (uint8_t *)pios_malloc(PIOS_COM_GPS_RX_BUF_LEN);
|
||||
PIOS_Assert(rx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_gps_id, &pios_usart_com_driver, pios_usart_generic_id,
|
||||
rx_buffer, PIOS_COM_GPS_RX_BUF_LEN,
|
||||
NULL, 0)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_GPS */
|
||||
break;
|
||||
case HWSETTINGS_CC_FLEXIPORT_PPM:
|
||||
#if defined(PIOS_INCLUDE_PPM_FLEXI)
|
||||
{
|
||||
uint32_t pios_ppm_id;
|
||||
PIOS_PPM_Init(&pios_ppm_id, &pios_ppm_flexi_cfg);
|
||||
|
||||
uint32_t pios_ppm_rcvr_id;
|
||||
if (PIOS_RCVR_Init(&pios_ppm_rcvr_id, &pios_ppm_rcvr_driver, pios_ppm_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
pios_rcvr_group_map[MANUALCONTROLSETTINGS_CHANNELGROUPS_PPM] = pios_ppm_rcvr_id;
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_PPM_FLEXI */
|
||||
break;
|
||||
case HWSETTINGS_CC_FLEXIPORT_DSM:
|
||||
#if defined(PIOS_INCLUDE_DSM)
|
||||
{
|
||||
uint32_t pios_usart_dsm_id;
|
||||
if (PIOS_USART_Init(&pios_usart_dsm_id, &pios_usart_dsm_flexi_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint32_t pios_dsm_id;
|
||||
if (PIOS_DSM_Init(&pios_dsm_id,
|
||||
&pios_dsm_flexi_cfg,
|
||||
&pios_usart_com_driver,
|
||||
pios_usart_dsm_id,
|
||||
hwsettings_DSMxBind)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint32_t pios_dsm_rcvr_id;
|
||||
if (PIOS_RCVR_Init(&pios_dsm_rcvr_id, &pios_dsm_rcvr_driver, pios_dsm_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
pios_rcvr_group_map[MANUALCONTROLSETTINGS_CHANNELGROUPS_DSMFLEXIPORT] = pios_dsm_rcvr_id;
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_DSM */
|
||||
break;
|
||||
case HWSETTINGS_CC_FLEXIPORT_DEBUGCONSOLE:
|
||||
#if defined(PIOS_INCLUDE_COM)
|
||||
#if defined(PIOS_INCLUDE_DEBUG_CONSOLE)
|
||||
{
|
||||
uint32_t pios_usart_generic_id;
|
||||
if (PIOS_USART_Init(&pios_usart_generic_id, &pios_usart_generic_flexi_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint8_t *tx_buffer = (uint8_t *)pios_malloc(PIOS_COM_DEBUGCONSOLE_TX_BUF_LEN);
|
||||
PIOS_Assert(tx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_debug_id, &pios_usart_com_driver, pios_usart_generic_id,
|
||||
NULL, 0,
|
||||
tx_buffer, PIOS_COM_DEBUGCONSOLE_TX_BUF_LEN)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_DEBUG_CONSOLE */
|
||||
#endif /* PIOS_INCLUDE_COM */
|
||||
break;
|
||||
case HWSETTINGS_CC_FLEXIPORT_I2C:
|
||||
#if defined(PIOS_INCLUDE_I2C)
|
||||
{
|
||||
if (PIOS_I2C_Init(&pios_i2c_flexi_adapter_id, &pios_i2c_flexi_adapter_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_I2C */
|
||||
break;
|
||||
case HWSETTINGS_CC_FLEXIPORT_OSDHK:
|
||||
{
|
||||
uint32_t pios_usart_hkosd_id;
|
||||
if (PIOS_USART_Init(&pios_usart_hkosd_id, &pios_usart_hkosd_flexi_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
uint8_t *tx_buffer = (uint8_t *)pios_malloc(PIOS_COM_HKOSD_TX_BUF_LEN);
|
||||
PIOS_Assert(tx_buffer);
|
||||
if (PIOS_COM_Init(&pios_com_hkosd_id, &pios_usart_com_driver, pios_usart_hkosd_id,
|
||||
NULL, 0,
|
||||
tx_buffer, PIOS_COM_HKOSD_TX_BUF_LEN)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
/* Configure the rcvr port */
|
||||
uint8_t hwsettings_rcvrport;
|
||||
HwSettingsCC_RcvrPortGet(&hwsettings_rcvrport);
|
||||
|
||||
switch ((HwSettingsCC_RcvrPortOptions)hwsettings_rcvrport) {
|
||||
case HWSETTINGS_CC_RCVRPORT_DISABLEDONESHOT:
|
||||
#if defined(PIOS_INCLUDE_HCSR04)
|
||||
{
|
||||
uint32_t pios_hcsr04_id;
|
||||
PIOS_HCSR04_Init(&pios_hcsr04_id, &pios_hcsr04_cfg);
|
||||
}
|
||||
#endif
|
||||
break;
|
||||
case HWSETTINGS_CC_RCVRPORT_PWMNOONESHOT:
|
||||
#if defined(PIOS_INCLUDE_PWM)
|
||||
{
|
||||
uint32_t pios_pwm_id;
|
||||
PIOS_PWM_Init(&pios_pwm_id, &pios_pwm_cfg);
|
||||
|
||||
uint32_t pios_pwm_rcvr_id;
|
||||
if (PIOS_RCVR_Init(&pios_pwm_rcvr_id, &pios_pwm_rcvr_driver, pios_pwm_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
pios_rcvr_group_map[MANUALCONTROLSETTINGS_CHANNELGROUPS_PWM] = pios_pwm_rcvr_id;
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_PWM */
|
||||
break;
|
||||
case HWSETTINGS_CC_RCVRPORT_PPMNOONESHOT:
|
||||
case HWSETTINGS_CC_RCVRPORT_PPMOUTPUTSNOONESHOT:
|
||||
case HWSETTINGS_CC_RCVRPORT_PPM_PIN8ONESHOT:
|
||||
#if defined(PIOS_INCLUDE_PPM)
|
||||
{
|
||||
uint32_t pios_ppm_id;
|
||||
if (hwsettings_rcvrport == HWSETTINGS_CC_RCVRPORT_PPM_PIN8ONESHOT) {
|
||||
PIOS_PPM_Init(&pios_ppm_id, &pios_ppm_pin8_cfg);
|
||||
} else {
|
||||
PIOS_PPM_Init(&pios_ppm_id, &pios_ppm_cfg);
|
||||
}
|
||||
|
||||
uint32_t pios_ppm_rcvr_id;
|
||||
if (PIOS_RCVR_Init(&pios_ppm_rcvr_id, &pios_ppm_rcvr_driver, pios_ppm_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
pios_rcvr_group_map[MANUALCONTROLSETTINGS_CHANNELGROUPS_PPM] = pios_ppm_rcvr_id;
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_PPM */
|
||||
break;
|
||||
case HWSETTINGS_CC_RCVRPORT_PPMPWMNOONESHOT:
|
||||
/* This is a combination of PPM and PWM inputs */
|
||||
#if defined(PIOS_INCLUDE_PPM)
|
||||
{
|
||||
uint32_t pios_ppm_id;
|
||||
PIOS_PPM_Init(&pios_ppm_id, &pios_ppm_cfg);
|
||||
|
||||
uint32_t pios_ppm_rcvr_id;
|
||||
if (PIOS_RCVR_Init(&pios_ppm_rcvr_id, &pios_ppm_rcvr_driver, pios_ppm_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
pios_rcvr_group_map[MANUALCONTROLSETTINGS_CHANNELGROUPS_PPM] = pios_ppm_rcvr_id;
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_PPM */
|
||||
#if defined(PIOS_INCLUDE_PWM)
|
||||
{
|
||||
uint32_t pios_pwm_id;
|
||||
PIOS_PWM_Init(&pios_pwm_id, &pios_pwm_with_ppm_cfg);
|
||||
|
||||
uint32_t pios_pwm_rcvr_id;
|
||||
if (PIOS_RCVR_Init(&pios_pwm_rcvr_id, &pios_pwm_rcvr_driver, pios_pwm_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
pios_rcvr_group_map[MANUALCONTROLSETTINGS_CHANNELGROUPS_PWM] = pios_pwm_rcvr_id;
|
||||
}
|
||||
#endif /* PIOS_INCLUDE_PWM */
|
||||
break;
|
||||
case HWSETTINGS_CC_RCVRPORT_OUTPUTSONESHOT:
|
||||
break;
|
||||
}
|
||||
|
||||
#if defined(PIOS_INCLUDE_GCSRCVR)
|
||||
GCSReceiverInitialize();
|
||||
uint32_t pios_gcsrcvr_id;
|
||||
PIOS_GCSRCVR_Init(&pios_gcsrcvr_id);
|
||||
uint32_t pios_gcsrcvr_rcvr_id;
|
||||
if (PIOS_RCVR_Init(&pios_gcsrcvr_rcvr_id, &pios_gcsrcvr_rcvr_driver, pios_gcsrcvr_id)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
pios_rcvr_group_map[MANUALCONTROLSETTINGS_CHANNELGROUPS_GCS] = pios_gcsrcvr_rcvr_id;
|
||||
#endif /* PIOS_INCLUDE_GCSRCVR */
|
||||
|
||||
/* Remap AFIO pin for PB4 (Servo 5 Out)*/
|
||||
GPIO_PinRemapConfig(GPIO_Remap_SWJ_NoJTRST, ENABLE);
|
||||
|
||||
#ifndef PIOS_ENABLE_DEBUG_PINS
|
||||
switch ((HwSettingsCC_RcvrPortOptions)hwsettings_rcvrport) {
|
||||
case HWSETTINGS_CC_RCVRPORT_DISABLEDONESHOT:
|
||||
case HWSETTINGS_CC_RCVRPORT_PWMNOONESHOT:
|
||||
case HWSETTINGS_CC_RCVRPORT_PPMNOONESHOT:
|
||||
case HWSETTINGS_CC_RCVRPORT_PPMPWMNOONESHOT:
|
||||
case HWSETTINGS_CC_RCVRPORT_PPM_PIN8ONESHOT:
|
||||
PIOS_Servo_Init(&pios_servo_cfg);
|
||||
break;
|
||||
case HWSETTINGS_CC_RCVRPORT_PPMOUTPUTSNOONESHOT:
|
||||
case HWSETTINGS_CC_RCVRPORT_OUTPUTSONESHOT:
|
||||
PIOS_Servo_Init(&pios_servo_rcvr_cfg);
|
||||
break;
|
||||
}
|
||||
#else
|
||||
PIOS_DEBUG_Init(pios_tim_servoport_all_pins, NELEMENTS(pios_tim_servoport_all_pins));
|
||||
#endif /* PIOS_ENABLE_DEBUG_PINS */
|
||||
|
||||
switch (bdinfo->board_rev) {
|
||||
case BOARD_REVISION_CC:
|
||||
// Revision 1 with invensense gyros, start the ADC
|
||||
#if defined(PIOS_INCLUDE_ADC)
|
||||
PIOS_ADC_Init(&pios_adc_cfg);
|
||||
#endif
|
||||
#if defined(PIOS_INCLUDE_ADXL345)
|
||||
PIOS_ADXL345_Init(pios_spi_flash_accel_id, 0);
|
||||
#endif
|
||||
break;
|
||||
case BOARD_REVISION_CC3D:
|
||||
// Revision 2 with MPU6000 gyros, start a SPI interface and connect to it
|
||||
GPIO_PinRemapConfig(GPIO_Remap_SWJ_JTAGDisable, ENABLE);
|
||||
|
||||
#if defined(PIOS_INCLUDE_MPU6000)
|
||||
// Set up the SPI interface to the serial flash
|
||||
if (PIOS_SPI_Init(&pios_spi_gyro_id, &pios_spi_gyro_cfg)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
PIOS_MPU6000_Init(pios_spi_gyro_id, 0, &pios_mpu6000_cfg);
|
||||
PIOS_MPU6000_CONFIG_Configure();
|
||||
init_test = !PIOS_MPU6000_Driver.test(0);
|
||||
#endif /* PIOS_INCLUDE_MPU6000 */
|
||||
|
||||
break;
|
||||
default:
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
/* Make sure we have at least one telemetry link configured or else fail initialization */
|
||||
PIOS_Assert(pios_com_telem_rf_id || pios_com_telem_usb_id);
|
||||
|
||||
// Attach the board config check hook
|
||||
SANITYCHECK_AttachHook(&CopterControlConfigHook);
|
||||
// trigger a config check if actuatorsettings are updated
|
||||
ActuatorSettingsInitialize();
|
||||
ActuatorSettingsConnectCallback(ActuatorSettingsUpdatedCb);
|
||||
}
|
||||
|
||||
SystemAlarmsExtendedAlarmStatusOptions CopterControlConfigHook()
|
||||
{
|
||||
// inhibit usage of oneshot for non supported RECEIVER port modes
|
||||
uint8_t recmode;
|
||||
|
||||
HwSettingsCC_RcvrPortGet(&recmode);
|
||||
uint8_t flexiMode;
|
||||
uint8_t modes[ACTUATORSETTINGS_BANKMODE_NUMELEM];
|
||||
ActuatorSettingsBankModeGet(modes);
|
||||
HwSettingsCC_FlexiPortGet(&flexiMode);
|
||||
|
||||
switch ((HwSettingsCC_RcvrPortOptions)recmode) {
|
||||
// Those modes allows oneshot usage
|
||||
case HWSETTINGS_CC_RCVRPORT_DISABLEDONESHOT:
|
||||
case HWSETTINGS_CC_RCVRPORT_OUTPUTSONESHOT:
|
||||
case HWSETTINGS_CC_RCVRPORT_PPM_PIN8ONESHOT:
|
||||
if ((recmode == HWSETTINGS_CC_RCVRPORT_PPM_PIN8ONESHOT ||
|
||||
flexiMode == HWSETTINGS_CC_FLEXIPORT_PPM) &&
|
||||
(modes[3] == ACTUATORSETTINGS_BANKMODE_PWMSYNC ||
|
||||
modes[3] == ACTUATORSETTINGS_BANKMODE_ONESHOT125)) {
|
||||
return SYSTEMALARMS_EXTENDEDALARMSTATUS_UNSUPPORTEDCONFIG_ONESHOT;
|
||||
} else {
|
||||
return SYSTEMALARMS_EXTENDEDALARMSTATUS_NONE;
|
||||
}
|
||||
|
||||
// inhibit oneshot for the following modes
|
||||
case HWSETTINGS_CC_RCVRPORT_PPMNOONESHOT:
|
||||
case HWSETTINGS_CC_RCVRPORT_PPMOUTPUTSNOONESHOT:
|
||||
case HWSETTINGS_CC_RCVRPORT_PPMPWMNOONESHOT:
|
||||
case HWSETTINGS_CC_RCVRPORT_PWMNOONESHOT:
|
||||
for (uint8_t i = 0; i < ACTUATORSETTINGS_BANKMODE_NUMELEM; i++) {
|
||||
if (modes[i] == ACTUATORSETTINGS_BANKMODE_PWMSYNC ||
|
||||
modes[i] == ACTUATORSETTINGS_BANKMODE_ONESHOT125) {
|
||||
return SYSTEMALARMS_EXTENDEDALARMSTATUS_UNSUPPORTEDCONFIG_ONESHOT;;
|
||||
}
|
||||
|
||||
return SYSTEMALARMS_EXTENDEDALARMSTATUS_NONE;
|
||||
}
|
||||
}
|
||||
return SYSTEMALARMS_EXTENDEDALARMSTATUS_UNSUPPORTEDCONFIG_ONESHOT;;
|
||||
}
|
||||
// trigger a configuration check if ActuatorSettings are changed.
|
||||
void ActuatorSettingsUpdatedCb(__attribute__((unused)) UAVObjEvent *ev)
|
||||
{
|
||||
configuration_check();
|
||||
}
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
@ -1,145 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
*
|
||||
* @file pios_board.c
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief Defines board specific static initializers for hardware for the OpenPilot board.
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "inc/openpilot.h"
|
||||
#include <pios_udp_priv.h>
|
||||
#include <pios_com_priv.h>
|
||||
#include <uavobjectsinit.h>
|
||||
|
||||
/**
|
||||
* PIOS_Board_Init()
|
||||
* initializes all the core systems on this specific hardware
|
||||
* called from System/openpilot.c
|
||||
*/
|
||||
void PIOS_Board_Init(void)
|
||||
{
|
||||
/* Delay system */
|
||||
PIOS_DELAY_Init();
|
||||
|
||||
/* Initialize the delayed callback library */
|
||||
PIOS_CALLBACKSCHEDULER_Initialize();
|
||||
|
||||
/* Initialize UAVObject libraries */
|
||||
EventDispatcherInitialize();
|
||||
UAVObjInitialize();
|
||||
|
||||
/* Initialize the alarms library */
|
||||
AlarmsInitialize();
|
||||
|
||||
/* Initialize the task monitor */
|
||||
if (PIOS_TASK_MONITOR_Initialize(TASKINFO_RUNNING_NUMELEM)) {
|
||||
PIOS_Assert(0);
|
||||
}
|
||||
|
||||
/* Initialize the PiOS library */
|
||||
PIOS_COM_Init();
|
||||
}
|
||||
|
||||
|
||||
const struct pios_udp_cfg pios_udp0_cfg = {
|
||||
.ip = "0.0.0.0",
|
||||
.port = 9000,
|
||||
};
|
||||
const struct pios_udp_cfg pios_udp1_cfg = {
|
||||
.ip = "0.0.0.0",
|
||||
.port = 9001,
|
||||
};
|
||||
const struct pios_udp_cfg pios_udp2_cfg = {
|
||||
.ip = "0.0.0.0",
|
||||
.port = 9002,
|
||||
};
|
||||
|
||||
#ifdef PIOS_COM_AUX
|
||||
/*
|
||||
* AUX USART
|
||||
*/
|
||||
const struct pios_udp_cfg pios_udp3_cfg = {
|
||||
.ip = "0.0.0.0",
|
||||
.port = 9003,
|
||||
};
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Board specific number of devices.
|
||||
*/
|
||||
struct pios_udp_dev pios_udp_devs[] = {
|
||||
#define PIOS_UDP_TELEM 0
|
||||
{
|
||||
.cfg = &pios_udp0_cfg,
|
||||
},
|
||||
#define PIOS_UDP_GPS 1
|
||||
{
|
||||
.cfg = &pios_udp1_cfg,
|
||||
},
|
||||
#define PIOS_UDP_LOCAL 2
|
||||
{
|
||||
.cfg = &pios_udp2_cfg,
|
||||
},
|
||||
#ifdef PIOS_COM_AUX
|
||||
#define PIOS_UDP_AUX 3
|
||||
{
|
||||
.cfg = &pios_udp3_cfg,
|
||||
},
|
||||
#endif
|
||||
};
|
||||
|
||||
uint8_t pios_udp_num_devices = NELEMENTS(pios_udp_devs);
|
||||
|
||||
/*
|
||||
* COM devices
|
||||
*/
|
||||
|
||||
/*
|
||||
* Board specific number of devices.
|
||||
*/
|
||||
extern const struct pios_com_driver pios_serial_com_driver;
|
||||
extern const struct pios_com_driver pios_udp_com_driver;
|
||||
|
||||
struct pios_com_dev pios_com_devs[] = {
|
||||
{
|
||||
.id = PIOS_UDP_TELEM,
|
||||
.driver = &pios_udp_com_driver,
|
||||
},
|
||||
{
|
||||
.id = PIOS_UDP_GPS,
|
||||
.driver = &pios_udp_com_driver,
|
||||
},
|
||||
{
|
||||
.id = PIOS_UDP_LOCAL,
|
||||
.driver = &pios_udp_com_driver,
|
||||
},
|
||||
#ifdef PIOS_COM_AUX
|
||||
{
|
||||
.id = PIOS_UDP_AUX,
|
||||
.driver = &pios_udp_com_driver,
|
||||
},
|
||||
#endif
|
||||
};
|
||||
|
||||
const uint8_t pios_com_num_devices = NELEMENTS(pios_com_devs);
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
@ -1,279 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
*
|
||||
* @file pios_board.h
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief Defines board hardware for the OpenPilot Version 1.1 hardware.
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef PIOS_BOARD_H
|
||||
#define PIOS_BOARD_H
|
||||
// ------------------------
|
||||
// Timers and Channels Used
|
||||
// ------------------------
|
||||
/*
|
||||
Timer | Channel 1 | Channel 2 | Channel 3 | Channel 4
|
||||
------+-----------+-----------+-----------+----------
|
||||
TIM1 | Servo 4 | | |
|
||||
TIM2 | RC In 5 | RC In 6 | Servo 6 |
|
||||
TIM3 | Servo 5 | RC In 2 | RC In 3 | RC In 4
|
||||
TIM4 | RC In 1 | Servo 3 | Servo 2 | Servo 1
|
||||
------+-----------+-----------+-----------+----------
|
||||
*/
|
||||
|
||||
// ------------------------
|
||||
// DMA Channels Used
|
||||
// ------------------------
|
||||
/* Channel 1 - */
|
||||
/* Channel 2 - */
|
||||
/* Channel 3 - */
|
||||
/* Channel 4 - */
|
||||
/* Channel 5 - */
|
||||
/* Channel 6 - */
|
||||
/* Channel 7 - */
|
||||
/* Channel 8 - */
|
||||
/* Channel 9 - */
|
||||
/* Channel 10 - */
|
||||
/* Channel 11 - */
|
||||
/* Channel 12 - */
|
||||
|
||||
// ------------------------
|
||||
// BOOTLOADER_SETTINGS
|
||||
// ------------------------
|
||||
#define BOARD_READABLE TRUE
|
||||
#define BOARD_WRITABLE TRUE
|
||||
#define MAX_DEL_RETRYS 3
|
||||
|
||||
// ------------------------
|
||||
// WATCHDOG_SETTINGS
|
||||
// ------------------------
|
||||
#define PIOS_WATCHDOG_TIMEOUT 250
|
||||
#define PIOS_WDG_REGISTER BKP_DR4
|
||||
#define PIOS_WDG_ACTUATOR 0x0001
|
||||
#define PIOS_WDG_STABILIZATION 0x0002
|
||||
#define PIOS_WDG_ATTITUDE 0x0004
|
||||
#define PIOS_WDG_MANUAL 0x0008
|
||||
#define PIOS_WDG_AUTOTUNE 0x0010
|
||||
|
||||
// ------------------------
|
||||
// TELEMETRY
|
||||
// ------------------------
|
||||
#define TELEM_QUEUE_SIZE 10
|
||||
|
||||
// ------------------------
|
||||
// PIOS_LED
|
||||
// ------------------------
|
||||
#define PIOS_LED_HEARTBEAT 0
|
||||
|
||||
// -------------------------
|
||||
// System Settings
|
||||
// -------------------------
|
||||
#define PIOS_MASTER_CLOCK 72000000
|
||||
#define PIOS_PERIPHERAL_CLOCK (PIOS_MASTER_CLOCK / 2)
|
||||
|
||||
// -------------------------
|
||||
// Interrupt Priorities
|
||||
// -------------------------
|
||||
#define PIOS_IRQ_PRIO_LOW 12 // lower than RTOS
|
||||
#define PIOS_IRQ_PRIO_MID 8 // higher than RTOS
|
||||
#define PIOS_IRQ_PRIO_HIGH 5 // for SPI, ADC, I2C etc...
|
||||
#define PIOS_IRQ_PRIO_HIGHEST 4 // for USART etc...
|
||||
// ------------------------
|
||||
// PIOS_I2C
|
||||
// See also pios_board.c
|
||||
// ------------------------
|
||||
#define PIOS_I2C_MAX_DEVS 1
|
||||
extern uint32_t pios_i2c_flexi_adapter_id;
|
||||
#define PIOS_I2C_MAIN_ADAPTER (pios_i2c_flexi_adapter_id)
|
||||
#define PIOS_I2C_ESC_ADAPTER (pios_i2c_flexi_adapter_id)
|
||||
#define PIOS_I2C_BMP085_ADAPTER (pios_i2c_flexi_adapter_id)
|
||||
|
||||
// ------------------------
|
||||
// PIOS_BMP085
|
||||
// ------------------------
|
||||
#define PIOS_BMP085_OVERSAMPLING 3
|
||||
|
||||
// -------------------------
|
||||
// SPI
|
||||
//
|
||||
// See also pios_board.c
|
||||
// -------------------------
|
||||
#define PIOS_SPI_MAX_DEVS 2
|
||||
|
||||
// -------------------------
|
||||
// PIOS_USART
|
||||
// -------------------------
|
||||
#define PIOS_USART_MAX_DEVS 2
|
||||
|
||||
// -------------------------
|
||||
// PIOS_COM
|
||||
//
|
||||
// See also pios_board.c
|
||||
// -------------------------
|
||||
#define PIOS_COM_MAX_DEVS 3
|
||||
|
||||
extern uint32_t pios_com_telem_rf_id;
|
||||
#define PIOS_COM_TELEM_RF (pios_com_telem_rf_id)
|
||||
|
||||
#if defined(PIOS_INCLUDE_GPS)
|
||||
extern uint32_t pios_com_gps_id;
|
||||
#define PIOS_COM_GPS (pios_com_gps_id)
|
||||
#endif /* PIOS_INCLUDE_GPS */
|
||||
|
||||
extern uint32_t pios_com_bridge_id;
|
||||
#define PIOS_COM_BRIDGE (pios_com_bridge_id)
|
||||
|
||||
extern uint32_t pios_com_vcp_id;
|
||||
#define PIOS_COM_VCP (pios_com_vcp_id)
|
||||
|
||||
extern uint32_t pios_com_telem_usb_id;
|
||||
#define PIOS_COM_TELEM_USB (pios_com_telem_usb_id)
|
||||
|
||||
#if defined(PIOS_INCLUDE_DEBUG_CONSOLE)
|
||||
extern uint32_t pios_com_debug_id;
|
||||
#define PIOS_COM_DEBUG (pios_com_debug_id)
|
||||
#endif /* PIOS_INCLUDE_DEBUG_CONSOLE */
|
||||
|
||||
extern uint32_t pios_com_hkosd_id;
|
||||
#define PIOS_COM_OSDHK (pios_com_hkosd_id)
|
||||
|
||||
// -------------------------
|
||||
// ADC
|
||||
// PIOS_ADC_PinGet(0) = Gyro Z
|
||||
// PIOS_ADC_PinGet(1) = Gyro Y
|
||||
// PIOS_ADC_PinGet(2) = Gyro X
|
||||
// -------------------------
|
||||
// #define PIOS_ADC_OVERSAMPLING_RATE 1
|
||||
#define PIOS_ADC_USE_TEMP_SENSOR 1
|
||||
#define PIOS_ADC_TEMP_SENSOR_ADC ADC1
|
||||
#define PIOS_ADC_TEMP_SENSOR_ADC_CHANNEL 1
|
||||
|
||||
#define PIOS_ADC_PIN1_GPIO_PORT GPIOA // PA4 (Gyro X)
|
||||
#define PIOS_ADC_PIN1_GPIO_PIN GPIO_Pin_4 // ADC12_IN4
|
||||
#define PIOS_ADC_PIN1_GPIO_CHANNEL ADC_Channel_4
|
||||
#define PIOS_ADC_PIN1_ADC ADC2
|
||||
#define PIOS_ADC_PIN1_ADC_NUMBER 1
|
||||
|
||||
#define PIOS_ADC_PIN2_GPIO_PORT GPIOA // PA5 (Gyro Y)
|
||||
#define PIOS_ADC_PIN2_GPIO_PIN GPIO_Pin_5 // ADC123_IN5
|
||||
#define PIOS_ADC_PIN2_GPIO_CHANNEL ADC_Channel_5
|
||||
#define PIOS_ADC_PIN2_ADC ADC1
|
||||
#define PIOS_ADC_PIN2_ADC_NUMBER 2
|
||||
|
||||
#define PIOS_ADC_PIN3_GPIO_PORT GPIOA // PA3 (Gyro Z)
|
||||
#define PIOS_ADC_PIN3_GPIO_PIN GPIO_Pin_3 // ADC12_IN3
|
||||
#define PIOS_ADC_PIN3_GPIO_CHANNEL ADC_Channel_3
|
||||
#define PIOS_ADC_PIN3_ADC ADC2
|
||||
#define PIOS_ADC_PIN3_ADC_NUMBER 2
|
||||
|
||||
#define PIOS_ADC_NUM_PINS 3
|
||||
|
||||
#define PIOS_ADC_PORTS { PIOS_ADC_PIN1_GPIO_PORT, PIOS_ADC_PIN2_GPIO_PORT, PIOS_ADC_PIN3_GPIO_PORT }
|
||||
#define PIOS_ADC_PINS { PIOS_ADC_PIN1_GPIO_PIN, PIOS_ADC_PIN2_GPIO_PIN, PIOS_ADC_PIN3_GPIO_PIN }
|
||||
#define PIOS_ADC_CHANNELS { PIOS_ADC_PIN1_GPIO_CHANNEL, PIOS_ADC_PIN2_GPIO_CHANNEL, PIOS_ADC_PIN3_GPIO_CHANNEL }
|
||||
#define PIOS_ADC_MAPPING { PIOS_ADC_PIN1_ADC, PIOS_ADC_PIN2_ADC, PIOS_ADC_PIN3_ADC }
|
||||
#define PIOS_ADC_CHANNEL_MAPPING { PIOS_ADC_PIN1_ADC_NUMBER, PIOS_ADC_PIN2_ADC_NUMBER, PIOS_ADC_PIN3_ADC_NUMBER }
|
||||
#define PIOS_ADC_NUM_CHANNELS (PIOS_ADC_NUM_PINS + PIOS_ADC_USE_TEMP_SENSOR)
|
||||
#define PIOS_ADC_NUM_ADC_CHANNELS 2
|
||||
#define PIOS_ADC_USE_ADC2 1
|
||||
#define PIOS_ADC_CLOCK_FUNCTION RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1 | RCC_APB2Periph_ADC2, ENABLE)
|
||||
#define PIOS_ADC_ADCCLK RCC_PCLK2_Div8
|
||||
/* RCC_PCLK2_Div2: ADC clock = PCLK2/2 */
|
||||
/* RCC_PCLK2_Div4: ADC clock = PCLK2/4 */
|
||||
/* RCC_PCLK2_Div6: ADC clock = PCLK2/6 */
|
||||
/* RCC_PCLK2_Div8: ADC clock = PCLK2/8 */
|
||||
#define PIOS_ADC_SAMPLE_TIME ADC_SampleTime_239Cycles5
|
||||
/* Sample time: */
|
||||
/* With an ADCCLK = 14 MHz and a sampling time of 239.5 cycles: */
|
||||
/* Tconv = 239.5 + 12.5 = 252 cycles = 18<31>s */
|
||||
/* (1 / (ADCCLK / CYCLES)) = Sample Time (<28>S) */
|
||||
#define PIOS_ADC_IRQ_PRIO PIOS_IRQ_PRIO_LOW
|
||||
|
||||
// Currently analog acquistion hard coded at 480 Hz
|
||||
// PCKL2 = HCLK / 16
|
||||
// ADCCLK = PCLK2 / 2
|
||||
#define PIOS_ADC_RATE (72.0e6f / 1.0f / 8.0f / 252.0f / (PIOS_ADC_NUM_CHANNELS >> PIOS_ADC_USE_ADC2))
|
||||
#define PIOS_ADC_MAX_OVERSAMPLING 48
|
||||
|
||||
#define PIOS_ADC_TEMPERATURE_PIN 0
|
||||
|
||||
// ------------------------
|
||||
// PIOS_RCVR
|
||||
// See also pios_board.c
|
||||
// ------------------------
|
||||
#define PIOS_RCVR_MAX_DEVS 3
|
||||
#define PIOS_RCVR_MAX_CHANNELS 12
|
||||
#define PIOS_GCSRCVR_TIMEOUT_MS 100
|
||||
|
||||
// -------------------------
|
||||
// Receiver PPM input
|
||||
// -------------------------
|
||||
#define PIOS_PPM_MAX_DEVS 1
|
||||
#define PIOS_PPM_NUM_INPUTS 12
|
||||
|
||||
// -------------------------
|
||||
// Receiver PWM input
|
||||
// -------------------------
|
||||
#define PIOS_PWM_MAX_DEVS 1
|
||||
#define PIOS_PWM_NUM_INPUTS 6
|
||||
|
||||
// -------------------------
|
||||
// Receiver DSM input
|
||||
// -------------------------
|
||||
#define PIOS_DSM_MAX_DEVS 2
|
||||
#define PIOS_DSM_NUM_INPUTS 12
|
||||
|
||||
// -------------------------
|
||||
// Receiver S.Bus input
|
||||
// -------------------------
|
||||
#define PIOS_SBUS_MAX_DEVS 1
|
||||
#define PIOS_SBUS_NUM_INPUTS (16 + 2)
|
||||
|
||||
// -------------------------
|
||||
// Servo outputs
|
||||
// -------------------------
|
||||
#define PIOS_SERVO_UPDATE_HZ 50
|
||||
#define PIOS_SERVOS_INITIAL_POSITION 0 /* dont want to start motors, have no pulse till settings loaded */
|
||||
#define PIOS_SERVO_BANKS 6
|
||||
|
||||
// --------------------------
|
||||
// Timer controller settings
|
||||
// --------------------------
|
||||
#define PIOS_TIM_MAX_DEVS 3
|
||||
|
||||
// -------------------------
|
||||
// GPIO
|
||||
// -------------------------
|
||||
#define PIOS_GPIO_PORTS {}
|
||||
#define PIOS_GPIO_PINS {}
|
||||
#define PIOS_GPIO_CLKS {}
|
||||
#define PIOS_GPIO_NUM 0
|
||||
|
||||
// -------------------------
|
||||
// USB
|
||||
// -------------------------
|
||||
#define PIOS_USB_HID_MAX_DEVS 1
|
||||
|
||||
#define PIOS_USB_ENABLED 1
|
||||
#define PIOS_USB_DETECT_GPIO_PORT GPIOC
|
||||
#define PIOS_USB_MAX_DEVS 1
|
||||
#define PIOS_USB_DETECT_GPIO_PIN GPIO_Pin_15
|
||||
|
||||
#endif /* PIOS_BOARD_H */
|
@ -1,102 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* @addtogroup PIOS PIOS Core hardware abstraction layer
|
||||
* @{
|
||||
* @addtogroup PIOS_USB_BOARD Board specific USB definitions
|
||||
* @brief Board specific USB definitions
|
||||
* @{
|
||||
*
|
||||
* @file pios_usb_board_data.c
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @brief Board specific USB definitions
|
||||
* @see The GNU Public License (GPL) Version 3
|
||||
*
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "inc/pios_usb_board_data.h" /* struct usb_*, USB_* */
|
||||
#include <pios_sys.h> /* PIOS_SYS_SerialNumberGet */
|
||||
#include <pios_usbhook.h> /* PIOS_USBHOOK_* */
|
||||
#include <pios_usb_util.h> /* PIOS_USB_UTIL_AsciiToUtf8 */
|
||||
|
||||
static const uint8_t usb_product_id[28] = {
|
||||
sizeof(usb_product_id),
|
||||
USB_DESC_TYPE_STRING,
|
||||
'C', 0,
|
||||
'o', 0,
|
||||
'p', 0,
|
||||
't', 0,
|
||||
'e', 0,
|
||||
'r', 0,
|
||||
'C', 0,
|
||||
'o', 0,
|
||||
'n', 0,
|
||||
't', 0,
|
||||
'r', 0,
|
||||
'o', 0,
|
||||
'l', 0,
|
||||
};
|
||||
|
||||
static uint8_t usb_serial_number[2 + PIOS_SYS_SERIAL_NUM_ASCII_LEN * 2 + (sizeof(PIOS_USB_BOARD_SN_SUFFIX) - 1) * 2] = {
|
||||
sizeof(usb_serial_number),
|
||||
USB_DESC_TYPE_STRING,
|
||||
};
|
||||
|
||||
static const struct usb_string_langid usb_lang_id = {
|
||||
.bLength = sizeof(usb_lang_id),
|
||||
.bDescriptorType = USB_DESC_TYPE_STRING,
|
||||
.bLangID = htousbs(USB_LANGID_ENGLISH_US),
|
||||
};
|
||||
|
||||
static const uint8_t usb_vendor_id[28] = {
|
||||
sizeof(usb_vendor_id),
|
||||
USB_DESC_TYPE_STRING,
|
||||
'o', 0,
|
||||
'p', 0,
|
||||
'e', 0,
|
||||
'n', 0,
|
||||
'p', 0,
|
||||
'i', 0,
|
||||
'l', 0,
|
||||
'o', 0,
|
||||
't', 0,
|
||||
'.', 0,
|
||||
'o', 0,
|
||||
'r', 0,
|
||||
'g', 0
|
||||
};
|
||||
|
||||
int32_t PIOS_USB_BOARD_DATA_Init(void)
|
||||
{
|
||||
/* Load device serial number into serial number string */
|
||||
uint8_t sn[PIOS_SYS_SERIAL_NUM_ASCII_LEN + 1];
|
||||
|
||||
PIOS_SYS_SerialNumberGet((char *)sn);
|
||||
|
||||
/* Concatenate the device serial number and the appropriate suffix ("+BL" or "+FW") into the USB serial number */
|
||||
uint8_t *utf8 = &(usb_serial_number[2]);
|
||||
utf8 = PIOS_USB_UTIL_AsciiToUtf8(utf8, sn, PIOS_SYS_SERIAL_NUM_ASCII_LEN);
|
||||
utf8 = PIOS_USB_UTIL_AsciiToUtf8(utf8, (uint8_t *)PIOS_USB_BOARD_SN_SUFFIX, sizeof(PIOS_USB_BOARD_SN_SUFFIX) - 1);
|
||||
|
||||
PIOS_USBHOOK_RegisterString(USB_STRING_DESC_PRODUCT, (uint8_t *)&usb_product_id, sizeof(usb_product_id));
|
||||
PIOS_USBHOOK_RegisterString(USB_STRING_DESC_SERIAL, (uint8_t *)&usb_serial_number, sizeof(usb_serial_number));
|
||||
|
||||
PIOS_USBHOOK_RegisterString(USB_STRING_DESC_LANG, (uint8_t *)&usb_lang_id, sizeof(usb_lang_id));
|
||||
PIOS_USBHOOK_RegisterString(USB_STRING_DESC_VENDOR, (uint8_t *)&usb_vendor_id, sizeof(usb_vendor_id));
|
||||
|
||||
return 0;
|
||||
}
|
@ -1,658 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>CC_HW_Widget</class>
|
||||
<widget class="QWidget" name="CC_HW_Widget">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>646</width>
|
||||
<height>596</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Form</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<widget class="QTabWidget" name="tabWidget">
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="tab">
|
||||
<attribute name="title">
|
||||
<string>HW settings</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<property name="leftMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QScrollArea" name="scrollArea">
|
||||
<property name="palette">
|
||||
<palette>
|
||||
<active>
|
||||
<colorrole role="Base">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="255">
|
||||
<red>255</red>
|
||||
<green>255</green>
|
||||
<blue>255</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
<colorrole role="Window">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="0">
|
||||
<red>232</red>
|
||||
<green>232</green>
|
||||
<blue>232</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
</active>
|
||||
<inactive>
|
||||
<colorrole role="Base">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="255">
|
||||
<red>255</red>
|
||||
<green>255</green>
|
||||
<blue>255</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
<colorrole role="Window">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="0">
|
||||
<red>232</red>
|
||||
<green>232</green>
|
||||
<blue>232</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
</inactive>
|
||||
<disabled>
|
||||
<colorrole role="Base">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="0">
|
||||
<red>232</red>
|
||||
<green>232</green>
|
||||
<blue>232</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
<colorrole role="Window">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="0">
|
||||
<red>232</red>
|
||||
<green>232</green>
|
||||
<blue>232</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
</disabled>
|
||||
</palette>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::NoFrame</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Plain</enum>
|
||||
</property>
|
||||
<property name="widgetResizable">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<widget class="QWidget" name="scrollAreaWidgetContents">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>624</width>
|
||||
<height>510</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout_3">
|
||||
<property name="leftMargin">
|
||||
<number>12</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>12</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>12</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>12</number>
|
||||
</property>
|
||||
<item row="6" column="0" colspan="3">
|
||||
<widget class="QGroupBox" name="groupBox_2">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>50</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Messages</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||
<item>
|
||||
<widget class="QLabel" name="problems">
|
||||
<property name="font">
|
||||
<font>
|
||||
<weight>75</weight>
|
||||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="textFormat">
|
||||
<enum>Qt::AutoText</enum>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QLabel" name="label_6">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>500</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>500</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<weight>75</weight>
|
||||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Changes on this page only take effect after board reset or power cycle</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="1">
|
||||
<spacer name="verticalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<layout class="QGridLayout" name="gridLayout_2">
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="telemetrySpeed">
|
||||
<property name="toolTip">
|
||||
<string>Select the speed here.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="GpsSpeedLabel">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>55</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>GPS speed:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="telemetrySpeedLabel">
|
||||
<property name="text">
|
||||
<string>Telemetry speed:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QComboBox" name="comUsbBridgeSpeed">
|
||||
<property name="toolTip">
|
||||
<string>Select the speed here.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QComboBox" name="gpsSpeed">
|
||||
<property name="toolTip">
|
||||
<string>Select the speed here.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="ComUsbBridgeSpeedLabel">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>55</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>ComUsbBridge speed:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="GpsProtocolLabel">
|
||||
<property name="text">
|
||||
<string>GPS protocol :</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<widget class="QComboBox" name="gpsProtocol"/>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_3">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<layout class="QGridLayout" name="gridLayout" rowstretch="0,0,0,0,0,0,0,0">
|
||||
<item row="4" column="0">
|
||||
<widget class="QComboBox" name="cbFlexi"/>
|
||||
</item>
|
||||
<item row="6" column="0">
|
||||
<widget class="QComboBox" name="cbTele"/>
|
||||
</item>
|
||||
<item row="3" column="3">
|
||||
<widget class="QLabel" name="label_8">
|
||||
<property name="text">
|
||||
<string>USB HID Port</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="7" column="0">
|
||||
<widget class="QLabel" name="label_4">
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="3">
|
||||
<widget class="QLabel" name="label_9">
|
||||
<property name="text">
|
||||
<string>USB VCP Port</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1" rowspan="5" colspan="2">
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="scaledContents">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="0">
|
||||
<widget class="QLabel" name="label_3">
|
||||
<property name="text">
|
||||
<string>Main Port</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="label_5">
|
||||
<property name="text">
|
||||
<string>Flexi Port</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="3">
|
||||
<widget class="QComboBox" name="cbUsbHid"/>
|
||||
</item>
|
||||
<item row="4" column="4">
|
||||
<spacer name="horizontalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="6" column="3">
|
||||
<widget class="QComboBox" name="cbUsbVcp"/>
|
||||
</item>
|
||||
<item row="2" column="1" colspan="2" alignment="Qt::AlignLeft">
|
||||
<widget class="QComboBox" name="cbRcvr"/>
|
||||
</item>
|
||||
<item row="1" column="1" colspan="2" alignment="Qt::AlignLeft">
|
||||
<widget class="QLabel" name="label_7">
|
||||
<property name="text">
|
||||
<string>Receiver Port</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<spacer name="horizontalSpacer_4">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="2" column="2">
|
||||
<spacer name="horizontalSpacer_5">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<spacer name="verticalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>10</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<property name="spacing">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>369</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="cchwHelp">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>25</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>25</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Takes you to the wiki page</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../coreplugin/core.qrc">
|
||||
<normaloff>:/core/images/helpicon.svg</normaloff>:/core/images/helpicon.svg</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>25</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="flat">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="saveTelemetryToRAM">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="palette">
|
||||
<palette>
|
||||
<active>
|
||||
<colorrole role="Base">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="0">
|
||||
<red>255</red>
|
||||
<green>255</green>
|
||||
<blue>255</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
<colorrole role="Window">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="255">
|
||||
<red>232</red>
|
||||
<green>232</green>
|
||||
<blue>232</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
</active>
|
||||
<inactive>
|
||||
<colorrole role="Base">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="0">
|
||||
<red>255</red>
|
||||
<green>255</green>
|
||||
<blue>255</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
<colorrole role="Window">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="255">
|
||||
<red>232</red>
|
||||
<green>232</green>
|
||||
<blue>232</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
</inactive>
|
||||
<disabled>
|
||||
<colorrole role="Base">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="255">
|
||||
<red>232</red>
|
||||
<green>232</green>
|
||||
<blue>232</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
<colorrole role="Window">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="255">
|
||||
<red>232</red>
|
||||
<green>232</green>
|
||||
<blue>232</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
</disabled>
|
||||
</palette>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Send to OpenPilot but don't write in SD.
|
||||
Beware of not locking yourself out!</string>
|
||||
</property>
|
||||
<property name="autoFillBackground">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Apply</string>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>16</width>
|
||||
<height>16</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="checkable">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="saveTelemetryToSD">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Applies and Saves all settings to SD.
|
||||
Beware of not locking yourself out!</string>
|
||||
</property>
|
||||
<property name="autoFillBackground">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Save</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources>
|
||||
<include location="../coreplugin/core.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
@ -1,597 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>ccattitude</class>
|
||||
<widget class="QWidget" name="ccattitude">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>780</width>
|
||||
<height>566</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Form</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_5">
|
||||
<item>
|
||||
<widget class="QTabWidget" name="tabWidget">
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="Attitude">
|
||||
<attribute name="title">
|
||||
<string>Attitude</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<property name="leftMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QScrollArea" name="scrollArea">
|
||||
<property name="palette">
|
||||
<palette>
|
||||
<active>
|
||||
<colorrole role="Base">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="255">
|
||||
<red>255</red>
|
||||
<green>255</green>
|
||||
<blue>255</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
<colorrole role="Window">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="0">
|
||||
<red>232</red>
|
||||
<green>232</green>
|
||||
<blue>232</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
</active>
|
||||
<inactive>
|
||||
<colorrole role="Base">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="255">
|
||||
<red>255</red>
|
||||
<green>255</green>
|
||||
<blue>255</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
<colorrole role="Window">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="0">
|
||||
<red>232</red>
|
||||
<green>232</green>
|
||||
<blue>232</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
</inactive>
|
||||
<disabled>
|
||||
<colorrole role="Base">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="0">
|
||||
<red>232</red>
|
||||
<green>232</green>
|
||||
<blue>232</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
<colorrole role="Window">
|
||||
<brush brushstyle="SolidPattern">
|
||||
<color alpha="0">
|
||||
<red>232</red>
|
||||
<green>232</green>
|
||||
<blue>232</blue>
|
||||
</color>
|
||||
</brush>
|
||||
</colorrole>
|
||||
</disabled>
|
||||
</palette>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::NoFrame</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Plain</enum>
|
||||
</property>
|
||||
<property name="widgetResizable">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<widget class="QWidget" name="scrollAreaWidgetContents">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>758</width>
|
||||
<height>486</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="leftMargin">
|
||||
<number>12</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>12</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>12</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>12</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox">
|
||||
<property name="title">
|
||||
<string>Rotate virtual attitude relative to board</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout" columnstretch="0,1,0,1,0,1,0">
|
||||
<item row="0" column="1">
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="styleSheet">
|
||||
<string notr="true">background-color: qlineargradient(spread:reflect, x1:0.507, y1:0, x2:0.507, y2:0.772, stop:0.208955 rgba(74, 74, 74, 255), stop:0.78607 rgba(36, 36, 36, 255));
|
||||
color: rgb(255, 255, 255);
|
||||
border-radius: 5;
|
||||
margin:1px;
|
||||
font:bold;</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Roll</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QSpinBox" name="rollBias">
|
||||
<property name="minimum">
|
||||
<number>-180</number>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<number>180</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="4">
|
||||
<spacer name="horizontalSpacer_9">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="1" column="5">
|
||||
<widget class="QSpinBox" name="yawBias">
|
||||
<property name="minimum">
|
||||
<number>-180</number>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<number>180</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="5">
|
||||
<widget class="QLabel" name="label_4">
|
||||
<property name="styleSheet">
|
||||
<string notr="true">background-color: qlineargradient(spread:reflect, x1:0.507, y1:0, x2:0.507, y2:0.772, stop:0.208955 rgba(74, 74, 74, 255), stop:0.78607 rgba(36, 36, 36, 255));
|
||||
color: rgb(255, 255, 255);
|
||||
border-radius: 5;
|
||||
margin:1px;
|
||||
font:bold;</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Yaw</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<spacer name="horizontalSpacer_8">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="0" column="3">
|
||||
<widget class="QLabel" name="label_3">
|
||||
<property name="styleSheet">
|
||||
<string notr="true">background-color: qlineargradient(spread:reflect, x1:0.507, y1:0, x2:0.507, y2:0.772, stop:0.208955 rgba(74, 74, 74, 255), stop:0.78607 rgba(36, 36, 36, 255));
|
||||
color: rgb(255, 255, 255);
|
||||
border-radius: 5;
|
||||
margin:1px;
|
||||
font:bold;</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Pitch</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="3">
|
||||
<widget class="QSpinBox" name="pitchBias">
|
||||
<property name="minimum">
|
||||
<number>-90</number>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<number>90</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<spacer name="horizontalSpacer_7">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="1" column="6">
|
||||
<spacer name="horizontalSpacer_10">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_2">
|
||||
<property name="title">
|
||||
<string>Calibration</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout_2">
|
||||
<item row="0" column="0" colspan="3">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string>Place aircraft very flat, and then click level to compute the accelerometer and gyro bias</string>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_3">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QPushButton" name="zeroBias">
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>500</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Launch horizontal calibration.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Level</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<spacer name="horizontalSpacer_4">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>10</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="1" column="2">
|
||||
<widget class="QProgressBar" name="zeroBiasProgress">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>300</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="value">
|
||||
<number>0</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0" colspan="3">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||
<item>
|
||||
<widget class="QCheckBox" name="zeroGyroBiasOnArming">
|
||||
<property name="toolTip">
|
||||
<string>If enabled, a fast recalibration of gyro zero point will be done
|
||||
whenever the frame is armed. Do not move the airframe while
|
||||
arming it in that case!</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Zero gyros while arming aircraft</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_6">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_3">
|
||||
<property name="title">
|
||||
<string>Filtering</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||||
<item>
|
||||
<widget class="QLabel" name="label_5">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Accelerometers</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_12">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType">
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>10</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QDoubleSpinBox" name="accelTauSpinbox">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>60</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Accelerometer filtering.
|
||||
|
||||
Sets the amount of lowpass filtering of accelerometer data
|
||||
for the attitude estimation. Higher values apply a stronger
|
||||
filter, which may help with drifting in attitude mode.
|
||||
|
||||
Range: 0.00 - 0.20, Good starting value: 0.05 - 0.10
|
||||
Start low and raise until drift stops.
|
||||
|
||||
A setting of 0.00 disables the filter.</string>
|
||||
</property>
|
||||
<property name="decimals">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="maximum">
|
||||
<double>0.200000000000000</double>
|
||||
</property>
|
||||
<property name="singleStep">
|
||||
<double>0.010000000000000</double>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_5">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>10</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<property name="spacing">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>380</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="ccAttitudeHelp">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>25</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Takes you to the wiki page</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../coreplugin/core.qrc">
|
||||
<normaloff>:/core/images/helpicon.svg</normaloff>:/core/images/helpicon.svg</iconset>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>25</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="flat">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="applyButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Apply</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="saveButton">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Click to permanently save the accel bias in the CopterControl Flash.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Save</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources>
|
||||
<include location="../coreplugin/core.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
@ -21,8 +21,6 @@ HEADERS += \
|
||||
configinputwidget.h \
|
||||
configoutputwidget.h \
|
||||
configvehicletypewidget.h \
|
||||
config_cc_hw_widget.h \
|
||||
configccattitudewidget.h \
|
||||
configstabilizationwidget.h \
|
||||
assertions.h \
|
||||
defaultattitudewidget.h \
|
||||
@ -68,8 +66,6 @@ SOURCES += \
|
||||
configinputwidget.cpp \
|
||||
configoutputwidget.cpp \
|
||||
configvehicletypewidget.cpp \
|
||||
config_cc_hw_widget.cpp \
|
||||
configccattitudewidget.cpp \
|
||||
configstabilizationwidget.cpp \
|
||||
defaultattitudewidget.cpp \
|
||||
defaulthwsettingswidget.cpp \
|
||||
@ -106,12 +102,10 @@ FORMS += \
|
||||
airframe_ground.ui \
|
||||
airframe_multirotor.ui \
|
||||
airframe_custom.ui \
|
||||
cc_hw_settings.ui \
|
||||
stabilization.ui \
|
||||
input.ui \
|
||||
input_wizard.ui \
|
||||
output.ui \
|
||||
ccattitude.ui \
|
||||
defaultattitude.ui \
|
||||
defaulthwsettings.ui \
|
||||
inputchannelform.ui \
|
||||
@ -121,6 +115,6 @@ FORMS += \
|
||||
txpid.ui \
|
||||
mixercurve.ui \
|
||||
configrevohwwidget.ui \
|
||||
oplink.ui
|
||||
oplink.ui
|
||||
|
||||
RESOURCES += configgadget.qrc
|
||||
|
@ -1,156 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
*
|
||||
* @file configtelemetrywidget.h
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @addtogroup GCSPlugins GCS Plugins
|
||||
* @{
|
||||
* @addtogroup ConfigPlugin Config Plugin
|
||||
* @{
|
||||
* @brief The Configuration Gadget used to update settings in the firmware
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
#include "config_cc_hw_widget.h"
|
||||
#include "hwsettings.h"
|
||||
#include <QDebug>
|
||||
#include <QStringList>
|
||||
#include <QWidget>
|
||||
#include <QTextEdit>
|
||||
#include <QVBoxLayout>
|
||||
#include <QPushButton>
|
||||
#include <QDesktopServices>
|
||||
#include <QUrl>
|
||||
#include <extensionsystem/pluginmanager.h>
|
||||
#include <coreplugin/generalsettings.h>
|
||||
|
||||
|
||||
ConfigCCHWWidget::ConfigCCHWWidget(QWidget *parent) : ConfigTaskWidget(parent)
|
||||
{
|
||||
m_telemetry = new Ui_CC_HW_Widget();
|
||||
m_telemetry->setupUi(this);
|
||||
|
||||
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
||||
Core::Internal::GeneralSettings *settings = pm->getObject<Core::Internal::GeneralSettings>();
|
||||
if (!settings->useExpertMode()) {
|
||||
m_telemetry->saveTelemetryToRAM->setVisible(false);
|
||||
}
|
||||
|
||||
|
||||
UAVObjectUtilManager *utilMngr = pm->getObject<UAVObjectUtilManager>();
|
||||
int id = utilMngr->getBoardModel();
|
||||
|
||||
switch (id) {
|
||||
case 0x0101:
|
||||
m_telemetry->label_2->setPixmap(QPixmap(":/uploader/images/deviceID-0101.svg"));
|
||||
break;
|
||||
case 0x0301:
|
||||
m_telemetry->label_2->setPixmap(QPixmap(":/uploader/images/deviceID-0301.svg"));
|
||||
break;
|
||||
case 0x0401:
|
||||
m_telemetry->label_2->setPixmap(QPixmap(":/configgadget/images/coptercontrol.svg"));
|
||||
break;
|
||||
case 0x0402:
|
||||
m_telemetry->label_2->setPixmap(QPixmap(":/configgadget/images/coptercontrol.svg"));
|
||||
break;
|
||||
case 0x0201:
|
||||
m_telemetry->label_2->setPixmap(QPixmap(":/uploader/images/deviceID-0201.svg"));
|
||||
break;
|
||||
default:
|
||||
m_telemetry->label_2->setPixmap(QPixmap(":/configgadget/images/coptercontrol.svg"));
|
||||
break;
|
||||
}
|
||||
addApplySaveButtons(m_telemetry->saveTelemetryToRAM, m_telemetry->saveTelemetryToSD);
|
||||
addWidgetBinding("HwSettings", "CC_FlexiPort", m_telemetry->cbFlexi);
|
||||
addWidgetBinding("HwSettings", "CC_MainPort", m_telemetry->cbTele);
|
||||
addWidgetBinding("HwSettings", "CC_RcvrPort", m_telemetry->cbRcvr);
|
||||
addWidgetBinding("HwSettings", "USB_HIDPort", m_telemetry->cbUsbHid);
|
||||
addWidgetBinding("HwSettings", "USB_VCPPort", m_telemetry->cbUsbVcp);
|
||||
addWidgetBinding("HwSettings", "TelemetrySpeed", m_telemetry->telemetrySpeed);
|
||||
addWidgetBinding("HwSettings", "GPSSpeed", m_telemetry->gpsSpeed);
|
||||
// Add Gps protocol configuration
|
||||
|
||||
HwSettings *hwSettings = HwSettings::GetInstance(getObjectManager());
|
||||
HwSettings::DataFields hwSettingsData = hwSettings->getData();
|
||||
|
||||
if (hwSettingsData.OptionalModules[HwSettings::OPTIONALMODULES_GPS] != HwSettings::OPTIONALMODULES_ENABLED) {
|
||||
m_telemetry->gpsProtocol->setEnabled(false);
|
||||
m_telemetry->gpsProtocol->setToolTip(tr("Enable GPS module and reboot the board to be able to select GPS protocol"));
|
||||
} else {
|
||||
addWidgetBinding("GPSSettings", "DataProtocol", m_telemetry->gpsProtocol);
|
||||
}
|
||||
|
||||
addWidgetBinding("HwSettings", "ComUsbBridgeSpeed", m_telemetry->comUsbBridgeSpeed);
|
||||
connect(m_telemetry->cchwHelp, SIGNAL(clicked()), this, SLOT(openHelp()));
|
||||
enableSaveButtons(false);
|
||||
populateWidgets();
|
||||
refreshWidgetsValues();
|
||||
forceConnectedState();
|
||||
}
|
||||
|
||||
ConfigCCHWWidget::~ConfigCCHWWidget()
|
||||
{
|
||||
// Do nothing
|
||||
}
|
||||
|
||||
void ConfigCCHWWidget::refreshValues()
|
||||
{}
|
||||
|
||||
void ConfigCCHWWidget::widgetsContentsChanged()
|
||||
{
|
||||
ConfigTaskWidget::widgetsContentsChanged();
|
||||
|
||||
if (((m_telemetry->cbTele->currentIndex() == HwSettings::CC_MAINPORT_DEBUGCONSOLE) &&
|
||||
(m_telemetry->cbFlexi->currentIndex() == HwSettings::CC_FLEXIPORT_DEBUGCONSOLE)) ||
|
||||
((m_telemetry->cbFlexi->currentIndex() == HwSettings::CC_FLEXIPORT_DEBUGCONSOLE) &&
|
||||
(m_telemetry->cbUsbVcp->currentIndex() == HwSettings::USB_VCPPORT_DEBUGCONSOLE)) ||
|
||||
((m_telemetry->cbUsbVcp->currentIndex() == HwSettings::USB_VCPPORT_DEBUGCONSOLE) &&
|
||||
(m_telemetry->cbTele->currentIndex() == HwSettings::CC_MAINPORT_DEBUGCONSOLE))) {
|
||||
enableSaveButtons(false);
|
||||
m_telemetry->problems->setText(tr("Warning: you have configured more than one DebugConsole, this currently is not supported"));
|
||||
} else if (((m_telemetry->cbTele->currentIndex() == HwSettings::CC_MAINPORT_TELEMETRY) && (m_telemetry->cbFlexi->currentIndex() == HwSettings::CC_FLEXIPORT_TELEMETRY)) ||
|
||||
((m_telemetry->cbTele->currentIndex() == HwSettings::CC_MAINPORT_GPS) && (m_telemetry->cbFlexi->currentIndex() == HwSettings::CC_FLEXIPORT_GPS)) ||
|
||||
((m_telemetry->cbTele->currentIndex() == HwSettings::CC_MAINPORT_DEBUGCONSOLE) && (m_telemetry->cbFlexi->currentIndex() == HwSettings::CC_FLEXIPORT_DEBUGCONSOLE)) ||
|
||||
((m_telemetry->cbTele->currentIndex() == HwSettings::CC_MAINPORT_COMBRIDGE) && (m_telemetry->cbFlexi->currentIndex() == HwSettings::CC_FLEXIPORT_COMBRIDGE))) {
|
||||
enableSaveButtons(false);
|
||||
m_telemetry->problems->setText(tr("Warning: you have configured both MainPort and FlexiPort for the same function, this currently is not supported"));
|
||||
} else if ((m_telemetry->cbUsbHid->currentIndex() == HwSettings::USB_HIDPORT_USBTELEMETRY) && (m_telemetry->cbUsbVcp->currentIndex() == HwSettings::USB_VCPPORT_USBTELEMETRY)) {
|
||||
enableSaveButtons(false);
|
||||
m_telemetry->problems->setText(tr("Warning: you have configured both USB HID Port and USB VCP Port for the same function, this currently is not supported"));
|
||||
} else if ((m_telemetry->cbUsbHid->currentIndex() != HwSettings::USB_HIDPORT_USBTELEMETRY) && (m_telemetry->cbUsbVcp->currentIndex() != HwSettings::USB_VCPPORT_USBTELEMETRY)) {
|
||||
enableSaveButtons(false);
|
||||
m_telemetry->problems->setText(tr("Warning: you have disabled USB Telemetry on both USB HID Port and USB VCP Port, this currently is not supported"));
|
||||
} else {
|
||||
m_telemetry->problems->setText("");
|
||||
enableSaveButtons(true);
|
||||
}
|
||||
}
|
||||
|
||||
void ConfigCCHWWidget::enableSaveButtons(bool enable)
|
||||
{
|
||||
m_telemetry->saveTelemetryToRAM->setEnabled(enable);
|
||||
m_telemetry->saveTelemetryToSD->setEnabled(enable);
|
||||
}
|
||||
|
||||
void ConfigCCHWWidget::openHelp()
|
||||
{
|
||||
QDesktopServices::openUrl(QUrl(tr("http://wiki.openpilot.org/x/D4AUAQ"), QUrl::StrictMode));
|
||||
}
|
||||
|
||||
/**
|
||||
* @}
|
||||
* @}
|
||||
*/
|
@ -1,56 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
*
|
||||
* @file configtelemetrytwidget.h
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @addtogroup GCSPlugins GCS Plugins
|
||||
* @{
|
||||
* @addtogroup ConfigPlugin Config Plugin
|
||||
* @{
|
||||
* @brief Telemetry configuration panel
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
#ifndef CONFIGCCHWWIDGET_H
|
||||
#define CONFIGCCHWWIDGET_H
|
||||
|
||||
#include "ui_cc_hw_settings.h"
|
||||
#include "../uavobjectwidgetutils/configtaskwidget.h"
|
||||
#include "extensionsystem/pluginmanager.h"
|
||||
#include "uavobjectmanager.h"
|
||||
#include "uavobject.h"
|
||||
#include <QWidget>
|
||||
#include <QList>
|
||||
#include "smartsavebutton.h"
|
||||
|
||||
class ConfigCCHWWidget : public ConfigTaskWidget {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
ConfigCCHWWidget(QWidget *parent = 0);
|
||||
~ConfigCCHWWidget();
|
||||
private slots:
|
||||
void openHelp();
|
||||
void refreshValues();
|
||||
void widgetsContentsChanged();
|
||||
void enableSaveButtons(bool enable);
|
||||
|
||||
private:
|
||||
Ui_CC_HW_Widget *m_telemetry;
|
||||
QSvgRenderer *m_renderer;
|
||||
};
|
||||
|
||||
#endif // CONFIGCCHWWIDGET_H
|
@ -1,239 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
*
|
||||
* @file configccattitudewidget.cpp
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @addtogroup GCSPlugins GCS Plugins
|
||||
* @{
|
||||
* @addtogroup ConfigPlugin Config Plugin
|
||||
* @{
|
||||
* @brief Configure Attitude module on CopterControl
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
#include "configccattitudewidget.h"
|
||||
#include "ui_ccattitude.h"
|
||||
#include "utils/coordinateconversions.h"
|
||||
#include "attitudesettings.h"
|
||||
#include <QMutexLocker>
|
||||
#include <QMessageBox>
|
||||
#include <QDebug>
|
||||
#include <QDesktopServices>
|
||||
#include <QUrl>
|
||||
#include "accelstate.h"
|
||||
#include "accelgyrosettings.h"
|
||||
#include "gyrostate.h"
|
||||
#include <extensionsystem/pluginmanager.h>
|
||||
#include <coreplugin/generalsettings.h>
|
||||
#include <calibration/calibrationutils.h>
|
||||
ConfigCCAttitudeWidget::ConfigCCAttitudeWidget(QWidget *parent) :
|
||||
ConfigTaskWidget(parent),
|
||||
ui(new Ui_ccattitude)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
connect(ui->zeroBias, SIGNAL(clicked()), this, SLOT(startAccelCalibration()));
|
||||
|
||||
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
||||
Core::Internal::GeneralSettings *settings = pm->getObject<Core::Internal::GeneralSettings>();
|
||||
if (!settings->useExpertMode()) {
|
||||
ui->applyButton->setVisible(false);
|
||||
}
|
||||
|
||||
addApplySaveButtons(ui->applyButton, ui->saveButton);
|
||||
addUAVObject("AttitudeSettings");
|
||||
addUAVObject("AccelGyroSettings");
|
||||
|
||||
// Connect the help button
|
||||
connect(ui->ccAttitudeHelp, SIGNAL(clicked()), this, SLOT(openHelp()));
|
||||
|
||||
addWidgetBinding("AttitudeSettings", "ZeroDuringArming", ui->zeroGyroBiasOnArming);
|
||||
addWidgetBinding("AttitudeSettings", "AccelTau", ui->accelTauSpinbox);
|
||||
|
||||
addWidgetBinding("AttitudeSettings", "BoardRotation", ui->rollBias, AttitudeSettings::BOARDROTATION_ROLL);
|
||||
addWidgetBinding("AttitudeSettings", "BoardRotation", ui->pitchBias, AttitudeSettings::BOARDROTATION_PITCH);
|
||||
addWidgetBinding("AttitudeSettings", "BoardRotation", ui->yawBias, AttitudeSettings::BOARDROTATION_YAW);
|
||||
addWidget(ui->zeroBias);
|
||||
populateWidgets();
|
||||
refreshWidgetsValues();
|
||||
forceConnectedState();
|
||||
}
|
||||
|
||||
ConfigCCAttitudeWidget::~ConfigCCAttitudeWidget()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void ConfigCCAttitudeWidget::sensorsUpdated(UAVObject *obj)
|
||||
{
|
||||
if (!timer.isActive()) {
|
||||
// ignore updates that come in after the timer has expired
|
||||
return;
|
||||
}
|
||||
|
||||
AccelState *accelState = AccelState::GetInstance(getObjectManager());
|
||||
GyroState *gyroState = GyroState::GetInstance(getObjectManager());
|
||||
|
||||
// Accumulate samples until we have _at least_ NUM_SENSOR_UPDATES samples
|
||||
// for both gyros and accels.
|
||||
// Note that, at present, we stash the samples and then compute the bias
|
||||
// at the end, even though the mean could be accumulated as we go.
|
||||
// In future, a better algorithm could be used.
|
||||
if (obj->getObjID() == AccelState::OBJID) {
|
||||
accelUpdates++;
|
||||
AccelState::DataFields accelStateData = accelState->getData();
|
||||
x_accum.append(accelStateData.x);
|
||||
y_accum.append(accelStateData.y);
|
||||
z_accum.append(accelStateData.z);
|
||||
} else if (obj->getObjID() == GyroState::OBJID) {
|
||||
gyroUpdates++;
|
||||
GyroState::DataFields gyroStateData = gyroState->getData();
|
||||
x_gyro_accum.append(gyroStateData.x);
|
||||
y_gyro_accum.append(gyroStateData.y);
|
||||
z_gyro_accum.append(gyroStateData.z);
|
||||
}
|
||||
|
||||
// update the progress indicator
|
||||
ui->zeroBiasProgress->setValue((float)qMin(accelUpdates, gyroUpdates) / NUM_SENSOR_UPDATES * 100);
|
||||
|
||||
// If we have enough samples, then stop sampling and compute the biases
|
||||
if (accelUpdates >= NUM_SENSOR_UPDATES && gyroUpdates >= NUM_SENSOR_UPDATES) {
|
||||
timer.stop();
|
||||
disconnect(obj, SIGNAL(objectUpdated(UAVObject *)), this, SLOT(sensorsUpdated(UAVObject *)));
|
||||
disconnect(&timer, SIGNAL(timeout()), this, SLOT(timeout()));
|
||||
|
||||
float x_bias = OpenPilot::CalibrationUtils::listMean(x_accum);
|
||||
float y_bias = OpenPilot::CalibrationUtils::listMean(y_accum);
|
||||
float z_bias = OpenPilot::CalibrationUtils::listMean(z_accum) + 9.81;
|
||||
|
||||
float x_gyro_bias = OpenPilot::CalibrationUtils::listMean(x_gyro_accum);
|
||||
float y_gyro_bias = OpenPilot::CalibrationUtils::listMean(y_gyro_accum);
|
||||
float z_gyro_bias = OpenPilot::CalibrationUtils::listMean(z_gyro_accum);
|
||||
accelState->setMetadata(initialAccelStateMdata);
|
||||
gyroState->setMetadata(initialGyroStateMdata);
|
||||
|
||||
AccelGyroSettings::DataFields accelGyroSettingsData = AccelGyroSettings::GetInstance(getObjectManager())->getData();
|
||||
AttitudeSettings::DataFields attitudeSettingsData = AttitudeSettings::GetInstance(getObjectManager())->getData();
|
||||
// We offset the gyro bias by current bias to help precision
|
||||
accelGyroSettingsData.accel_bias[0] += x_bias;
|
||||
accelGyroSettingsData.accel_bias[1] += y_bias;
|
||||
accelGyroSettingsData.accel_bias[2] += z_bias;
|
||||
accelGyroSettingsData.gyro_bias[0] = -x_gyro_bias;
|
||||
accelGyroSettingsData.gyro_bias[1] = -y_gyro_bias;
|
||||
accelGyroSettingsData.gyro_bias[2] = -z_gyro_bias;
|
||||
attitudeSettingsData.BiasCorrectGyro = AttitudeSettings::BIASCORRECTGYRO_TRUE;
|
||||
AttitudeSettings::GetInstance(getObjectManager())->setData(attitudeSettingsData);
|
||||
AccelGyroSettings::GetInstance(getObjectManager())->setData(accelGyroSettingsData);
|
||||
this->setDirty(true);
|
||||
|
||||
// reenable controls
|
||||
enableControls(true);
|
||||
}
|
||||
}
|
||||
|
||||
void ConfigCCAttitudeWidget::timeout()
|
||||
{
|
||||
UAVDataObject *obj = AccelState::GetInstance(getObjectManager());
|
||||
|
||||
disconnect(obj, SIGNAL(objectUpdated(UAVObject *)), this, SLOT(sensorsUpdated(UAVObject *)));
|
||||
disconnect(&timer, SIGNAL(timeout()), this, SLOT(timeout()));
|
||||
|
||||
AccelState *accelState = AccelState::GetInstance(getObjectManager());
|
||||
GyroState *gyroState = GyroState::GetInstance(getObjectManager());
|
||||
accelState->setMetadata(initialAccelStateMdata);
|
||||
gyroState->setMetadata(initialGyroStateMdata);
|
||||
|
||||
QMessageBox msgBox;
|
||||
msgBox.setText(tr("Calibration timed out before receiving required updates."));
|
||||
msgBox.setStandardButtons(QMessageBox::Ok);
|
||||
msgBox.setDefaultButton(QMessageBox::Ok);
|
||||
msgBox.exec();
|
||||
|
||||
// reset progress indicator
|
||||
ui->zeroBiasProgress->setValue(0);
|
||||
// reenable controls
|
||||
enableControls(true);
|
||||
}
|
||||
|
||||
void ConfigCCAttitudeWidget::startAccelCalibration()
|
||||
{
|
||||
// disable controls during sampling
|
||||
enableControls(false);
|
||||
|
||||
accelUpdates = 0;
|
||||
gyroUpdates = 0;
|
||||
x_accum.clear();
|
||||
y_accum.clear();
|
||||
z_accum.clear();
|
||||
x_gyro_accum.clear();
|
||||
y_gyro_accum.clear();
|
||||
z_gyro_accum.clear();
|
||||
|
||||
// Disable gyro bias correction to see raw data
|
||||
AttitudeSettings::DataFields attitudeSettingsData = AttitudeSettings::GetInstance(getObjectManager())->getData();
|
||||
attitudeSettingsData.BiasCorrectGyro = AttitudeSettings::BIASCORRECTGYRO_FALSE;
|
||||
AttitudeSettings::GetInstance(getObjectManager())->setData(attitudeSettingsData);
|
||||
|
||||
// Set up to receive updates
|
||||
UAVDataObject *accelState = AccelState::GetInstance(getObjectManager());
|
||||
UAVDataObject *gyroState = GyroState::GetInstance(getObjectManager());
|
||||
connect(accelState, SIGNAL(objectUpdated(UAVObject *)), this, SLOT(sensorsUpdated(UAVObject *)));
|
||||
connect(gyroState, SIGNAL(objectUpdated(UAVObject *)), this, SLOT(sensorsUpdated(UAVObject *)));
|
||||
|
||||
// Speed up updates
|
||||
initialAccelStateMdata = accelState->getMetadata();
|
||||
UAVObject::Metadata accelStateMdata = initialAccelStateMdata;
|
||||
UAVObject::SetFlightTelemetryUpdateMode(accelStateMdata, UAVObject::UPDATEMODE_PERIODIC);
|
||||
accelStateMdata.flightTelemetryUpdatePeriod = 30; // ms
|
||||
accelState->setMetadata(accelStateMdata);
|
||||
|
||||
initialGyroStateMdata = gyroState->getMetadata();
|
||||
UAVObject::Metadata gyroStateMdata = initialGyroStateMdata;
|
||||
UAVObject::SetFlightTelemetryUpdateMode(gyroStateMdata, UAVObject::UPDATEMODE_PERIODIC);
|
||||
gyroStateMdata.flightTelemetryUpdatePeriod = 30; // ms
|
||||
gyroState->setMetadata(gyroStateMdata);
|
||||
|
||||
// Set up timeout timer
|
||||
timer.setSingleShot(true);
|
||||
timer.start(5000 + (NUM_SENSOR_UPDATES * qMax(accelStateMdata.flightTelemetryUpdatePeriod,
|
||||
gyroStateMdata.flightTelemetryUpdatePeriod)));
|
||||
connect(&timer, SIGNAL(timeout()), this, SLOT(timeout()));
|
||||
}
|
||||
|
||||
void ConfigCCAttitudeWidget::openHelp()
|
||||
{
|
||||
QDesktopServices::openUrl(QUrl(tr("http://wiki.openpilot.org/x/44Cf"), QUrl::StrictMode));
|
||||
}
|
||||
|
||||
void ConfigCCAttitudeWidget::setAccelFiltering(bool active)
|
||||
{
|
||||
Q_UNUSED(active);
|
||||
setDirty(true);
|
||||
}
|
||||
|
||||
void ConfigCCAttitudeWidget::enableControls(bool enable)
|
||||
{
|
||||
ui->zeroBias->setEnabled(enable);
|
||||
ui->zeroGyroBiasOnArming->setEnabled(enable);
|
||||
ui->accelTauSpinbox->setEnabled(enable);
|
||||
ConfigTaskWidget::enableControls(enable);
|
||||
}
|
||||
|
||||
void ConfigCCAttitudeWidget::updateObjectsFromWidgets()
|
||||
{
|
||||
ConfigTaskWidget::updateObjectsFromWidgets();
|
||||
|
||||
ui->zeroBiasProgress->setValue(0);
|
||||
}
|
@ -1,74 +0,0 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
*
|
||||
* @file configccattitudewidget.h
|
||||
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
||||
* @addtogroup GCSPlugins GCS Plugins
|
||||
* @{
|
||||
* @addtogroup ConfigPlugin Config Plugin
|
||||
* @{
|
||||
* @brief Configure the properties of the attitude module in CopterControl
|
||||
*****************************************************************************/
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
#ifndef CCATTITUDEWIDGET_H
|
||||
#define CCATTITUDEWIDGET_H
|
||||
|
||||
#include "ui_ccattitude.h"
|
||||
#include "../uavobjectwidgetutils/configtaskwidget.h"
|
||||
#include "extensionsystem/pluginmanager.h"
|
||||
#include "uavobjectmanager.h"
|
||||
#include "uavobject.h"
|
||||
#include <QWidget>
|
||||
#include <QTimer>
|
||||
|
||||
class Ui_Widget;
|
||||
|
||||
class ConfigCCAttitudeWidget : public ConfigTaskWidget {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ConfigCCAttitudeWidget(QWidget *parent = 0);
|
||||
~ConfigCCAttitudeWidget();
|
||||
|
||||
virtual void updateObjectsFromWidgets();
|
||||
|
||||
private slots:
|
||||
void sensorsUpdated(UAVObject *obj);
|
||||
void timeout();
|
||||
void startAccelCalibration();
|
||||
void openHelp();
|
||||
void setAccelFiltering(bool active);
|
||||
|
||||
private:
|
||||
Ui_ccattitude *ui;
|
||||
QTimer timer;
|
||||
UAVObject::Metadata initialAccelStateMdata;
|
||||
UAVObject::Metadata initialGyroStateMdata;
|
||||
|
||||
int accelUpdates;
|
||||
int gyroUpdates;
|
||||
|
||||
QList<double> x_accum, y_accum, z_accum;
|
||||
QList<double> x_gyro_accum, y_gyro_accum, z_gyro_accum;
|
||||
|
||||
static const float DEFAULT_ENABLED_ACCEL_TAU = 0.1;
|
||||
static const int NUM_SENSOR_UPDATES = 300;
|
||||
protected:
|
||||
virtual void enableControls(bool enable);
|
||||
};
|
||||
|
||||
#endif // CCATTITUDEWIDGET_H
|
@ -12,9 +12,7 @@
|
||||
<file>images/fixedwing-shapes.svg</file>
|
||||
<file>images/ground-shapes.svg</file>
|
||||
<file>images/ccpm_setup.svg</file>
|
||||
<file>images/PipXtreme.png</file>
|
||||
<file>images/help.png</file>
|
||||
<file>images/coptercontrol.svg</file>
|
||||
<file>images/TX2.svg</file>
|
||||
<file>images/output_selected.png</file>
|
||||
<file>images/output_normal.png</file>
|
||||
|
@ -28,14 +28,12 @@
|
||||
#include "configgadgetwidget.h"
|
||||
|
||||
#include "configvehicletypewidget.h"
|
||||
#include "configccattitudewidget.h"
|
||||
#include "configinputwidget.h"
|
||||
#include "configoutputwidget.h"
|
||||
#include "configstabilizationwidget.h"
|
||||
#include "configcamerastabilizationwidget.h"
|
||||
#include "configtxpidwidget.h"
|
||||
#include "configrevohwwidget.h"
|
||||
#include "config_cc_hw_widget.h"
|
||||
#include "configoplinkwidget.h"
|
||||
#include "configrevowidget.h"
|
||||
#include "defaultattitudewidget.h"
|
||||
@ -183,19 +181,13 @@ void ConfigGadgetWidget::onAutopilotConnect()
|
||||
UAVObjectUtilManager *utilMngr = pm->getObject<UAVObjectUtilManager>();
|
||||
if (utilMngr) {
|
||||
int board = utilMngr->getBoardModel();
|
||||
if ((board & 0xff00) == 1024) {
|
||||
// CopterControl family
|
||||
QWidget *qwd = new ConfigCCAttitudeWidget(this);
|
||||
stackWidget->replaceTab(ConfigGadgetWidget::sensors, qwd);
|
||||
|
||||
qwd = new ConfigCCHWWidget(this);
|
||||
stackWidget->replaceTab(ConfigGadgetWidget::hardware, qwd);
|
||||
} else if ((board & 0xff00) == 0x0900) {
|
||||
if ((board & 0xff00) == 0x0900) {
|
||||
// Revolution family
|
||||
QWidget *qwd = new ConfigRevoWidget(this);
|
||||
stackWidget->replaceTab(ConfigGadgetWidget::sensors, qwd);
|
||||
|
||||
qwd = new ConfigRevoHWWidget(this);
|
||||
if (board == 0x0903) {
|
||||
qwd = new ConfigRevoHWWidget(this);
|
||||
}
|
||||
stackWidget->replaceTab(ConfigGadgetWidget::hardware, qwd);
|
||||
} else {
|
||||
// Unknown board
|
||||
|
@ -354,11 +354,7 @@ void ConfigOutputWidget::refreshWidgetsValues(UAVObject *obj)
|
||||
if (utilMngr) {
|
||||
int board = utilMngr->getBoardModel();
|
||||
// Setup labels and combos for banks according to board type
|
||||
if ((board & 0xff00) == 0x0400) {
|
||||
// Coptercontrol family of boards 4 timer banks
|
||||
bankLabels << "1 (1-3)" << "2 (4)" << "3 (5,7-8)" << "4 (6,9-10)";
|
||||
channelBanks << 1 << 1 << 1 << 2 << 3 << 4 << 3 << 3 << 4 << 4;
|
||||
} else if ((board & 0xff00) == 0x0900) {
|
||||
if ((board & 0xff00) == 0x0900) {
|
||||
// Revolution family of boards 6 timer banks
|
||||
bankLabels << "1 (1-2)" << "2 (3)" << "3 (4)" << "4 (5-6)" << "5 (7-8)" << "6 (9-10)";
|
||||
channelBanks << 1 << 1 << 2 << 3 << 4 << 4 << 5 << 5 << 6 << 6;
|
||||
|
Before Width: | Height: | Size: 77 KiB |
@ -1,2647 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg3578"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.1 "
|
||||
width="217.16675"
|
||||
height="212.0625"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="deviceID-0401.svg"><metadata
|
||||
id="metadata3584"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs3582"><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath3596"><path
|
||||
d="M 0,0 662,0 662,675 0,675 0,0 z"
|
||||
id="path3598"
|
||||
inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="738"
|
||||
id="namedview3580"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.4596704"
|
||||
inkscape:cx="74.195835"
|
||||
inkscape:cy="113.87434"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer2"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" /><g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Rendering#1"
|
||||
style="display:inline"
|
||||
transform="translate(-40.177007,-31.1875)"><g
|
||||
id="device"
|
||||
inkscape:label="#g15334"
|
||||
transform="matrix(0,1,-1,0,285.97623,-11.53961)"><rect
|
||||
rx="13.079585"
|
||||
ry="10"
|
||||
y="32.199471"
|
||||
x="46.668976"
|
||||
height="210.03767"
|
||||
width="209.67079"
|
||||
id="rect9798"
|
||||
style="fill:#171717;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><g
|
||||
transform="translate(-311.74173,-199.45)"
|
||||
id="g4318"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4320"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4322"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4324"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
transform="matrix(0,-1,1,0,-158.96398,620.23853)"
|
||||
id="g4406"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4408"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4410"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4412"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10505"
|
||||
transform="translate(-238.1085,-287.13166)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10507"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10509"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10511"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="translate(-297.20885,-185.40155)"
|
||||
id="g10513"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10515"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10517"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10519"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g4225"
|
||||
style="display:inline"
|
||||
transform="translate(-324.12933,-188.57649)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4219"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4221"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4223"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="translate(-229.42344,-179.37234)"
|
||||
style="display:inline"
|
||||
id="g10548"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10550"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10552"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10554"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g10556"
|
||||
style="display:inline"
|
||||
transform="translate(-230.15008,-167.50383)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10558"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10560"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10562"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="translate(-235.23659,-253.7322)"
|
||||
style="display:inline"
|
||||
id="g10564"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10566"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10568"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10570"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g10572"
|
||||
style="display:inline"
|
||||
transform="translate(-214.16393,-327.60763)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10574"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10576"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10578"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
id="g4414"
|
||||
transform="translate(-365.77251,-288.34483)"
|
||||
style="display:inline"><rect
|
||||
style="fill:#0052ff;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4416"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4418"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4420"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
id="g10667"
|
||||
style="display:inline"
|
||||
transform="translate(-466.1013,-470.16522)"><rect
|
||||
style="fill:#ff7900;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4432"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="522.11609"
|
||||
y="559.755" /><rect
|
||||
y="559.755"
|
||||
x="528.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4434"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4436"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="518.58929"
|
||||
y="559.755" /></g><g
|
||||
transform="matrix(0,1,-1,0,476.81179,-372.57224)"
|
||||
id="g4278"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4280"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4282"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4284"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10761"
|
||||
transform="matrix(0,1,-1,0,476.81179,-340.57224)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10763"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10765"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10767"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0,1,-1,0,531.29622,-332.15009)"
|
||||
id="g10769"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10771"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10773"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10775"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10777"
|
||||
transform="matrix(0,1,-1,0,453.06093,-235.02206)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10779"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10781"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10783"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0,1,-1,0,453.06093,-213.9494)"
|
||||
id="g10785"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10787"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10789"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10791"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10793"
|
||||
transform="matrix(0,1,-1,0,497.6284,-222.66912)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10795"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10797"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10799"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
style="display:inline"
|
||||
id="g10801"
|
||||
transform="matrix(0,-1,1,0,-252.45879,579.30427)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10803"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10805"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10807"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0,-1,1,0,-263.11623,579.54648)"
|
||||
id="g10809"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10811"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10813"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10815"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10817"
|
||||
transform="matrix(0,-1,1,0,-273.53145,580.27312)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10819"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10821"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10823"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0,-1,1,0,-272.56259,546.12087)"
|
||||
id="g10825"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10827"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10829"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10831"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10833"
|
||||
transform="matrix(0,-1,1,0,-257.06086,546.36308)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10835"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10837"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10839"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
id="g10887"><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4550"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(20.6651,-466.48541)" /><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4554"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(4.6651,-466.48541)" /><rect
|
||||
y="71.519623"
|
||||
x="210.81711"
|
||||
height="8.5714283"
|
||||
width="9.6428576"
|
||||
id="rect4556"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /></g><g
|
||||
transform="translate(0,14)"
|
||||
id="g10892"><path
|
||||
transform="translate(20.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10894"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><path
|
||||
transform="translate(4.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10896"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect10898"
|
||||
width="9.6428576"
|
||||
height="8.5714283"
|
||||
x="210.81711"
|
||||
y="71.519623" /></g><g
|
||||
id="g10900"
|
||||
transform="translate(0,30)"><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path10902"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(20.6651,-466.48541)" /><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path10904"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(4.6651,-466.48541)" /><rect
|
||||
y="71.519623"
|
||||
x="210.81711"
|
||||
height="8.5714283"
|
||||
width="9.6428576"
|
||||
id="rect10906"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /></g><g
|
||||
transform="translate(0,46)"
|
||||
id="g10908"><path
|
||||
transform="translate(20.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10910"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><path
|
||||
transform="translate(4.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10912"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect10914"
|
||||
width="9.6428576"
|
||||
height="8.5714283"
|
||||
x="210.81711"
|
||||
y="71.519623" /></g><g
|
||||
id="g10916"
|
||||
transform="translate(0,62)"><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path10918"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(20.6651,-466.48541)" /><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path10920"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(4.6651,-466.48541)" /><rect
|
||||
y="71.519623"
|
||||
x="210.81711"
|
||||
height="8.5714283"
|
||||
width="9.6428576"
|
||||
id="rect10922"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /></g><g
|
||||
transform="translate(0,76)"
|
||||
id="g10924"><path
|
||||
transform="translate(20.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10926"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><path
|
||||
transform="translate(4.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10928"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect10930"
|
||||
width="9.6428576"
|
||||
height="8.5714283"
|
||||
x="210.81711"
|
||||
y="71.519623" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.2406633,-1.7870765,0,753.06413,-443.20477)"
|
||||
id="g4788"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4790"
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4792"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4794"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g12054"
|
||||
transform="matrix(0,1.2406633,-1.7870765,0,753.06413,-475.20477)"
|
||||
style="display:inline"><rect
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12056"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect12058"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12060"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(1.2406633,0,0,1.7870765,-460.86273,-457.63731)"
|
||||
id="g12062"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect12064"
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12066"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect12068"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g12070"
|
||||
transform="matrix(1.2406633,0,0,1.7870765,-426.86273,-457.63731)"
|
||||
style="display:inline"><rect
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12072"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect12074"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12076"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
id="g12796"><g
|
||||
transform="translate(-0.3633218,-0.12110727)"
|
||||
id="g12766"><path
|
||||
d="m 133.77917,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5376"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 130.94256,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5378"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 145.57351,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5386"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 142.58758,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5388"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 139.75097,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5390"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 130.94256,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5454"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 133.77917,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5456"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 139.75097,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5466"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 142.58758,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5468"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 145.57351,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5470"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,57.810942 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5612"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,60.64656 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5614"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,63.63141 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5616"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,63.63141 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5618"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,60.64656 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5620"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,57.810942 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5622"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,46.020858 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5624"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,49.005667 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5626"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,51.841284 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5628"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,51.841284 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5630"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,49.005667 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5632"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,46.020858 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5634"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 136.76509,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5636"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,54.826134 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5726"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 136.76509,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5728"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,54.826134 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5730"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,43.036008 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5738"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,43.036008 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5740"
|
||||
inkscape:connector-curvature="0" /></g><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4974"
|
||||
width="24.34742"
|
||||
height="31.192205"
|
||||
x="125.66183"
|
||||
y="37.711323" /></g><g
|
||||
id="g12828"><g
|
||||
id="g12830"
|
||||
transform="translate(-0.3633218,-0.12110727)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12832"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 133.77917,39.752694 0,-2.686385" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12834"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 130.94256,39.752694 0,-2.686385" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12836"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 145.57351,39.752694 0,-2.686385" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12838"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 142.58758,39.752694 0,-2.686385" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12840"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 139.75097,39.752694 0,-2.686385" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12842"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 130.94256,69.7503 0,-2.686344" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12844"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 133.77917,69.7503 0,-2.686344" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12846"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 139.75097,69.7503 0,-2.686344" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12848"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 142.58758,69.7503 0,-2.686344" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12850"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 145.57351,69.7503 0,-2.686344" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12852"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,57.810942 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12854"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,60.64656 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12856"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,63.63141 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12858"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,63.63141 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12860"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,60.64656 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12862"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,57.810942 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12864"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,46.020858 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12866"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,49.005667 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12868"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,51.841284 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12870"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,51.841284 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12872"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,49.005667 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12874"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,46.020858 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12876"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 136.76509,39.752694 0,-2.686385" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12878"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,54.826134 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12880"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 136.76509,69.7503 0,-2.686344" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12882"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,54.826134 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12884"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,43.036008 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12886"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,43.036008 2.53802,0" /></g><rect
|
||||
y="37.711323"
|
||||
x="125.66183"
|
||||
height="31.192205"
|
||||
width="24.34742"
|
||||
id="rect12888"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /></g><g
|
||||
transform="translate(0.68508616,38.685086)"
|
||||
id="g12890"><g
|
||||
transform="translate(-0.3633218,-0.12110727)"
|
||||
id="g12892"><path
|
||||
d="m 133.77917,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12894"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 130.94256,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12896"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 145.57351,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12898"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 142.58758,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12900"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 139.75097,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12902"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 130.94256,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12904"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 133.77917,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12906"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 139.75097,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12908"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 142.58758,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12910"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 145.57351,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12912"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,57.810942 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12914"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,60.64656 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12916"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,63.63141 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12918"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,63.63141 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12920"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,60.64656 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12922"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,57.810942 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12924"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,46.020858 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12926"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,49.005667 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12928"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,51.841284 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12930"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,51.841284 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12932"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,49.005667 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12934"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,46.020858 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12936"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 136.76509,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12938"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,54.826134 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12940"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 136.76509,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12942"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,54.826134 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12944"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,43.036008 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12946"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,43.036008 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12948"
|
||||
inkscape:connector-curvature="0" /></g><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect12950"
|
||||
width="24.34742"
|
||||
height="31.192205"
|
||||
x="125.66183"
|
||||
y="37.711323" /></g><g
|
||||
id="g12952"
|
||||
style="display:inline"
|
||||
transform="matrix(0.55313316,0,0,0.55313316,202.151,-66.0335)"><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:3.61576581;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3773"
|
||||
width="76.428574"
|
||||
height="76.785713"
|
||||
x="-104.28571"
|
||||
y="358.43362"
|
||||
ry="2.5" /><g
|
||||
id="g3875"
|
||||
transform="translate(-520,-37.142857)"><g
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"
|
||||
id="g3781"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3777"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3779"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3785"
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3787"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3789"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"
|
||||
id="g3791"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3793"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3795"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3797"
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3799"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3801"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"
|
||||
id="g3803"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3805"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3807"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3809"
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3811"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3813"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"
|
||||
id="g3815"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3817"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3819"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3821"
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3823"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3825"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"
|
||||
id="g3827"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3829"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3831"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3833"
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3835"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3837"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"
|
||||
id="g3839"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3841"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3843"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3845"
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3847"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3849"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"
|
||||
id="g3851"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3853"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3855"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3857"
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3859"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3861"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"
|
||||
id="g3863"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3865"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3867"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3869"
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3871"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3873"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g></g><g
|
||||
id="g3925"
|
||||
transform="matrix(0,1,-1,0,367.93406,-54.993437)"><g
|
||||
id="g3927"
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3929"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3931"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"
|
||||
id="g3933"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3935"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3937"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3939"
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3941"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3943"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"
|
||||
id="g3945"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3947"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3949"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3951"
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3953"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3955"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"
|
||||
id="g3957"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3959"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3961"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3963"
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3965"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3967"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"
|
||||
id="g3969"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3971"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3973"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3975"
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3977"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"
|
||||
id="g3981"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3983"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3985"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3987"
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3989"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3991"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"
|
||||
id="g3993"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3995"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3997"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3999"
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4001"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4003"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"
|
||||
id="g4005"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4007"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4009"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4011"
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4013"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4015"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"
|
||||
id="g4017"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4019"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4021"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g></g><g
|
||||
transform="matrix(0,1,1,0,-500.02315,-54.993437)"
|
||||
id="g4023"><g
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"
|
||||
id="g4025"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4027"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4029"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4031"
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4033"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4035"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"
|
||||
id="g4037"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4039"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4041"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4043"
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4045"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4047"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"
|
||||
id="g4049"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4051"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4053"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4055"
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4057"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4059"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"
|
||||
id="g4061"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4063"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4065"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4067"
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4069"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4071"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"
|
||||
id="g4073"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4075"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4077"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4079"
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4081"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4083"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"
|
||||
id="g4085"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4087"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4089"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4091"
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4093"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4095"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"
|
||||
id="g4097"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4099"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4101"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4103"
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4105"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4107"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"
|
||||
id="g4109"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4111"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4113"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4115"
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4117"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4119"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g></g><g
|
||||
id="g4121"
|
||||
transform="matrix(1,0,0,-1,-520,830.07704)"><g
|
||||
id="g4123"
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4125"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4127"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"
|
||||
id="g4129"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4131"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4133"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4135"
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4137"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4139"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"
|
||||
id="g4141"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4143"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4145"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4147"
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4149"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4151"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"
|
||||
id="g4153"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4155"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4157"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4159"
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4161"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4163"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"
|
||||
id="g4165"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4167"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4169"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4171"
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4173"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4175"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"
|
||||
id="g4177"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4179"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4181"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4183"
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4185"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4187"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"
|
||||
id="g4189"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4191"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4193"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4195"
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4197"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4199"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"
|
||||
id="g4201"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4203"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4205"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4207"
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4209"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4211"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"
|
||||
id="g4213"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4215"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4217"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g></g></g><g
|
||||
style="display:inline"
|
||||
id="g4920"
|
||||
transform="matrix(0.41419929,0,0,0.41419929,-10.368172,-50.871127)"><g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-33.0226)"
|
||||
id="g4871"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4867"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4869"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g4875"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-23.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4877"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4879"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-13.0226)"
|
||||
id="g4881"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4883"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4885"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g4887"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-13.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4889"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4891"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-33.0226)"
|
||||
id="g4899"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4901"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4903"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><rect
|
||||
ry="1.5"
|
||||
y="590.15265"
|
||||
x="443.12988"
|
||||
height="31.819805"
|
||||
width="18.687822"
|
||||
id="rect4841"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:2.41429687;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
transform="matrix(0,0.41419929,-0.41419929,0,462.12545,-133.30339)"
|
||||
id="g13877"
|
||||
style="display:inline"><g
|
||||
style="display:inline"
|
||||
id="g13879"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-33.0226)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect13881"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect13883"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-23.0226)"
|
||||
id="g13885"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect13887"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect13889"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g13891"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-13.0226)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect13893"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect13895"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-13.0226)"
|
||||
id="g13897"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect13899"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect13901"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g13903"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-33.0226)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect13905"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect13907"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:2.41429687;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect13909"
|
||||
width="18.687822"
|
||||
height="31.819805"
|
||||
x="443.12988"
|
||||
y="590.15265"
|
||||
ry="1.5" /></g><g
|
||||
id="g13760"
|
||||
style="display:inline"
|
||||
transform="matrix(0,0.61819183,-0.61819183,0,444.94676,-97.125819)"><rect
|
||||
transform="translate(188.57143,331.57648)"
|
||||
y="269.42856"
|
||||
x="140.71428"
|
||||
height="52.142857"
|
||||
width="89.285713"
|
||||
id="rect5020"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:#828282;stroke-width:3.23524165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /><g
|
||||
transform="matrix(-1.4970318,0,0,1,971.39158,213.03078)"
|
||||
id="g4964-3"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4966-2"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4968-1"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g5046"
|
||||
transform="matrix(-1.4970318,0,0,1,981.39158,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect5048"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect5050"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,991.39158,213.03078)"
|
||||
id="g5052"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect5054"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect5056"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g5058"
|
||||
transform="matrix(-1.4970318,0,0,1,1001.3916,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect5060"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect5062"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,1011.3916,213.03078)"
|
||||
id="g5064"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect5066"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect5068"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g5070"
|
||||
transform="matrix(-1.4970318,0,0,1,1021.3916,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect5072"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect5074"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
style="display:inline"
|
||||
id="g13998"
|
||||
transform="matrix(-1.4970318,0,0,1,1031.0972,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14000"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14002"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,1040.8028,213.03078)"
|
||||
id="g14004"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14006"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14008"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g></g><g
|
||||
style="display:inline"
|
||||
id="g4920-2"
|
||||
transform="matrix(-0.48222043,0,0,-0.59728256,285.82656,546.58597)"><g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-33.0226)"
|
||||
id="g4871-7"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4867-0"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4869-4"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g4875-1"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-23.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4877-3"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4879-4"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-13.0226)"
|
||||
id="g4881-9"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4883-6"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4885-2"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g4887-8"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-13.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4889-3"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4891-3"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-33.0226)"
|
||||
id="g4899-7"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4901-7"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4903-8"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><rect
|
||||
ry="1.5"
|
||||
y="590.15265"
|
||||
x="443.12988"
|
||||
height="31.819805"
|
||||
width="18.687822"
|
||||
id="rect4841-1"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:1.86331928;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14076"
|
||||
transform="matrix(0,-1,1,0,-150.96398,652.23853)"><rect
|
||||
y="365.75504"
|
||||
x="426.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect14080"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect14082"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0.61819183,0,0,0.48347584,-108.7519,-76.23362)"
|
||||
style="display:inline"
|
||||
id="g14084"><rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:#828282;stroke-width:3.65831399;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect14086"
|
||||
width="53.268898"
|
||||
height="52.142857"
|
||||
x="329.28571"
|
||||
y="601.00507" /><g
|
||||
style="display:inline"
|
||||
id="g14088"
|
||||
transform="matrix(-1.4970318,0,0,1,971.39158,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14090"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14092"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,981.39158,213.03078)"
|
||||
id="g14094"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14096"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14098"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14100"
|
||||
transform="matrix(-1.4970318,0,0,1,991.39158,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14102"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14104"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,1001.3916,213.03078)"
|
||||
id="g14106"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14108"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14110"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g></g><g
|
||||
id="g14136"
|
||||
style="display:inline"
|
||||
transform="matrix(0.61819183,0,0,0.48347584,-30.7519,-76.23362)"><rect
|
||||
y="601.00507"
|
||||
x="329.28571"
|
||||
height="52.142857"
|
||||
width="53.268898"
|
||||
id="rect14138"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:#828282;stroke-width:3.65831399;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /><g
|
||||
transform="matrix(-1.4970318,0,0,1,971.39158,213.03078)"
|
||||
id="g14140"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14142"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14144"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14146"
|
||||
transform="matrix(-1.4970318,0,0,1,981.39158,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14148"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14150"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,991.39158,213.03078)"
|
||||
id="g14152"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14154"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14156"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14158"
|
||||
transform="matrix(-1.4970318,0,0,1,1001.3916,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14160"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14162"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(2.4017041,0,0,3.9408912,-788.51882,-1271.7817)"
|
||||
id="g14164"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect14166"
|
||||
style="fill:#00440d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect14168"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect14170"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect14172"
|
||||
width="18.524187"
|
||||
height="28.45186"
|
||||
x="174.85481"
|
||||
y="44.491241" /><g
|
||||
style="display:inline"
|
||||
id="g14192"
|
||||
transform="translate(-342.57061,-300.15766)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect14194"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect14196"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect14198"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
style="display:inline"
|
||||
id="g14200"
|
||||
transform="matrix(0,0.63857044,-0.6183842,0,527.83252,-72.180508)"><g
|
||||
transform="matrix(0,1.4970318,-1,0,852.39835,-33.0226)"
|
||||
id="g14202"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14204"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14206"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g14208"
|
||||
transform="matrix(0,1.4970318,-1,0,852.39835,-23.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14210"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14212"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,-1,0,852.39835,-13.0226)"
|
||||
id="g14214"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14216"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14218"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g14220"
|
||||
transform="matrix(0,1.4970318,1,0,46.519992,-13.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14222"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14224"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,1,0,46.519992,-33.0226)"
|
||||
id="g14226"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14228"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14230"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,1,0,46.519992,-22.679788)"
|
||||
id="g14240"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14242"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14244"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,1,0,46.519992,-3.365413)"
|
||||
id="g14246"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14248"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14250"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14252"
|
||||
transform="matrix(0,1.4970318,-1,0,852.39835,-3.365413)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14254"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14256"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><rect
|
||||
ry="1.9272836"
|
||||
y="590.15265"
|
||||
x="432.12994"
|
||||
height="40.883862"
|
||||
width="34.998043"
|
||||
id="rect14232"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:1.59135258;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g></g></g></svg>
|
Before Width: | Height: | Size: 139 KiB |
@ -89,6 +89,8 @@ void ConnectionManager::init()
|
||||
// new connection object from plugins
|
||||
QObject::connect(ExtensionSystem::PluginManager::instance(), SIGNAL(objectAdded(QObject *)), this, SLOT(objectAdded(QObject *)));
|
||||
QObject::connect(ExtensionSystem::PluginManager::instance(), SIGNAL(aboutToRemoveObject(QObject *)), this, SLOT(aboutToRemoveObject(QObject *)));
|
||||
|
||||
ccWarningClosed = true;
|
||||
}
|
||||
|
||||
|
||||
@ -435,16 +437,23 @@ void ConnectionManager::devChanged(IConnection *connection)
|
||||
}
|
||||
// clear device list combobox
|
||||
m_availableDevList->clear();
|
||||
ccFound = false;
|
||||
|
||||
// remove registered devices of this IConnection from the list
|
||||
updateConnectionList(connection);
|
||||
|
||||
updateConnectionDropdown();
|
||||
|
||||
if (ccFound && ccWarningClosed) {
|
||||
ccWarningClosed = false;
|
||||
QMessageBox::information(this, tr("CopterControl Not Supported"),
|
||||
tr("This version of OpenPilot GCS does not support CC and CC3D boards.\n\nPlease use OpenPilot GCS version 15.02.xx instead"));
|
||||
ccWarningClosed = true;
|
||||
}
|
||||
|
||||
qDebug() << "# devices " << m_devList.count();
|
||||
emit availableDevicesChanged(m_devList);
|
||||
|
||||
|
||||
// disable connection button if the liNameif (m_availableDevList->count() > 0)
|
||||
if (m_availableDevList->count() > 0) {
|
||||
m_connectBtn->setEnabled(true);
|
||||
@ -457,17 +466,21 @@ void ConnectionManager::updateConnectionDropdown()
|
||||
{
|
||||
// add all the list again to the combobox
|
||||
foreach(DevListItem d, m_devList) {
|
||||
m_availableDevList->addItem(d.getConName());
|
||||
m_availableDevList->setItemData(m_availableDevList->count() - 1, d.getConName(), Qt::ToolTipRole);
|
||||
if (!m_ioDev && d.getConName().startsWith("USB")) {
|
||||
if (m_mainWindow->generalSettings()->autoConnect() || m_mainWindow->generalSettings()->autoSelect()) {
|
||||
m_availableDevList->setCurrentIndex(m_availableDevList->count() - 1);
|
||||
}
|
||||
if (m_mainWindow->generalSettings()->autoConnect() && polling) {
|
||||
qDebug() << "Automatically opening device";
|
||||
connectDevice(d);
|
||||
qDebug() << "ConnectionManager::updateConnectionDropdown autoconnected USB device";
|
||||
if (!d.getConName().contains("CopterControl")) {
|
||||
m_availableDevList->addItem(d.getConName());
|
||||
m_availableDevList->setItemData(m_availableDevList->count() - 1, d.getConName(), Qt::ToolTipRole);
|
||||
if (!m_ioDev && d.getConName().startsWith("USB")) {
|
||||
if (m_mainWindow->generalSettings()->autoConnect() || m_mainWindow->generalSettings()->autoSelect()) {
|
||||
m_availableDevList->setCurrentIndex(m_availableDevList->count() - 1);
|
||||
}
|
||||
if (m_mainWindow->generalSettings()->autoConnect() && polling) {
|
||||
qDebug() << "Automatically opening device";
|
||||
connectDevice(d);
|
||||
qDebug() << "ConnectionManager::updateConnectionDropdown autoconnected USB device";
|
||||
}
|
||||
}
|
||||
} else {
|
||||
ccFound = true;
|
||||
}
|
||||
}
|
||||
if (m_ioDev) {
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include <QtCore/QLinkedList>
|
||||
#include <QPushButton>
|
||||
#include <QComboBox>
|
||||
#include <QMessageBox>
|
||||
|
||||
#include "core_global.h"
|
||||
#include <QTimer>
|
||||
@ -149,6 +150,8 @@ protected:
|
||||
private:
|
||||
bool connectDevice();
|
||||
bool polling;
|
||||
bool ccFound;
|
||||
bool ccWarningClosed;
|
||||
Internal::MainWindow *m_mainWindow;
|
||||
QList <IConnection *> connectionBackup;
|
||||
QTimer *reconnect;
|
||||
|
@ -134,7 +134,7 @@ MainWindow::MainWindow() :
|
||||
#endif
|
||||
m_toggleFullScreenAction(0)
|
||||
{
|
||||
setWindowTitle(tr("OpenPilot GCS ")+VersionInfo::label());
|
||||
setWindowTitle(tr("OpenPilot GCS ") + VersionInfo::label());
|
||||
#ifndef Q_WS_MAC
|
||||
qApp->setWindowIcon(QIcon(":/core/images/openpilot_logo_128.png"));
|
||||
#endif
|
||||
|
@ -135,10 +135,9 @@ public:
|
||||
};
|
||||
|
||||
enum USBConstants {
|
||||
idVendor_OpenPilot = 0x20a0,
|
||||
idProduct_OpenPilot = 0x415a,
|
||||
idProduct_CopterControl = 0x415b,
|
||||
idProduct_OPLinkMini = 0x415c
|
||||
idVendor_OpenPilot = 0x20a0,
|
||||
idProduct_OpenPilot = 0x415a,
|
||||
idProduct_OPLinkMini = 0x415c
|
||||
};
|
||||
|
||||
static USBMonitor *instance();
|
||||
|
@ -81,10 +81,6 @@ void ConnectionDiagram::setupGraphicsScene()
|
||||
QList<QString> elementsToShow;
|
||||
|
||||
switch (m_configSource->getControllerType()) {
|
||||
case VehicleConfigurationSource::CONTROLLER_CC:
|
||||
case VehicleConfigurationSource::CONTROLLER_CC3D:
|
||||
elementsToShow << "controller-cc";
|
||||
break;
|
||||
case VehicleConfigurationSource::CONTROLLER_REVO:
|
||||
elementsToShow << "controller-revo";
|
||||
break;
|
||||
@ -164,14 +160,6 @@ void ConnectionDiagram::setupGraphicsScene()
|
||||
QString prefix = "";
|
||||
QString suffix = "";
|
||||
switch (m_configSource->getControllerType()) {
|
||||
case VehicleConfigurationSource::CONTROLLER_CC:
|
||||
case VehicleConfigurationSource::CONTROLLER_CC3D:
|
||||
prefix = "cc-";
|
||||
if (m_configSource->getEscType() == VehicleConfigurationSource::ESC_ONESHOT ||
|
||||
m_configSource->getEscType() == VehicleConfigurationSource::ESC_SYNCHED) {
|
||||
suffix = "-oneshot";
|
||||
}
|
||||
break;
|
||||
case VehicleConfigurationSource::CONTROLLER_REVO:
|
||||
prefix = "revo-";
|
||||
break;
|
||||
|
@ -80,9 +80,6 @@ bool ControllerPage::isComplete() const
|
||||
bool ControllerPage::validatePage()
|
||||
{
|
||||
getWizard()->setControllerType((SetupWizard::CONTROLLER_TYPE)ui->boardTypeCombo->itemData(ui->boardTypeCombo->currentIndex()).toInt());
|
||||
if (getWizard()->getControllerType() == SetupWizard::CONTROLLER_CC || getWizard()->getControllerType() == SetupWizard::CONTROLLER_CC3D) {
|
||||
getWizard()->setGpsType(SetupWizard::GPS_DISABLED);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -101,12 +98,6 @@ SetupWizard::CONTROLLER_TYPE ControllerPage::getControllerType()
|
||||
case 0x0301:
|
||||
return SetupWizard::CONTROLLER_OPLINK;
|
||||
|
||||
case 0x0401:
|
||||
return SetupWizard::CONTROLLER_CC;
|
||||
|
||||
case 0x0402:
|
||||
return SetupWizard::CONTROLLER_CC3D;
|
||||
|
||||
case 0x0903:
|
||||
return SetupWizard::CONTROLLER_REVO;
|
||||
|
||||
@ -129,8 +120,6 @@ void ControllerPage::setupBoardTypes()
|
||||
QVariant v(0);
|
||||
|
||||
ui->boardTypeCombo->addItem(tr("<Unknown>"), SetupWizard::CONTROLLER_UNKNOWN);
|
||||
ui->boardTypeCombo->addItem(tr("OpenPilot CopterControl"), SetupWizard::CONTROLLER_CC);
|
||||
ui->boardTypeCombo->addItem(tr("OpenPilot CopterControl 3D"), SetupWizard::CONTROLLER_CC3D);
|
||||
ui->boardTypeCombo->addItem(tr("OpenPilot Revolution"), SetupWizard::CONTROLLER_REVO);
|
||||
ui->boardTypeCombo->addItem(tr("OpenPilot OPLink Radio Modem"), SetupWizard::CONTROLLER_OPLINK);
|
||||
ui->boardTypeCombo->addItem(tr("OpenPilot DiscoveryF4"), SetupWizard::CONTROLLER_DISCOVERYF4);
|
||||
|
@ -73,29 +73,5 @@ void EscPage::initializePage()
|
||||
|
||||
bool EscPage::isSynchOrOneShotAvailable()
|
||||
{
|
||||
bool available = true;
|
||||
|
||||
switch (getWizard()->getControllerType()) {
|
||||
case SetupWizard::CONTROLLER_CC:
|
||||
case SetupWizard::CONTROLLER_CC3D:
|
||||
switch (getWizard()->getVehicleType()) {
|
||||
case SetupWizard::VEHICLE_MULTI:
|
||||
switch (getWizard()->getVehicleSubType()) {
|
||||
case SetupWizard::MULTI_ROTOR_TRI_Y:
|
||||
case SetupWizard::MULTI_ROTOR_QUAD_X:
|
||||
case SetupWizard::MULTI_ROTOR_QUAD_H:
|
||||
case SetupWizard::MULTI_ROTOR_QUAD_PLUS:
|
||||
available = getWizard()->getInputType() != SetupWizard::INPUT_PWM;
|
||||
break;
|
||||
default:
|
||||
available = false;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
default: break;
|
||||
}
|
||||
break;
|
||||
default: break;
|
||||
}
|
||||
return available;
|
||||
return true;
|
||||
}
|
||||
|
@ -72,27 +72,6 @@ bool InputPage::restartNeeded(VehicleConfigurationSource::INPUT_TYPE selectedTyp
|
||||
HwSettings *hwSettings = HwSettings::GetInstance(uavoManager);
|
||||
HwSettings::DataFields data = hwSettings->getData();
|
||||
switch (getWizard()->getControllerType()) {
|
||||
case SetupWizard::CONTROLLER_CC:
|
||||
case SetupWizard::CONTROLLER_CC3D:
|
||||
{
|
||||
switch (selectedType) {
|
||||
case VehicleConfigurationSource::INPUT_PWM:
|
||||
return data.CC_RcvrPort != HwSettings::CC_RCVRPORT_PWMNOONESHOT;
|
||||
|
||||
case VehicleConfigurationSource::INPUT_PPM:
|
||||
return data.CC_RcvrPort != HwSettings::CC_RCVRPORT_PPMNOONESHOT;
|
||||
|
||||
case VehicleConfigurationSource::INPUT_SBUS:
|
||||
return data.CC_MainPort != HwSettings::CC_MAINPORT_SBUS;
|
||||
|
||||
case VehicleConfigurationSource::INPUT_DSM:
|
||||
// TODO: Handle all of the DSM types ?? Which is most common?
|
||||
return data.CC_MainPort != HwSettings::CC_MAINPORT_DSM;
|
||||
|
||||
default: return true;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case SetupWizard::CONTROLLER_REVO:
|
||||
case SetupWizard::CONTROLLER_DISCOVERYF4:
|
||||
{
|
||||
|
@ -15,7 +15,7 @@
|
||||
height="1074.8231"
|
||||
width="1398.5884"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
inkscape:version="0.48.4 r9939"
|
||||
sodipodi:docname="connection-diagrams.svg">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
@ -26,17 +26,17 @@
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="928"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1176"
|
||||
id="namedview4616"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.70159644"
|
||||
inkscape:cx="305.10274"
|
||||
inkscape:cx="136.91489"
|
||||
inkscape:cy="632.28327"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-x="1600"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer17"
|
||||
inkscape:current-layer="svg12651"
|
||||
fit-margin-top="15"
|
||||
fit-margin-left="15"
|
||||
fit-margin-right="15"
|
||||
@ -18306,721 +18306,6 @@
|
||||
id="tspan11335">Satellite</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer19"
|
||||
inkscape:label="cc-pwm"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="cc-pwm"
|
||||
transform="translate(1,-2)">
|
||||
<path
|
||||
id="path8856-1-8-4"
|
||||
d="M 309.08544,189.42619 L 430.46875,188.94219"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#ec1d00;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path8856-1-5-8-4"
|
||||
d="M 309.08544,183.82619 L 430.46875,183.62059"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#000000;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path8856-1-3-1-3"
|
||||
d="M 309.08544,195.62619 L 430.46875,195.21419"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:5.17476749;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:none;stroke:#1f4697;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:round"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 303.76407,219.75113 L 378.94,219.65633 L 378.94,203.58874 L 430.34,203.43994"
|
||||
id="path8856-5" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:none;stroke:#fac204;stroke-width:5.61399984;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 303.76407,244.51434 L 388.46407,244.51434 L 388.16407,211.51434 L 430.56407,211.51434"
|
||||
id="path8856-5-1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:none;stroke:#32a304;stroke-width:5.61399984;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 303.76407,271.55113 L 395.804,271.58223 L 395.80447,219.51734 L 430.40447,219.51134"
|
||||
id="path8856-5-1-7" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:none;stroke:#ec6004;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:round"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 320.88407,294.27993 L 403.284,294.02753 L 403.284,226.51434 L 430.71887,226.51434"
|
||||
id="path8856-5-1-7-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#777777;stroke-width:5.80000019;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 131.51628,280.89645 C 99.179438,276.41438 56.116118,293.77498 44.942858,345.61434"
|
||||
id="path9857-3-9" />
|
||||
<path
|
||||
style="fill:none;stroke:#6b6b6b;stroke-width:1.21428466;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 309.08544,198.82619 L 430.46875,198.54819"
|
||||
id="path8856-4-4"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:nodetypes="sssccccssssss"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect8853-0-8"
|
||||
d="M 136.31357,163.05542 L 323.35356,163.05542 C 326.94348,163.05542 329.83356,165.9455 329.83356,169.53542 L 329.83356,178.37557 L 323.83356,178.37557 L 323.83356,300.73558 L 329.834,300.73558 L 329.83356,310.97542 C 329.83341,314.56534 326.94348,317.45542 323.35356,317.45542 L 136.31357,317.45542 C 132.72364,317.45542 129.83356,314.56534 129.83356,310.97542 L 129.83356,169.53542 C 129.83356,165.9455 132.72364,163.05542 136.31357,163.05542 z"
|
||||
style="color:#000000;fill:url(#linearGradient13565);fill-rule:nonzero;stroke:#000000;stroke-width:3.09599996;stroke-miterlimit:4;stroke-dasharray:none;display:inline;enable-background:accumulate" />
|
||||
<g
|
||||
style="font-size:22.39999962px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;font-family:Sans"
|
||||
id="text9734"
|
||||
transform="translate(0,31)">
|
||||
<path
|
||||
d="M 218.29909,148.86051 L 233.34909,148.86051 L 233.34909,152.04333 L 227.93502,152.04333 L 227.93502,165.1902 L 223.72409,165.1902 L 223.72409,152.04333 L 218.29909,152.04333 L 218.29909,148.86051"
|
||||
id="path13625"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 247.65534,157.73083 L 247.65534,165.1902 L 243.71784,165.1902 L 243.71784,163.97614 L 243.71784,159.5027 C 243.71783,158.43083 243.69234,157.69438 243.64124,157.29333 C 243.59744,156.89229 243.51727,156.59698 243.40061,156.40739 C 243.24748,156.15219 243.03966,155.95531 242.77717,155.81676 C 242.51466,155.67094 242.21571,155.59802 241.8803,155.59801 C 241.06362,155.59802 240.42196,155.91521 239.9553,156.54958 C 239.48862,157.17667 239.25529,158.04802 239.2553,159.16364 L 239.2553,165.1902 L 235.33967,165.1902 L 235.33967,148.17145 L 239.2553,148.17145 L 239.2553,154.73395 C 239.84592,154.01938 240.473,153.49438 241.13655,153.15895 C 241.80008,152.81626 242.53289,152.6449 243.33499,152.64489 C 244.74956,152.6449 245.82143,153.07875 246.55061,153.94645 C 247.28705,154.81417 247.65528,156.07563 247.6553,157.73083"
|
||||
id="path13627"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 260.40846,156.27614 C 260.06574,156.11573 259.72303,155.99906 259.38034,155.92614 C 259.04491,155.84594 258.70585,155.80584 258.36315,155.80583 C 257.35689,155.80584 256.58033,156.13031 256.03346,156.77926 C 255.49387,157.42094 255.22408,158.34333 255.22409,159.54645 L 255.22409,165.1902 L 251.30846,165.1902 L 251.30846,152.9402 L 255.22409,152.9402 L 255.22409,154.9527 C 255.72721,154.15063 256.30325,153.5673 256.95221,153.2027 C 257.60845,152.83084 258.39231,152.6449 259.30377,152.64489 C 259.43501,152.6449 259.5772,152.65189 259.73034,152.66679 C 259.88345,152.67379 260.10585,152.69599 260.39752,152.73239 L 260.40842,156.27614"
|
||||
id="path13629"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 268.2069,155.44489 C 267.33919,155.4449 266.67565,155.75844 266.21628,156.38551 C 265.76419,157.00531 265.53815,157.90219 265.53815,159.07614 C 265.53815,160.2501 265.76419,161.15062 266.21628,161.7777 C 266.67565,162.3975 267.33919,162.70739 268.2069,162.70739 C 269.06002,162.70739 269.71262,162.3975 270.16471,161.7777 C 270.61679,161.15062 270.84283,160.2501 270.84284,159.07614 C 270.84283,157.90219 270.61679,157.00531 270.16471,156.38551 C 269.71262,155.75844 269.06002,155.4449 268.2069,155.44489 M 268.2069,152.64489 C 270.31418,152.6449 271.95845,153.21365 273.13971,154.35114 C 274.32824,155.48865 274.92251,157.06365 274.92253,159.07614 C 274.92251,161.08864 274.32824,162.66364 273.13971,163.80114 C 271.95845,164.93864 270.31418,165.50739 268.2069,165.50739 C 266.09231,165.50739 264.43711,164.93864 263.24128,163.80114 C 262.05273,162.66364 261.45846,161.08864 261.45846,159.07614 C 261.45846,157.06365 262.05273,155.48865 263.24128,154.35114 C 264.43711,153.21365 266.09231,152.6449 268.2069,152.64489"
|
||||
id="path13631"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 282.05377,149.46208 L 282.05377,152.9402 L 286.08971,152.9402 L 286.08971,155.7402 L 282.05377,155.7402 L 282.05377,160.93551 C 282.05377,161.50427 282.16679,161.89072 282.39284,162.09489 C 282.61887,162.29177 283.06731,162.3902 283.73815,162.3902 L 285.75065,162.3902 L 285.75065,165.1902 L 282.39284,165.1902 C 280.847,165.1902 279.7496,164.86937 279.10065,164.2277 C 278.45898,163.57874 278.13815,162.48135 278.13815,160.93551 L 278.13815,155.7402 L 276.19127,155.7402 L 276.19127,152.9402 L 278.13815,152.9402 L 278.13815,149.46208 L 282.05377,149.46208"
|
||||
id="path13633"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 292.77253,149.46208 L 292.77253,152.9402 L 296.80847,152.9402 L 296.80847,155.7402 L 292.77253,155.7402 L 292.77253,160.93551 C 292.77252,161.50427 292.88554,161.89072 293.11159,162.09489 C 293.33763,162.29177 293.78606,162.3902 294.4569,162.3902 L 296.4694,162.3902 L 296.4694,165.1902 L 293.11159,165.1902 C 291.56575,165.1902 290.46836,164.86937 289.8194,164.2277 C 289.17773,163.57874 288.8569,162.48135 288.8569,160.93551 L 288.8569,155.7402 L 286.91003,155.7402 L 286.91003,152.9402 L 288.8569,152.9402 L 288.8569,149.46208 L 292.77253,149.46208"
|
||||
id="path13635"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 299.21472,148.17145 L 303.13034,148.17145 L 303.13034,165.1902 L 299.21472,165.1902 L 299.21472,148.17145"
|
||||
id="path13637"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 319.14284,159.03239 L 319.14284,160.14801 L 309.98815,160.14801 C 310.08295,161.06677 310.41471,161.75583 310.98346,162.2152 C 311.55221,162.67458 312.347,162.90427 313.36784,162.90426 C 314.19179,162.90427 315.03397,162.78395 315.8944,162.54333 C 316.7621,162.29541 317.65168,161.92354 318.56315,161.4277 L 318.56315,164.44645 C 317.6371,164.79645 316.71105,165.05895 315.78502,165.23395 C 314.85897,165.41624 313.93293,165.50739 313.0069,165.50739 C 310.79023,165.50739 309.06575,164.94593 307.83346,163.82301 C 306.60846,162.69281 305.99596,161.11052 305.99596,159.07614 C 305.99596,157.07823 306.59752,155.50688 307.80065,154.36208 C 309.01106,153.2173 310.67356,152.6449 312.78815,152.64489 C 314.71314,152.6449 316.25168,153.22459 317.40377,154.38395 C 318.56314,155.54334 319.14282,157.09281 319.14284,159.03239 M 315.11784,157.73083 C 315.11783,156.98708 314.89908,156.38917 314.46159,155.93708 C 314.03137,155.47771 313.46627,155.24802 312.76627,155.24801 C 312.00793,155.24802 311.39179,155.46313 310.91784,155.89333 C 310.44387,156.31625 310.14856,156.92875 310.0319,157.73083 L 315.11784,157.73083"
|
||||
id="path13639"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:22.39999962px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#488eff;font-family:Sans"
|
||||
id="text9734-2"
|
||||
transform="translate(0,31)">
|
||||
<path
|
||||
d="M 276.62875,182.50113 C 277.51104,182.50114 278.14176,182.33708 278.52094,182.00894 C 278.90739,181.68083 279.10062,181.14125 279.10063,180.39019 C 279.10062,179.64646 278.90739,179.11417 278.52094,178.79332 C 278.14176,178.4725 277.51104,178.31208 276.62875,178.31207 L 274.85688,178.31207 L 274.85688,182.50113 L 276.62875,182.50113 M 274.85688,185.41051 L 274.85688,191.59019 L 270.64594,191.59019 L 270.64594,175.26051 L 277.07719,175.26051 C 279.22822,175.26052 280.80322,175.62146 281.80219,176.34332 C 282.80843,177.06521 283.31155,178.20635 283.31157,179.76676 C 283.31155,180.84593 283.04905,181.73187 282.52407,182.42457 C 282.00634,183.11729 281.22249,183.6277 280.1725,183.95582 C 280.74853,184.08708 281.26259,184.38604 281.71469,184.85269 C 282.17405,185.31208 282.63707,186.01208 283.10375,186.95269 L 285.38969,191.59019 L 280.90532,191.59019 L 278.91469,187.53238 C 278.51364,186.71572 278.10531,186.15791 277.68969,185.85894 C 277.28135,185.55999 276.73447,185.41051 276.04907,185.41051 L 274.85688,185.41051"
|
||||
id="path13616"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 293.53813,181.84488 C 292.67041,181.84489 292.00687,182.15843 291.5475,182.78551 C 291.09541,183.40531 290.86937,184.30218 290.86938,185.47613 C 290.86937,186.6501 291.09541,187.55062 291.5475,188.17769 C 292.00687,188.79749 292.67041,189.10738 293.53813,189.10738 C 294.39124,189.10738 295.04385,188.79749 295.49594,188.17769 C 295.94801,187.55062 296.17405,186.6501 296.17407,185.47613 C 296.17405,184.30218 295.94801,183.40531 295.49594,182.78551 C 295.04385,182.15843 294.39124,181.84489 293.53813,181.84488 M 293.53813,179.04488 C 295.64541,179.04489 297.28968,179.61364 298.47094,180.75113 C 299.65947,181.88864 300.25374,183.46364 300.25375,185.47613 C 300.25374,187.48864 299.65947,189.06363 298.47094,190.20113 C 297.28968,191.33863 295.64541,191.90738 293.53813,191.90738 C 291.42354,191.90738 289.76833,191.33863 288.5725,190.20113 C 287.38396,189.06363 286.78969,187.48864 286.78969,185.47613 C 286.78969,183.46364 287.38396,181.88864 288.5725,180.75113 C 289.76833,179.61364 291.42354,179.04489 293.53813,179.04488"
|
||||
id="path13618"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 303.10844,174.57144 L 307.02406,174.57144 L 307.02406,191.59019 L 303.10844,191.59019 L 303.10844,174.57144"
|
||||
id="path13620"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 310.80844,174.57144 L 314.72406,174.57144 L 314.72406,191.59019 L 310.80844,191.59019 L 310.80844,174.57144"
|
||||
id="path13622"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:22.39999962px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffdc00;font-family:Sans"
|
||||
id="text9734-2-6"
|
||||
transform="translate(0,31)">
|
||||
<path
|
||||
d="M 259.44596,202.46052 L 266.43502,202.46052 C 268.51314,202.46054 270.10636,202.92356 271.21471,203.84958 C 272.33032,204.76835 272.88813,206.08084 272.88815,207.78708 C 272.88813,209.50063 272.33032,210.82042 271.21471,211.74646 C 270.10636,212.66521 268.51314,213.12459 266.43502,213.12458 L 263.6569,213.12458 L 263.6569,218.79021 L 259.44596,218.79021 L 259.44596,202.46052 M 263.6569,205.51208 L 263.6569,210.07302 L 265.98658,210.07302 C 266.80324,210.07303 267.43397,209.87615 267.87877,209.48239 C 268.32355,209.08136 268.54595,208.51626 268.54596,207.78708 C 268.54595,207.05793 268.32355,206.49647 267.87877,206.10271 C 267.43397,205.70897 266.80324,205.5121 265.98658,205.51208 L 263.6569,205.51208"
|
||||
id="path13605"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 275.67721,206.54021 L 279.59283,206.54021 L 279.59283,218.79021 L 275.67721,218.79021 L 275.67721,206.54021 M 275.67721,201.77146 L 279.59283,201.77146 L 279.59283,204.96521 L 275.67721,204.96521 L 275.67721,201.77146"
|
||||
id="path13607"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 287.65377,203.06208 L 287.65377,206.54021 L 291.68971,206.54021 L 291.68971,209.34021 L 287.65377,209.34021 L 287.65377,214.53552 C 287.65377,215.10427 287.76679,215.49073 287.99284,215.69489 C 288.21887,215.89177 288.66731,215.99021 289.33815,215.99021 L 291.35065,215.99021 L 291.35065,218.79021 L 287.99284,218.79021 C 286.447,218.79021 285.3496,218.46937 284.70065,217.82771 C 284.05898,217.17875 283.73815,216.08136 283.73815,214.53552 L 283.73815,209.34021 L 281.79127,209.34021 L 281.79127,206.54021 L 283.73815,206.54021 L 283.73815,203.06208 L 287.65377,203.06208"
|
||||
id="path13609"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 303.9944,206.92302 L 303.9944,210.11677 C 303.46209,209.7522 302.92616,209.4824 302.38659,209.30739 C 301.85428,209.1324 301.30012,209.0449 300.72409,209.04489 C 299.63033,209.0449 298.7772,209.36574 298.16471,210.00739 C 297.5595,210.64178 297.25689,211.53136 297.2569,212.67614 C 297.25689,213.82094 297.5595,214.71417 298.16471,215.35583 C 298.7772,215.99021 299.63033,216.3074 300.72409,216.30739 C 301.33658,216.3074 301.91626,216.21629 302.46315,216.03396 C 303.0173,215.85167 303.52772,215.58188 303.9944,215.22458 L 303.9944,218.42927 C 303.38189,218.65531 302.75845,218.82302 302.12409,218.93239 C 301.49699,219.04906 300.86626,219.10739 300.2319,219.10739 C 298.02252,219.10739 296.29439,218.54229 295.04752,217.41208 C 293.80065,216.27458 293.17721,214.69594 293.17721,212.67614 C 293.17721,210.65636 293.80065,209.08136 295.04752,207.95114 C 296.29439,206.81366 298.02252,206.24491 300.2319,206.24489 C 300.87356,206.24491 301.50428,206.30319 302.12409,206.41989 C 302.75116,206.52928 303.37459,206.69699 303.9944,206.92302"
|
||||
id="path13611"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 319.71158,211.33083 L 319.71158,218.79021 L 315.77408,218.79021 L 315.77408,217.57614 L 315.77408,213.10271 C 315.77407,212.03084 315.74858,211.29438 315.69748,210.89333 C 315.65368,210.4923 315.57351,210.19699 315.45686,210.00739 C 315.30372,209.7522 315.09591,209.55532 314.83342,209.41677 C 314.57091,209.27095 314.27195,209.19803 313.93654,209.19802 C 313.11987,209.19803 312.4782,209.51522 312.01154,210.14958 C 311.54487,210.77667 311.31154,211.64803 311.31154,212.76364 L 311.31154,218.79021 L 307.39592,218.79021 L 307.39592,201.77146 L 311.31154,201.77146 L 311.31154,208.33396 C 311.90216,207.61938 312.52925,207.09439 313.19279,206.75896 C 313.85633,206.41626 314.58914,206.24491 315.39123,206.24489 C 316.8058,206.24491 317.87768,206.67876 318.60686,207.54646 C 319.3433,208.41418 319.71153,209.67563 319.71154,211.33083"
|
||||
id="path13613"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:22.39999962px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#73ff00;fill-rule:nonzero;enable-background:accumulate;font-family:Sans"
|
||||
id="text9734-2-6-4"
|
||||
transform="translate(0,31)">
|
||||
<path
|
||||
d="M 264.37094,228.86053 L 268.97563,228.86053 L 272.69438,234.67928 L 276.41313,228.86053 L 281.02875,228.86053 L 274.80532,238.31053 L 274.80532,245.19022 L 270.59438,245.19022 L 270.59438,238.31053 L 264.37094,228.86053"
|
||||
id="path13598"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 286.13657,239.67772 C 285.31989,239.67772 284.70375,239.81626 284.28813,240.09334 C 283.87979,240.37043 283.67562,240.77876 283.67563,241.31834 C 283.67562,241.81418 283.83969,242.20428 284.16782,242.48865 C 284.50323,242.76574 284.96625,242.90428 285.55688,242.90428 C 286.29333,242.90428 286.91312,242.64178 287.41625,242.11678 C 287.91937,241.58449 288.17093,240.92095 288.17094,240.12615 L 288.17094,239.67772 L 286.13657,239.67772 M 292.11938,238.20115 L 292.11938,245.19022 L 288.17094,245.19022 L 288.17094,243.37459 C 287.64593,244.11834 287.05531,244.66157 286.39907,245.00428 C 285.74281,245.3397 284.94437,245.5074 284.00375,245.5074 C 282.735,245.5074 281.70323,245.13917 280.90844,244.40272 C 280.12094,243.65897 279.72719,242.69647 279.72719,241.51522 C 279.72719,240.07876 280.21938,239.02512 281.20375,238.35428 C 282.19542,237.68345 283.74854,237.34804 285.86313,237.34803 L 288.17094,237.34803 L 288.17094,237.04178 C 288.17093,236.422 287.92666,235.96991 287.43813,235.68553 C 286.94958,235.39387 286.1876,235.24804 285.15219,235.24803 C 284.31364,235.24804 283.53344,235.33193 282.81157,235.49959 C 282.08969,235.66731 281.41886,235.91887 280.79907,236.25428 L 280.79907,233.26834 C 281.63761,233.06419 282.47979,232.91106 283.32563,232.80897 C 284.17146,232.6996 285.01729,232.64492 285.86313,232.6449 C 288.07249,232.64492 289.66572,233.08242 290.64282,233.9574 C 291.62718,234.82512 292.11937,236.2397 292.11938,238.20115"
|
||||
id="path13600"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 294.68969,232.94022 L 298.49594,232.94022 L 300.55219,241.38397 L 302.61938,232.94022 L 305.88969,232.94022 L 307.94594,241.29647 L 310.01313,232.94022 L 313.81938,232.94022 L 310.59282,245.19022 L 306.31625,245.19022 L 304.24907,236.76834 L 302.19282,245.19022 L 297.91625,245.19022 L 294.68969,232.94022"
|
||||
id="path13602"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:22.39999962px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:end;text-decoration:none;line-height:125%;letter-spacing:0px;word-spacing:0px;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:end;baseline-shift:baseline;color:#000000;fill:#ff7e00;fill-rule:nonzero;enable-background:accumulate;font-family:Sans"
|
||||
id="text9734-2-6-4-2"
|
||||
transform="translate(0,31)">
|
||||
<path
|
||||
d="M 162.89598,252.86053 L 174.26004,252.86053 L 174.26004,256.04334 L 167.10692,256.04334 L 167.10692,259.08397 L 173.83348,259.08397 L 173.83348,262.26678 L 167.10692,262.26678 L 167.10692,269.19022 L 162.89598,269.19022 L 162.89598,252.86053"
|
||||
id="path13577"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 178.03348,252.17147 L 181.94911,252.17147 L 181.94911,269.19022 L 178.03348,269.19022 L 178.03348,252.17147"
|
||||
id="path13579"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 185.73348,256.94022 L 189.64911,256.94022 L 189.64911,269.19022 L 185.73348,269.19022 L 185.73348,256.94022 M 185.73348,252.17147 L 189.64911,252.17147 L 189.64911,255.36522 L 185.73348,255.36522 L 185.73348,252.17147"
|
||||
id="path13581"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 201.76785,267.11209 C 201.22826,267.82668 200.63399,268.35168 199.98504,268.68709 C 199.33608,269.02251 198.58504,269.19022 197.73192,269.19022 C 196.23712,269.19022 195.00118,268.60324 194.0241,267.42928 C 193.04702,266.24803 192.55848,264.74595 192.55848,262.92303 C 192.55848,261.09283 193.04702,259.59439 194.0241,258.42772 C 195.00118,257.25377 196.23712,256.66679 197.73192,256.66678 C 198.58504,256.66679 199.33608,256.8345 199.98504,257.1699 C 200.63399,257.50533 201.22826,258.03398 201.76785,258.75584 L 201.76785,256.94022 L 205.70535,256.94022 L 205.70535,267.95428 C 205.70534,269.92303 205.0819,271.42511 203.83504,272.46053 C 202.59545,273.50323 200.79441,274.02459 198.43192,274.02459 C 197.66629,274.02459 196.92618,273.96629 196.2116,273.84959 C 195.49702,273.73292 194.77879,273.55427 194.05692,273.31365 L 194.05692,270.26209 C 194.74233,270.65584 195.41316,270.94751 196.06942,271.13709 C 196.72566,271.33396 197.38556,271.4324 198.0491,271.4324 C 199.33243,271.4324 200.27305,271.15167 200.87098,270.59022 C 201.46889,270.02876 201.76784,269.15011 201.76785,267.95428 L 201.76785,267.11209 M 199.1866,259.48865 C 198.37722,259.48866 197.74649,259.78762 197.29442,260.38553 C 196.84233,260.98345 196.61629,261.82929 196.61629,262.92303 C 196.61629,264.04595 196.83504,264.89907 197.27254,265.4824 C 197.71004,266.05845 198.34806,266.34647 199.1866,266.34647 C 200.00326,266.34647 200.63764,266.04751 201.08973,265.44959 C 201.5418,264.85168 201.76784,264.00949 201.76785,262.92303 C 201.76784,261.82929 201.5418,260.98345 201.08973,260.38553 C 200.63764,259.78762 200.00326,259.48866 199.1866,259.48865"
|
||||
id="path13583"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 221.80535,261.73084 L 221.80535,269.19022 L 217.86785,269.19022 L 217.86785,267.97615 L 217.86785,263.50272 C 217.86784,262.43085 217.84235,261.69439 217.79125,261.29334 C 217.74745,260.89231 217.66728,260.597 217.55063,260.4074 C 217.39749,260.1522 217.18968,259.95533 216.92719,259.81678 C 216.66468,259.67095 216.36572,259.59804 216.03031,259.59803 C 215.21364,259.59804 214.57197,259.91523 214.10531,260.54959 C 213.63864,261.17668 213.40531,262.04804 213.40531,263.16365 L 213.40531,269.19022 L 209.48969,269.19022 L 209.48969,252.17147 L 213.40531,252.17147 L 213.40531,258.73397 C 213.99593,258.01939 214.62302,257.49439 215.28656,257.15897 C 215.9501,256.81627 216.68291,256.64492 217.485,256.6449 C 218.89957,256.64492 219.97145,257.07877 220.70063,257.94647 C 221.43707,258.81418 221.8053,260.07564 221.80531,261.73084"
|
||||
id="path13585"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 229.73504,253.46209 L 229.73504,256.94022 L 233.77098,256.94022 L 233.77098,259.74022 L 229.73504,259.74022 L 229.73504,264.93553 C 229.73504,265.50428 229.84806,265.89074 230.0741,266.0949 C 230.30014,266.29178 230.74858,266.39022 231.41942,266.39022 L 233.43192,266.39022 L 233.43192,269.19022 L 230.0741,269.19022 C 228.52827,269.19022 227.43087,268.86938 226.78192,268.22772 C 226.14025,267.57876 225.81941,266.48136 225.81942,264.93553 L 225.81942,259.74022 L 223.87254,259.74022 L 223.87254,256.94022 L 225.81942,256.94022 L 225.81942,253.46209 L 229.73504,253.46209"
|
||||
id="path13587"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 244.13973,252.86053 L 249.49911,252.86053 L 253.21786,261.59959 L 256.95848,252.86053 L 262.30692,252.86053 L 262.30692,269.19022 L 258.32567,269.19022 L 258.32567,257.24647 L 254.56317,266.05115 L 251.89442,266.05115 L 248.13192,257.24647 L 248.13192,269.19022 L 244.13973,269.19022 L 244.13973,252.86053"
|
||||
id="path13589"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 272.10692,259.4449 C 271.2392,259.44491 270.57566,259.75845 270.11629,260.38553 C 269.66421,261.00533 269.43816,261.9022 269.43817,263.07615 C 269.43816,264.25012 269.66421,265.15064 270.11629,265.77772 C 270.57566,266.39751 271.2392,266.70741 272.10692,266.7074 C 272.96004,266.70741 273.61264,266.39751 274.06473,265.77772 C 274.5168,265.15064 274.74285,264.25012 274.74286,263.07615 C 274.74285,261.9022 274.5168,261.00533 274.06473,260.38553 C 273.61264,259.75845 272.96004,259.44491 272.10692,259.4449 M 272.10692,256.6449 C 274.2142,256.64492 275.85847,257.21367 277.03973,258.35115 C 278.22826,259.48866 278.82253,261.06366 278.82254,263.07615 C 278.82253,265.08866 278.22826,266.66366 277.03973,267.80115 C 275.85847,268.93865 274.2142,269.5074 272.10692,269.5074 C 269.99233,269.5074 268.33712,268.93865 267.14129,267.80115 C 265.95275,266.66366 265.35848,265.08866 265.35848,263.07615 C 265.35848,261.06366 265.95275,259.48866 267.14129,258.35115 C 268.33712,257.21367 269.99233,256.64492 272.10692,256.6449"
|
||||
id="path13591"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 290.0116,258.73397 L 290.0116,252.17147 L 293.9491,252.17147 L 293.9491,269.19022 L 290.0116,269.19022 L 290.0116,267.41834 C 289.47201,268.14022 288.87774,268.66886 288.22879,269.00428 C 287.57982,269.3397 286.82878,269.5074 285.97566,269.5074 C 284.46628,269.5074 283.2267,268.90949 282.25691,267.71365 C 281.28712,266.51053 280.80222,264.9647 280.80223,263.07615 C 280.80222,261.18762 281.28712,259.64543 282.25691,258.44959 C 283.2267,257.24648 284.46628,256.64492 285.97566,256.6449 C 286.82149,256.64492 287.56888,256.81627 288.21785,257.15897 C 288.87409,257.49439 289.47201,258.01939 290.0116,258.73397 M 287.43035,266.66365 C 288.26888,266.66366 288.9069,266.35741 289.34441,265.7449 C 289.78919,265.13241 290.01159,264.24283 290.0116,263.07615 C 290.01159,261.90949 289.78919,261.01991 289.34441,260.4074 C 288.9069,259.79491 288.26888,259.48866 287.43035,259.48865 C 286.59909,259.48866 285.96107,259.79491 285.51629,260.4074 C 285.07878,261.01991 284.86003,261.90949 284.86004,263.07615 C 284.86003,264.24283 285.07878,265.13241 285.51629,265.7449 C 285.96107,266.35741 286.59909,266.66366 287.43035,266.66365"
|
||||
id="path13593"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 309.9616,263.0324 L 309.9616,264.14803 L 300.80691,264.14803 C 300.90171,265.06678 301.23347,265.75584 301.80223,266.21522 C 302.37097,266.67459 303.16576,266.90428 304.1866,266.90428 C 305.01055,266.90428 305.85274,266.78397 306.71316,266.54334 C 307.58086,266.29543 308.47044,265.92355 309.38191,265.42772 L 309.38191,268.44647 C 308.45586,268.79647 307.52982,269.05897 306.60379,269.23397 C 305.67774,269.41626 304.7517,269.5074 303.82566,269.5074 C 301.60899,269.5074 299.88451,268.94595 298.65223,267.82303 C 297.42723,266.69282 296.81473,265.11053 296.81473,263.07615 C 296.81473,261.07825 297.41629,259.50689 298.61941,258.36209 C 299.82983,257.21731 301.49233,256.64492 303.60691,256.6449 C 305.5319,256.64492 307.07045,257.2246 308.22254,258.38397 C 309.3819,259.54335 309.96159,261.09283 309.9616,263.0324 M 305.9366,261.73084 C 305.93659,260.9871 305.71784,260.38918 305.28035,259.93709 C 304.85013,259.47773 304.28503,259.24804 303.58504,259.24803 C 302.8267,259.24804 302.21055,259.46314 301.7366,259.89334 C 301.26264,260.31627 300.96733,260.92877 300.85066,261.73084 L 305.9366,261.73084"
|
||||
id="path13595"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
id="path22050-6"
|
||||
d="M 371.284,309.51434 L 410.64272,309.01434 L 411.00144,233.51434 L 430.71887,233.51434"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#7a00ff;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;display:inline"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer52"
|
||||
inkscape:label="cc-ppm-oneshot"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="cc-ppm-oneshot"
|
||||
transform="translate(1.0000001,-1.9999999)">
|
||||
<path
|
||||
id="path8856-1-8-4-3"
|
||||
d="M 309.08575,189.42619 L 430.46875,188.94219"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#ec1d00;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path8856-1-5-8-4-6"
|
||||
d="M 309.08544,183.82619 L 430.46875,183.62059"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#000000;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path8856-1-3-1-3-7"
|
||||
d="M 389.08544,195.62619 L 430.46875,195.21419"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:5.17476749;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;stroke:#1f4697;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:round"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 387.93975,203.58874 L 430.34,203.43994"
|
||||
id="path8856-5-47" />
|
||||
<path
|
||||
id="path22050"
|
||||
d="M 309.08575,195.51434 L 361.46875,195.51434 L 361.46875,233.51434 L 400.31059,233.51434 L 430.71887,233.51434"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#7a00ff;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;stroke:#fac204;stroke-width:5.61399984;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 387.93975,211.51434 L 430.56407,211.51434"
|
||||
id="path8856-5-1-4" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;stroke:#32a304;stroke-width:5.61399984;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 387.93975,218.51734 L 430.40447,218.51134"
|
||||
id="path8856-5-1-7-5" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;stroke:#ec6004;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:round"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 387.93975,226.51434 L 430.71887,226.51434"
|
||||
id="path8856-5-1-7-1-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#777777;stroke-width:5.80000019;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 131.51628,280.89645 C 99.179438,276.41438 56.116118,293.77498 44.942858,345.61434"
|
||||
id="path9857-3-9-8" />
|
||||
<path
|
||||
style="fill:none;stroke:#6b6b6b;stroke-width:1.21428466;stroke-linecap:butt;stroke-linejoin:miter;display:inline"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 388.78672,192.76858 L 388.77709,198.68719 L 430.46875,198.54819"
|
||||
id="path8856-4-4-4"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
sodipodi:nodetypes="sssccccssssss"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect8853-0-8-5"
|
||||
d="M 136.31357,163.05542 L 323.35356,163.05542 C 326.94348,163.05542 329.83356,165.9455 329.83356,169.53542 L 329.83356,178.37557 L 323.83356,178.37557 L 323.83356,300.73558 L 329.834,300.73558 L 329.83356,310.97542 C 329.83341,314.56534 326.94348,317.45542 323.35356,317.45542 L 136.31357,317.45542 C 132.72364,317.45542 129.83356,314.56534 129.83356,310.97542 L 129.83356,169.53542 C 129.83356,165.9455 132.72364,163.05542 136.31357,163.05542 z"
|
||||
style="color:#000000;fill:url(#linearGradient13565-5);fill-rule:nonzero;stroke:#000000;stroke-width:3.09599996;stroke-miterlimit:4;stroke-dasharray:none;display:inline;enable-background:accumulate" />
|
||||
<g
|
||||
transform="translate(-95.14393,-124.01573)"
|
||||
id="text9734-24-8-2"
|
||||
style="font-size:22.39999962px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;display:inline;font-family:Sans">
|
||||
<path
|
||||
id="path13900-3"
|
||||
d="M 268.82831,303.23718 L 275.81738,303.23718 C 277.89549,303.23719 279.48872,303.70021 280.59706,304.62624 C 281.71267,305.545 282.27049,306.8575 282.2705,308.56374 C 282.27049,310.27729 281.71267,311.59708 280.59706,312.52311 C 279.48872,313.44187 277.89549,313.90124 275.81738,313.90124 L 273.03925,313.90124 L 273.03925,319.56686 L 268.82831,319.56686 L 268.82831,303.23718 M 273.03925,306.28874 L 273.03925,310.84968 L 275.36894,310.84968 C 276.1856,310.84969 276.81632,310.65281 277.26113,310.25905 C 277.70591,309.85802 277.9283,309.29292 277.92831,308.56374 C 277.9283,307.83458 277.70591,307.27313 277.26113,306.87936 C 276.81632,306.48563 276.1856,306.28875 275.36894,306.28874 L 273.03925,306.28874"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path13902-9"
|
||||
d="M 285.23456,303.23718 L 292.22363,303.23718 C 294.30174,303.23719 295.89497,303.70021 297.00331,304.62624 C 298.11892,305.545 298.67674,306.8575 298.67675,308.56374 C 298.67674,310.27729 298.11892,311.59708 297.00331,312.52311 C 295.89497,313.44187 294.30174,313.90124 292.22363,313.90124 L 289.4455,313.90124 L 289.4455,319.56686 L 285.23456,319.56686 L 285.23456,303.23718 M 289.4455,306.28874 L 289.4455,310.84968 L 291.77519,310.84968 C 292.59185,310.84969 293.22257,310.65281 293.66738,310.25905 C 294.11216,309.85802 294.33455,309.29292 294.33456,308.56374 C 294.33455,307.83458 294.11216,307.27313 293.66738,306.87936 C 293.22257,306.48563 292.59185,306.28875 291.77519,306.28874 L 289.4455,306.28874"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path13904-1"
|
||||
d="M 301.64081,303.23718 L 307.00019,303.23718 L 310.71894,311.97624 L 314.45956,303.23718 L 319.808,303.23718 L 319.808,319.56686 L 315.82675,319.56686 L 315.82675,307.62311 L 312.06425,316.4278 L 309.3955,316.4278 L 305.633,307.62311 L 305.633,319.56686 L 301.64081,319.56686 L 301.64081,303.23718"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path13906-1"
|
||||
d="M 343.10487,303.75124 L 343.10487,307.20749 C 342.20799,306.80646 341.33299,306.50386 340.47987,306.29968 C 339.62674,306.09552 338.82101,305.99344 338.06269,305.99343 C 337.05643,305.99344 336.31268,306.13198 335.83144,306.40905 C 335.35018,306.68615 335.10956,307.11636 335.10956,307.69968 C 335.10956,308.13719 335.26997,308.4799 335.59081,308.7278 C 335.91893,308.96844 336.50956,309.17625 337.36269,309.35124 L 339.15644,309.71218 C 340.97205,310.07677 342.26267,310.63094 343.02831,311.37468 C 343.79392,312.11843 344.17674,313.17572 344.17675,314.54655 C 344.17674,316.3476 343.6408,317.68926 342.56894,318.57155 C 341.50434,319.44655 339.87466,319.88405 337.67988,319.88405 C 336.64445,319.88405 335.60539,319.78565 334.56269,319.58874 C 333.51998,319.39186 332.47727,319.1002 331.43456,318.71374 L 331.43456,315.15905 C 332.47727,315.71322 333.48352,316.13249 334.45331,316.41686 C 335.43039,316.69395 336.37101,316.83249 337.27519,316.83249 C 338.19393,316.83249 338.89757,316.67937 339.38613,316.37311 C 339.87466,316.06687 340.11893,315.62937 340.11894,315.06061 C 340.11893,314.5502 339.95122,314.15645 339.61581,313.87936 C 339.28768,313.60229 338.62778,313.35437 337.63613,313.13561 L 336.00644,312.77468 C 334.3731,312.42468 333.17727,311.86687 332.41894,311.10124 C 331.66789,310.33562 331.29237,309.30385 331.29238,308.00593 C 331.29237,306.3799 331.81737,305.12938 332.86738,304.25436 C 333.91737,303.37938 335.42674,302.94188 337.3955,302.94186 C 338.29237,302.94188 339.21476,303.01116 340.16269,303.14968 C 341.11059,303.28094 342.09132,303.48146 343.10487,303.75124"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path13908-3"
|
||||
d="M 347.70957,307.31686 L 351.62519,307.31686 L 351.62519,319.56686 L 347.70957,319.56686 L 347.70957,307.31686 M 347.70957,302.54811 L 351.62519,302.54811 L 351.62519,305.74186 L 347.70957,305.74186 L 347.70957,302.54811"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path13910-5"
|
||||
d="M 363.74394,317.48874 C 363.20434,318.20332 362.61007,318.72832 361.96113,319.06374 C 361.31216,319.39916 360.56112,319.56686 359.708,319.56686 C 358.2132,319.56686 356.97727,318.97989 356.00019,317.80593 C 355.0231,316.62468 354.53456,315.1226 354.53456,313.29968 C 354.53456,311.46948 355.0231,309.97104 356.00019,308.80436 C 356.97727,307.63042 358.2132,307.04344 359.708,307.04343 C 360.56112,307.04344 361.31216,307.21115 361.96113,307.54655 C 362.61007,307.88198 363.20434,308.41063 363.74394,309.13249 L 363.74394,307.31686 L 367.68144,307.31686 L 367.68144,318.33093 C 367.68142,320.29968 367.05799,321.80176 365.81112,322.83718 C 364.57153,323.87988 362.77049,324.40123 360.408,324.40124 C 359.64237,324.40123 358.90227,324.34294 358.18769,324.22624 C 357.4731,324.10957 356.75487,323.93092 356.033,323.6903 L 356.033,320.63874 C 356.71841,321.03249 357.38925,321.32415 358.0455,321.51374 C 358.70174,321.71061 359.36164,321.80905 360.02519,321.80905 C 361.30851,321.80905 362.24914,321.52832 362.84706,320.96686 C 363.44497,320.4054 363.74393,319.52676 363.74394,318.33093 L 363.74394,317.48874 M 361.16269,309.8653 C 360.35331,309.86531 359.72258,310.16427 359.2705,310.76218 C 358.81841,311.3601 358.59237,312.20593 358.59238,313.29968 C 358.59237,314.4226 358.81112,315.27572 359.24863,315.85905 C 359.68612,316.4351 360.32414,316.72312 361.16269,316.72311 C 361.97935,316.72312 362.61372,316.42416 363.06581,315.82624 C 363.51789,315.22833 363.74393,314.38614 363.74394,313.29968 C 363.74393,312.20593 363.51789,311.3601 363.06581,310.76218 C 362.61372,310.16427 361.97935,309.86531 361.16269,309.8653"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path13912-3"
|
||||
d="M 383.78144,312.10749 L 383.78144,319.56686 L 379.84394,319.56686 L 379.84394,318.3528 L 379.84394,313.85749 C 379.84393,312.8002 379.81844,312.07104 379.76734,311.66999 C 379.72354,311.26896 379.64337,310.97364 379.52671,310.78405 C 379.37358,310.52885 379.16576,310.33198 378.90327,310.19343 C 378.64076,310.0476 378.34181,309.97469 378.0064,309.97468 C 377.18972,309.97469 376.54806,310.29187 376.0814,310.92624 C 375.61473,311.55333 375.38139,312.42468 375.3814,313.5403 L 375.3814,319.56686 L 371.46577,319.56686 L 371.46577,307.31686 L 375.3814,307.31686 L 375.3814,309.11061 C 375.97202,308.39604 376.5991,307.87104 377.26265,307.53561 C 377.92618,307.19292 378.65899,307.02156 379.46109,307.02155 C 380.87566,307.02156 381.94753,307.45542 382.67671,308.32311 C 383.41316,309.19083 383.78138,310.45229 383.7814,312.10749"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path13914-2"
|
||||
d="M 392.92519,314.05436 C 392.10852,314.05437 391.49237,314.19291 391.07675,314.46999 C 390.66841,314.74708 390.46425,315.15541 390.46425,315.69499 C 390.46425,316.19083 390.62831,316.58093 390.95644,316.8653 C 391.29185,317.14239 391.75487,317.28093 392.3455,317.28093 C 393.08195,317.28093 393.70174,317.01843 394.20488,316.49343 C 394.70799,315.96114 394.95955,315.2976 394.95956,314.5028 L 394.95956,314.05436 L 392.92519,314.05436 M 398.908,312.5778 L 398.908,319.56686 L 394.95956,319.56686 L 394.95956,317.75124 C 394.43456,318.49499 393.84393,319.03822 393.18769,319.38093 C 392.53143,319.71634 391.733,319.88405 390.79238,319.88405 C 389.52362,319.88405 388.49185,319.51582 387.69706,318.77936 C 386.90956,318.03562 386.51581,317.07312 386.51581,315.89186 C 386.51581,314.45541 387.008,313.40177 387.99238,312.73093 C 388.98404,312.0601 390.53716,311.72468 392.65175,311.72468 L 394.95956,311.72468 L 394.95956,311.41843 C 394.95955,310.79864 394.71528,310.34656 394.22675,310.06218 C 393.7382,309.77052 392.97622,309.62469 391.94081,309.62468 C 391.10227,309.62469 390.32206,309.70858 389.60019,309.87624 C 388.87831,310.04396 388.20748,310.29552 387.58769,310.63093 L 387.58769,307.64499 C 388.42623,307.44083 389.26841,307.28771 390.11425,307.18561 C 390.96008,307.07625 391.80591,307.02156 392.65175,307.02155 C 394.86112,307.02156 396.45434,307.45906 397.43144,308.33405 C 398.4158,309.20177 398.90799,310.61635 398.908,312.5778"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path13916-6"
|
||||
d="M 402.57206,302.54811 L 406.48769,302.54811 L 406.48769,319.56686 L 402.57206,319.56686 L 402.57206,302.54811"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:21.83368874px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#7a00ff;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="text12471">
|
||||
<path
|
||||
d="M 360.43582,244.43796 L 360.43582,241.66611 L 362.89851,241.66611 L 362.89851,244.43796 L 360.43582,244.43796 M 360.43582,257.2951 L 360.43582,245.97314 L 362.89851,245.97314 L 362.89851,257.2951 L 360.43582,257.2951"
|
||||
style="fill:#7a00ff;fill-opacity:1"
|
||||
id="path12476"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 373.86866,257.2951 L 371.40597,257.2951 L 371.40597,251.51685 C 371.40596,250.35837 371.35977,249.58722 371.26738,249.20342 C 371.17498,248.81963 371.00085,248.52468 370.74499,248.31856 C 370.49623,248.11246 370.21194,248.0094 369.89211,248.00939 C 369.47988,248.0094 369.10675,248.14444 368.77271,248.41451 C 368.43866,248.67749 368.20412,249.04351 368.06908,249.51259 C 367.93404,249.98168 367.86652,250.86654 367.86653,252.16717 L 367.86653,257.2951 L 365.40384,257.2951 L 365.40384,245.97314 L 367.68529,245.97314 L 367.68529,247.63626 C 368.0904,246.99661 368.54527,246.51686 369.04989,246.19702 C 369.56162,245.87721 370.12665,245.71729 370.74499,245.71728 C 371.46282,245.71729 372.06694,245.90564 372.55736,246.28231 C 373.05486,246.6519 373.39601,247.13165 373.58081,247.72154 C 373.7727,248.30435 373.86865,249.15012 373.86866,250.25886 L 373.86866,257.2951"
|
||||
style="fill:#7a00ff;fill-opacity:1"
|
||||
id="path12478"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 376.31002,245.97314 L 378.60213,245.97314 L 378.60213,247.63626 C 378.91485,247.03925 379.32708,246.57017 379.83881,246.22901 C 380.35053,245.88787 380.90135,245.71729 381.49126,245.71728 C 382.55024,245.71729 383.45998,246.22191 384.22047,247.23114 C 384.98805,248.24039 385.37185,249.67251 385.37186,251.52751 C 385.37185,253.47492 384.98805,254.96746 384.22047,256.00513 C 383.45287,257.03569 382.53958,257.55097 381.4806,257.55097 C 380.99019,257.55097 380.53177,257.4337 380.10533,257.19916 C 379.68599,256.95751 379.24179,256.52396 378.77271,255.89852 L 378.77271,261.60214 L 376.31002,261.60214 L 376.31002,245.97314 M 378.74073,251.44223 C 378.74072,252.72155 378.94683,253.66327 379.35906,254.26739 C 379.77839,254.87151 380.28301,255.17357 380.87292,255.17357 C 381.43439,255.17357 381.90703,254.89639 382.29083,254.34201 C 382.67462,253.78054 382.86652,252.86725 382.86653,251.60214 C 382.86652,250.40101 382.66751,249.51615 382.26951,248.94756 C 381.8786,248.37187 381.39886,248.08403 380.83028,248.08402 C 380.23326,248.08403 379.73575,248.36477 379.33774,248.92624 C 378.93973,249.48061 378.74072,250.31928 378.74073,251.44223"
|
||||
style="fill:#7a00ff;fill-opacity:1"
|
||||
id="path12480"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 393.44222,257.2951 L 393.44222,255.60001 C 393.10106,256.21124 392.6533,256.69098 392.09893,257.03924 C 391.54456,257.38039 390.96531,257.55097 390.36119,257.55097 C 389.74996,257.55097 389.2027,257.39105 388.7194,257.07122 C 388.2361,256.7514 387.87363,256.29653 387.63198,255.70662 C 387.39744,255.11671 387.28017,254.26028 387.28017,253.13732 L 387.28017,245.97314 L 389.74286,245.97314 L 389.74286,251.1757 C 389.74285,252.66114 389.77839,253.60641 389.84947,254.01152 C 389.92764,254.40954 390.09466,254.7187 390.35053,254.93903 C 390.60639,255.15936 390.91556,255.26952 391.27804,255.26952 C 391.69026,255.26952 392.0705,255.12737 392.41876,254.84308 C 392.76701,254.55168 392.99445,254.1821 393.10107,253.73434 C 393.21478,253.27947 393.27163,252.28445 393.27164,250.74926 L 393.27164,245.97314 L 395.72367,245.97314 L 395.72367,257.2951 L 393.44222,257.2951"
|
||||
style="fill:#7a00ff;fill-opacity:1"
|
||||
id="path12482"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 402.54669,245.97314 L 402.54669,248.3612 L 400.87292,248.3612 L 400.87292,252.9241 C 400.87292,253.91202 400.89779,254.48416 400.94755,254.64052 C 401.04705,254.92482 401.2496,255.06696 401.55522,255.06696 C 401.78265,255.06696 402.10959,254.97101 402.53603,254.77911 L 402.74925,257.10321 C 402.18066,257.40171 401.53745,257.55097 400.81962,257.55097 C 400.19417,257.55097 399.6931,257.40171 399.31642,257.10321 C 398.93973,256.8047 398.68742,256.37471 398.55949,255.81323 C 398.45998,255.40101 398.41023,254.56234 398.41023,253.29724 L 398.41023,248.3612 L 397.28017,248.3612 L 397.28017,245.97314 L 398.41023,245.97314 L 398.41023,243.72368 L 400.87292,241.97528 L 400.87292,245.97314 L 402.54669,245.97314"
|
||||
style="fill:#7a00ff;fill-opacity:1"
|
||||
id="path12484"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 412.06695,245.4934 L 409.68955,245.81323 C 409.57583,244.64764 409.1103,244.06484 408.29296,244.06483 C 407.75991,244.06484 407.3157,244.35624 406.96034,244.93903 C 406.61208,245.52184 406.39175,246.6981 406.29936,248.46781 C 406.60497,248.02717 406.94612,247.69668 407.32281,247.47634 C 407.6995,247.25602 408.11528,247.14586 408.57015,247.14585 C 409.57227,247.14586 410.44647,247.61494 411.19275,248.5531 C 411.93901,249.48417 412.31214,250.72439 412.31215,252.27378 C 412.31214,253.92268 411.91769,255.21622 411.12878,256.15438 C 410.33986,257.09255 409.36261,257.56163 408.19701,257.56163 C 406.91769,257.56163 405.85515,256.95395 405.00938,255.7386 C 404.17072,254.51615 403.75139,252.49411 403.75139,249.6725 C 403.75139,246.80826 404.18848,244.74714 405.06269,243.48913 C 405.93688,242.23115 407.05984,241.60216 408.43156,241.60214 C 409.37682,241.60216 410.17284,241.92554 410.81962,242.57229 C 411.47348,243.21196 411.88926,244.18567 412.06695,245.4934 M 406.51258,252.02858 C 406.51258,253.0165 406.69381,253.77343 407.05629,254.29937 C 407.42587,254.81821 407.8452,255.07762 408.31429,255.07762 C 408.76915,255.07762 409.14584,254.86085 409.44435,254.4273 C 409.74996,253.99376 409.90276,253.28303 409.90277,252.2951 C 409.90276,251.27166 409.7393,250.52539 409.41237,250.0563 C 409.08542,249.58722 408.68031,249.35268 408.19701,249.35267 C 407.72793,249.35268 407.32992,249.57656 407.00298,250.02432 C 406.67604,250.47208 406.51258,251.14017 406.51258,252.02858"
|
||||
style="fill:#7a00ff;fill-opacity:1"
|
||||
id="path12486"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:21.31113434px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#7a00ff;fill-opacity:1;stroke:none;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="text11303"
|
||||
transform="translate(-2,0)">
|
||||
<path
|
||||
d="M 368.60892,284.29186 L 366.9648,284.29186 C 366.10458,282.73098 365.44208,281.07992 364.97728,279.33868 C 364.51943,277.59051 364.2905,275.89783 364.2905,274.26064 C 364.2905,272.49166 364.5229,270.76776 364.98769,269.08894 C 365.45248,267.40321 366.12192,265.80418 366.99601,264.29186 L 368.62973,264.29186 C 367.83195,266.45628 367.29084,268.26689 367.00642,269.7237 C 366.72893,271.18052 366.59018,272.72058 366.59019,274.34389 C 366.59018,276.0227 366.78789,277.79862 367.18332,279.67167 C 367.4608,280.98974 367.936,282.5298 368.60892,284.29186"
|
||||
style="fill:#7a00ff;fill-opacity:1"
|
||||
id="path11308"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 370.39872,268.75596 L 372.63597,268.75596 L 372.63597,270.37927 C 372.94121,269.79655 373.34357,269.33869 373.84305,269.0057 C 374.34252,268.67272 374.88016,268.50623 375.45595,268.50622 C 376.48959,268.50623 377.37755,268.99877 378.11984,269.98384 C 378.86905,270.96894 379.24366,272.36679 379.24367,274.17739 C 379.24366,276.07819 378.86905,277.53501 378.11984,278.54784 C 377.37062,279.55374 376.47919,280.05669 375.44555,280.05669 C 374.96687,280.05669 374.51942,279.94222 374.1032,279.71329 C 373.69389,279.47743 373.26032,279.05426 372.80247,278.44378 L 372.80247,284.0109 L 370.39872,284.0109 L 370.39872,268.75596 M 372.77125,274.09415 C 372.77125,275.34285 372.97242,276.26203 373.37479,276.85169 C 373.78408,277.44136 374.27662,277.73619 374.85241,277.73619 C 375.40045,277.73619 375.86177,277.46564 376.23639,276.92453 C 376.61099,276.37649 376.7983,275.48506 376.7983,274.25023 C 376.7983,273.07785 376.60405,272.21417 376.21558,271.65918 C 375.83402,271.09728 375.36576,270.81632 374.81079,270.81631 C 374.22806,270.81632 373.74246,271.09034 373.35398,271.63837 C 372.96549,272.17948 372.77125,272.99807 372.77125,274.09415"
|
||||
style="fill:#7a00ff;fill-opacity:1"
|
||||
id="path11310"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 381.16875,267.25752 L 381.16875,264.552 L 383.5725,264.552 L 383.5725,267.25752 L 381.16875,267.25752 M 381.16875,279.80695 L 381.16875,268.75596 L 383.5725,268.75596 L 383.5725,279.80695 L 381.16875,279.80695"
|
||||
style="fill:#7a00ff;fill-opacity:1"
|
||||
id="path11312"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 394.28009,279.80695 L 391.87635,279.80695 L 391.87635,274.16699 C 391.87634,273.03623 391.83125,272.28354 391.74107,271.90892 C 391.65088,271.53432 391.48092,271.24643 391.23119,271.04524 C 390.98838,270.84407 390.71089,270.74348 390.39872,270.74347 C 389.99636,270.74348 389.63215,270.87529 389.30611,271.13889 C 388.98005,271.39558 388.75113,271.75284 388.61932,272.21069 C 388.48751,272.66856 388.42161,273.53224 388.42161,274.80174 L 388.42161,279.80695 L 386.01787,279.80695 L 386.01787,268.75596 L 388.24471,268.75596 L 388.24471,270.37927 C 388.64013,269.75493 389.08411,269.28666 389.57666,268.97448 C 390.07613,268.66232 390.62764,268.50623 391.23119,268.50622 C 391.93184,268.50623 392.5215,268.69006 393.00018,269.05773 C 393.48577,269.41847 393.81876,269.88673 393.99914,270.46251 C 394.18643,271.03137 394.28008,271.8569 394.28009,272.9391 L 394.28009,279.80695"
|
||||
style="fill:#7a00ff;fill-opacity:1"
|
||||
id="path11314"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 398.28634,271.57594 C 397.69667,271.27071 397.25269,270.85447 396.95439,270.32724 C 396.65609,269.80002 396.50694,269.16526 396.50694,268.42297 C 396.50694,267.22284 396.84686,266.26898 397.52671,265.56137 C 398.20656,264.84685 399.12227,264.48958 400.27385,264.48957 C 401.4948,264.48958 402.42438,264.87113 403.06261,265.63421 C 403.70083,266.39038 404.01994,267.31303 404.01995,268.40216 C 404.01994,269.14445 403.86385,269.78961 403.55169,270.33764 C 403.24644,270.87875 402.82674,271.29152 402.29258,271.57594 C 403.00711,271.92281 403.54127,272.41188 403.89508,273.04316 C 404.24887,273.66751 404.42577,274.43754 404.42578,275.35325 C 404.42577,276.29672 404.24887,277.12918 403.89508,277.85065 C 403.54821,278.57212 403.06607,279.12363 402.44867,279.50518 C 401.83125,279.88672 401.13753,280.0775 400.3675,280.0775 C 399.16042,280.0775 398.16147,279.66126 397.37063,278.8288 C 396.58672,277.9894 396.19477,276.8621 396.19477,275.4469 C 396.19477,274.5312 396.37513,273.74382 396.73587,273.08478 C 397.0966,272.42575 397.61343,271.92281 398.28634,271.57594 M 398.77541,268.63109 C 398.77541,269.2277 398.91415,269.68555 399.19165,270.00466 C 399.47607,270.32378 399.83333,270.48333 400.26345,270.48332 C 400.70048,270.48333 401.06122,270.32378 401.34565,270.00466 C 401.63007,269.68555 401.77228,269.2277 401.77229,268.63109 C 401.77228,268.05531 401.63007,267.60786 401.34565,267.28874 C 401.06816,266.96964 400.71783,266.81008 400.29466,266.81007 C 399.85068,266.81008 399.48647,266.9731 399.20205,267.29914 C 398.91762,267.61827 398.77541,268.06225 398.77541,268.63109 M 398.55689,275.16595 C 398.55689,275.98454 398.73032,276.61583 399.07718,277.05981 C 399.42404,277.50379 399.84027,277.72578 400.32588,277.72578 C 400.81148,277.72578 401.21731,277.5142 401.54336,277.09102 C 401.87634,276.66786 402.04284,276.0331 402.04284,275.18676 C 402.04284,274.45836 401.87287,273.88257 401.53296,273.45939 C 401.19996,273.03623 400.7872,272.82464 400.29466,272.82464 C 399.80905,272.82464 399.39629,273.0397 399.05637,273.4698 C 398.72338,273.89297 398.55689,274.45836 398.55689,275.16595"
|
||||
style="fill:#7a00ff;fill-opacity:1"
|
||||
id="path11316"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 405.80975,284.29186 C 406.48266,282.54368 406.95439,281.02096 407.22494,279.7237 C 407.6273,277.83678 407.82848,276.04351 407.82848,274.34389 C 407.82848,272.72058 407.68626,271.18052 407.40184,269.7237 C 407.12435,268.26689 406.58672,266.45628 405.78894,264.29186 L 407.42265,264.29186 C 408.31755,265.85968 408.99046,267.47605 409.44138,269.14097 C 409.89924,270.80591 410.12816,272.46738 410.12817,274.12536 C 410.12816,275.7903 409.9027,277.50379 409.45179,279.26584 C 409.00087,281.02096 408.33489,282.69629 407.45387,284.29186 L 405.80975,284.29186"
|
||||
style="fill:#7a00ff;fill-opacity:1"
|
||||
id="path11318"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer20"
|
||||
inkscape:label="cc-ppm"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="cc-ppm"
|
||||
transform="translate(0,-2)">
|
||||
<path
|
||||
id="path8856-1-8"
|
||||
d="M 309.08544,189.42619 L 430.46875,188.94219"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#ec1d00;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:miter"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path8856-1-5-8"
|
||||
d="M 309.08544,183.82619 L 430.46875,183.62059"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#000000;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:miter"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path8856-1-3-1"
|
||||
d="M 309.08544,195.62619 L 430.46875,195.21419"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:5.17476749;stroke-linecap:butt;stroke-linejoin:miter"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#6b6b6b;stroke-width:1.21428466;stroke-linecap:butt;stroke-linejoin:miter"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 309.08544,198.82619 L 430.46875,198.54819"
|
||||
id="path8856-4"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#777777;stroke-width:5.80000019;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 136.89023,281.28139 C 104.55339,276.79932 61.490076,294.15992 50.316816,345.99928"
|
||||
id="path9857-3" />
|
||||
<path
|
||||
sodipodi:nodetypes="sssccccssssss"
|
||||
inkscape:connector-curvature="0"
|
||||
id="rect8853-0"
|
||||
d="M 141.68752,163.44036 L 328.72752,163.44036 C 332.31744,163.44036 335.20752,166.33044 335.20752,169.92036 L 335.20752,178.76051 L 329.20752,178.76051 L 329.20752,301.12052 L 335.20796,301.12052 L 335.20752,311.36036 C 335.20736,314.95028 332.31744,317.84036 328.72752,317.84036 L 141.68752,317.84036 C 138.0976,317.84036 135.20752,314.95028 135.20752,311.36036 L 135.20752,169.92036 C 135.20752,166.33044 138.0976,163.44036 141.68752,163.44036 z"
|
||||
style="color:#000000;fill:url(#linearGradient13497);fill-rule:nonzero;stroke:#000000;stroke-width:3.09599996;stroke-miterlimit:4;stroke-dasharray:none;display:inline;enable-background:accumulate" />
|
||||
<g
|
||||
style="font-size:22.39999962px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;font-family:Sans"
|
||||
id="text9734-24"
|
||||
transform="translate(0,11)">
|
||||
<path
|
||||
d="M 174.20226,166.62213 L 181.19132,166.62213 C 183.26944,166.62214 184.86267,167.08516 185.97101,168.01119 C 187.08662,168.92995 187.64443,170.24245 187.64445,171.94869 C 187.64443,173.66224 187.08662,174.98203 185.97101,175.90806 C 184.86267,176.82682 183.26944,177.28619 181.19132,177.28619 L 178.4132,177.28619 L 178.4132,182.95181 L 174.20226,182.95181 L 174.20226,166.62213 M 178.4132,169.67369 L 178.4132,174.23463 L 180.74289,174.23463 C 181.55954,174.23463 182.19027,174.03776 182.63507,173.644 C 183.07985,173.24297 183.30225,172.67786 183.30226,171.94869 C 183.30225,171.21953 183.07985,170.65808 182.63507,170.26431 C 182.19027,169.87058 181.55954,169.6737 180.74289,169.67369 L 178.4132,169.67369"
|
||||
id="path13536"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 190.60851,166.62213 L 197.59757,166.62213 C 199.67569,166.62214 201.26892,167.08516 202.37726,168.01119 C 203.49287,168.92995 204.05068,170.24245 204.0507,171.94869 C 204.05068,173.66224 203.49287,174.98203 202.37726,175.90806 C 201.26892,176.82682 199.67569,177.28619 197.59757,177.28619 L 194.81945,177.28619 L 194.81945,182.95181 L 190.60851,182.95181 L 190.60851,166.62213 M 194.81945,169.67369 L 194.81945,174.23463 L 197.14914,174.23463 C 197.96579,174.23463 198.59652,174.03776 199.04132,173.644 C 199.4861,173.24297 199.7085,172.67786 199.70851,171.94869 C 199.7085,171.21953 199.4861,170.65808 199.04132,170.26431 C 198.59652,169.87058 197.96579,169.6737 197.14914,169.67369 L 194.81945,169.67369"
|
||||
id="path13538"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 207.01476,166.62213 L 212.37414,166.62213 L 216.09289,175.36119 L 219.83351,166.62213 L 225.18195,166.62213 L 225.18195,182.95181 L 221.2007,182.95181 L 221.2007,171.00806 L 217.4382,179.81275 L 214.76945,179.81275 L 211.00695,171.00806 L 211.00695,182.95181 L 207.01476,182.95181 L 207.01476,166.62213"
|
||||
id="path13540"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 248.47882,167.13619 L 248.47882,170.59244 C 247.58193,170.19141 246.70694,169.88881 245.85382,169.68463 C 245.00069,169.48047 244.19496,169.37839 243.43663,169.37838 C 242.43038,169.37839 241.68663,169.51693 241.20538,169.794 C 240.72413,170.0711 240.4835,170.5013 240.48351,171.08463 C 240.4835,171.52214 240.64392,171.86484 240.96476,172.11275 C 241.29288,172.35339 241.8835,172.5612 242.73663,172.73619 L 244.53038,173.09713 C 246.346,173.46172 247.63662,174.01588 248.40226,174.75963 C 249.16787,175.50338 249.55068,176.56067 249.5507,177.9315 C 249.55068,179.73255 249.01475,181.07421 247.94288,181.9565 C 246.87829,182.8315 245.2486,183.269 243.05382,183.269 C 242.0184,183.269 240.97934,183.1706 239.93663,182.97369 C 238.89392,182.77681 237.85122,182.48515 236.80851,182.09869 L 236.80851,178.544 C 237.85122,179.09817 238.85746,179.51744 239.82726,179.80181 C 240.80434,180.0789 241.74496,180.21744 242.64913,180.21744 C 243.56788,180.21744 244.27152,180.06432 244.76007,179.75806 C 245.2486,179.45182 245.49287,179.01432 245.49288,178.44556 C 245.49287,177.93515 245.32517,177.5414 244.98976,177.26431 C 244.66163,176.98724 244.00173,176.73932 243.01007,176.52056 L 241.38038,176.15963 C 239.74705,175.80963 238.55121,175.25182 237.79288,174.48619 C 237.04184,173.72057 236.66632,172.6888 236.66632,171.39088 C 236.66632,169.76485 237.19132,168.51433 238.24132,167.63931 C 239.29132,166.76433 240.80069,166.32683 242.76945,166.32681 C 243.66631,166.32683 244.58871,166.39611 245.53663,166.53463 C 246.48454,166.66589 247.46527,166.86641 248.47882,167.13619"
|
||||
id="path13542"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 253.08351,170.70181 L 256.99914,170.70181 L 256.99914,182.95181 L 253.08351,182.95181 L 253.08351,170.70181 M 253.08351,165.93306 L 256.99914,165.93306 L 256.99914,169.12681 L 253.08351,169.12681 L 253.08351,165.93306"
|
||||
id="path13544"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 269.11788,180.87369 C 268.57829,181.58827 267.98402,182.11327 267.33507,182.44869 C 266.68611,182.7841 265.93507,182.95181 265.08195,182.95181 C 263.58715,182.95181 262.35121,182.36483 261.37413,181.19088 C 260.39705,180.00963 259.90851,178.50755 259.90851,176.68463 C 259.90851,174.85443 260.39705,173.35599 261.37413,172.18931 C 262.35121,171.01537 263.58715,170.42839 265.08195,170.42838 C 265.93507,170.42839 266.68611,170.5961 267.33507,170.9315 C 267.98402,171.26693 268.57829,171.79557 269.11788,172.51744 L 269.11788,170.70181 L 273.05538,170.70181 L 273.05538,181.71588 C 273.05537,183.68462 272.43193,185.18671 271.18507,186.22213 C 269.94548,187.26483 268.14444,187.78618 265.78195,187.78619 C 265.01632,187.78618 264.27621,187.72789 263.56163,187.61119 C 262.84705,187.49452 262.12882,187.31587 261.40695,187.07525 L 261.40695,184.02369 C 262.09236,184.41744 262.76319,184.7091 263.41945,184.89869 C 264.07569,185.09556 264.73559,185.194 265.39913,185.194 C 266.68246,185.194 267.62308,184.91327 268.22101,184.35181 C 268.81892,183.79035 269.11787,182.91171 269.11788,181.71588 L 269.11788,180.87369 M 266.53663,173.25025 C 265.72725,173.25026 265.09652,173.54922 264.64445,174.14713 C 264.19236,174.74505 263.96632,175.59088 263.96632,176.68463 C 263.96632,177.80755 264.18507,178.66067 264.62257,179.244 C 265.06007,179.82005 265.69809,180.10807 266.53663,180.10806 C 267.35329,180.10807 267.98767,179.80911 268.43976,179.21119 C 268.89183,178.61328 269.11787,177.77109 269.11788,176.68463 C 269.11787,175.59088 268.89183,174.74505 268.43976,174.14713 C 267.98767,173.54922 267.35329,173.25026 266.53663,173.25025"
|
||||
id="path13546"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 289.15539,175.49244 L 289.15539,182.95181 L 285.21789,182.95181 L 285.21789,181.73775 L 285.21789,177.24244 C 285.21788,176.18515 285.19239,175.45599 285.14129,175.05494 C 285.09749,174.6539 285.01733,174.35859 284.90067,174.169 C 284.74753,173.9138 284.53972,173.71693 284.27723,173.57838 C 284.01472,173.43255 283.71576,173.35963 283.38036,173.35963 C 282.56368,173.35963 281.92202,173.67682 281.45536,174.31119 C 280.98868,174.93828 280.75535,175.80963 280.75536,176.92525 L 280.75536,182.95181 L 276.83973,182.95181 L 276.83973,170.70181 L 280.75536,170.70181 L 280.75536,172.49556 C 281.34597,171.78099 281.97306,171.25599 282.63661,170.92056 C 283.30014,170.57787 284.03295,170.40651 284.83504,170.4065 C 286.24962,170.40651 287.32149,170.84037 288.05067,171.70806 C 288.78711,172.57578 289.15534,173.83724 289.15536,175.49244"
|
||||
id="path13548"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 298.29914,177.43931 C 297.48246,177.43932 296.86632,177.57786 296.4507,177.85494 C 296.04236,178.13203 295.83819,178.54036 295.8382,179.07994 C 295.83819,179.57577 296.00226,179.96588 296.33039,180.25025 C 296.6658,180.52734 297.12882,180.66588 297.71945,180.66588 C 298.4559,180.66588 299.07569,180.40338 299.57882,179.87838 C 300.08194,179.34609 300.3335,178.68255 300.33351,177.88775 L 300.33351,177.43931 L 298.29914,177.43931 M 304.28195,175.96275 L 304.28195,182.95181 L 300.33351,182.95181 L 300.33351,181.13619 C 299.8085,181.87994 299.21788,182.42317 298.56164,182.76588 C 297.90538,183.10129 297.10694,183.269 296.16632,183.269 C 294.89757,183.269 293.8658,182.90077 293.07101,182.16431 C 292.28351,181.42056 291.88976,180.45807 291.88976,179.27681 C 291.88976,177.84036 292.38195,176.78671 293.36632,176.11588 C 294.35799,175.44505 295.91111,175.10963 298.0257,175.10963 L 300.33351,175.10963 L 300.33351,174.80338 C 300.3335,174.18359 300.08923,173.73151 299.6007,173.44713 C 299.11215,173.15547 298.35017,173.00964 297.31476,173.00963 C 296.47621,173.00964 295.69601,173.09353 294.97414,173.26119 C 294.25226,173.42891 293.58143,173.68047 292.96164,174.01588 L 292.96164,171.02994 C 293.80018,170.82578 294.64236,170.67266 295.4882,170.57056 C 296.33403,170.4612 297.17986,170.40651 298.0257,170.4065 C 300.23506,170.40651 301.82829,170.84401 302.80539,171.719 C 303.78975,172.58672 304.28194,174.0013 304.28195,175.96275"
|
||||
id="path13550"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 307.94601,165.93306 L 311.86163,165.93306 L 311.86163,182.95181 L 307.94601,182.95181 L 307.94601,165.93306"
|
||||
id="path13552"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:41px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:condensed;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#f4f6f8;fill-opacity:1;stroke:none;display:inline;font-family:Arial Narrow;-inkscape-font-specification:Arial Narrow Bold Condensed"
|
||||
id="text21611"
|
||||
transform="matrix(0.66455533,0,0,0.66455533,105.60136,63.655516)">
|
||||
<path
|
||||
d="M 248.91997,211.60818 L 253.22417,211.60818 L 253.22417,214.73123 C 253.8114,213.61016 254.58549,212.7293 255.54643,212.08865 C 256.50736,211.44805 257.5417,211.12774 258.64946,211.12772 C 260.63805,211.12774 262.34638,212.07533 263.77446,213.97049 C 265.21585,215.86569 265.93655,218.55498 265.93657,222.03836 C 265.93655,225.69527 265.21585,228.498 263.77446,230.44656 C 262.33304,232.38179 260.61803,233.3494 258.62944,233.3494 C 257.70853,233.3494 256.84769,233.12918 256.04692,232.68875 C 255.25948,232.23498 254.42533,231.42085 253.54448,230.24637 L 253.54448,240.95682 L 248.91997,240.95682 L 248.91997,211.60818 M 253.48442,221.8782 C 253.48441,224.28056 253.87146,226.04895 254.64555,227.18338 C 255.43298,228.31782 256.38057,228.88504 257.48833,228.88504 C 258.54268,228.88504 259.43021,228.36454 260.15092,227.32352 C 260.87161,226.26916 261.23196,224.55416 261.23198,222.1785 C 261.23196,219.92298 260.85827,218.26136 260.11089,217.19363 C 259.37682,216.1126 258.47595,215.57207 257.40825,215.57205 C 256.28715,215.57207 255.3529,216.09925 254.60551,217.15359 C 253.85811,218.19463 253.48441,219.76949 253.48442,221.8782"
|
||||
id="path21616"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 269.64018,208.72537 L 269.64018,203.52029 L 274.26469,203.52029 L 274.26469,208.72537 L 269.64018,208.72537 M 269.64018,232.86893 L 269.64018,211.60818 L 274.26469,211.60818 L 274.26469,232.86893 L 269.64018,232.86893"
|
||||
id="path21618"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 294.86479,232.86893 L 290.24028,232.86893 L 290.24028,222.01834 C 290.24027,219.8429 290.15352,218.39482 289.98003,217.6741 C 289.80651,216.95342 289.47953,216.39954 288.99907,216.01248 C 288.53193,215.62545 287.99808,215.43193 287.39751,215.43192 C 286.62341,215.43193 285.92273,215.68551 285.29546,216.19266 C 284.66817,216.68649 284.22774,217.37383 283.97417,218.25467 C 283.72058,219.13554 283.59379,220.79716 283.5938,223.23953 L 283.5938,232.86893 L 278.96928,232.86893 L 278.96928,211.60818 L 283.25346,211.60818 L 283.25346,214.73123 C 284.0142,213.53008 284.86836,212.6292 285.81596,212.02859 C 286.77689,211.42803 287.83793,211.12774 288.99907,211.12772 C 290.34704,211.12774 291.48148,211.48142 292.40239,212.18875 C 293.33662,212.88278 293.97724,213.78366 294.32426,214.89139 C 294.6846,215.98581 294.86477,217.57402 294.86479,219.65604 L 294.86479,232.86893"
|
||||
id="path21620"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 298.42827,225.08133 L 302.89262,224.42068 C 303.01274,225.80871 303.39311,226.86975 304.03374,227.60379 C 304.67435,228.33784 305.42842,228.70487 306.29594,228.70486 C 307.24353,228.70487 308.04431,228.27111 308.69829,227.40359 C 309.35225,226.53609 309.67923,225.33492 309.67924,223.80008 C 309.67923,222.37203 309.36559,221.25094 308.73833,220.4368 C 308.11104,219.62268 307.3503,219.21562 306.4561,219.21561 C 305.86885,219.21562 305.16817,219.35576 304.35405,219.63602 L 304.85454,215.05154 C 306.04235,215.07825 306.98327,214.75794 307.67729,214.09061 C 308.35794,213.42331 308.69828,212.48239 308.69829,211.26785 C 308.69828,210.25355 308.45137,209.45945 307.95757,208.88553 C 307.46374,208.31166 306.82979,208.02471 306.05571,208.02469 C 305.28161,208.02471 304.60762,208.35837 304.03374,209.02567 C 303.47318,209.67966 303.13953,210.65394 303.03276,211.94852 L 298.7686,211.06766 C 299.20903,208.38506 300.06987,206.4365 301.35112,205.22195 C 302.63236,204.00746 304.24727,203.40021 306.19585,203.40018 C 308.38464,203.40021 310.11966,204.18097 311.40092,205.74246 C 312.69551,207.30401 313.3428,209.03236 313.34282,210.92752 C 313.3428,212.20879 313.04918,213.36325 312.46196,214.3909 C 311.88805,215.41859 311.02054,216.31946 309.85942,217.09354 C 311.20739,217.4539 312.30179,218.24801 313.14262,219.47586 C 313.99677,220.70374 314.42386,222.23857 314.42387,224.08035 C 314.42386,226.76298 313.62308,228.98514 312.02153,230.74686 C 310.4333,232.49523 308.53812,233.36941 306.33598,233.36942 C 304.22725,233.36941 302.43884,232.62869 300.97075,231.14725 C 299.51599,229.66581 298.6685,227.64383 298.42827,225.08133"
|
||||
id="path21622"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;stroke:#1f4697;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:round;display:inline"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 388.93975,203.58874 L 431.34,203.43994"
|
||||
id="path8856-5-47-7" />
|
||||
<path
|
||||
id="path22050-39"
|
||||
d="M 388.93975,233.51434 L 431.71887,233.51434"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#7a00ff;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;stroke:#fac204;stroke-width:5.61399984;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 388.93975,211.51434 L 431.56407,211.51434"
|
||||
id="path8856-5-1-4-3" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;stroke:#32a304;stroke-width:5.61399984;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 388.93975,218.51734 L 431.40447,218.51134"
|
||||
id="path8856-5-1-7-5-2" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:none;stroke:#ec6004;stroke-width:5.61390018;stroke-linecap:butt;stroke-linejoin:round;display:inline"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 388.93975,226.51434 L 431.71887,226.51434"
|
||||
id="path8856-5-1-7-1-7-2" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
sodipodi:insensitive="true"
|
||||
style="display:none"
|
||||
inkscape:label="cc-sbus"
|
||||
id="g11323"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
transform="matrix(0.4,0,0,0.4,53.475,-98.70912)"
|
||||
id="cc-sbus"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;stroke:#777777;stroke-width:14.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
stroke-miterlimit="4"
|
||||
d="M 1487.3483,1530 C 1537.6483,1528.91 1602.3483,1535.3 1642.3483,1566.6"
|
||||
id="path11327" />
|
||||
<path
|
||||
style="fill:none;stroke:#777777;stroke-width:14.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
stroke-miterlimit="4"
|
||||
d="M 1250,1530 C 1185.1,1524.03 1129,1544.3 1079,1570.7"
|
||||
id="path11329" />
|
||||
<path
|
||||
id="path11331"
|
||||
d="M 1359.9896,1320.8001 L 1359.9896,1054.6727"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#d81900;stroke-width:15.29999924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path11333"
|
||||
d="M 1389.9896,1320.8001 L 1389.9896,1054.6727"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#ec6004;stroke-width:15.29999924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
id="path11335"
|
||||
d="M 1346.2717,1320.8001 L 1346.2721,1054.6727"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#000000;stroke-width:15.29999924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<rect
|
||||
x="1250"
|
||||
y="1320"
|
||||
stroke-miterlimit="4"
|
||||
width="237"
|
||||
height="272"
|
||||
ry="11.5"
|
||||
style="color:#000000;fill:url(#linearGradient10170-6-9);fill-rule:nonzero;stroke:#000000;stroke-width:5.76999998;stroke-miterlimit:4;stroke-dasharray:none;enable-background:accumulate"
|
||||
id="rect11337"
|
||||
rx="11.5" />
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
xml:space="preserve"
|
||||
x="1367.399"
|
||||
y="1415.5746"
|
||||
font-style="normal"
|
||||
line-height="125%"
|
||||
font-size="40px"
|
||||
font-weight="normal"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;font-family:Sans"
|
||||
id="text11339"><tspan
|
||||
x="1367.399"
|
||||
y="1415.5746"
|
||||
id="tspan11341">Futaba</tspan></text>
|
||||
<text
|
||||
sodipodi:linespacing="125%"
|
||||
font-style="normal"
|
||||
x="1368.0533"
|
||||
y="1500.4048"
|
||||
line-height="125%"
|
||||
font-size="100px"
|
||||
xml:space="preserve"
|
||||
font-weight="normal"
|
||||
style="font-size:100px;font-style:normal;font-weight:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;font-family:Sans"
|
||||
id="text11343"><tspan
|
||||
x="1368.0533"
|
||||
y="1500.4048"
|
||||
font-size="40px"
|
||||
style="font-size:40px;text-align:center;text-anchor:middle;fill:#ffffff"
|
||||
id="tspan11345">S-Bus</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer22"
|
||||
inkscape:label="cc-satellite"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="cc-satellite"
|
||||
transform="matrix(0.4,0,0,0.4,-131.04473,-97.93132)">
|
||||
<path
|
||||
id="path9857-8"
|
||||
d="M 1250,1530 C 1185.1,1524.03 1129,1544.3 1079,1570.7"
|
||||
stroke-miterlimit="4"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#777777;stroke-width:14.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
id="path9857-8-5"
|
||||
d="M 1490,1530 C 1540.3,1528.91 1605,1535.3 1645,1566.6"
|
||||
stroke-miterlimit="4"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#777777;stroke-width:14.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:none;stroke:#1f4697;stroke-width:15.29999924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1371.2889,1318.8556 L 1371.2889,1194.0962 L 1596.2889,1194.0962 L 1596.2889,1052.7282"
|
||||
id="path8856-5-6" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:none;stroke:#d81900;stroke-width:15.29999924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1356.2889,1318.8556 L 1356.2889,1179.0962 L 1581.2889,1179.0962 L 1581.2889,1052.7282"
|
||||
id="path8856-1-2" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:none;stroke:#ec6004;stroke-width:15.29999924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1386.2889,1318.8556 L 1386.2889,1209.0962 L 1611.7889,1209.0963 L 1611.7889,1052.7282"
|
||||
id="path8856-5-1-7-1-9" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
style="fill:none;stroke:#000000;stroke-width:15.30000019;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1342.571,1318.8556 L 1342.571,1164.0962 L 1566.2889,1164.0962 L 1566.2889,1052.7282"
|
||||
id="path8856-1-5-7" />
|
||||
<rect
|
||||
rx="11.5"
|
||||
id="rect8853-6"
|
||||
style="color:#000000;fill:url(#linearGradient10168-9);fill-rule:nonzero;stroke:#000000;stroke-width:5.76999998;stroke-miterlimit:4;stroke-dasharray:none;enable-background:accumulate"
|
||||
ry="11.5"
|
||||
height="272"
|
||||
width="237"
|
||||
stroke-miterlimit="4"
|
||||
y="1320"
|
||||
x="1250" />
|
||||
<text
|
||||
id="text9963"
|
||||
style="font-size:40px;font-style:normal;font-weight:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;font-family:Sans"
|
||||
font-weight="normal"
|
||||
font-size="40px"
|
||||
line-height="125%"
|
||||
font-style="normal"
|
||||
y="1415.5746"
|
||||
x="1368.6637"
|
||||
xml:space="preserve"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
id="tspan8153"
|
||||
y="1415.5746"
|
||||
x="1368.6637">Spectrum</tspan></text>
|
||||
<text
|
||||
id="text4849"
|
||||
style="font-size:100px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;font-family:Sans"
|
||||
font-weight="normal"
|
||||
xml:space="preserve"
|
||||
font-size="100px"
|
||||
font-style="normal"
|
||||
y="1500.4048"
|
||||
x="1291.984"
|
||||
line-height="125%"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
id="tspan4851"
|
||||
font-size="40px"
|
||||
y="1500.4048"
|
||||
x="1291.984"
|
||||
style="font-size:40px;fill:#ffffff">Satellite</tspan></text>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer4"
|
||||
@ -20577,7 +19862,7 @@
|
||||
</g>
|
||||
<path
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,1015.7912,553.33859)"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -20593,7 +19878,7 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,819.07458,553.33859)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
@ -20603,11 +19888,11 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,1015.7912,750.0552)" />
|
||||
<path
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,819.07458,750.0552)"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -20756,11 +20041,11 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,260.05873,720.82148)" />
|
||||
<path
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,260.05873,524.10489)"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -20884,7 +20169,7 @@
|
||||
</g>
|
||||
<path
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,456.77534,720.82148)"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -20900,7 +20185,7 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,456.77534,524.10489)" />
|
||||
<rect
|
||||
id="rect7428"
|
||||
@ -22203,7 +21488,7 @@
|
||||
</g>
|
||||
<path
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,966.79118,555.54549)"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -22219,7 +21504,7 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,770.07457,555.54549)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
@ -22229,11 +21514,11 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,966.79118,752.26239)" />
|
||||
<path
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,770.07457,752.26239)"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -22466,7 +21751,7 @@
|
||||
</g>
|
||||
<path
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,248.09985,719.53351)"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -22482,7 +21767,7 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,444.81646,719.53351)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
@ -22492,11 +21777,11 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,248.09985,522.818)" />
|
||||
<path
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,444.81646,522.818)"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -23841,7 +23126,7 @@
|
||||
</g>
|
||||
<path
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,1015.7912,553.33859)"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -23857,7 +23142,7 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,819.07458,553.33859)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
@ -23867,11 +23152,11 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,1015.7912,750.0552)" />
|
||||
<path
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,819.07458,750.0552)"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -24022,11 +23307,11 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,260.05873,720.82148)" />
|
||||
<path
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,260.05873,524.10489)"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -24150,7 +23435,7 @@
|
||||
</g>
|
||||
<path
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,456.77534,720.82148)"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -24166,7 +23451,7 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 A 23.877298,23.877298 0 1 1 -60.489157,572.3067 A 23.877298,23.877298 0 1 1 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,456.77534,524.10489)" />
|
||||
<rect
|
||||
id="rect7428-5"
|
||||
@ -25472,7 +24757,7 @@
|
||||
</g>
|
||||
<path
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,966.79118,555.54549)"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -25488,7 +24773,7 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,770.07457,555.54549)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
@ -25498,11 +24783,11 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,966.79118,752.26239)" />
|
||||
<path
|
||||
transform="matrix(0,0.40146247,-0.40146247,0,770.07457,752.26239)"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -25737,7 +25022,7 @@
|
||||
</g>
|
||||
<path
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,248.09985,719.53351)"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -25753,7 +25038,7 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,444.81646,719.53351)" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
@ -25763,11 +25048,11 @@
|
||||
sodipodi:cy="572.3067"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:ry="23.877298"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,248.09985,522.818)" />
|
||||
<path
|
||||
transform="matrix(0,-0.40146247,0.40146247,0,444.81646,522.818)"
|
||||
d="M -12.73456,572.3067 C -12.73456,585.49377 -23.424791,596.184 -36.611858,596.184 C -49.798926,596.184 -60.489157,585.49377 -60.489157,572.3067 C -60.489157,559.11963 -49.798926,548.4294 -36.611858,548.4294 C -23.424791,548.4294 -12.73456,559.11963 -12.73456,572.3067 z"
|
||||
d="m -12.73456,572.3067 c 0,13.18707 -10.690231,23.8773 -23.877298,23.8773 -13.187068,0 -23.877299,-10.69023 -23.877299,-23.8773 0,-13.18707 10.690231,-23.8773 23.877299,-23.8773 13.187067,0 23.877298,10.69023 23.877298,23.8773 z"
|
||||
sodipodi:ry="23.877298"
|
||||
sodipodi:rx="23.877298"
|
||||
sodipodi:cy="572.3067"
|
||||
@ -26778,7 +26063,7 @@
|
||||
style="fill:#df181b;fill-opacity:1;stroke:#000000;stroke-width:0.77129602px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="matrix(0.77129601,0,0,0.77129601,324.31484,-346.34006)"
|
||||
d="M 379.6109,501.66602 A 5.4548922,5.2069426 0 1 1 368.70111,501.66602 A 5.4548922,5.2069426 0 1 1 379.6109,501.66602 z"
|
||||
d="m 379.6109,501.66602 c 0,2.87571 -2.44224,5.20694 -5.45489,5.20694 -3.01266,0 -5.4549,-2.33123 -5.4549,-5.20694 0,-2.87572 2.44224,-5.20695 5.4549,-5.20695 3.01265,0 5.45489,2.33123 5.45489,5.20695 z"
|
||||
sodipodi:ry="5.2069426"
|
||||
sodipodi:rx="5.4548922"
|
||||
sodipodi:cy="501.66602"
|
||||
@ -27588,7 +26873,7 @@
|
||||
id="path8856-5-6-5-6-7-2-87-6-9" />
|
||||
<path
|
||||
transform="translate(-136.3084,-443.63428)"
|
||||
d="M 656.58418,483.271 A 5.1442995,5.1442995 0 1 1 646.29558,483.271 A 5.1442995,5.1442995 0 1 1 656.58418,483.271 z"
|
||||
d="m 656.58418,483.271 c 0,2.84111 -2.30318,5.1443 -5.1443,5.1443 -2.84112,0 -5.1443,-2.30319 -5.1443,-5.1443 0,-2.84112 2.30318,-5.1443 5.1443,-5.1443 2.84112,0 5.1443,2.30318 5.1443,5.1443 z"
|
||||
sodipodi:ry="5.1442995"
|
||||
sodipodi:rx="5.1442995"
|
||||
sodipodi:cy="483.271"
|
||||
@ -27604,11 +26889,11 @@
|
||||
sodipodi:cy="483.271"
|
||||
sodipodi:rx="5.1442995"
|
||||
sodipodi:ry="5.1442995"
|
||||
d="M 656.58418,483.271 A 5.1442995,5.1442995 0 1 1 646.29558,483.271 A 5.1442995,5.1442995 0 1 1 656.58418,483.271 z"
|
||||
d="m 656.58418,483.271 c 0,2.84111 -2.30318,5.1443 -5.1443,5.1443 -2.84112,0 -5.1443,-2.30319 -5.1443,-5.1443 0,-2.84112 2.30318,-5.1443 5.1443,-5.1443 2.84112,0 5.1443,2.30318 5.1443,5.1443 z"
|
||||
transform="translate(-136.3084,-463.68797)" />
|
||||
<path
|
||||
transform="translate(-136.3084,-481.68799)"
|
||||
d="M 656.58418,483.271 A 5.1442995,5.1442995 0 1 1 646.29558,483.271 A 5.1442995,5.1442995 0 1 1 656.58418,483.271 z"
|
||||
d="m 656.58418,483.271 c 0,2.84111 -2.30318,5.1443 -5.1443,5.1443 -2.84112,0 -5.1443,-2.30319 -5.1443,-5.1443 0,-2.84112 2.30318,-5.1443 5.1443,-5.1443 2.84112,0 5.1443,2.30318 5.1443,5.1443 z"
|
||||
sodipodi:ry="5.1442995"
|
||||
sodipodi:rx="5.1442995"
|
||||
sodipodi:cy="483.271"
|
||||
@ -27624,7 +26909,7 @@
|
||||
sodipodi:cy="483.271"
|
||||
sodipodi:rx="5.1442995"
|
||||
sodipodi:ry="5.1442995"
|
||||
d="M 656.58418,483.271 A 5.1442995,5.1442995 0 1 1 646.29558,483.271 A 5.1442995,5.1442995 0 1 1 656.58418,483.271 z"
|
||||
d="m 656.58418,483.271 c 0,2.84111 -2.30318,5.1443 -5.1443,5.1443 -2.84112,0 -5.1443,-2.30319 -5.1443,-5.1443 0,-2.84112 2.30318,-5.1443 5.1443,-5.1443 2.84112,0 5.1443,2.30318 5.1443,5.1443 z"
|
||||
transform="translate(-136.3084,-501.68802)" />
|
||||
<g
|
||||
id="g9542-2-1"
|
||||
@ -28459,7 +27744,7 @@
|
||||
style="fill:#df181b;fill-opacity:1;stroke:#000000;stroke-width:0.77129602px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="matrix(0.77129601,0,0,0.77129601,-4.0324,147.80034)"
|
||||
d="M 379.6109,501.66602 A 5.4548922,5.2069426 0 1 1 368.70111,501.66602 A 5.4548922,5.2069426 0 1 1 379.6109,501.66602 z"
|
||||
d="m 379.6109,501.66602 c 0,2.87571 -2.44224,5.20694 -5.45489,5.20694 -3.01266,0 -5.4549,-2.33123 -5.4549,-5.20694 0,-2.87572 2.44224,-5.20695 5.4549,-5.20695 3.01265,0 5.45489,2.33123 5.45489,5.20695 z"
|
||||
sodipodi:ry="5.2069426"
|
||||
sodipodi:rx="5.4548922"
|
||||
sodipodi:cy="501.66602"
|
||||
@ -29269,7 +28554,7 @@
|
||||
id="path8856-5-6-5-6-7-2-87-6-9-8" />
|
||||
<path
|
||||
transform="translate(-465.89215,50.457722)"
|
||||
d="M 656.58418,483.271 A 5.1442995,5.1442995 0 1 1 646.29558,483.271 A 5.1442995,5.1442995 0 1 1 656.58418,483.271 z"
|
||||
d="m 656.58418,483.271 c 0,2.84111 -2.30318,5.1443 -5.1443,5.1443 -2.84112,0 -5.1443,-2.30319 -5.1443,-5.1443 0,-2.84112 2.30318,-5.1443 5.1443,-5.1443 2.84112,0 5.1443,2.30318 5.1443,5.1443 z"
|
||||
sodipodi:ry="5.1442995"
|
||||
sodipodi:rx="5.1442995"
|
||||
sodipodi:cy="483.271"
|
||||
@ -29285,11 +28570,11 @@
|
||||
sodipodi:cy="483.271"
|
||||
sodipodi:rx="5.1442995"
|
||||
sodipodi:ry="5.1442995"
|
||||
d="M 656.58418,483.271 A 5.1442995,5.1442995 0 1 1 646.29558,483.271 A 5.1442995,5.1442995 0 1 1 656.58418,483.271 z"
|
||||
d="m 656.58418,483.271 c 0,2.84111 -2.30318,5.1443 -5.1443,5.1443 -2.84112,0 -5.1443,-2.30319 -5.1443,-5.1443 0,-2.84112 2.30318,-5.1443 5.1443,-5.1443 2.84112,0 5.1443,2.30318 5.1443,5.1443 z"
|
||||
transform="translate(-465.89215,30.404033)" />
|
||||
<path
|
||||
transform="translate(-465.89215,12.404008)"
|
||||
d="M 656.58418,483.271 A 5.1442995,5.1442995 0 1 1 646.29558,483.271 A 5.1442995,5.1442995 0 1 1 656.58418,483.271 z"
|
||||
d="m 656.58418,483.271 c 0,2.84111 -2.30318,5.1443 -5.1443,5.1443 -2.84112,0 -5.1443,-2.30319 -5.1443,-5.1443 0,-2.84112 2.30318,-5.1443 5.1443,-5.1443 2.84112,0 5.1443,2.30318 5.1443,5.1443 z"
|
||||
sodipodi:ry="5.1442995"
|
||||
sodipodi:rx="5.1442995"
|
||||
sodipodi:cy="483.271"
|
||||
@ -29305,7 +28590,7 @@
|
||||
sodipodi:cy="483.271"
|
||||
sodipodi:rx="5.1442995"
|
||||
sodipodi:ry="5.1442995"
|
||||
d="M 656.58418,483.271 A 5.1442995,5.1442995 0 1 1 646.29558,483.271 A 5.1442995,5.1442995 0 1 1 656.58418,483.271 z"
|
||||
d="m 656.58418,483.271 c 0,2.84111 -2.30318,5.1443 -5.1443,5.1443 -2.84112,0 -5.1443,-2.30319 -5.1443,-5.1443 0,-2.84112 2.30318,-5.1443 5.1443,-5.1443 2.84112,0 5.1443,2.30318 5.1443,5.1443 z"
|
||||
transform="translate(-465.89215,-7.5960203)" />
|
||||
<g
|
||||
id="g9542-2-1-6"
|
||||
@ -29455,7 +28740,7 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer15"
|
||||
inkscape:label="revo"
|
||||
style="display:inline">
|
||||
style="display:none">
|
||||
<g
|
||||
style="display:inline"
|
||||
transform="translate(-1.4348189,-1.0188297)"
|
||||
@ -29464,7 +28749,7 @@
|
||||
<path
|
||||
style="fill:url(#linearGradient9863-4-2)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 530.25061,75.31614 L 539.25824,75.31614 L 539.25824,101.11287 L 561.67256,101.11287 L 561.67256,75.31614 L 571.22484,75.31614 L 550.75867,55.411253 z"
|
||||
d="m 530.25061,75.31614 9.00763,0 0,25.79673 22.41432,0 0,-25.79673 9.55228,0 -20.46617,-19.904887 z"
|
||||
id="path10151-2-3" />
|
||||
<g
|
||||
transform="matrix(1.0887723,0,0,1.065281,432.61098,99.35125)"
|
||||
@ -29473,7 +28758,7 @@
|
||||
style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8131"
|
||||
d="M 203.083,1.012 L 19.572,1.012 C 12.348,1.012 6.492,7.3674389 6.492,12.889439 L 6.492,199.17256 C 6.492,204.69456 12.347,211.05 19.572,211.05 L 203.084,211.05 C 210.307,211.05 216.163,204.69456 216.163,199.17256 L 216.163,12.889439 C 216.163,7.3664389 210.306,1.012 203.083,1.012 z M 19.523,204.315 C 15.603,204.315 12.425,201.137 12.425,197.218 C 12.425,193.298 15.603,190.121 19.523,190.121 C 23.441,190.121 26.619,193.298 26.619,197.218 C 26.619,201.138 23.441,204.315 19.523,204.315 z M 19.522,21.924 C 15.603,21.924 12.425,18.746 12.425,14.827 C 12.425,10.908 15.603,7.73 19.522,7.73 C 23.441,7.73 26.619,10.907 26.619,14.827 C 26.619,18.746 23.441,21.924 19.522,21.924 z M 202.464,203.988 C 198.544,203.988 195.366,200.81 195.366,196.89 C 195.366,192.971 198.544,189.794 202.464,189.794 C 206.382,189.794 209.56,192.971 209.56,196.89 C 209.56,200.811 206.382,203.988 202.464,203.988 z M 202.658,20.501 C 198.738,20.501 195.56,17.323 195.56,13.404 C 195.56,9.485 198.738,6.307 202.658,6.307 C 206.576,6.307 209.754,9.484 209.754,13.404 C 209.753,17.324 206.576,20.501 202.658,20.501 z"
|
||||
d="m 203.083,1.012 -183.511,0 c -7.224,0 -13.08,6.3554389 -13.08,11.877439 l 0,186.283121 c 0,5.522 5.855,11.87744 13.08,11.87744 l 183.512,0 c 7.223,0 13.079,-6.35544 13.079,-11.87744 l 0,-186.283121 C 216.163,7.3664389 210.306,1.012 203.083,1.012 z M 19.523,204.315 c -3.92,0 -7.098,-3.178 -7.098,-7.097 0,-3.92 3.178,-7.097 7.098,-7.097 3.918,0 7.096,3.177 7.096,7.097 0,3.92 -3.178,7.097 -7.096,7.097 z M 19.522,21.924 c -3.919,0 -7.097,-3.178 -7.097,-7.097 0,-3.919 3.178,-7.097 7.097,-7.097 3.919,0 7.097,3.177 7.097,7.097 0,3.919 -3.178,7.097 -7.097,7.097 z m 182.942,182.064 c -3.92,0 -7.098,-3.178 -7.098,-7.098 0,-3.919 3.178,-7.096 7.098,-7.096 3.918,0 7.096,3.177 7.096,7.096 0,3.921 -3.178,7.098 -7.096,7.098 z m 0.194,-183.487 c -3.92,0 -7.098,-3.178 -7.098,-7.097 0,-3.919 3.178,-7.097 7.098,-7.097 3.918,0 7.096,3.177 7.096,7.097 -0.001,3.92 -3.178,7.097 -7.096,7.097 z"
|
||||
sodipodi:nodetypes="ssssssssssssssssssssssssssscs" />
|
||||
<rect
|
||||
style="fill:#312d29"
|
||||
@ -30188,73 +29473,73 @@
|
||||
id="path5470-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,37.521 H 90.968"
|
||||
d="m 88.281,37.521 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5612-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,39.877 H 90.968"
|
||||
d="m 88.281,39.877 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5614-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,42.357 H 90.968"
|
||||
d="m 88.281,42.357 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5616-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,42.357 H 115.005"
|
||||
d="m 112.466,42.357 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5618-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,39.877 H 115.005"
|
||||
d="m 112.466,39.877 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5620-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,37.521 H 115.005"
|
||||
d="m 112.466,37.521 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5622-4" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,27.724 H 90.968"
|
||||
d="m 88.281,27.724 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5624-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,30.204 H 90.968"
|
||||
d="m 88.281,30.204 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5626-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,32.561 H 90.968"
|
||||
d="m 88.281,32.561 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5628-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,32.561 H 115.005"
|
||||
d="m 112.466,32.561 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5630-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,30.204 H 115.005"
|
||||
d="m 112.466,30.204 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5632-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,27.724 H 115.005"
|
||||
d="m 112.466,27.724 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5634-1" />
|
||||
@ -30266,7 +29551,7 @@
|
||||
id="path5636-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,35.041 H 90.968"
|
||||
d="m 88.281,35.041 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5726-1" />
|
||||
@ -30278,19 +29563,19 @@
|
||||
id="path5728-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,35.041 H 115.005"
|
||||
d="m 112.466,35.041 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5730-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,25.244 H 90.968"
|
||||
d="m 88.281,25.244 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5738-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,25.244 H 115.005"
|
||||
d="m 112.466,25.244 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5740-0" />
|
||||
@ -30363,73 +29648,73 @@
|
||||
id="path12850-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,37.521 H 90.968"
|
||||
d="m 88.281,37.521 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12852-8" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,39.877 H 90.968"
|
||||
d="m 88.281,39.877 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12854-8" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,42.357 H 90.968"
|
||||
d="m 88.281,42.357 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12856-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,42.357 H 115.005"
|
||||
d="m 112.466,42.357 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12858-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,39.877 H 115.005"
|
||||
d="m 112.466,39.877 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12860-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,37.521 H 115.005"
|
||||
d="m 112.466,37.521 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12862-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,27.724 H 90.968"
|
||||
d="m 88.281,27.724 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12864-8" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,30.204 H 90.968"
|
||||
d="m 88.281,30.204 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12866-9" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,32.561 H 90.968"
|
||||
d="m 88.281,32.561 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12868-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,32.561 H 115.005"
|
||||
d="m 112.466,32.561 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12870-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,30.204 H 115.005"
|
||||
d="m 112.466,30.204 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12872-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,27.724 H 115.005"
|
||||
d="m 112.466,27.724 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12874-4" />
|
||||
@ -30441,7 +29726,7 @@
|
||||
id="path12876-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,35.041 H 90.968"
|
||||
d="m 88.281,35.041 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12878-8" />
|
||||
@ -30453,19 +29738,19 @@
|
||||
id="path12880-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,35.041 H 115.005"
|
||||
d="m 112.466,35.041 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12882-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 88.281,25.244 H 90.968"
|
||||
d="m 88.281,25.244 h 2.687"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12884-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 112.466,25.244 H 115.005"
|
||||
d="m 112.466,25.244 h 2.539"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12886-0" />
|
||||
@ -30538,73 +29823,73 @@
|
||||
id="path12850_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 135.023,63.309 H 137.191"
|
||||
d="m 135.023,63.309 h 2.168"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12852_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 135.023,65.209 H 137.191"
|
||||
d="m 135.023,65.209 h 2.168"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12854_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 135.023,67.21 H 137.191"
|
||||
d="m 135.023,67.21 h 2.168"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12856_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 154.533,67.21 H 156.58"
|
||||
d="m 154.533,67.21 h 2.047"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12858_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 154.533,65.209 H 156.58"
|
||||
d="m 154.533,65.209 h 2.047"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12860_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 154.533,63.309 H 156.58"
|
||||
d="m 154.533,63.309 h 2.047"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12862_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 135.023,55.406 H 137.191"
|
||||
d="m 135.023,55.406 h 2.168"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12864_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 135.023,57.407 H 137.191"
|
||||
d="m 135.023,57.407 h 2.168"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12866_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 135.023,59.308 H 137.191"
|
||||
d="m 135.023,59.308 h 2.168"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12868_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 154.533,59.308 H 156.58"
|
||||
d="m 154.533,59.308 h 2.047"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12870_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 154.533,57.407 H 156.58"
|
||||
d="m 154.533,57.407 h 2.047"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12872_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 154.533,55.406 H 156.58"
|
||||
d="m 154.533,55.406 h 2.047"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12874_1_" />
|
||||
@ -30616,7 +29901,7 @@
|
||||
id="path12876_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 135.023,61.308 H 137.191"
|
||||
d="m 135.023,61.308 h 2.168"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12878_1_" />
|
||||
@ -30628,19 +29913,19 @@
|
||||
id="path12880_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 154.533,61.308 H 156.58"
|
||||
d="m 154.533,61.308 h 2.047"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12882_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 135.023,53.405 H 137.191"
|
||||
d="m 135.023,53.405 h 2.168"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12884_1_" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49290001;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 154.533,53.405 H 156.58"
|
||||
d="m 154.533,53.405 h 2.047"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12886_1_" />
|
||||
@ -30654,7 +29939,7 @@
|
||||
<path
|
||||
style="fill:#434242;stroke:#000000;stroke-width:3.6157999"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 75.291,79.213 H 128.982 C 130.021,79.213 130.861,80.054 130.861,81.092 V 135.051 C 130.861,136.09 130.021,136.93 128.982,136.93 H 75.291 C 74.253,136.93 73.412,136.09 73.412,135.051 V 81.093 C 73.412,80.055 74.253,79.213 75.291,79.213 z"
|
||||
d="m 75.291,79.213 h 53.691 c 1.039,0 1.879,0.841 1.879,1.879 v 53.959 c 0,1.039 -0.84,1.879 -1.879,1.879 H 75.291 c -1.038,0 -1.879,-0.84 -1.879,-1.879 V 81.093 c 0,-1.038 0.841,-1.88 1.879,-1.88 z"
|
||||
id="rect3773-8" />
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"
|
||||
@ -30666,7 +29951,7 @@
|
||||
id="path3777-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 193.941,76.477 H 194.043"
|
||||
d="m 193.941,76.477 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3779-4" />
|
||||
@ -30681,7 +29966,7 @@
|
||||
id="path3787-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 193.278,76.477 H 193.38"
|
||||
d="m 193.278,76.477 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3789-0" />
|
||||
@ -30696,7 +29981,7 @@
|
||||
id="path3793-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 192.614,76.477 H 192.716"
|
||||
d="m 192.614,76.477 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3795-4" />
|
||||
@ -30711,7 +29996,7 @@
|
||||
id="path3799-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 191.95,76.477 H 192.052"
|
||||
d="m 191.95,76.477 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3801-6" />
|
||||
@ -30726,7 +30011,7 @@
|
||||
id="path3805-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 191.286,76.477 H 191.389"
|
||||
d="m 191.286,76.477 h 0.103"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3807-0" />
|
||||
@ -30741,7 +30026,7 @@
|
||||
id="path3811-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 190.623,76.477 H 190.726"
|
||||
d="m 190.623,76.477 h 0.103"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3813-5" />
|
||||
@ -30756,7 +30041,7 @@
|
||||
id="path3817-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 189.96,76.477 H 190.063"
|
||||
d="m 189.96,76.477 h 0.103"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3819-6" />
|
||||
@ -30771,7 +30056,7 @@
|
||||
id="path3823-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 189.297,76.477 H 189.398"
|
||||
d="m 189.297,76.477 h 0.101"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3825-7" />
|
||||
@ -30786,7 +30071,7 @@
|
||||
id="path3829-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 188.633,76.477 H 188.735"
|
||||
d="m 188.633,76.477 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3831-7" />
|
||||
@ -30801,7 +30086,7 @@
|
||||
id="path3835-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 187.97,76.477 H 188.072"
|
||||
d="m 187.97,76.477 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3837-1" />
|
||||
@ -30816,7 +30101,7 @@
|
||||
id="path3841-9" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 187.305,76.477 H 187.407"
|
||||
d="m 187.305,76.477 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3843-1" />
|
||||
@ -30831,7 +30116,7 @@
|
||||
id="path3847-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 186.643,76.477 H 186.745"
|
||||
d="m 186.643,76.477 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3849-2" />
|
||||
@ -30846,7 +30131,7 @@
|
||||
id="path3853-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 185.979,76.477 H 186.081"
|
||||
d="m 185.979,76.477 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3855-2" />
|
||||
@ -30861,7 +30146,7 @@
|
||||
id="path3859-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 185.316,76.477 H 185.418"
|
||||
d="m 185.316,76.477 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3861-6" />
|
||||
@ -30876,7 +30161,7 @@
|
||||
id="path3865-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 184.652,76.477 H 184.754"
|
||||
d="m 184.652,76.477 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3867-1" />
|
||||
@ -30891,7 +30176,7 @@
|
||||
id="path3871-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 183.988,76.477 H 184.091"
|
||||
d="m 183.988,76.477 h 0.103"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3873-9" />
|
||||
@ -30901,12 +30186,12 @@
|
||||
id="g3927">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 229.176,86.44 H 233.121"
|
||||
d="m 229.176,86.44 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3929-9" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 230.34,86.364 V 86.517"
|
||||
d="m 230.34,86.364 v 0.153"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3931-5" />
|
||||
@ -30916,12 +30201,12 @@
|
||||
id="g3933">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 226.504,89.448 H 230.449"
|
||||
d="m 226.504,89.448 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3935-9" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 227.668,89.37 V 89.523"
|
||||
d="m 227.668,89.37 v 0.153"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3937-2" />
|
||||
@ -30931,12 +30216,12 @@
|
||||
id="g3939">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 223.832,92.453 H 227.777"
|
||||
d="m 223.832,92.453 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3941-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 224.996,92.378 V 92.531"
|
||||
d="m 224.996,92.378 v 0.153"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3943-5" />
|
||||
@ -30946,12 +30231,12 @@
|
||||
id="g3945">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 221.16,95.461 H 225.105"
|
||||
d="m 221.16,95.461 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3947-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 222.324,95.384 V 95.537"
|
||||
d="m 222.324,95.384 v 0.153"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3949-2" />
|
||||
@ -30961,12 +30246,12 @@
|
||||
id="g3951">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 218.488,98.468 H 222.433"
|
||||
d="m 218.488,98.468 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3953-4" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 219.652,98.391 V 98.545"
|
||||
d="m 219.652,98.391 v 0.154"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3955-4" />
|
||||
@ -30976,12 +30261,12 @@
|
||||
id="g3957">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 215.816,101.475 H 219.761"
|
||||
d="m 215.816,101.475 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3959-4" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 216.98,101.398 V 101.55"
|
||||
d="m 216.98,101.398 v 0.152"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3961-2" />
|
||||
@ -30991,12 +30276,12 @@
|
||||
id="g3963">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 213.144,104.48 H 217.089"
|
||||
d="m 213.144,104.48 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3965-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 214.308,104.405 V 104.557"
|
||||
d="m 214.308,104.405 v 0.152"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3967-9" />
|
||||
@ -31006,12 +30291,12 @@
|
||||
id="g3969">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 210.472,107.488 H 214.417"
|
||||
d="m 210.472,107.488 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3971-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 211.636,107.411 V 107.563"
|
||||
d="m 211.636,107.411 v 0.152"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3973-3" />
|
||||
@ -31021,12 +30306,12 @@
|
||||
id="g3975">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 207.8,110.493 H 211.745"
|
||||
d="m 207.8,110.493 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3977-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 208.964,110.417 V 110.571"
|
||||
d="m 208.964,110.417 v 0.154"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3979-3" />
|
||||
@ -31036,12 +30321,12 @@
|
||||
id="g3981">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 205.128,113.501 H 209.073"
|
||||
d="m 205.128,113.501 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3983-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 206.292,113.424 V 113.578"
|
||||
d="m 206.292,113.424 v 0.154"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3985-5" />
|
||||
@ -31051,12 +30336,12 @@
|
||||
id="g3987">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 202.457,116.508 H 206.402"
|
||||
d="m 202.457,116.508 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3989-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 203.62,116.431 V 116.584"
|
||||
d="m 203.62,116.431 v 0.153"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3991-8" />
|
||||
@ -31066,12 +30351,12 @@
|
||||
id="g3993">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 199.785,119.514 H 203.73"
|
||||
d="m 199.785,119.514 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3995-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 200.948,119.437 V 119.59"
|
||||
d="m 200.948,119.437 v 0.153"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path3997-8" />
|
||||
@ -31081,12 +30366,12 @@
|
||||
id="g3999">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 197.113,122.52 H 201.058"
|
||||
d="m 197.113,122.52 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4001-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 198.276,122.444 V 122.596"
|
||||
d="m 198.276,122.444 v 0.152"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4003-2" />
|
||||
@ -31096,12 +30381,12 @@
|
||||
id="g4005">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 194.441,125.527 H 198.386"
|
||||
d="m 194.441,125.527 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4007-4" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 195.604,125.452 V 125.603"
|
||||
d="m 195.604,125.452 v 0.151"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4009-1" />
|
||||
@ -31111,12 +30396,12 @@
|
||||
id="g4011">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 191.769,128.534 H 195.714"
|
||||
d="m 191.769,128.534 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4013-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 192.932,128.457 V 128.611"
|
||||
d="m 192.932,128.457 v 0.154"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4015-5" />
|
||||
@ -31126,12 +30411,12 @@
|
||||
id="g4017">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 189.097,131.541 H 193.042"
|
||||
d="m 189.097,131.541 h 3.945"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4019-9" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 190.261,131.464 V 131.618"
|
||||
d="m 190.261,131.464 v 0.154"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4021-5" />
|
||||
@ -31141,12 +30426,12 @@
|
||||
id="g4025">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 189.569,86.44 H 185.623"
|
||||
d="m 189.569,86.44 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4027-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 188.405,86.364 V 86.517"
|
||||
d="m 188.405,86.364 v 0.153"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4029-0" />
|
||||
@ -31156,12 +30441,12 @@
|
||||
id="g4031">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 186.897,89.448 H 182.951"
|
||||
d="m 186.897,89.448 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4033-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 185.733,89.37 V 89.523"
|
||||
d="m 185.733,89.37 v 0.153"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4035-4" />
|
||||
@ -31171,12 +30456,12 @@
|
||||
id="g4037">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 184.225,92.453 H 180.279"
|
||||
d="m 184.225,92.453 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4039-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 183.061,92.378 V 92.531"
|
||||
d="m 183.061,92.378 v 0.153"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4041-3" />
|
||||
@ -31186,12 +30471,12 @@
|
||||
id="g4043">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 181.554,95.461 H 177.608"
|
||||
d="m 181.554,95.461 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4045-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 180.389,95.384 V 95.537"
|
||||
d="m 180.389,95.384 v 0.153"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4047-8" />
|
||||
@ -31201,12 +30486,12 @@
|
||||
id="g4049">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 178.882,98.468 H 174.936"
|
||||
d="m 178.882,98.468 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4051-9" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 177.717,98.391 V 98.545"
|
||||
d="m 177.717,98.391 v 0.154"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4053-1" />
|
||||
@ -31216,12 +30501,12 @@
|
||||
id="g4055">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 176.21,101.475 H 172.264"
|
||||
d="m 176.21,101.475 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4057-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 175.045,101.398 V 101.55"
|
||||
d="m 175.045,101.398 v 0.152"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4059-4" />
|
||||
@ -31231,12 +30516,12 @@
|
||||
id="g4061">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 173.538,104.48 H 169.592"
|
||||
d="m 173.538,104.48 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4063-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 172.373,104.405 V 104.557"
|
||||
d="m 172.373,104.405 v 0.152"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4065-4" />
|
||||
@ -31251,7 +30536,7 @@
|
||||
id="path4069-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 169.701,107.411 V 107.563"
|
||||
d="m 169.701,107.411 v 0.152"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4071-3" />
|
||||
@ -31261,12 +30546,12 @@
|
||||
id="g4073">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 168.194,110.493 H 164.248"
|
||||
d="m 168.194,110.493 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4075-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 167.029,110.417 V 110.571"
|
||||
d="m 167.029,110.417 v 0.154"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4077-5" />
|
||||
@ -31276,12 +30561,12 @@
|
||||
id="g4079">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 165.522,113.501 H 161.576"
|
||||
d="m 165.522,113.501 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4081-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 164.357,113.424 V 113.578"
|
||||
d="m 164.357,113.424 v 0.154"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4083-8" />
|
||||
@ -31291,12 +30576,12 @@
|
||||
id="g4085">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 162.85,116.508 H 158.904"
|
||||
d="m 162.85,116.508 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4087-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 161.685,116.431 V 116.584"
|
||||
d="m 161.685,116.431 v 0.153"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4089-0" />
|
||||
@ -31306,12 +30591,12 @@
|
||||
id="g4091">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 160.178,119.514 H 156.232"
|
||||
d="m 160.178,119.514 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4093-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 159.013,119.437 V 119.59"
|
||||
d="m 159.013,119.437 v 0.153"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4095-1" />
|
||||
@ -31326,7 +30611,7 @@
|
||||
id="path4099-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 156.341,122.444 V 122.596"
|
||||
d="m 156.341,122.444 v 0.152"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4101-5" />
|
||||
@ -31336,12 +30621,12 @@
|
||||
id="g4103">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 154.834,125.527 H 150.888"
|
||||
d="m 154.834,125.527 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4105-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 153.669,125.452 V 125.603"
|
||||
d="m 153.669,125.452 v 0.151"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4107-2" />
|
||||
@ -31351,12 +30636,12 @@
|
||||
id="g4109">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 152.162,128.534 H 148.216"
|
||||
d="m 152.162,128.534 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4111-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 150.997,128.457 V 128.611"
|
||||
d="m 150.997,128.457 v 0.154"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4113-7" />
|
||||
@ -31366,12 +30651,12 @@
|
||||
id="g4115">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 149.49,131.541 H 145.544"
|
||||
d="m 149.49,131.541 h -3.946"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4117-4" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 148.325,131.464 V 131.618"
|
||||
d="m 148.325,131.464 v 0.154"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4119-8" />
|
||||
@ -31381,12 +30666,12 @@
|
||||
id="g4123">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 193.993,136.959 V 142.865"
|
||||
d="m 193.993,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4125-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 193.941,138.702 H 194.043"
|
||||
d="m 193.941,138.702 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4127-3" />
|
||||
@ -31396,12 +30681,12 @@
|
||||
id="g4129">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 193.329,136.959 V 142.865"
|
||||
d="m 193.329,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4131-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 193.278,138.702 H 193.38"
|
||||
d="m 193.278,138.702 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4133-3" />
|
||||
@ -31411,12 +30696,12 @@
|
||||
id="g4135">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 192.665,136.959 V 142.865"
|
||||
d="m 192.665,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4137-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 192.614,138.702 H 192.716"
|
||||
d="m 192.614,138.702 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4139-3" />
|
||||
@ -31426,12 +30711,12 @@
|
||||
id="g4141">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 192.001,136.959 V 142.865"
|
||||
d="m 192.001,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4143-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 191.95,138.702 H 192.052"
|
||||
d="m 191.95,138.702 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4145-2" />
|
||||
@ -31441,12 +30726,12 @@
|
||||
id="g4147">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 191.338,136.959 V 142.865"
|
||||
d="m 191.338,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4149-8" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 191.286,138.702 H 191.389"
|
||||
d="m 191.286,138.702 h 0.103"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4151-0" />
|
||||
@ -31456,12 +30741,12 @@
|
||||
id="g4153">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 190.674,136.959 V 142.865"
|
||||
d="m 190.674,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4155-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 190.623,138.702 H 190.726"
|
||||
d="m 190.623,138.702 h 0.103"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4157-2" />
|
||||
@ -31471,12 +30756,12 @@
|
||||
id="g4159">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 190.011,136.959 V 142.865"
|
||||
d="m 190.011,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4161-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 189.96,138.702 H 190.063"
|
||||
d="m 189.96,138.702 h 0.103"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4163-5" />
|
||||
@ -31486,12 +30771,12 @@
|
||||
id="g4165">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 189.348,136.959 V 142.865"
|
||||
d="m 189.348,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167-9" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 189.297,138.702 H 189.398"
|
||||
d="m 189.297,138.702 h 0.101"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4169-1" />
|
||||
@ -31501,12 +30786,12 @@
|
||||
id="g4171">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 188.684,136.959 V 142.865"
|
||||
d="m 188.684,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4173-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 188.633,138.702 H 188.735"
|
||||
d="m 188.633,138.702 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4175-8" />
|
||||
@ -31516,12 +30801,12 @@
|
||||
id="g4177">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 188.02,136.959 V 142.865"
|
||||
d="m 188.02,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4179-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 187.97,138.702 H 188.072"
|
||||
d="m 187.97,138.702 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4181-0" />
|
||||
@ -31531,12 +30816,12 @@
|
||||
id="g4183">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 187.357,136.959 V 142.865"
|
||||
d="m 187.357,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4185-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 187.305,138.702 H 187.407"
|
||||
d="m 187.305,138.702 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4187-9" />
|
||||
@ -31546,12 +30831,12 @@
|
||||
id="g4189">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 186.693,136.959 V 142.865"
|
||||
d="m 186.693,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4191-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 186.643,138.702 H 186.745"
|
||||
d="m 186.643,138.702 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4193-5" />
|
||||
@ -31561,12 +30846,12 @@
|
||||
id="g4195">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 186.03,136.959 V 142.865"
|
||||
d="m 186.03,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4197-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 185.979,138.702 H 186.081"
|
||||
d="m 185.979,138.702 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4199-4" />
|
||||
@ -31576,12 +30861,12 @@
|
||||
id="g4201">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 185.366,136.959 V 142.865"
|
||||
d="m 185.366,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4203-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 185.316,138.702 H 185.418"
|
||||
d="m 185.316,138.702 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4205-0" />
|
||||
@ -31591,12 +30876,12 @@
|
||||
id="g4207">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 184.702,136.959 V 142.865"
|
||||
d="m 184.702,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4209-4" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 184.652,138.702 H 184.754"
|
||||
d="m 184.652,138.702 h 0.102"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4211" />
|
||||
@ -31606,12 +30891,12 @@
|
||||
id="g4213">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80789995"
|
||||
d="M 184.039,136.959 V 142.865"
|
||||
d="m 184.039,136.959 v 5.906"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4215" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56550002;stroke-linecap:square"
|
||||
d="M 183.988,138.702 H 184.091"
|
||||
d="m 183.988,138.702 h 0.103"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
id="path4217-8" />
|
||||
@ -31689,7 +30974,7 @@
|
||||
<path
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:2.41429996"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 167.542,162.639 V 169.137 C 167.542,169.479 167.265,169.758 166.921,169.758 H 154.985 C 154.641,169.758 154.362,169.479 154.362,169.137 V 162.639 C 154.362,162.295 154.641,162.018 154.985,162.018 H 166.921 C 167.265,162.018 167.542,162.295 167.542,162.639 z"
|
||||
d="m 167.542,162.639 v 6.498 c 0,0.342 -0.277,0.621 -0.621,0.621 h -11.936 c -0.344,0 -0.623,-0.279 -0.623,-0.621 v -6.498 c 0,-0.344 0.279,-0.621 0.623,-0.621 h 11.936 c 0.344,0 0.621,0.277 0.621,0.621 z"
|
||||
id="rect4841-7" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
@ -31764,7 +31049,7 @@
|
||||
<path
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:2.41429996"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 150.42,158.868 V 165.366 C 150.42,165.708 150.143,165.987 149.799,165.987 H 137.863 C 137.519,165.987 137.24,165.708 137.24,165.366 V 158.868 C 137.24,158.524 137.519,158.247 137.863,158.247 H 149.799 C 150.143,158.247 150.42,158.524 150.42,158.868 z"
|
||||
d="m 150.42,158.868 v 6.498 c 0,0.342 -0.277,0.621 -0.621,0.621 h -11.936 c -0.344,0 -0.623,-0.279 -0.623,-0.621 v -6.498 c 0,-0.344 0.279,-0.621 0.623,-0.621 h 11.936 c 0.344,0 0.621,0.277 0.621,0.621 z"
|
||||
id="rect4841_1_" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
@ -31839,7 +31124,7 @@
|
||||
<path
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:2.41429996"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 160.505,133.086 H 154.007 C 153.665,133.086 153.386,132.809 153.386,132.465 V 120.529 C 153.386,120.185 153.665,119.906 154.007,119.906 H 160.505 C 160.849,119.906 161.126,120.185 161.126,120.529 V 132.465 C 161.126,132.809 160.849,133.086 160.505,133.086 z"
|
||||
d="m 160.505,133.086 h -6.498 c -0.342,0 -0.621,-0.277 -0.621,-0.621 v -11.936 c 0,-0.344 0.279,-0.623 0.621,-0.623 h 6.498 c 0.344,0 0.621,0.279 0.621,0.623 v 11.936 c 0,0.344 -0.277,0.621 -0.621,0.621 z"
|
||||
id="rect4841_2_" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
@ -31914,7 +31199,7 @@
|
||||
<path
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:2.41429996"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 59.366,43.544 H 52.868 C 52.526,43.544 52.247,43.267 52.247,42.923 V 30.987 C 52.247,30.643 52.526,30.364 52.868,30.364 H 59.366 C 59.71,30.364 59.987,30.643 59.987,30.987 V 42.923 C 59.987,43.267 59.709,43.544 59.366,43.544 z"
|
||||
d="m 59.366,43.544 h -6.498 c -0.342,0 -0.621,-0.277 -0.621,-0.621 V 30.987 c 0,-0.344 0.279,-0.623 0.621,-0.623 h 6.498 c 0.344,0 0.621,0.279 0.621,0.623 v 11.936 c 0,0.344 -0.278,0.621 -0.621,0.621 z"
|
||||
id="rect4841_3_" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
@ -31989,7 +31274,7 @@
|
||||
<path
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:1.5"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 54.64,77.769 H 50.181 C 49.947,77.769 49.755,77.579 49.755,77.343 V 69.153 C 49.755,68.917 49.947,68.725 50.181,68.725 H 54.64 C 54.876,68.725 55.066,68.917 55.066,69.153 V 77.343 C 55.066,77.579 54.876,77.769 54.64,77.769 z"
|
||||
d="m 54.64,77.769 h -4.459 c -0.234,0 -0.426,-0.19 -0.426,-0.426 v -8.19 c 0,-0.236 0.192,-0.428 0.426,-0.428 h 4.459 c 0.236,0 0.426,0.192 0.426,0.428 v 8.19 c 0,0.236 -0.19,0.426 -0.426,0.426 z"
|
||||
id="rect4841_4_" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
@ -32064,7 +31349,7 @@
|
||||
<path
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:1.5"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 54.64,89.629 H 50.181 C 49.947,89.629 49.755,89.439 49.755,89.203 V 81.013 C 49.755,80.777 49.947,80.585 50.181,80.585 H 54.64 C 54.876,80.585 55.066,80.777 55.066,81.013 V 89.203 C 55.066,89.439 54.876,89.629 54.64,89.629 z"
|
||||
d="m 54.64,89.629 h -4.459 c -0.234,0 -0.426,-0.19 -0.426,-0.426 v -8.19 c 0,-0.236 0.192,-0.428 0.426,-0.428 h 4.459 c 0.236,0 0.426,0.192 0.426,0.428 v 8.19 c 0,0.236 -0.19,0.426 -0.426,0.426 z"
|
||||
id="rect4841_5_" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
@ -32139,7 +31424,7 @@
|
||||
<path
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:1.5"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 54.64,101.489 H 50.181 C 49.947,101.489 49.755,101.299 49.755,101.063 V 92.873 C 49.755,92.637 49.947,92.445 50.181,92.445 H 54.64 C 54.876,92.445 55.066,92.637 55.066,92.873 V 101.063 C 55.066,101.299 54.876,101.489 54.64,101.489 z"
|
||||
d="m 54.64,101.489 h -4.459 c -0.234,0 -0.426,-0.19 -0.426,-0.426 v -8.19 c 0,-0.236 0.192,-0.428 0.426,-0.428 h 4.459 c 0.236,0 0.426,0.192 0.426,0.428 v 8.19 c 0,0.236 -0.19,0.426 -0.426,0.426 z"
|
||||
id="rect4841_6_" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
@ -32214,7 +31499,7 @@
|
||||
<path
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:1.5"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 54.64,113.35 H 50.181 C 49.947,113.35 49.755,113.16 49.755,112.923 V 104.733 C 49.755,104.497 49.947,104.305 50.181,104.305 H 54.64 C 54.876,104.305 55.066,104.497 55.066,104.733 V 112.923 C 55.066,113.159 54.876,113.35 54.64,113.35 z"
|
||||
d="m 54.64,113.35 h -4.459 c -0.234,0 -0.426,-0.19 -0.426,-0.427 v -8.19 c 0,-0.236 0.192,-0.428 0.426,-0.428 h 4.459 c 0.236,0 0.426,0.192 0.426,0.428 v 8.19 c 0,0.236 -0.19,0.427 -0.426,0.427 z"
|
||||
id="rect4841_7_" />
|
||||
<rect
|
||||
style="fill:#fffde9;stroke:#828282;stroke-width:3.23519993;stroke-linecap:round;stroke-linejoin:round"
|
||||
@ -32591,7 +31876,7 @@
|
||||
id="rect8652"
|
||||
style="fill:url(#SVGID_1_-9-7)" />
|
||||
<path
|
||||
d="M 124.36614,193.487 C 124.36614,194.91 123.06414,196.062 121.45614,196.062 H 101.59614 C 99.988139,196.062 98.684139,194.91 98.684139,193.487 V 173.457 C 98.684139,172.035 99.987139,170.882 101.59614,170.882 H 121.45514 C 123.06314,170.882 124.36514,172.035 124.36514,173.457 V 193.487 z"
|
||||
d="m 124.36614,193.487 c 0,1.423 -1.302,2.575 -2.91,2.575 h -19.86 c -1.608001,0 -2.912001,-1.152 -2.912001,-2.575 v -20.03 c 0,-1.422 1.303,-2.575 2.912001,-2.575 h 19.859 c 1.608,0 2.91,1.153 2.91,2.575 v 20.03 z"
|
||||
id="path8654"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#dab452" />
|
||||
@ -32641,11 +31926,11 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8668"
|
||||
d="M 110.126,10.926 L 110.689,12.66 C 114.509,11.235 113.309,4.899 108.615,6.255 C 112.636,5.809 112.699,10.632 110.126,10.926 z" />
|
||||
d="m 110.126,10.926 0.563,1.734 c 3.82,-1.425 2.62,-7.761 -2.074,-6.405 4.021,-0.446 4.084,4.377 1.511,4.671 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8670"
|
||||
d="M 108.854,7.167 L 108.291,5.433 C 104.471,6.858 105.671,13.194 110.366,11.838 C 106.345,12.284 106.282,7.461 108.854,7.167 z" />
|
||||
d="m 108.854,7.167 -0.563,-1.734 c -3.82,1.425 -2.62,7.761 2.075,6.405 -4.021,0.446 -4.084,-4.377 -1.512,-4.671 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8672"
|
||||
@ -32654,49 +31939,49 @@
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8674"
|
||||
d="M 98.619,13.405 H 97.029 L 95.548,10.35 H 95.39 V 12.433 H 93.94 V 5.672 C 94.321,5.663 95.223,5.524 95.651,5.524 C 96.088,5.524 96.6,5.543 97.047,5.774 C 97.781,6.146 98.181,6.928 98.134,8.332 C 98.041,9.476 97.632,10.024 97.009,10.248 L 98.619,13.405 z M 96.683,8.015 C 96.683,7.439 96.478,6.816 95.864,6.816 C 95.706,6.816 95.531,6.834 95.39,6.862 V 9.242 C 96.282,9.578 96.683,8.853 96.683,8.015 z" />
|
||||
d="m 98.619,13.405 h -1.59 L 95.548,10.35 H 95.39 v 2.083 H 93.94 V 5.672 c 0.381,-0.009 1.283,-0.148 1.711,-0.148 0.437,0 0.949,0.019 1.396,0.25 0.734,0.372 1.134,1.154 1.087,2.558 -0.093,1.144 -0.502,1.692 -1.125,1.916 l 1.61,3.157 z m -1.936,-5.39 c 0,-0.576 -0.205,-1.199 -0.819,-1.199 -0.158,0 -0.333,0.018 -0.474,0.046 v 2.38 c 0.892,0.336 1.293,-0.389 1.293,-1.227 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8676"
|
||||
d="M 98.329,12.433 V 5.672 H 101.379 V 6.946 H 99.817 V 8.425 H 101.305 V 9.634 H 99.817 V 11.113 H 101.379 V 12.433 H 98.329 z" />
|
||||
d="M 98.329,12.433 V 5.672 h 3.05 v 1.274 h -1.562 v 1.479 h 1.488 v 1.209 h -1.488 v 1.479 h 1.562 v 1.32 h -3.05 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8678"
|
||||
d="M 103.88,10.359 L 104.587,5.672 H 106.14 L 104.736,12.433 H 102.886 L 101.472,5.672 H 103.034 L 103.742,10.359 L 103.816,10.926 L 103.88,10.359 z" />
|
||||
d="m 103.88,10.359 0.707,-4.687 h 1.553 l -1.404,6.761 h -1.85 l -1.414,-6.761 h 1.562 l 0.708,4.687 0.074,0.567 0.064,-0.567 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8680"
|
||||
d="M 113.285,12.433 V 5.672 H 114.754 V 11.112 H 116.4 V 12.432 H 113.285 z" />
|
||||
d="M 113.285,12.433 V 5.672 h 1.469 v 5.44 h 1.646 v 1.32 h -3.115 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8682"
|
||||
d="M 116.558,10.573 V 5.672 H 118.045 V 10.489 C 118.054,10.945 118.083,11.307 118.696,11.307 C 119.309,11.307 119.338,10.945 119.347,10.489 V 5.672 H 120.834 V 10.573 C 120.834,11.949 120.071,12.563 118.695,12.563 C 117.339,12.563 116.558,11.949 116.558,10.573 z" />
|
||||
d="M 116.558,10.573 V 5.672 h 1.487 v 4.817 c 0.009,0.456 0.038,0.818 0.651,0.818 0.613,0 0.642,-0.362 0.651,-0.818 V 5.672 h 1.487 v 4.901 c 0,1.376 -0.763,1.99 -2.139,1.99 -1.356,0 -2.137,-0.614 -2.137,-1.99 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8684"
|
||||
d="M 121.022,6.946 L 121.124,5.672 H 125.076 L 125.197,6.946 H 123.905 V 12.433 H 122.38 V 6.946 H 121.022 z" />
|
||||
d="m 121.022,6.946 0.102,-1.274 h 3.952 l 0.121,1.274 h -1.292 v 5.487 H 122.38 V 6.946 h -1.358 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8686"
|
||||
d="M 125.41,5.672 H 126.927 V 12.433 H 125.41 V 5.672 z" />
|
||||
d="m 125.41,5.672 h 1.517 v 6.761 H 125.41 V 5.672 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8688"
|
||||
d="M 127.177,9.029 C 127.177,7.337 127.81,5.487 129.781,5.496 C 131.743,5.487 132.376,7.337 132.367,9.029 C 132.367,10.74 131.772,12.572 129.781,12.563 C 127.782,12.572 127.197,10.74 127.177,9.029 z M 128.74,9.048 C 128.74,9.978 128.926,11.317 129.781,11.354 C 130.628,11.316 130.813,9.978 130.813,9.048 C 130.813,8.127 130.627,6.937 129.781,6.881 C 128.925,6.937 128.74,8.127 128.74,9.048 z" />
|
||||
d="m 127.177,9.029 c 0,-1.692 0.633,-3.542 2.604,-3.533 1.962,-0.009 2.595,1.841 2.586,3.533 0,1.711 -0.595,3.543 -2.586,3.534 -1.999,0.009 -2.584,-1.823 -2.604,-3.534 z m 1.563,0.019 c 0,0.93 0.186,2.269 1.041,2.306 0.847,-0.038 1.032,-1.376 1.032,-2.306 0,-0.921 -0.186,-2.111 -1.032,-2.167 -0.856,0.056 -1.041,1.246 -1.041,2.167 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8690"
|
||||
d="M 132.598,12.433 V 5.672 H 133.854 L 135.277,8.992 V 5.672 H 136.71 V 12.433 H 135.52 L 134.051,9.122 V 12.433 H 132.598 z" />
|
||||
d="M 132.598,12.433 V 5.672 h 1.256 l 1.423,3.32 v -3.32 h 1.433 v 6.761 h -1.19 l -1.469,-3.311 v 3.311 h -1.453 z" />
|
||||
<circle
|
||||
d="M 110.432,9.1289997 C 110.432,9.6470428 110.01205,10.067 109.494,10.067 C 108.97596,10.067 108.556,9.6470428 108.556,9.1289997 C 108.556,8.6109566 108.97596,8.1909997 109.494,8.1909997 C 110.01205,8.1909997 110.432,8.6109566 110.432,9.1289997 z"
|
||||
d="m 110.432,9.1289997 c 0,0.5180431 -0.41995,0.9380003 -0.938,0.9380003 -0.51804,0 -0.938,-0.4199572 -0.938,-0.9380003 0,-0.5180431 0.41996,-0.938 0.938,-0.938 0.51805,0 0.938,0.4199569 0.938,0.938 z"
|
||||
style="fill:#070606"
|
||||
sodipodi:ry="0.93800002"
|
||||
sodipodi:rx="0.93800002"
|
||||
@ -32710,7 +31995,7 @@
|
||||
style="fill:#dbdbdb;stroke:#848484;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8694"
|
||||
d="M 35.028,179.497 C 35.028,180.601 34.132,181.497 33.028,181.497 H 6.084 C 4.98,181.497 4.084,180.601 4.084,179.497 L 6.084,178.156 L 4.084,176.031 V 145.031 L 6.084,142.656 L 4.084,141.368 C 4.084,140.264 4.98,139.368 6.084,139.368 H 33.029 C 34.133,139.368 35.029,140.264 35.029,141.368 V 179.497 z" />
|
||||
d="m 35.028,179.497 c 0,1.104 -0.896,2 -2,2 H 6.084 c -1.104,0 -2,-0.896 -2,-2 l 2,-1.341 -2,-2.125 v -31 l 2,-2.375 -2,-1.288 c 0,-1.104 0.896,-2 2,-2 h 26.945 c 1.104,0 2,0.896 2,2 v 38.129 z" />
|
||||
<rect
|
||||
style="fill:#5a5a5a"
|
||||
id="rect8696"
|
||||
@ -32733,7 +32018,7 @@
|
||||
y="17.379"
|
||||
x="128.155" />
|
||||
<circle
|
||||
d="M 132.598,20.466 C 132.598,21.246378 131.96538,21.879 131.185,21.879 C 130.40462,21.879 129.772,21.246378 129.772,20.466 C 129.772,19.685621 130.40462,19.053 131.185,19.053 C 131.96538,19.053 132.598,19.685621 132.598,20.466 z"
|
||||
d="m 132.598,20.466 c 0,0.780378 -0.63262,1.413 -1.413,1.413 -0.78038,0 -1.413,-0.632622 -1.413,-1.413 0,-0.780379 0.63262,-1.413 1.413,-1.413 0.78038,0 1.413,0.632621 1.413,1.413 z"
|
||||
style="fill:#2c2c2c"
|
||||
sodipodi:ry="1.413"
|
||||
sodipodi:rx="1.413"
|
||||
@ -32744,7 +32029,7 @@
|
||||
cy="20.466"
|
||||
cx="131.185" />
|
||||
<circle
|
||||
d="M 153.14499,29.417 C 153.14499,30.197378 152.51237,30.83 151.73199,30.83 C 150.95162,30.83 150.31899,30.197378 150.31899,29.417 C 150.31899,28.636621 150.95162,28.004 151.73199,28.004 C 152.51237,28.004 153.14499,28.636621 153.14499,29.417 z"
|
||||
d="m 153.14499,29.417 c 0,0.780378 -0.63262,1.413 -1.413,1.413 -0.78037,0 -1.413,-0.632622 -1.413,-1.413 0,-0.780379 0.63263,-1.413 1.413,-1.413 0.78038,0 1.413,0.632621 1.413,1.413 z"
|
||||
style="fill:#2c2c2c"
|
||||
sodipodi:ry="1.413"
|
||||
sodipodi:rx="1.413"
|
||||
@ -32756,14 +32041,14 @@
|
||||
cx="151.73199" />
|
||||
<polygon
|
||||
id="polygon8706"
|
||||
points="186.194,11.031 181.129,13.319 186.083,4.74 191.036,13.319 " />
|
||||
points="186.083,4.74 191.036,13.319 186.194,11.031 181.129,13.319 " />
|
||||
<polygon
|
||||
id="polygon8708"
|
||||
points="36.194,11.031 31.129,13.319 36.083,4.74 41.036,13.319 " />
|
||||
points="36.083,4.74 41.036,13.319 36.194,11.031 31.129,13.319 " />
|
||||
<g
|
||||
id="g8710">
|
||||
<circle
|
||||
d="M 195.585,45.712002 C 195.585,48.448573 193.36658,50.667002 190.63,50.667002 C 187.89343,50.667002 185.675,48.448573 185.675,45.712002 C 185.675,42.975431 187.89343,40.757002 190.63,40.757002 C 193.36658,40.757002 195.585,42.975431 195.585,45.712002 z"
|
||||
d="m 195.585,45.712002 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -32777,7 +32062,7 @@
|
||||
<g
|
||||
id="g8714">
|
||||
<circle
|
||||
d="M 210.585,45.712002 C 210.585,48.448573 208.36658,50.667002 205.63,50.667002 C 202.89343,50.667002 200.675,48.448573 200.675,45.712002 C 200.675,42.975431 202.89343,40.757002 205.63,40.757002 C 208.36658,40.757002 210.585,42.975431 210.585,45.712002 z"
|
||||
d="m 210.585,45.712002 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -32791,7 +32076,7 @@
|
||||
<g
|
||||
id="g8718">
|
||||
<circle
|
||||
d="M 195.585,60.712002 C 195.585,63.448573 193.36658,65.667002 190.63,65.667002 C 187.89343,65.667002 185.675,63.448573 185.675,60.712002 C 185.675,57.975431 187.89343,55.757002 190.63,55.757002 C 193.36658,55.757002 195.585,57.975431 195.585,60.712002 z"
|
||||
d="m 195.585,60.712002 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -32805,7 +32090,7 @@
|
||||
<g
|
||||
id="g8722">
|
||||
<circle
|
||||
d="M 210.585,60.712002 C 210.585,63.448573 208.36658,65.667002 205.63,65.667002 C 202.89343,65.667002 200.675,63.448573 200.675,60.712002 C 200.675,57.975431 202.89343,55.757002 205.63,55.757002 C 208.36658,55.757002 210.585,57.975431 210.585,60.712002 z"
|
||||
d="m 210.585,60.712002 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -32819,7 +32104,7 @@
|
||||
<g
|
||||
id="g8726">
|
||||
<circle
|
||||
d="M 195.585,75.711998 C 195.585,78.448569 193.36658,80.666998 190.63,80.666998 C 187.89343,80.666998 185.675,78.448569 185.675,75.711998 C 185.675,72.975427 187.89343,70.756998 190.63,70.756998 C 193.36658,70.756998 195.585,72.975427 195.585,75.711998 z"
|
||||
d="m 195.585,75.711998 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -32833,7 +32118,7 @@
|
||||
<g
|
||||
id="g8730">
|
||||
<circle
|
||||
d="M 210.585,75.711998 C 210.585,78.448569 208.36658,80.666998 205.63,80.666998 C 202.89343,80.666998 200.675,78.448569 200.675,75.711998 C 200.675,72.975427 202.89343,70.756998 205.63,70.756998 C 208.36658,70.756998 210.585,72.975427 210.585,75.711998 z"
|
||||
d="m 210.585,75.711998 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -32847,7 +32132,7 @@
|
||||
<g
|
||||
id="g8734">
|
||||
<circle
|
||||
d="M 195.585,90.711998 C 195.585,93.448569 193.36658,95.666998 190.63,95.666998 C 187.89343,95.666998 185.675,93.448569 185.675,90.711998 C 185.675,87.975427 187.89343,85.756998 190.63,85.756998 C 193.36658,85.756998 195.585,87.975427 195.585,90.711998 z"
|
||||
d="m 195.585,90.711998 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -32861,7 +32146,7 @@
|
||||
<g
|
||||
id="g8738">
|
||||
<circle
|
||||
d="M 210.585,90.711998 C 210.585,93.448569 208.36658,95.666998 205.63,95.666998 C 202.89343,95.666998 200.675,93.448569 200.675,90.711998 C 200.675,87.975427 202.89343,85.756998 205.63,85.756998 C 208.36658,85.756998 210.585,87.975427 210.585,90.711998 z"
|
||||
d="m 210.585,90.711998 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -32875,7 +32160,7 @@
|
||||
<g
|
||||
id="g8742">
|
||||
<circle
|
||||
d="M 195.585,105.712 C 195.585,108.44857 193.36658,110.667 190.63,110.667 C 187.89343,110.667 185.675,108.44857 185.675,105.712 C 185.675,102.97543 187.89343,100.757 190.63,100.757 C 193.36658,100.757 195.585,102.97543 195.585,105.712 z"
|
||||
d="m 195.585,105.712 c 0,2.73657 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.21843 -4.955,-4.955 0,-2.73657 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.21843 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -32889,7 +32174,7 @@
|
||||
<g
|
||||
id="g8746">
|
||||
<circle
|
||||
d="M 210.585,105.712 C 210.585,108.44857 208.36658,110.667 205.63,110.667 C 202.89343,110.667 200.675,108.44857 200.675,105.712 C 200.675,102.97543 202.89343,100.757 205.63,100.757 C 208.36658,100.757 210.585,102.97543 210.585,105.712 z"
|
||||
d="m 210.585,105.712 c 0,2.73657 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.21843 -4.955,-4.955 0,-2.73657 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.21843 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -32903,7 +32188,7 @@
|
||||
<g
|
||||
id="g8750">
|
||||
<circle
|
||||
d="M 195.585,120.712 C 195.585,123.44857 193.36658,125.667 190.63,125.667 C 187.89343,125.667 185.675,123.44857 185.675,120.712 C 185.675,117.97543 187.89343,115.757 190.63,115.757 C 193.36658,115.757 195.585,117.97543 195.585,120.712 z"
|
||||
d="m 195.585,120.712 c 0,2.73657 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.21843 -4.955,-4.955 0,-2.73657 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.21843 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -32917,7 +32202,7 @@
|
||||
<g
|
||||
id="g8754">
|
||||
<circle
|
||||
d="M 210.585,120.712 C 210.585,123.44857 208.36658,125.667 205.63,125.667 C 202.89343,125.667 200.675,123.44857 200.675,120.712 C 200.675,117.97543 202.89343,115.757 205.63,115.757 C 208.36658,115.757 210.585,117.97543 210.585,120.712 z"
|
||||
d="m 210.585,120.712 c 0,2.73657 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.21843 -4.955,-4.955 0,-2.73657 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.21843 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -32934,23 +32219,23 @@
|
||||
id="text15586-6">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1244.4045,614.53143 L 1244.4045,605.94159 L 1250.2932,605.94159 L 1250.2932,607.39471 L 1246.1389,607.39471 L 1246.1389,609.42792 L 1249.7249,609.42792 L 1249.7249,610.88104 L 1246.1389,610.88104 L 1246.1389,614.53143 L 1244.4045,614.53143"
|
||||
d="m 1244.4045,614.53143 0,-8.58984 5.8887,0 0,1.45312 -4.1543,0 0,2.03321 3.586,0 0,1.45312 -3.586,0 0,3.65039 -1.7344,0"
|
||||
id="path15604-5" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1251.717,614.53143 L 1251.717,605.94159 L 1253.3635,605.94159 L 1253.3635,614.53143 L 1251.717,614.53143"
|
||||
d="m 1251.717,614.53143 0,-8.58984 1.6465,0 0,8.58984 -1.6465,0"
|
||||
id="path15606-1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1258.6487,612.55096 L 1260.2893,612.82635 C 1260.0784,613.42792 1259.7444,613.8869 1259.2874,614.20331 C 1258.8342,614.51581 1258.2659,614.67206 1257.5823,614.67206 C 1256.5002,614.67206 1255.6995,614.31854 1255.1799,613.61151 C 1254.7698,613.04511 1254.5647,612.33026 1254.5647,611.46698 C 1254.5647,610.43573 1254.8342,609.62909 1255.3733,609.04706 C 1255.9124,608.46113 1256.594,608.16816 1257.4182,608.16815 C 1258.344,608.16816 1259.0745,608.4748 1259.6096,609.08807 C 1260.1448,609.69745 1260.4006,610.633 1260.3772,611.89471 L 1256.2522,611.89471 C 1256.2642,612.383 1256.3967,612.76386 1256.6506,613.03729 C 1256.9045,613.30682 1257.2209,613.44159 1257.5999,613.44159 C 1257.8577,613.44159 1258.0745,613.37129 1258.2502,613.23065 C 1258.426,613.09003 1258.5588,612.86347 1258.6487,612.55096 M 1258.7427,610.8869 C 1258.7307,610.41034 1258.608,610.04902 1258.3736,609.80292 C 1258.1392,609.55292 1257.8541,609.42792 1257.5181,609.42792 C 1257.1587,609.42792 1256.8619,609.55878 1256.6275,609.8205 C 1256.3931,610.08222 1256.2779,610.43769 1256.2818,610.8869 L 1258.7427,610.8869"
|
||||
d="m 1258.6487,612.55096 1.6406,0.27539 c -0.2109,0.60157 -0.5449,1.06055 -1.0019,1.37696 -0.4532,0.3125 -1.0215,0.46875 -1.7051,0.46875 -1.0821,0 -1.8828,-0.35352 -2.4024,-1.06055 -0.4101,-0.5664 -0.6152,-1.28125 -0.6152,-2.14453 0,-1.03125 0.2695,-1.83789 0.8086,-2.41992 0.5391,-0.58593 1.2207,-0.8789 2.0449,-0.87891 0.9258,10e-6 1.6563,0.30665 2.1914,0.91992 0.5352,0.60938 0.791,1.54493 0.7676,2.80664 l -4.125,0 c 0.012,0.48829 0.1445,0.86915 0.3984,1.14258 0.2539,0.26953 0.5703,0.4043 0.9493,0.4043 0.2578,0 0.4746,-0.0703 0.6503,-0.21094 0.1758,-0.14062 0.3086,-0.36718 0.3985,-0.67969 m 0.094,-1.66406 c -0.012,-0.47656 -0.1347,-0.83788 -0.3691,-1.08398 -0.2344,-0.25 -0.5195,-0.375 -0.8555,-0.375 -0.3594,0 -0.6562,0.13086 -0.8906,0.39258 -0.2344,0.26172 -0.3496,0.61719 -0.3457,1.0664 l 2.4609,0"
|
||||
id="path15608-4" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1260.9338,614.53143 L 1263.178,611.32635 L 1261.0276,608.30878 L 1263.0374,608.30878 L 1264.1389,610.01971 L 1265.2991,608.30878 L 1267.2327,608.30878 L 1265.1233,611.25604 L 1267.426,614.53143 L 1265.4045,614.53143 L 1264.1389,612.6037 L 1262.8616,614.53143 L 1260.9338,614.53143"
|
||||
d="m 1260.9338,614.53143 2.2442,-3.20508 -2.1504,-3.01757 2.0098,0 1.1015,1.71093 1.1602,-1.71093 1.9336,0 -2.1094,2.94726 2.3027,3.27539 -2.0215,0 -1.2656,-1.92773 -1.2773,1.92773 -1.9278,0"
|
||||
id="path15610-5" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1268.4045,607.46503 L 1268.4045,605.94159 L 1270.051,605.94159 L 1270.051,607.46503 L 1268.4045,607.46503 M 1268.4045,614.53143 L 1268.4045,608.30878 L 1270.051,608.30878 L 1270.051,614.53143 L 1268.4045,614.53143"
|
||||
d="m 1268.4045,607.46503 0,-1.52344 1.6465,0 0,1.52344 -1.6465,0 m 0,7.0664 0,-6.22265 1.6465,0 0,6.22265 -1.6465,0"
|
||||
id="path15612-0" />
|
||||
</g>
|
||||
<g
|
||||
@ -32959,19 +32244,19 @@
|
||||
id="text15590-2">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1306.5652,695.73376 L 1306.5652,687.14392 L 1309.1609,687.14392 L 1310.7195,693.0033 L 1312.2605,687.14392 L 1314.8621,687.14392 L 1314.8621,695.73376 L 1313.2507,695.73376 L 1313.2507,688.97205 L 1311.5457,695.73376 L 1309.8757,695.73376 L 1308.1765,688.97205 L 1308.1765,695.73376 L 1306.5652,695.73376"
|
||||
d="m 1306.5652,695.73376 0,-8.58984 2.5957,0 1.5586,5.85938 1.541,-5.85938 2.6016,0 0,8.58984 -1.6114,0 0,-6.76171 -1.705,6.76171 -1.67,0 -1.6992,-6.76171 0,6.76171 -1.6113,0"
|
||||
id="path15595-1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1317.8152,691.40955 L 1316.321,691.14001 C 1316.489,690.53846 1316.7781,690.09315 1317.1882,689.80408 C 1317.5984,689.51502 1318.2078,689.37049 1319.0164,689.37048 C 1319.7507,689.37049 1320.2976,689.45838 1320.657,689.63416 C 1321.0164,689.80604 1321.2683,690.02674 1321.4128,690.29626 C 1321.5613,690.56189 1321.6355,691.05213 1321.6355,691.76697 L 1321.6175,693.68884 C 1321.6175,694.23572 1321.6425,694.64002 1321.6935,694.90173 C 1321.7485,695.15955 1321.8478,695.43689 1321.9923,695.73376 L 1320.3634,695.73376 C 1320.3204,695.62439 1320.2674,695.46228 1320.2052,695.24744 C 1320.1782,695.14974 1320.1582,695.08533 1320.1462,695.05408 C 1319.865,695.32752 1319.5642,695.53259 1319.2439,695.66931 C 1318.9236,695.80603 1318.5818,695.87439 1318.2185,695.87439 C 1317.5779,695.87439 1317.072,695.70056 1316.7009,695.35291 C 1316.3337,695.00525 1316.1501,694.5658 1316.1501,694.03455 C 1316.1501,693.68299 1316.2341,693.37049 1316.4021,693.09705 C 1316.57,692.81971 1316.8044,692.60877 1317.1052,692.46423 C 1317.4099,692.3158 1317.8474,692.18689 1318.4177,692.07751 C 1319.1872,691.93299 1319.7204,691.79822 1320.0173,691.67322 L 1320.0173,691.50916 C 1320.0173,691.19275 1319.9393,690.96814 1319.7829,690.83533 C 1319.6267,690.69861 1319.3318,690.63025 1318.8982,690.63025 C 1318.6052,690.63025 1318.3767,690.68885 1318.2126,690.80603 C 1318.0486,690.91932 1317.9157,691.12049 1317.8142,691.40955 M 1320.0173,692.74548 C 1319.8064,692.81578 1319.4724,692.89978 1319.0154,692.99744 C 1318.5583,693.09514 1318.2595,693.1908 1318.1189,693.28455 C 1317.904,693.43689 1317.7966,693.63025 1317.7966,693.86462 C 1317.7966,694.09509 1317.8826,694.29431 1318.0544,694.46228 C 1318.2263,694.63025 1318.445,694.71423 1318.7107,694.71423 C 1319.0075,694.71423 1319.2907,694.61653 1319.5603,694.42126 C 1319.7595,694.27283 1319.8904,694.09119 1319.9529,693.87634 C 1319.9959,693.73572 1320.0169,693.46814 1320.0169,693.07361 L 1320.0169,692.74548"
|
||||
d="m 1317.8152,691.40955 -1.4942,-0.26954 c 0.168,-0.60155 0.4571,-1.04686 0.8672,-1.33593 0.4102,-0.28906 1.0196,-0.43359 1.8282,-0.4336 0.7343,10e-6 1.2812,0.0879 1.6406,0.26368 0.3594,0.17188 0.6113,0.39258 0.7558,0.6621 0.1485,0.26563 0.2227,0.75587 0.2227,1.47071 l -0.018,1.92187 c 0,0.54688 0.025,0.95118 0.076,1.21289 0.055,0.25782 0.1543,0.53516 0.2988,0.83203 l -1.6289,0 c -0.043,-0.10937 -0.096,-0.27148 -0.1582,-0.48632 -0.027,-0.0977 -0.047,-0.16211 -0.059,-0.19336 -0.2812,0.27344 -0.582,0.47851 -0.9023,0.61523 -0.3203,0.13672 -0.6621,0.20508 -1.0254,0.20508 -0.6406,0 -1.1465,-0.17383 -1.5176,-0.52148 -0.3672,-0.34766 -0.5508,-0.78711 -0.5508,-1.31836 0,-0.35156 0.084,-0.66406 0.252,-0.9375 0.1679,-0.27734 0.4023,-0.48828 0.7031,-0.63282 0.3047,-0.14843 0.7422,-0.27734 1.3125,-0.38672 0.7695,-0.14452 1.3027,-0.27929 1.5996,-0.40429 l 0,-0.16406 c 0,-0.31641 -0.078,-0.54102 -0.2344,-0.67383 -0.1562,-0.13672 -0.4511,-0.20508 -0.8847,-0.20508 -0.293,0 -0.5215,0.0586 -0.6856,0.17578 -0.164,0.11329 -0.2969,0.31446 -0.3984,0.60352 m 2.2031,1.33593 c -0.2109,0.0703 -0.5449,0.1543 -1.0019,0.25196 -0.4571,0.0977 -0.7559,0.19336 -0.8965,0.28711 -0.2149,0.15234 -0.3223,0.3457 -0.3223,0.58007 0,0.23047 0.086,0.42969 0.2578,0.59766 0.1719,0.16797 0.3906,0.25195 0.6563,0.25195 0.2968,0 0.58,-0.0977 0.8496,-0.29297 0.1992,-0.14843 0.3301,-0.33007 0.3926,-0.54492 0.043,-0.14062 0.064,-0.4082 0.064,-0.80273 l 0,-0.32813"
|
||||
id="path15597-2" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1323.2644,688.66736 L 1323.2644,687.14392 L 1324.9109,687.14392 L 1324.9109,688.66736 L 1323.2644,688.66736 M 1323.2644,695.73376 L 1323.2644,689.51111 L 1324.9109,689.51111 L 1324.9109,695.73376 L 1323.2644,695.73376"
|
||||
d="m 1323.2644,688.66736 0,-1.52344 1.6465,0 0,1.52344 -1.6465,0 m 0,7.0664 0,-6.22265 1.6465,0 0,6.22265 -1.6465,0"
|
||||
id="path15599-4" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1332.2527,695.73376 L 1330.6062,695.73376 L 1330.6062,692.55798 C 1330.6062,691.88611 1330.5712,691.45252 1330.5007,691.2572 C 1330.4307,691.05799 1330.3152,690.90369 1330.155,690.79431 C 1329.9988,690.68494 1329.8093,690.63025 1329.5867,690.63025 C 1329.3015,690.63025 1329.0457,690.70835 1328.8191,690.86462 C 1328.5925,691.02088 1328.4363,691.22791 1328.3503,691.48572 C 1328.2683,691.74353 1328.2273,692.2201 1328.2273,692.91541 L 1328.2273,695.73376 L 1326.5808,695.73376 L 1326.5808,689.51111 L 1328.1101,689.51111 L 1328.1101,690.42517 C 1328.6531,689.72205 1329.3367,689.37049 1330.1609,689.37048 C 1330.5242,689.37049 1330.8562,689.43688 1331.157,689.5697 C 1331.4578,689.69861 1331.6843,689.86463 1331.8367,690.06775 C 1331.9929,690.27088 1332.1003,690.50135 1332.1589,690.75916 C 1332.2209,691.01697 1332.2529,691.38611 1332.2529,691.86658 L 1332.2529,695.73376"
|
||||
d="m 1332.2527,695.73376 -1.6465,0 0,-3.17578 c 0,-0.67187 -0.035,-1.10546 -0.1055,-1.30078 -0.07,-0.19921 -0.1855,-0.35351 -0.3457,-0.46289 -0.1562,-0.10937 -0.3457,-0.16406 -0.5683,-0.16406 -0.2852,0 -0.541,0.0781 -0.7676,0.23437 -0.2266,0.15626 -0.3828,0.36329 -0.4688,0.6211 -0.082,0.25781 -0.123,0.73438 -0.123,1.42969 l 0,2.81835 -1.6465,0 0,-6.22265 1.5293,0 0,0.91406 c 0.543,-0.70312 1.2266,-1.05468 2.0508,-1.05469 0.3633,10e-6 0.6953,0.0664 0.9961,0.19922 0.3008,0.12891 0.5273,0.29493 0.6797,0.49805 0.1562,0.20313 0.2636,0.4336 0.3222,0.69141 0.062,0.25781 0.094,0.62695 0.094,1.10742 l 0,3.86718"
|
||||
id="path15601-1" />
|
||||
</g>
|
||||
</g>
|
||||
@ -32981,2619 +32266,27 @@
|
||||
transform="translate(-721.32539,-464.51938)">
|
||||
<path
|
||||
id="path29439-1"
|
||||
d="M 1398.0763,618.22131 L 1396.3318,618.22131 L 1396.3318,611.64683 C 1395.6944,612.24283 1394.9432,612.68361 1394.0782,612.96918 L 1394.0782,611.38609 C 1394.5335,611.2371 1395.0281,610.95566 1395.562,610.54178 C 1396.0959,610.12376 1396.4622,609.63746 1396.6608,609.08285 L 1398.0763,609.08285 L 1398.0763,618.22131"
|
||||
d="m 1398.0763,618.22131 -1.7445,0 0,-6.57448 c -0.6374,0.596 -1.3886,1.03678 -2.2536,1.32235 l 0,-1.58309 c 0.4553,-0.14899 0.9499,-0.43043 1.4838,-0.84431 0.5339,-0.41802 0.9002,-0.90432 1.0988,-1.45893 l 1.4155,0 0,9.13846"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path29441-10"
|
||||
d="M 1399.5042,632.49396 L 1399.5042,634.11429 L 1393.3891,634.11429 C 1393.4551,633.50175 1393.654,632.92232 1393.9851,632.376 C 1394.3162,631.82554 1394.9701,631.09711 1395.9469,630.19072 C 1396.7333,629.45815 1397.2154,628.9615 1397.3934,628.70075 C 1397.6335,628.34068 1397.7535,627.98474 1397.7535,627.63294 C 1397.7535,627.2439 1397.6479,626.94591 1397.4369,626.73896 C 1397.2299,626.52789 1396.9423,626.42235 1396.5739,626.42234 C 1396.2097,626.42235 1395.92,626.53203 1395.7048,626.75137 C 1395.4896,626.97074 1395.3654,627.33495 1395.3323,627.84402 L 1393.594,627.67019 C 1393.6975,626.70999 1394.0224,626.02088 1394.5687,625.60286 C 1395.115,625.18485 1395.7979,624.97584 1396.6174,624.97583 C 1397.5155,624.97584 1398.2212,625.21796 1398.7344,625.70219 C 1399.2476,626.18644 1399.5042,626.78863 1399.5042,627.50877 C 1399.5042,627.91852 1399.4292,628.30964 1399.2807,628.68212 C 1399.1358,629.05048 1398.9041,629.43746 1398.5854,629.84306 C 1398.3743,630.11208 1397.9935,630.49906 1397.4431,631.00399 C 1396.8926,631.50892 1396.5429,631.84417 1396.3939,632.00972 C 1396.249,632.17527 1396.1311,632.33668 1396.04,632.49396 L 1399.5042,632.49396"
|
||||
d="m 1399.5042,632.49396 0,1.62033 -6.1151,0 c 0.066,-0.61254 0.2649,-1.19197 0.596,-1.73829 0.3311,-0.55046 0.985,-1.27889 1.9618,-2.18528 0.7864,-0.73257 1.2685,-1.22922 1.4465,-1.48997 0.2401,-0.36007 0.3601,-0.71601 0.3601,-1.06781 0,-0.38904 -0.1056,-0.68703 -0.3166,-0.89398 -0.207,-0.21107 -0.4946,-0.31661 -0.863,-0.31662 -0.3642,1e-5 -0.6539,0.10969 -0.8691,0.32903 -0.2152,0.21937 -0.3394,0.58358 -0.3725,1.09265 l -1.7383,-0.17383 c 0.1035,-0.9602 0.4284,-1.64931 0.9747,-2.06733 0.5463,-0.41801 1.2292,-0.62702 2.0487,-0.62703 0.8981,10e-6 1.6038,0.24213 2.117,0.72636 0.5132,0.48425 0.7698,1.08644 0.7698,1.80658 0,0.40975 -0.075,0.80087 -0.2235,1.17335 -0.1449,0.36836 -0.3766,0.75534 -0.6953,1.16094 -0.2111,0.26902 -0.5919,0.656 -1.1423,1.16093 -0.5505,0.50493 -0.9002,0.84018 -1.0492,1.00573 -0.1449,0.16555 -0.2628,0.32696 -0.3539,0.48424 l 3.4642,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path29443-64"
|
||||
d="M 1393.5505,647.59229 L 1395.2392,647.38742 C 1395.2932,647.81785 1395.4378,648.14689 1395.6737,648.37452 C 1395.9097,648.60216 1396.1952,648.71597 1396.5305,648.71597 C 1396.8905,648.71597 1397.1927,648.57939 1397.4369,648.30623 C 1397.6852,648.03307 1397.8094,647.66472 1397.8094,647.20117 C 1397.8094,646.76246 1397.6914,646.4148 1397.4555,646.15819 C 1397.2196,645.90159 1396.9319,645.77329 1396.5926,645.77329 C 1396.3691,645.77329 1396.1021,645.81679 1395.7917,645.90366 L 1395.9842,644.48198 C 1396.456,644.49438 1396.816,644.39298 1397.0644,644.17778 C 1397.3127,643.95843 1397.4369,643.66871 1397.4369,643.30863 C 1397.4369,643.00237 1397.3459,642.75818 1397.1637,642.57607 C 1396.9816,642.39397 1396.7395,642.30291 1396.4374,642.30291 C 1396.1394,642.30291 1395.8848,642.40638 1395.6737,642.61331 C 1395.4627,642.82026 1395.3344,643.12239 1395.2888,643.51971 L 1393.6809,643.24655 C 1393.7927,642.6961 1393.9603,642.25739 1394.1838,641.93041 C 1394.4114,641.59932 1394.726,641.34064 1395.1274,641.15439 C 1395.533,640.96401 1395.9862,640.86882 1396.487,640.86881 C 1397.3437,640.86882 1398.0308,641.14198 1398.5481,641.68829 C 1398.9744,642.13529 1399.1876,642.64022 1399.1876,643.20309 C 1399.1876,644.00189 1398.7509,644.63926 1397.8777,645.11522 C 1398.3991,645.22697 1398.8151,645.47737 1399.1255,645.86641 C 1399.44,646.25546 1399.5973,646.72521 1399.5973,647.27567 C 1399.5973,648.07446 1399.3055,648.75529 1398.722,649.31817 C 1398.1384,649.88104 1397.412,650.16248 1396.5429,650.16248 C 1395.7193,650.16248 1395.0364,649.92657 1394.4942,649.45475 C 1393.952,648.97879 1393.6375,648.35797 1393.5505,647.59229"
|
||||
d="m 1393.5505,647.59229 1.6887,-0.20487 c 0.054,0.43043 0.1986,0.75947 0.4345,0.9871 0.236,0.22764 0.5215,0.34145 0.8568,0.34145 0.36,0 0.6622,-0.13658 0.9064,-0.40974 0.2483,-0.27316 0.3725,-0.64151 0.3725,-1.10506 0,-0.43871 -0.118,-0.78637 -0.3539,-1.04298 -0.2359,-0.2566 -0.5236,-0.3849 -0.8629,-0.3849 -0.2235,0 -0.4905,0.0435 -0.8009,0.13037 l 0.1925,-1.42168 c 0.4718,0.0124 0.8318,-0.089 1.0802,-0.3042 0.2483,-0.21935 0.3725,-0.50907 0.3725,-0.86915 0,-0.30626 -0.091,-0.55045 -0.2732,-0.73256 -0.1821,-0.1821 -0.4242,-0.27316 -0.7263,-0.27316 -0.298,0 -0.5526,0.10347 -0.7637,0.3104 -0.211,0.20695 -0.3393,0.50908 -0.3849,0.9064 l -1.6079,-0.27316 c 0.1118,-0.55045 0.2794,-0.98916 0.5029,-1.31614 0.2276,-0.33109 0.5422,-0.58977 0.9436,-0.77602 0.4056,-0.19038 0.8588,-0.28557 1.3596,-0.28558 0.8567,10e-6 1.5438,0.27317 2.0611,0.81948 0.4263,0.447 0.6395,0.95193 0.6395,1.5148 0,0.7988 -0.4367,1.43617 -1.3099,1.91213 0.5214,0.11175 0.9374,0.36215 1.2478,0.75119 0.3145,0.38905 0.4718,0.8588 0.4718,1.40926 0,0.79879 -0.2918,1.47962 -0.8753,2.0425 -0.5836,0.56287 -1.31,0.84431 -2.1791,0.84431 -0.8236,0 -1.5065,-0.23591 -2.0487,-0.70773 -0.5422,-0.47596 -0.8567,-1.09678 -0.9437,-1.86246"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path29445-6"
|
||||
d="M 1397.0333,665.90026 L 1397.0333,664.06884 L 1393.3084,664.06884 L 1393.3084,662.54162 L 1397.2568,656.76179 L 1398.722,656.76179 L 1398.722,662.53542 L 1399.8519,662.53542 L 1399.8519,664.06884 L 1398.722,664.06884 L 1398.722,665.90026 L 1397.0333,665.90026 M 1397.0333,662.53542 L 1397.0333,659.42511 L 1394.9412,662.53542 L 1397.0333,662.53542"
|
||||
d="m 1397.0333,665.90026 0,-1.83142 -3.7249,0 0,-1.52722 3.9484,-5.77983 1.4652,0 0,5.77363 1.1299,0 0,1.53342 -1.1299,0 0,1.83142 -1.6887,0 m 0,-3.36484 0,-3.11031 -2.0921,3.11031 2.0921,0"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path29447-7"
|
||||
d="M 1393.6375,679.45275 L 1395.3758,679.27271 C 1395.4258,679.6659 1395.5723,679.97838 1395.8165,680.21015 C 1396.0607,680.43778 1396.3422,680.5516 1396.6608,680.5516 C 1397.0251,680.5516 1397.3334,680.40467 1397.5859,680.11082 C 1397.8383,679.81283 1397.9646,679.36584 1397.9646,678.76985 C 1397.9646,678.21111 1397.8383,677.7931 1397.5859,677.51579 C 1397.3375,677.23436 1397.0126,677.09364 1396.6112,677.09363 C 1396.1104,677.09364 1395.6613,677.31506 1395.264,677.75791 L 1393.8485,677.55304 L 1394.7425,672.81619 L 1399.3552,672.81619 L 1399.3552,674.44894 L 1396.0649,674.44894 L 1395.7917,675.99478 C 1396.1807,675.80027 1396.5781,675.703 1396.9837,675.703 C 1397.7576,675.703 1398.4136,675.98444 1398.9517,676.54731 C 1399.4897,677.11019 1399.7587,677.84069 1399.7587,678.73881 C 1399.7587,679.48793 1399.5414,680.15635 1399.1069,680.74405 C 1398.515,681.54698 1397.6935,681.94844 1396.6422,681.94844 C 1395.802,681.94844 1395.1171,681.72288 1394.5873,681.27175 C 1394.0575,680.82062 1393.7409,680.21429 1393.6375,679.45275"
|
||||
d="m 1393.6375,679.45275 1.7383,-0.18004 c 0.05,0.39319 0.1965,0.70567 0.4407,0.93744 0.2442,0.22763 0.5257,0.34145 0.8443,0.34145 0.3643,0 0.6726,-0.14693 0.9251,-0.44078 0.2524,-0.29799 0.3787,-0.74498 0.3787,-1.34097 0,-0.55874 -0.1263,-0.97675 -0.3787,-1.25406 -0.2484,-0.28143 -0.5733,-0.42215 -0.9747,-0.42216 -0.5008,1e-5 -0.9499,0.22143 -1.3472,0.66428 l -1.4155,-0.20487 0.894,-4.73685 4.6127,0 0,1.63275 -3.2903,0 -0.2732,1.54584 c 0.389,-0.19451 0.7864,-0.29178 1.192,-0.29178 0.7739,0 1.4299,0.28144 1.968,0.84431 0.538,0.56288 0.807,1.29338 0.807,2.1915 0,0.74912 -0.2173,1.41754 -0.6518,2.00524 -0.5919,0.80293 -1.4134,1.20439 -2.4647,1.20439 -0.8402,0 -1.5251,-0.22556 -2.0549,-0.67669 -0.5298,-0.45113 -0.8464,-1.05746 -0.9498,-1.819"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path29449-6"
|
||||
d="M 1399.5228,690.81375 L 1397.8342,690.99999 C 1397.7932,690.65234 1397.6852,690.39574 1397.5114,690.23018 C 1397.3375,690.06463 1397.112,689.98186 1396.8347,689.98185 C 1396.4663,689.98186 1396.1538,690.14741 1395.8972,690.4785 C 1395.6448,690.80962 1395.4854,691.49872 1395.4192,692.54583 C 1395.8538,692.03263 1396.3939,691.77602 1397.0395,691.77602 C 1397.768,691.77602 1398.3909,692.05332 1398.9082,692.60792 C 1399.4297,693.16252 1399.6904,693.87853 1399.6904,694.75595 C 1399.6904,695.68718 1399.4173,696.43424 1398.871,696.99711 C 1398.3246,697.55999 1397.6231,697.84142 1396.7664,697.84142 C 1395.8476,697.84142 1395.0922,697.48549 1394.5004,696.77362 C 1393.9085,696.0576 1393.6126,694.88633 1393.6126,693.25978 C 1393.6126,691.59185 1393.921,690.38953 1394.5376,689.65281 C 1395.1543,688.91612 1395.9552,688.54776 1396.9402,688.54776 C 1397.6314,688.54776 1398.2025,688.74229 1398.6537,689.13133 C 1399.1089,689.51624 1399.3987,690.07705 1399.5228,690.81375 M 1395.5682,694.61937 C 1395.5682,695.18639 1395.6986,695.6251 1395.9593,695.93551 C 1396.2201,696.24178 1396.5181,696.39492 1396.8533,696.39492 C 1397.1761,696.39492 1397.4451,696.26868 1397.6604,696.01622 C 1397.8756,695.76375 1397.9832,695.34987 1397.9832,694.77458 C 1397.9832,694.18273 1397.8673,693.75023 1397.6355,693.47706 C 1397.4038,693.19977 1397.114,693.06112 1396.7664,693.06111 C 1396.4311,693.06112 1396.1476,693.19356 1395.9159,693.45844 C 1395.6841,693.71919 1395.5682,694.10616 1395.5682,694.61937"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer16"
|
||||
inkscape:label="cc"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
inkscape:label="#controller"
|
||||
id="controller-cc"
|
||||
transform="translate(-1.2734354,-1.2734397)">
|
||||
<path
|
||||
id="path10151-2"
|
||||
d="M 530.25061,73.31614 L 539.25824,73.31614 L 539.25824,99.112874 L 561.67256,99.112874 L 561.67256,73.31614 L 571.22484,73.31614 L 550.75867,53.411253 z"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:url(#linearGradient9863-6)" />
|
||||
<rect
|
||||
style="fill:#171717;stroke:#000000;stroke-width:2.16707063;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
x="438.74414"
|
||||
y="99.148933"
|
||||
stroke-miterlimit="4"
|
||||
width="227.54243"
|
||||
height="227.54242"
|
||||
ry="14"
|
||||
rx="14.194314"
|
||||
id="rect9798" />
|
||||
<rect
|
||||
id="rect4320"
|
||||
height="5.5151949"
|
||||
width="7.064651"
|
||||
y="244.72189"
|
||||
x="507.61179"
|
||||
style="fill:#312d29;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect4322"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="244.72189"
|
||||
x="515.19653"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect4324"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="244.72189"
|
||||
x="504.36118"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
id="rect4408"
|
||||
height="5.5151954"
|
||||
width="7.0646501"
|
||||
y="612.47388"
|
||||
x="-279.05756"
|
||||
style="fill:#312d29;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
id="rect4410"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="612.47388"
|
||||
x="-271.47281"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
id="rect4412"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="612.47388"
|
||||
x="-282.30814"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10507"
|
||||
height="5.5151949"
|
||||
width="7.064651"
|
||||
y="149.71573"
|
||||
x="587.396"
|
||||
style="fill:#312d29;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10509"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="149.71573"
|
||||
x="594.98071"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10511"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="149.71573"
|
||||
x="584.14539"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10515"
|
||||
height="5.5151949"
|
||||
width="7.064651"
|
||||
y="259.94388"
|
||||
x="523.35864"
|
||||
style="fill:#312d29;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10517"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="259.94388"
|
||||
x="530.94342"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10519"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="259.94388"
|
||||
x="520.10803"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect4219"
|
||||
height="5.5151949"
|
||||
width="7.064651"
|
||||
y="256.50372"
|
||||
x="494.18936"
|
||||
style="fill:#bc781e;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect4221"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="256.50372"
|
||||
x="501.77411"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect4223"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="256.50372"
|
||||
x="490.93878"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10550"
|
||||
height="5.5151949"
|
||||
width="7.064651"
|
||||
y="266.47675"
|
||||
x="596.80658"
|
||||
style="fill:#bc781e;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10552"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="266.47675"
|
||||
x="604.3913"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10554"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="266.47675"
|
||||
x="593.55597"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10558"
|
||||
height="5.5151949"
|
||||
width="7.064651"
|
||||
y="279.3367"
|
||||
x="596.01923"
|
||||
style="fill:#bc781e;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10560"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="279.3367"
|
||||
x="603.60394"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10562"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="279.3367"
|
||||
x="592.76862"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10566"
|
||||
height="5.5151949"
|
||||
width="7.064651"
|
||||
y="185.90521"
|
||||
x="590.50781"
|
||||
style="fill:#bc781e;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10568"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="185.90521"
|
||||
x="598.09253"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10570"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="185.90521"
|
||||
x="587.2572"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10574"
|
||||
height="5.5151949"
|
||||
width="7.064651"
|
||||
y="105.85859"
|
||||
x="613.34076"
|
||||
style="fill:#bc781e;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10576"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="105.85859"
|
||||
x="620.92554"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10578"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="105.85859"
|
||||
x="610.09015"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect4416"
|
||||
height="5.5151949"
|
||||
width="7.064651"
|
||||
y="148.40121"
|
||||
x="449.0675"
|
||||
style="fill:#0052ff;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect4418"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="148.40121"
|
||||
x="456.65225"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect4420"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="148.40121"
|
||||
x="445.81689"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect4432"
|
||||
height="5.5151949"
|
||||
width="7.064651"
|
||||
y="161.59825"
|
||||
x="448.71127"
|
||||
style="fill:#ff7900;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect4434"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="161.59825"
|
||||
x="456.29602"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect4436"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="161.59825"
|
||||
x="445.46066"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect4280"
|
||||
height="5.5151954"
|
||||
width="7.0646501"
|
||||
y="-508.21155"
|
||||
x="117.81582"
|
||||
style="fill:#bc781e;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect4282"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="-508.21155"
|
||||
x="125.40057"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect4284"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="-508.21155"
|
||||
x="114.56521"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect10763"
|
||||
height="5.5151954"
|
||||
width="7.0646501"
|
||||
y="-508.21155"
|
||||
x="152.48895"
|
||||
style="fill:#bc781e;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10765"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="-508.21155"
|
||||
x="160.0737"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10767"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="-508.21155"
|
||||
x="149.23834"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10771"
|
||||
height="5.5151954"
|
||||
width="7.0646501"
|
||||
y="-567.24731"
|
||||
x="161.61464"
|
||||
style="fill:#bc781e;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10773"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="-567.24731"
|
||||
x="169.19939"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10775"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="-567.24731"
|
||||
x="158.36404"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10779"
|
||||
height="5.5151954"
|
||||
width="7.0646501"
|
||||
y="-482.47665"
|
||||
x="266.85629"
|
||||
style="fill:#bc781e;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10781"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="-482.47665"
|
||||
x="274.44104"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10783"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="-482.47665"
|
||||
x="263.60568"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10787"
|
||||
height="5.5151954"
|
||||
width="7.0646501"
|
||||
y="-482.47665"
|
||||
x="289.68927"
|
||||
style="fill:#bc781e;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10789"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="-482.47665"
|
||||
x="297.27402"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10791"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="-482.47665"
|
||||
x="286.43866"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10795"
|
||||
height="5.5151954"
|
||||
width="7.0646501"
|
||||
y="-530.76709"
|
||||
x="280.24115"
|
||||
style="fill:#bc781e;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10797"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="-530.76709"
|
||||
x="287.8259"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10799"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="-530.76709"
|
||||
x="276.99054"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10803"
|
||||
height="5.5151954"
|
||||
width="7.0646501"
|
||||
y="511.16895"
|
||||
x="-234.70383"
|
||||
style="fill:#312d29;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10805"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="511.16895"
|
||||
x="-227.11908"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10807"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="511.16895"
|
||||
x="-237.95442"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10811"
|
||||
height="5.5151954"
|
||||
width="7.0646501"
|
||||
y="499.62125"
|
||||
x="-234.96628"
|
||||
style="fill:#312d29;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10813"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="499.62125"
|
||||
x="-227.38153"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10815"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="499.62125"
|
||||
x="-238.21687"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10819"
|
||||
height="5.5151954"
|
||||
width="7.0646501"
|
||||
y="488.336"
|
||||
x="-235.75362"
|
||||
style="fill:#312d29;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10821"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="488.336"
|
||||
x="-228.16887"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10823"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="488.336"
|
||||
x="-239.00423"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10827"
|
||||
height="5.5151954"
|
||||
width="7.0646501"
|
||||
y="489.38577"
|
||||
x="-198.74844"
|
||||
style="fill:#312d29;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10829"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="489.38577"
|
||||
x="-191.1637"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10831"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="489.38577"
|
||||
x="-201.99905"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10835"
|
||||
height="5.5151954"
|
||||
width="7.0646501"
|
||||
y="506.18246"
|
||||
x="-199.01088"
|
||||
style="fill:#312d29;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10837"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="506.18246"
|
||||
x="-191.42613"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect10839"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="506.18246"
|
||||
x="-202.26149"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<path
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path4550"
|
||||
d="M 660.83109,147.16536 C 660.83109,150.26427 658.31729,152.77807 655.21837,152.77807 C 652.11946,152.77807 649.60566,150.26427 649.60566,147.16536 C 649.60566,144.06645 652.11946,141.55265 655.21837,141.55265 C 658.31729,141.55265 660.83109,144.06645 660.83109,147.16536 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path4554"
|
||||
d="M 643.49452,147.16536 C 643.49452,150.26427 640.98072,152.77807 637.8818,152.77807 C 634.78289,152.77807 632.26909,150.26427 632.26909,147.16536 C 632.26909,144.06645 634.78289,141.55265 637.8818,141.55265 C 640.98072,141.55265 643.49452,144.06645 643.49452,147.16536 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect4556"
|
||||
height="9.2858973"
|
||||
width="10.445282"
|
||||
y="141.73187"
|
||||
x="616.76898" />
|
||||
<path
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path10894"
|
||||
d="M 660.83109,162.33485 C 660.83109,165.43376 658.31729,167.94756 655.21837,167.94756 C 652.11946,167.94756 649.60566,165.43376 649.60566,162.33485 C 649.60566,159.23594 652.11946,156.72214 655.21837,156.72214 C 658.31729,156.72214 660.83109,159.23594 660.83109,162.33485 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path10896"
|
||||
d="M 643.49452,162.33485 C 643.49452,165.43376 640.98072,167.94756 637.8818,167.94756 C 634.78289,167.94756 632.26909,165.43376 632.26909,162.33485 C 632.26909,159.23594 634.78289,156.72214 637.8818,156.72214 C 640.98072,156.72214 643.49452,159.23594 643.49452,162.33485 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect10898"
|
||||
height="9.2858973"
|
||||
width="10.445282"
|
||||
y="156.90137"
|
||||
x="616.76898" />
|
||||
<path
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path10902"
|
||||
d="M 660.83109,179.67142 C 660.83109,182.77033 658.31729,185.28413 655.21837,185.28413 C 652.11946,185.28413 649.60566,182.77033 649.60566,179.67142 C 649.60566,176.57251 652.11946,174.05871 655.21837,174.05871 C 658.31729,174.05871 660.83109,176.57251 660.83109,179.67142 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path10904"
|
||||
d="M 643.49452,179.67142 C 643.49452,182.77033 640.98072,185.28413 637.8818,185.28413 C 634.78289,185.28413 632.26909,182.77033 632.26909,179.67142 C 632.26909,176.57251 634.78289,174.05871 637.8818,174.05871 C 640.98072,174.05871 643.49452,176.57251 643.49452,179.67142 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect10906"
|
||||
height="9.2858973"
|
||||
width="10.445282"
|
||||
y="174.23793"
|
||||
x="616.76898" />
|
||||
<path
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path10910"
|
||||
d="M 660.83109,197.00798 C 660.83109,200.10689 658.31729,202.62069 655.21837,202.62069 C 652.11946,202.62069 649.60566,200.10689 649.60566,197.00798 C 649.60566,193.90907 652.11946,191.39527 655.21837,191.39527 C 658.31729,191.39527 660.83109,193.90907 660.83109,197.00798 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path10912"
|
||||
d="M 643.49452,197.00798 C 643.49452,200.10689 640.98072,202.62069 637.8818,202.62069 C 634.78289,202.62069 632.26909,200.10689 632.26909,197.00798 C 632.26909,193.90907 634.78289,191.39527 637.8818,191.39527 C 640.98072,191.39527 643.49452,193.90907 643.49452,197.00798 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect10914"
|
||||
height="9.2858973"
|
||||
width="10.445282"
|
||||
y="191.57449"
|
||||
x="616.76898" />
|
||||
<path
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path10918"
|
||||
d="M 660.83109,214.34455 C 660.83109,217.44346 658.31729,219.95726 655.21837,219.95726 C 652.11946,219.95726 649.60566,217.44346 649.60566,214.34455 C 649.60566,211.24564 652.11946,208.73184 655.21837,208.73184 C 658.31729,208.73184 660.83109,211.24564 660.83109,214.34455 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path10920"
|
||||
d="M 643.49452,214.34455 C 643.49452,217.44346 640.98072,219.95726 637.8818,219.95726 C 634.78289,219.95726 632.26909,217.44346 632.26909,214.34455 C 632.26909,211.24564 634.78289,208.73184 637.8818,208.73184 C 640.98072,208.73184 643.49452,211.24564 643.49452,214.34455 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect10922"
|
||||
height="9.2858973"
|
||||
width="10.445282"
|
||||
y="208.91106"
|
||||
x="616.76898" />
|
||||
<path
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path10926"
|
||||
d="M 660.83109,229.51404 C 660.83109,232.61295 658.31729,235.12675 655.21837,235.12675 C 652.11946,235.12675 649.60566,232.61295 649.60566,229.51404 C 649.60566,226.41513 652.11946,223.90133 655.21837,223.90133 C 658.31729,223.90133 660.83109,226.41513 660.83109,229.51404 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path10928"
|
||||
d="M 643.49452,229.51404 C 643.49452,232.61295 640.98072,235.12675 637.8818,235.12675 C 634.78289,235.12675 632.26909,232.61295 632.26909,229.51404 C 632.26909,226.41513 634.78289,223.90133 637.8818,223.90133 C 640.98072,223.90133 643.49452,226.41513 643.49452,229.51404 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.62530303;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect10930"
|
||||
height="9.2858973"
|
||||
width="10.445282"
|
||||
y="224.08055"
|
||||
x="616.76898" />
|
||||
<rect
|
||||
id="rect4790"
|
||||
height="9.8560762"
|
||||
width="8.7648525"
|
||||
y="-495.40668"
|
||||
x="151.32674"
|
||||
style="fill:#a9814d;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect4792"
|
||||
height="9.8560762"
|
||||
width="4.79916"
|
||||
y="-495.40668"
|
||||
x="160.73685"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect4794"
|
||||
height="9.8560762"
|
||||
width="4.79916"
|
||||
y="-495.40668"
|
||||
x="147.29382"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect12056"
|
||||
height="9.8560762"
|
||||
width="8.7648525"
|
||||
y="-495.40668"
|
||||
x="116.6536"
|
||||
style="fill:#a9814d;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect12058"
|
||||
height="9.8560762"
|
||||
width="4.79916"
|
||||
y="-495.40668"
|
||||
x="126.06372"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect12060"
|
||||
height="9.8560762"
|
||||
width="4.79916"
|
||||
y="-495.40668"
|
||||
x="112.6207"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect12064"
|
||||
height="9.8560753"
|
||||
width="8.7648525"
|
||||
y="277.10086"
|
||||
x="456.07767"
|
||||
style="fill:#a9814d;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect12066"
|
||||
height="9.8560753"
|
||||
width="4.79916"
|
||||
y="277.10086"
|
||||
x="465.48776"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect12068"
|
||||
height="9.8560753"
|
||||
width="4.79916"
|
||||
y="277.10086"
|
||||
x="452.04474"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect12072"
|
||||
height="9.8560753"
|
||||
width="8.7648525"
|
||||
y="277.10086"
|
||||
x="492.91785"
|
||||
style="fill:#a9814d;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect12074"
|
||||
height="9.8560753"
|
||||
width="4.79916"
|
||||
y="277.10086"
|
||||
x="502.32797"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect12076"
|
||||
height="9.8560753"
|
||||
width="4.79916"
|
||||
y="277.10086"
|
||||
x="488.88495"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 532.94311,107.25258 L 532.94311,104.33787"
|
||||
id="path5376" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 529.69251,107.25258 L 529.69251,104.33787"
|
||||
id="path5378" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 545.94554,107.25258 L 545.94554,104.33787"
|
||||
id="path5386" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 542.69493,107.25258 L 542.69493,104.33787"
|
||||
id="path5388" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 539.44433,107.25258 L 539.44433,104.33787"
|
||||
id="path5390" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 529.69251,139.75864 L 529.69251,136.84393"
|
||||
id="path5454" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 532.94311,139.75864 L 532.94311,136.84393"
|
||||
id="path5456" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 539.44433,139.75864 L 539.44433,136.84393"
|
||||
id="path5466" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 542.69493,139.75864 L 542.69493,136.84393"
|
||||
id="path5468" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 545.94554,139.75864 L 545.94554,136.84393"
|
||||
id="path5470" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,126.75621 L 526.10601,126.75621"
|
||||
id="path5612" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,129.79011 L 526.10601,129.79011"
|
||||
id="path5614" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,133.04072 L 526.10601,133.04072"
|
||||
id="path5616" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,133.04072 L 551.94832,133.04072"
|
||||
id="path5618" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,129.79011 L 551.94832,129.79011"
|
||||
id="path5620" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,126.75621 L 551.94832,126.75621"
|
||||
id="path5622" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,113.9705 L 526.10601,113.9705"
|
||||
id="path5624" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,117.2211 L 526.10601,117.2211"
|
||||
id="path5626" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,120.255 L 526.10601,120.255"
|
||||
id="path5628" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,120.255 L 551.94832,120.255"
|
||||
id="path5630" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,117.2211 L 551.94832,117.2211"
|
||||
id="path5632" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,113.9705 L 551.94832,113.9705"
|
||||
id="path5634" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 536.19372,107.25258 L 536.19372,104.33787"
|
||||
id="path5636" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,123.50561 L 526.10601,123.50561"
|
||||
id="path5726" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 536.19372,139.75864 L 536.19372,136.84393"
|
||||
id="path5728" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,123.50561 L 551.94832,123.50561"
|
||||
id="path5730" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,110.71989 L 526.10601,110.71989"
|
||||
id="path5738" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,110.71989 L 551.94832,110.71989"
|
||||
id="path5740" />
|
||||
<rect
|
||||
id="rect4974"
|
||||
height="33.806301"
|
||||
width="26.32991"
|
||||
stroke-miterlimit="4"
|
||||
y="105.10838"
|
||||
x="524.66852"
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:0.75847471;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 532.94311,107.25258 L 532.94311,104.33787"
|
||||
id="path12832" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 529.69251,107.25258 L 529.69251,104.33787"
|
||||
id="path12834" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 545.94554,107.25258 L 545.94554,104.33787"
|
||||
id="path12836" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 542.69493,107.25258 L 542.69493,104.33787"
|
||||
id="path12838" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 539.44433,107.25258 L 539.44433,104.33787"
|
||||
id="path12840" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 529.69251,139.75864 L 529.69251,136.84393"
|
||||
id="path12842" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 532.94311,139.75864 L 532.94311,136.84393"
|
||||
id="path13512" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 539.44433,139.75864 L 539.44433,136.84393"
|
||||
id="path12846" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 542.69493,139.75864 L 542.69493,136.84393"
|
||||
id="path13515" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 545.94554,139.75864 L 545.94554,136.84393"
|
||||
id="path12850" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,126.75621 L 526.10601,126.75621"
|
||||
id="path12852" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,129.79011 L 526.10601,129.79011"
|
||||
id="path12854" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,133.04072 L 526.10601,133.04072"
|
||||
id="path12856" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,133.04072 L 551.94832,133.04072"
|
||||
id="path12858" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,129.79011 L 551.94832,129.79011"
|
||||
id="path12860" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,126.75621 L 551.94832,126.75621"
|
||||
id="path12862" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,113.9705 L 526.10601,113.9705"
|
||||
id="path12864" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,117.2211 L 526.10601,117.2211"
|
||||
id="path12866" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,120.255 L 526.10601,120.255"
|
||||
id="path12868" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,120.255 L 551.94832,120.255"
|
||||
id="path12870" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,117.2211 L 551.94832,117.2211"
|
||||
id="path12872" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,113.9705 L 551.94832,113.9705"
|
||||
id="path12874" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 536.19372,107.25258 L 536.19372,104.33787"
|
||||
id="path12876" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,123.50561 L 526.10601,123.50561"
|
||||
id="path12878" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 536.19372,139.75864 L 536.19372,136.84393"
|
||||
id="path12880" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,123.50561 L 551.94832,123.50561"
|
||||
id="path12882" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.19129,110.71989 L 526.10601,110.71989"
|
||||
id="path12884" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.19614,110.71989 L 551.94832,110.71989"
|
||||
id="path12886" />
|
||||
<rect
|
||||
id="rect12888"
|
||||
height="33.806301"
|
||||
width="26.32991"
|
||||
stroke-miterlimit="4"
|
||||
y="105.10838"
|
||||
x="524.66852"
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:0.75847471;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 533.68543,149.16923 L 533.68543,146.25452"
|
||||
id="path12894" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 530.43483,149.16923 L 530.43483,146.25452"
|
||||
id="path12896" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 546.68786,149.16923 L 546.68786,146.25452"
|
||||
id="path12898" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 543.43725,149.16923 L 543.43725,146.25452"
|
||||
id="path12900" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 540.18665,149.16923 L 540.18665,146.25452"
|
||||
id="path12902" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 530.43483,181.67529 L 530.43483,178.76058"
|
||||
id="path12904" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 533.68543,181.67529 L 533.68543,178.76058"
|
||||
id="path12906" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 540.18665,181.67529 L 540.18665,178.76058"
|
||||
id="path12908" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 543.43725,181.67529 L 543.43725,178.76058"
|
||||
id="path12910" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 546.68786,181.67529 L 546.68786,178.76058"
|
||||
id="path12912" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.93362,168.67287 L 526.84833,168.67287"
|
||||
id="path12914" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.93362,171.70677 L 526.84833,171.70677"
|
||||
id="path12916" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.93362,174.95738 L 526.84833,174.95738"
|
||||
id="path12918" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.93846,174.95738 L 552.69064,174.95738"
|
||||
id="path12920" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.93846,171.70677 L 552.69064,171.70677"
|
||||
id="path12922" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.93846,168.67287 L 552.69064,168.67287"
|
||||
id="path12924" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.93362,155.88715 L 526.84833,155.88715"
|
||||
id="path12926" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.93362,159.13776 L 526.84833,159.13776"
|
||||
id="path12928" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.93362,162.17166 L 526.84833,162.17166"
|
||||
id="path12930" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.93846,162.17166 L 552.69064,162.17166"
|
||||
id="path12932" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.93846,159.13776 L 552.69064,159.13776"
|
||||
id="path12934" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.93846,155.88715 L 552.69064,155.88715"
|
||||
id="path12936" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 536.93604,149.16923 L 536.93604,146.25452"
|
||||
id="path12938" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.93362,165.42226 L 526.84833,165.42226"
|
||||
id="path12940" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 536.93604,181.67529 L 536.93604,178.76058"
|
||||
id="path12942" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.93846,165.42226 L 552.69064,165.42226"
|
||||
id="path12944" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 523.93362,152.63655 L 526.84833,152.63655"
|
||||
id="path12946" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.61765516;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 549.93846,152.63655 L 552.69064,152.63655"
|
||||
id="path12948" />
|
||||
<rect
|
||||
id="rect12950"
|
||||
height="33.806301"
|
||||
width="26.32991"
|
||||
stroke-miterlimit="4"
|
||||
y="147.02502"
|
||||
x="525.41083"
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:0.75847471;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<rect
|
||||
rx="1.4983482"
|
||||
id="rect3773"
|
||||
ry="1.4983482"
|
||||
height="46.029259"
|
||||
width="45.789528"
|
||||
stroke-miterlimit="4"
|
||||
y="207.27293"
|
||||
x="544.84949"
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:2.16960835;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
id="path3777"
|
||||
d="M 549.32105,206.71507 L 549.32105,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3779"
|
||||
d="M 549.32105,205.51639 L 549.44308,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3787"
|
||||
d="M 551.7184,206.71507 L 551.7184,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3789"
|
||||
d="M 551.7184,205.51639 L 551.84043,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3793"
|
||||
d="M 554.11576,206.71507 L 554.11576,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3795"
|
||||
d="M 554.11576,205.51639 L 554.23779,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3799"
|
||||
d="M 556.51312,206.71507 L 556.51312,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3801"
|
||||
d="M 556.51312,205.51639 L 556.63515,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3805"
|
||||
d="M 558.91048,206.71507 L 558.91048,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3807"
|
||||
d="M 558.91048,205.51639 L 559.03251,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3811"
|
||||
d="M 561.30783,206.71507 L 561.30783,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3813"
|
||||
d="M 561.30783,205.51639 L 561.42986,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3817"
|
||||
d="M 563.70519,206.71507 L 563.70519,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3819"
|
||||
d="M 563.70519,205.51639 L 563.82722,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3823"
|
||||
d="M 566.10255,206.71507 L 566.10255,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3825"
|
||||
d="M 566.10255,205.51639 L 566.22458,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3829"
|
||||
d="M 568.49991,206.71507 L 568.49991,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3831"
|
||||
d="M 568.49991,205.51639 L 568.62194,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3835"
|
||||
d="M 570.89726,206.71507 L 570.89726,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3837"
|
||||
d="M 570.89726,205.51639 L 571.01929,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3841"
|
||||
d="M 573.29462,206.71507 L 573.29462,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3843"
|
||||
d="M 573.29462,205.51639 L 573.41665,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3847"
|
||||
d="M 575.69198,206.71507 L 575.69198,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3849"
|
||||
d="M 575.69198,205.51639 L 575.81401,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3853"
|
||||
d="M 578.08934,206.71507 L 578.08934,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3855"
|
||||
d="M 578.08934,205.51639 L 578.21137,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3859"
|
||||
d="M 580.48669,206.71507 L 580.48669,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3861"
|
||||
d="M 580.48669,205.51639 L 580.60872,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3865"
|
||||
d="M 582.88405,206.71507 L 582.88405,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3867"
|
||||
d="M 582.88405,205.51639 L 583.00608,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3871"
|
||||
d="M 585.28141,206.71507 L 585.28141,202.00427"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3873"
|
||||
d="M 585.28141,205.51639 L 585.40344,205.51639"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3929"
|
||||
d="M 591.43136,213.54644 L 596.14217,213.54644"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3931"
|
||||
d="M 592.63004,213.54644 L 592.63004,213.66846"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3935"
|
||||
d="M 591.43136,215.9438 L 596.14217,215.9438"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3937"
|
||||
d="M 592.63004,215.9438 L 592.63004,216.06582"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3941"
|
||||
d="M 591.43136,218.34116 L 596.14217,218.34116"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3943"
|
||||
d="M 592.63004,218.34116 L 592.63004,218.46318"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3947"
|
||||
d="M 591.43136,220.73851 L 596.14217,220.73851"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3949"
|
||||
d="M 592.63004,220.73851 L 592.63004,220.86053"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3953"
|
||||
d="M 591.43136,223.13587 L 596.14217,223.13587"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3955"
|
||||
d="M 592.63004,223.13587 L 592.63004,223.25789"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3959"
|
||||
d="M 591.43136,225.53323 L 596.14217,225.53323"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3961"
|
||||
d="M 592.63004,225.53323 L 592.63004,225.65525"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3965"
|
||||
d="M 591.43136,227.93058 L 596.14217,227.93058"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3967"
|
||||
d="M 592.63004,227.93058 L 592.63004,228.0526"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3971"
|
||||
d="M 591.43136,230.32794 L 596.14217,230.32794"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3973"
|
||||
d="M 592.63004,230.32794 L 592.63004,230.44996"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3977"
|
||||
d="M 591.43136,232.7253 L 596.14217,232.7253"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3979"
|
||||
d="M 592.63004,232.7253 L 592.63004,232.84732"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3983"
|
||||
d="M 591.43136,235.12266 L 596.14217,235.12266"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3985"
|
||||
d="M 592.63004,235.12266 L 592.63004,235.24468"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3989"
|
||||
d="M 591.43136,237.52001 L 596.14217,237.52001"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3991"
|
||||
d="M 592.63004,237.52001 L 592.63004,237.64203"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3995"
|
||||
d="M 591.43136,239.91737 L 596.14217,239.91737"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path3997"
|
||||
d="M 592.63004,239.91737 L 592.63004,240.03939"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4001"
|
||||
d="M 591.43136,242.31473 L 596.14217,242.31473"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4003"
|
||||
d="M 592.63004,242.31473 L 592.63004,242.43675"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4007"
|
||||
d="M 591.43136,244.71208 L 596.14217,244.71208"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4009"
|
||||
d="M 592.63004,244.71208 L 592.63004,244.8341"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4013"
|
||||
d="M 591.43136,247.10944 L 596.14217,247.10944"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4015"
|
||||
d="M 592.63004,247.10944 L 592.63004,247.23146"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4019"
|
||||
d="M 591.43136,249.5068 L 596.14217,249.5068"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4021"
|
||||
d="M 592.63004,249.5068 L 592.63004,249.62882"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4027"
|
||||
d="M 543.76405,213.54644 L 539.05324,213.54644"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4029"
|
||||
d="M 542.56537,213.54644 L 542.56537,213.66846"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4033"
|
||||
d="M 543.76405,215.9438 L 539.05324,215.9438"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4035"
|
||||
d="M 542.56537,215.9438 L 542.56537,216.06582"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4039"
|
||||
d="M 543.76405,218.34116 L 539.05324,218.34116"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4041"
|
||||
d="M 542.56537,218.34116 L 542.56537,218.46318"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4045"
|
||||
d="M 543.76405,220.73851 L 539.05324,220.73851"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4047"
|
||||
d="M 542.56537,220.73851 L 542.56537,220.86053"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4051"
|
||||
d="M 543.76405,223.13587 L 539.05324,223.13587"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4053"
|
||||
d="M 542.56537,223.13587 L 542.56537,223.25789"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4057"
|
||||
d="M 543.76405,225.53323 L 539.05324,225.53323"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4059"
|
||||
d="M 542.56537,225.53323 L 542.56537,225.65525"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4063"
|
||||
d="M 543.76405,227.93058 L 539.05324,227.93058"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4065"
|
||||
d="M 542.56537,227.93058 L 542.56537,228.0526"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4069"
|
||||
d="M 543.76405,230.32794 L 539.05324,230.32794"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4071"
|
||||
d="M 542.56537,230.32794 L 542.56537,230.44996"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4075"
|
||||
d="M 543.76405,232.7253 L 539.05324,232.7253"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4077"
|
||||
d="M 542.56537,232.7253 L 542.56537,232.84732"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4081"
|
||||
d="M 543.76405,235.12266 L 539.05324,235.12266"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4083"
|
||||
d="M 542.56537,235.12266 L 542.56537,235.24468"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4087"
|
||||
d="M 543.76405,237.52001 L 539.05324,237.52001"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4089"
|
||||
d="M 542.56537,237.52001 L 542.56537,237.64203"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4093"
|
||||
d="M 543.76405,239.91737 L 539.05324,239.91737"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4095"
|
||||
d="M 542.56537,239.91737 L 542.56537,240.03939"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4099"
|
||||
d="M 543.76405,242.31473 L 539.05324,242.31473"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4101"
|
||||
d="M 542.56537,242.31473 L 542.56537,242.43675"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4105"
|
||||
d="M 543.76405,244.71208 L 539.05324,244.71208"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4107"
|
||||
d="M 542.56537,244.71208 L 542.56537,244.8341"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4111"
|
||||
d="M 543.76405,247.10944 L 539.05324,247.10944"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4113"
|
||||
d="M 542.56537,247.10944 L 542.56537,247.23146"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4117"
|
||||
d="M 543.76405,249.5068 L 539.05324,249.5068"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4119"
|
||||
d="M 542.56537,249.5068 L 542.56537,249.62882"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4125"
|
||||
d="M 549.32105,253.94049 L 549.32105,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4127"
|
||||
d="M 549.32105,255.13916 L 549.44308,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4131"
|
||||
d="M 551.7184,253.94049 L 551.7184,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4133"
|
||||
d="M 551.7184,255.13916 L 551.84043,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4137"
|
||||
d="M 554.11576,253.94049 L 554.11576,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4139"
|
||||
d="M 554.11576,255.13916 L 554.23779,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4143"
|
||||
d="M 556.51312,253.94049 L 556.51312,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4145"
|
||||
d="M 556.51312,255.13916 L 556.63515,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4149"
|
||||
d="M 558.91048,253.94049 L 558.91048,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4151"
|
||||
d="M 558.91048,255.13916 L 559.03251,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4155"
|
||||
d="M 561.30783,253.94049 L 561.30783,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4157"
|
||||
d="M 561.30783,255.13916 L 561.42986,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4161"
|
||||
d="M 563.70519,253.94049 L 563.70519,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4163"
|
||||
d="M 563.70519,255.13916 L 563.82722,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4167"
|
||||
d="M 566.10255,253.94049 L 566.10255,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4169"
|
||||
d="M 566.10255,255.13916 L 566.22458,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4173"
|
||||
d="M 568.49991,253.94049 L 568.49991,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4175"
|
||||
d="M 568.49991,255.13916 L 568.62194,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4179"
|
||||
d="M 570.89726,253.94049 L 570.89726,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4181"
|
||||
d="M 570.89726,255.13916 L 571.01929,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4185"
|
||||
d="M 573.29462,253.94049 L 573.29462,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4187"
|
||||
d="M 573.29462,255.13916 L 573.41665,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4191"
|
||||
d="M 575.69198,253.94049 L 575.69198,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4193"
|
||||
d="M 575.69198,255.13916 L 575.81401,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4197"
|
||||
d="M 578.08934,253.94049 L 578.08934,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4199"
|
||||
d="M 578.08934,255.13916 L 578.21137,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4203-8"
|
||||
d="M 580.48669,253.94049 L 580.48669,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4205"
|
||||
d="M 580.48669,255.13916 L 580.60872,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4209"
|
||||
d="M 582.88405,253.94049 L 582.88405,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4211-8"
|
||||
d="M 582.88405,255.13916 L 583.00608,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4215-2"
|
||||
d="M 585.28141,253.94049 L 585.28141,258.65129"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.32574069px;stroke-linecap:butt;stroke-linejoin:miter" />
|
||||
<path
|
||||
id="path4217"
|
||||
d="M 585.28141,255.13916 L 585.40344,255.13916"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.1479758px;stroke-linecap:square;stroke-linejoin:miter" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="584.37372"
|
||||
y="274.48654"
|
||||
width="4.9367957"
|
||||
height="2.7210622"
|
||||
id="rect4867" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="586.16888"
|
||||
y="274.48654"
|
||||
width="1.135463"
|
||||
height="2.7210622"
|
||||
id="rect4869" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="584.37372"
|
||||
y="278.97452"
|
||||
width="4.9367957"
|
||||
height="2.7210622"
|
||||
id="rect4877" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="586.16888"
|
||||
y="278.97452"
|
||||
width="1.135463"
|
||||
height="2.7210622"
|
||||
id="rect4879" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="584.37372"
|
||||
y="283.46252"
|
||||
width="4.9367957"
|
||||
height="2.7210622"
|
||||
id="rect4883" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="586.16888"
|
||||
y="283.46252"
|
||||
width="1.135463"
|
||||
height="2.7210622"
|
||||
id="rect4885" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-575.68927"
|
||||
y="283.46252"
|
||||
width="4.9367957"
|
||||
height="2.7210622"
|
||||
transform="scale(-1,1)"
|
||||
id="rect4889" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-573.89404"
|
||||
y="283.46252"
|
||||
width="1.135463"
|
||||
height="2.7210622"
|
||||
transform="scale(-1,1)"
|
||||
id="rect4891" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-575.68927"
|
||||
y="274.48654"
|
||||
width="4.9367957"
|
||||
height="2.7210622"
|
||||
transform="scale(-1,1)"
|
||||
id="rect4901" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-573.89404"
|
||||
y="274.48654"
|
||||
width="1.135463"
|
||||
height="2.7210622"
|
||||
transform="scale(-1,1)"
|
||||
id="rect4903" />
|
||||
<rect
|
||||
rx="0.6731993"
|
||||
id="rect4841"
|
||||
ry="0.6731993"
|
||||
height="14.271826"
|
||||
width="8.3925524"
|
||||
stroke-miterlimit="4"
|
||||
y="273.93018"
|
||||
x="575.72699"
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:1.08160698;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="127.2851"
|
||||
y="-623.52423"
|
||||
width="4.9367952"
|
||||
height="2.7210624"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect13881" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="129.08029"
|
||||
y="-623.52423"
|
||||
width="1.1354629"
|
||||
height="2.7210624"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect13883" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="127.2851"
|
||||
y="-619.03619"
|
||||
width="4.9367952"
|
||||
height="2.7210624"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect13887" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="129.08029"
|
||||
y="-619.03619"
|
||||
width="1.1354629"
|
||||
height="2.7210624"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect13889" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="127.2851"
|
||||
y="-614.54822"
|
||||
width="4.9367952"
|
||||
height="2.7210624"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect13893" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="129.08029"
|
||||
y="-614.54822"
|
||||
width="1.1354629"
|
||||
height="2.7210624"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect13895" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-118.60066"
|
||||
y="-614.54822"
|
||||
width="4.9367952"
|
||||
height="2.7210624"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect13899" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-116.80547"
|
||||
y="-614.54822"
|
||||
width="1.1354629"
|
||||
height="2.7210624"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect13901" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-118.60066"
|
||||
y="-623.52423"
|
||||
width="4.9367952"
|
||||
height="2.7210624"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect13905" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-116.80547"
|
||||
y="-623.52423"
|
||||
width="1.1354629"
|
||||
height="2.7210624"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect13907" />
|
||||
<rect
|
||||
rx="0.67319936"
|
||||
id="rect13909"
|
||||
ry="0.67319936"
|
||||
height="14.271827"
|
||||
width="8.3925524"
|
||||
stroke-miterlimit="4"
|
||||
y="-624.08057"
|
||||
x="118.63837"
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:1.08160698;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<rect
|
||||
id="rect5020"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
height="34.898285"
|
||||
width="59.816059"
|
||||
stroke-miterlimit="4"
|
||||
y="-467.97284"
|
||||
x="177.77756"
|
||||
style="fill:#fffcfc;stroke:#828282;stroke-width:2.17025805;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="468.33835"
|
||||
y="-189.53841"
|
||||
width="7.3681602"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect4966-2" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="471.01767"
|
||||
y="-189.53841"
|
||||
width="1.6946768"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect4968-1" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="468.33835"
|
||||
y="-196.23674"
|
||||
width="7.3681602"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect5048" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="471.01767"
|
||||
y="-196.23674"
|
||||
width="1.6946768"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect5050" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="468.33835"
|
||||
y="-202.93506"
|
||||
width="7.3681602"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect5054" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="471.01767"
|
||||
y="-202.93506"
|
||||
width="1.6946768"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect5056" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="468.33835"
|
||||
y="-209.63339"
|
||||
width="7.3681602"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect5060" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="471.01767"
|
||||
y="-209.63339"
|
||||
width="1.6946768"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect5062" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="468.33835"
|
||||
y="-216.33173"
|
||||
width="7.3681602"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect5066" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="471.01767"
|
||||
y="-216.33173"
|
||||
width="1.6946768"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect5068" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="468.33835"
|
||||
y="-223.03006"
|
||||
width="7.3681602"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect5072" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="471.01767"
|
||||
y="-223.03006"
|
||||
width="1.6946768"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect5074" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="468.33835"
|
||||
y="-229.53119"
|
||||
width="7.3681602"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect14000" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="471.01767"
|
||||
y="-229.53119"
|
||||
width="1.6946768"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect14002" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="468.33835"
|
||||
y="-236.0323"
|
||||
width="7.3681602"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect14006" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="471.01767"
|
||||
y="-236.0323"
|
||||
width="1.6946768"
|
||||
height="4.0611815"
|
||||
transform="scale(1,-1)"
|
||||
id="rect14008" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-456.31073"
|
||||
y="-273.86774"
|
||||
width="5.7475319"
|
||||
height="3.9238191"
|
||||
transform="scale(-1,-1)"
|
||||
id="rect4867-0" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-454.2207"
|
||||
y="-273.86774"
|
||||
width="1.3219323"
|
||||
height="3.9238191"
|
||||
transform="scale(-1,-1)"
|
||||
id="rect4869-4" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-456.31073"
|
||||
y="-267.39597"
|
||||
width="5.7475319"
|
||||
height="3.9238191"
|
||||
transform="scale(-1,-1)"
|
||||
id="rect4877-3" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-454.2207"
|
||||
y="-267.39597"
|
||||
width="1.3219323"
|
||||
height="3.9238191"
|
||||
transform="scale(-1,-1)"
|
||||
id="rect4879-4" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-456.31073"
|
||||
y="-260.92419"
|
||||
width="5.7475319"
|
||||
height="3.9238191"
|
||||
transform="scale(-1,-1)"
|
||||
id="rect4883-6" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-454.2207"
|
||||
y="-260.92419"
|
||||
width="1.3219323"
|
||||
height="3.9238191"
|
||||
transform="scale(-1,-1)"
|
||||
id="rect4885-2" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="466.42136"
|
||||
y="-260.92419"
|
||||
width="5.7475319"
|
||||
height="3.9238191"
|
||||
transform="scale(1,-1)"
|
||||
id="rect4889-3" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="468.51135"
|
||||
y="-260.92419"
|
||||
width="1.3219323"
|
||||
height="3.9238191"
|
||||
transform="scale(1,-1)"
|
||||
id="rect4891-3" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="466.42136"
|
||||
y="-273.86774"
|
||||
width="5.7475319"
|
||||
height="3.9238191"
|
||||
transform="scale(1,-1)"
|
||||
id="rect4901-7" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="468.51135"
|
||||
y="-273.86774"
|
||||
width="1.3219323"
|
||||
height="3.9238191"
|
||||
transform="scale(1,-1)"
|
||||
id="rect4903-8" />
|
||||
<rect
|
||||
rx="0.97076511"
|
||||
id="rect4841-1"
|
||||
ry="0.97076511"
|
||||
height="20.580219"
|
||||
width="9.7708044"
|
||||
stroke-miterlimit="4"
|
||||
y="-274.67001"
|
||||
x="-466.37744"
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:1.0816052;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
transform="scale(-1,-1)" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
id="rect14080"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="621.14215"
|
||||
x="-308.31299"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4"
|
||||
id="rect14082"
|
||||
height="5.5151954"
|
||||
width="3.868221"
|
||||
y="621.14215"
|
||||
x="-316.98129"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
id="rect14086"
|
||||
height="27.293268"
|
||||
width="35.702084"
|
||||
stroke-miterlimit="4"
|
||||
y="299.41049"
|
||||
x="488.68149"
|
||||
style="fill:#fffcfc;stroke:#828282;stroke-width:2.1680696;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-298.90277"
|
||||
y="-500.82507"
|
||||
width="5.7624946"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14090" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-296.80731"
|
||||
y="-500.82507"
|
||||
width="1.3253738"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14092" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-298.90277"
|
||||
y="-507.52341"
|
||||
width="5.7624946"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14096" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-296.80731"
|
||||
y="-507.52341"
|
||||
width="1.3253738"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14098" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-298.90277"
|
||||
y="-514.22174"
|
||||
width="5.7624946"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14102" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-296.80731"
|
||||
y="-514.22174"
|
||||
width="1.3253738"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14104" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-298.90277"
|
||||
y="-520.9201"
|
||||
width="5.7624946"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14108" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-296.80731"
|
||||
y="-520.9201"
|
||||
width="1.3253738"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14110" />
|
||||
<rect
|
||||
id="rect14138"
|
||||
height="27.293268"
|
||||
width="35.702084"
|
||||
stroke-miterlimit="4"
|
||||
y="299.41049"
|
||||
x="581.19727"
|
||||
style="fill:#fffcfc;stroke:#828282;stroke-width:2.1680696;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-298.90277"
|
||||
y="-591.34082"
|
||||
width="5.7624946"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14142" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-296.80731"
|
||||
y="-591.34082"
|
||||
width="1.3253738"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14144" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-298.90277"
|
||||
y="-598.03918"
|
||||
width="5.7624946"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14148" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-296.80731"
|
||||
y="-598.03918"
|
||||
width="1.3253738"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14150" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-298.90277"
|
||||
y="-604.73749"
|
||||
width="5.7624946"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14154" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-296.80731"
|
||||
y="-604.73749"
|
||||
width="1.3253738"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14156" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-298.90277"
|
||||
y="-611.43579"
|
||||
width="5.7624946"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14160" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-296.80731"
|
||||
y="-611.43579"
|
||||
width="1.3253738"
|
||||
height="4.061182"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14162" />
|
||||
<rect
|
||||
id="rect14166"
|
||||
height="21.734783"
|
||||
width="16.967201"
|
||||
y="249.09335"
|
||||
x="631.93884"
|
||||
style="fill:#00440d;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect14168"
|
||||
height="21.734783"
|
||||
width="9.2903233"
|
||||
y="249.09335"
|
||||
x="650.15515"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect14170"
|
||||
height="21.734783"
|
||||
width="9.2903233"
|
||||
y="249.09335"
|
||||
x="624.13184"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:0.75847471;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
x="577.76172"
|
||||
y="112.47642"
|
||||
stroke-miterlimit="4"
|
||||
width="20.045404"
|
||||
height="30.880756"
|
||||
id="rect14172" />
|
||||
<rect
|
||||
id="rect14194"
|
||||
height="5.5151949"
|
||||
width="7.064651"
|
||||
y="135.60159"
|
||||
x="474.20758"
|
||||
style="fill:#312d29;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect14196"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="135.60159"
|
||||
x="481.79233"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
id="rect14198"
|
||||
height="5.5151949"
|
||||
width="3.8682213"
|
||||
y="135.60159"
|
||||
x="470.957"
|
||||
style="fill:#d3d0ce;stroke-width:0;stroke-miterlimit:4" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="308.06442"
|
||||
y="-563.91339"
|
||||
width="7.6110497"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect14204" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="310.83209"
|
||||
y="-563.91339"
|
||||
width="1.7505414"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect14206" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="308.06442"
|
||||
y="-557.21295"
|
||||
width="7.6110497"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect14210" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="310.83209"
|
||||
y="-557.21295"
|
||||
width="1.7505414"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect14212" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="308.06442"
|
||||
y="-550.51251"
|
||||
width="7.6110497"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect14216" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="310.83209"
|
||||
y="-550.51251"
|
||||
width="1.7505414"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect14218" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-286.00735"
|
||||
y="-550.51251"
|
||||
width="7.6110497"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14222" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-283.23969"
|
||||
y="-550.51251"
|
||||
width="1.7505414"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14224" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-286.00735"
|
||||
y="-563.91339"
|
||||
width="7.6110497"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14228" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-283.23969"
|
||||
y="-563.91339"
|
||||
width="1.7505414"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14230" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-286.00735"
|
||||
y="-556.98328"
|
||||
width="7.6110497"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14242" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-283.23969"
|
||||
y="-556.98328"
|
||||
width="1.7505414"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14244" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="-286.00735"
|
||||
y="-544.04181"
|
||||
width="7.6110497"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14248" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="-283.23969"
|
||||
y="-544.04181"
|
||||
width="1.7505414"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,-1,-1,0,0,0)"
|
||||
id="rect14250" />
|
||||
<rect
|
||||
style="fill:#e9dcdc"
|
||||
x="308.06442"
|
||||
y="-544.04181"
|
||||
width="7.6110497"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect14254" />
|
||||
<rect
|
||||
style="fill:#8c8989"
|
||||
x="310.83209"
|
||||
y="-544.04181"
|
||||
width="1.7505414"
|
||||
height="4.0624456"
|
||||
transform="matrix(0,1,-1,0,0,0)"
|
||||
id="rect14256" />
|
||||
<rect
|
||||
rx="1.2931794"
|
||||
id="rect14232"
|
||||
ry="1.2931794"
|
||||
height="27.404684"
|
||||
width="24.216976"
|
||||
stroke-miterlimit="4"
|
||||
y="-565.74445"
|
||||
x="284.95566"
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:1.08261442;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
transform="matrix(0,1,-1,0,0,0)" />
|
||||
<g
|
||||
id="text29413-5"
|
||||
style="font-size:12.71438503px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Arial;-inkscape-font-specification:Arial Bold"
|
||||
transform="translate(-723.48677,-464.26477)">
|
||||
<path
|
||||
id="path29439-8"
|
||||
d="M 1398.0763,618.22131 L 1396.3318,618.22131 L 1396.3318,611.64683 C 1395.6944,612.24283 1394.9432,612.68361 1394.0782,612.96918 L 1394.0782,611.38609 C 1394.5335,611.2371 1395.0281,610.95566 1395.562,610.54178 C 1396.0959,610.12376 1396.4622,609.63746 1396.6608,609.08285 L 1398.0763,609.08285 L 1398.0763,618.22131"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path29441-1"
|
||||
d="M 1399.5042,632.49396 L 1399.5042,634.11429 L 1393.3891,634.11429 C 1393.4551,633.50175 1393.654,632.92232 1393.9851,632.376 C 1394.3162,631.82554 1394.9701,631.09711 1395.9469,630.19072 C 1396.7333,629.45815 1397.2154,628.9615 1397.3934,628.70075 C 1397.6335,628.34068 1397.7535,627.98474 1397.7535,627.63294 C 1397.7535,627.2439 1397.6479,626.94591 1397.4369,626.73896 C 1397.2299,626.52789 1396.9423,626.42235 1396.5739,626.42234 C 1396.2097,626.42235 1395.92,626.53203 1395.7048,626.75137 C 1395.4896,626.97074 1395.3654,627.33495 1395.3323,627.84402 L 1393.594,627.67019 C 1393.6975,626.70999 1394.0224,626.02088 1394.5687,625.60286 C 1395.115,625.18485 1395.7979,624.97584 1396.6174,624.97583 C 1397.5155,624.97584 1398.2212,625.21796 1398.7344,625.70219 C 1399.2476,626.18644 1399.5042,626.78863 1399.5042,627.50877 C 1399.5042,627.91852 1399.4292,628.30964 1399.2807,628.68212 C 1399.1358,629.05048 1398.9041,629.43746 1398.5854,629.84306 C 1398.3743,630.11208 1397.9935,630.49906 1397.4431,631.00399 C 1396.8926,631.50892 1396.5429,631.84417 1396.3939,632.00972 C 1396.249,632.17527 1396.1311,632.33668 1396.04,632.49396 L 1399.5042,632.49396"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path29443-6"
|
||||
d="M 1393.5505,647.59229 L 1395.2392,647.38742 C 1395.2932,647.81785 1395.4378,648.14689 1395.6737,648.37452 C 1395.9097,648.60216 1396.1952,648.71597 1396.5305,648.71597 C 1396.8905,648.71597 1397.1927,648.57939 1397.4369,648.30623 C 1397.6852,648.03307 1397.8094,647.66472 1397.8094,647.20117 C 1397.8094,646.76246 1397.6914,646.4148 1397.4555,646.15819 C 1397.2196,645.90159 1396.9319,645.77329 1396.5926,645.77329 C 1396.3691,645.77329 1396.1021,645.81679 1395.7917,645.90366 L 1395.9842,644.48198 C 1396.456,644.49438 1396.816,644.39298 1397.0644,644.17778 C 1397.3127,643.95843 1397.4369,643.66871 1397.4369,643.30863 C 1397.4369,643.00237 1397.3459,642.75818 1397.1637,642.57607 C 1396.9816,642.39397 1396.7395,642.30291 1396.4374,642.30291 C 1396.1394,642.30291 1395.8848,642.40638 1395.6737,642.61331 C 1395.4627,642.82026 1395.3344,643.12239 1395.2888,643.51971 L 1393.6809,643.24655 C 1393.7927,642.6961 1393.9603,642.25739 1394.1838,641.93041 C 1394.4114,641.59932 1394.726,641.34064 1395.1274,641.15439 C 1395.533,640.96401 1395.9862,640.86882 1396.487,640.86881 C 1397.3437,640.86882 1398.0308,641.14198 1398.5481,641.68829 C 1398.9744,642.13529 1399.1876,642.64022 1399.1876,643.20309 C 1399.1876,644.00189 1398.7509,644.63926 1397.8777,645.11522 C 1398.3991,645.22697 1398.8151,645.47737 1399.1255,645.86641 C 1399.44,646.25546 1399.5973,646.72521 1399.5973,647.27567 C 1399.5973,648.07446 1399.3055,648.75529 1398.722,649.31817 C 1398.1384,649.88104 1397.412,650.16248 1396.5429,650.16248 C 1395.7193,650.16248 1395.0364,649.92657 1394.4942,649.45475 C 1393.952,648.97879 1393.6375,648.35797 1393.5505,647.59229"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path29445-0"
|
||||
d="M 1397.0333,665.90026 L 1397.0333,664.06884 L 1393.3084,664.06884 L 1393.3084,662.54162 L 1397.2568,656.76179 L 1398.722,656.76179 L 1398.722,662.53542 L 1399.8519,662.53542 L 1399.8519,664.06884 L 1398.722,664.06884 L 1398.722,665.90026 L 1397.0333,665.90026 M 1397.0333,662.53542 L 1397.0333,659.42511 L 1394.9412,662.53542 L 1397.0333,662.53542"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path29447-1"
|
||||
d="M 1393.6375,679.45275 L 1395.3758,679.27271 C 1395.4258,679.6659 1395.5723,679.97838 1395.8165,680.21015 C 1396.0607,680.43778 1396.3422,680.5516 1396.6608,680.5516 C 1397.0251,680.5516 1397.3334,680.40467 1397.5859,680.11082 C 1397.8383,679.81283 1397.9646,679.36584 1397.9646,678.76985 C 1397.9646,678.21111 1397.8383,677.7931 1397.5859,677.51579 C 1397.3375,677.23436 1397.0126,677.09364 1396.6112,677.09363 C 1396.1104,677.09364 1395.6613,677.31506 1395.264,677.75791 L 1393.8485,677.55304 L 1394.7425,672.81619 L 1399.3552,672.81619 L 1399.3552,674.44894 L 1396.0649,674.44894 L 1395.7917,675.99478 C 1396.1807,675.80027 1396.5781,675.703 1396.9837,675.703 C 1397.7576,675.703 1398.4136,675.98444 1398.9517,676.54731 C 1399.4897,677.11019 1399.7587,677.84069 1399.7587,678.73881 C 1399.7587,679.48793 1399.5414,680.15635 1399.1069,680.74405 C 1398.515,681.54698 1397.6935,681.94844 1396.6422,681.94844 C 1395.802,681.94844 1395.1171,681.72288 1394.5873,681.27175 C 1394.0575,680.82062 1393.7409,680.21429 1393.6375,679.45275"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path29449-56"
|
||||
d="M 1399.5228,690.81375 L 1397.8342,690.99999 C 1397.7932,690.65234 1397.6852,690.39574 1397.5114,690.23018 C 1397.3375,690.06463 1397.112,689.98186 1396.8347,689.98185 C 1396.4663,689.98186 1396.1538,690.14741 1395.8972,690.4785 C 1395.6448,690.80962 1395.4854,691.49872 1395.4192,692.54583 C 1395.8538,692.03263 1396.3939,691.77602 1397.0395,691.77602 C 1397.768,691.77602 1398.3909,692.05332 1398.9082,692.60792 C 1399.4297,693.16252 1399.6904,693.87853 1399.6904,694.75595 C 1399.6904,695.68718 1399.4173,696.43424 1398.871,696.99711 C 1398.3246,697.55999 1397.6231,697.84142 1396.7664,697.84142 C 1395.8476,697.84142 1395.0922,697.48549 1394.5004,696.77362 C 1393.9085,696.0576 1393.6126,694.88633 1393.6126,693.25978 C 1393.6126,691.59185 1393.921,690.38953 1394.5376,689.65281 C 1395.1543,688.91612 1395.9552,688.54776 1396.9402,688.54776 C 1397.6314,688.54776 1398.2025,688.74229 1398.6537,689.13133 C 1399.1089,689.51624 1399.3987,690.07705 1399.5228,690.81375 M 1395.5682,694.61937 C 1395.5682,695.18639 1395.6986,695.6251 1395.9593,695.93551 C 1396.2201,696.24178 1396.5181,696.39492 1396.8533,696.39492 C 1397.1761,696.39492 1397.4451,696.26868 1397.6604,696.01622 C 1397.8756,695.76375 1397.9832,695.34987 1397.9832,694.77458 C 1397.9832,694.18273 1397.8673,693.75023 1397.6355,693.47706 C 1397.4038,693.19977 1397.114,693.06112 1396.7664,693.06111 C 1396.4311,693.06112 1396.1476,693.19356 1395.9159,693.45844 C 1395.6841,693.71919 1395.5682,694.10616 1395.5682,694.61937"
|
||||
d="m 1399.5228,690.81375 -1.6886,0.18624 c -0.041,-0.34765 -0.149,-0.60425 -0.3228,-0.76981 -0.1739,-0.16555 -0.3994,-0.24832 -0.6767,-0.24833 -0.3684,10e-6 -0.6809,0.16556 -0.9375,0.49665 -0.2524,0.33112 -0.4118,1.02022 -0.478,2.06733 0.4346,-0.5132 0.9747,-0.76981 1.6203,-0.76981 0.7285,0 1.3514,0.2773 1.8687,0.8319 0.5215,0.5546 0.7822,1.27061 0.7822,2.14803 0,0.93123 -0.2731,1.67829 -0.8194,2.24116 -0.5464,0.56288 -1.2479,0.84431 -2.1046,0.84431 -0.9188,0 -1.6742,-0.35593 -2.266,-1.0678 -0.5919,-0.71602 -0.8878,-1.88729 -0.8878,-3.51384 0,-1.66793 0.3084,-2.87025 0.925,-3.60697 0.6167,-0.73669 1.4176,-1.10505 2.4026,-1.10505 0.6912,0 1.2623,0.19453 1.7135,0.58357 0.4552,0.38491 0.745,0.94572 0.8691,1.68242 m -3.9546,3.80562 c 0,0.56702 0.1304,1.00573 0.3911,1.31614 0.2608,0.30627 0.5588,0.45941 0.894,0.45941 0.3228,0 0.5918,-0.12624 0.8071,-0.3787 0.2152,-0.25247 0.3228,-0.66635 0.3228,-1.24164 0,-0.59185 -0.1159,-1.02435 -0.3477,-1.29752 -0.2317,-0.27729 -0.5215,-0.41594 -0.8691,-0.41595 -0.3353,10e-6 -0.6188,0.13245 -0.8505,0.39733 -0.2318,0.26075 -0.3477,0.64772 -0.3477,1.16093"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
@ -35602,14 +32295,14 @@
|
||||
inkscape:groupmode="layer"
|
||||
id="layer18"
|
||||
inkscape:label="nano"
|
||||
style="display:none">
|
||||
style="display:inline">
|
||||
<g
|
||||
id="controller-nano"
|
||||
transform="translate(-726.76021,-465.53821)">
|
||||
<path
|
||||
style="fill:url(#linearGradient29676)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1179.9741,667.80486 L 1179.9741,658.79724 L 1205.7709,658.79724 L 1205.7709,636.38292 L 1179.9741,636.38292 L 1179.9741,626.83064 L 1160.0692,647.29681 z"
|
||||
d="m 1179.9741,667.80486 0,-9.00762 25.7968,0 0,-22.41432 -25.7968,0 0,-9.55228 -19.9049,20.46617 z"
|
||||
id="path10151-2-3-6" />
|
||||
<rect
|
||||
style="opacity:0.44736861;fill:#6b6a6b;fill-opacity:0.44166667;stroke:#131413;stroke-width:2.9000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
@ -35627,7 +32320,7 @@
|
||||
style="fill:#dbdbdb;stroke:#848484;stroke-width:2.15392518;stroke-linecap:round;stroke-linejoin:round"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8694-9"
|
||||
d="M 399.52159,854.64741 C 399.52159,855.82348 398.54605,856.77798 397.34404,856.77798 H 368.00816 C 366.80616,856.77798 365.83062,855.82348 365.83062,854.64741 L 368.00816,853.21887 L 365.83062,850.95515 V 817.93144 L 368.00816,815.4014 L 365.83062,814.02931 C 365.83062,812.85324 366.80616,811.89875 368.00816,811.89875 H 397.34513 C 398.54713,811.89875 399.52267,812.85324 399.52267,814.02931 V 854.64741 z" />
|
||||
d="m 399.52159,854.64741 c 0,1.17607 -0.97554,2.13057 -2.17755,2.13057 h -29.33588 c -1.202,0 -2.17754,-0.9545 -2.17754,-2.13057 l 2.17754,-1.42854 -2.17754,-2.26372 v -33.02371 l 2.17754,-2.53004 -2.17754,-1.37209 c 0,-1.17607 0.97554,-2.13056 2.17754,-2.13056 h 29.33697 c 1.202,0 2.17754,0.95449 2.17754,2.13056 v 40.6181 z" />
|
||||
<rect
|
||||
style="fill:#5a5a5a"
|
||||
id="rect8696-4"
|
||||
@ -35782,169 +32475,169 @@
|
||||
id="g24742">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 516.26084,717.98038 V 716.06181"
|
||||
d="m 516.26084,717.98038 v -1.91857"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12832_1_-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 513.76864,717.98038 V 716.06181"
|
||||
d="m 513.76864,717.98038 v -1.91857"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12834_1_-8" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 526.61942,717.98038 V 716.06181"
|
||||
d="m 526.61942,717.98038 v -1.91857"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12836_1_-8" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 523.99657,717.98038 V 716.06181"
|
||||
d="m 523.99657,717.98038 v -1.91857"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12838_1_-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 521.50546,717.98038 V 716.06181"
|
||||
d="m 521.50546,717.98038 v -1.91857"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12840_1_-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 513.76864,739.39999 V 737.48142"
|
||||
d="m 513.76864,739.39999 v -1.91857"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12842_1_-3" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 516.26084,739.39999 V 737.48142"
|
||||
d="m 516.26084,739.39999 v -1.91857"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12844_1_-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 521.50546,739.39999 V 737.48142"
|
||||
d="m 521.50546,739.39999 v -1.91857"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12846_1_-8" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 523.99657,739.39999 V 737.48142"
|
||||
d="m 523.99657,739.39999 v -1.91857"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12848_1_-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 526.61942,739.39999 V 737.48142"
|
||||
d="m 526.61942,739.39999 v -1.91857"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12850_1_-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 508.39337,730.87454 H 510.75383"
|
||||
d="m 508.39337,730.87454 h 2.36046"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12852_1_-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 508.39337,732.89858 H 510.75383"
|
||||
d="m 508.39337,732.89858 h 2.36046"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12854_1_-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 508.39337,735.03021 H 510.75383"
|
||||
d="m 508.39337,735.03021 h 2.36046"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12856_1_-5" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 529.63532,735.03021 H 531.86404"
|
||||
d="m 529.63532,735.03021 h 2.22872"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12858_1_-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 529.63532,732.89858 H 531.86404"
|
||||
d="m 529.63532,732.89858 h 2.22872"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12860_1_-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 529.63532,730.87454 H 531.86404"
|
||||
d="m 529.63532,730.87454 h 2.22872"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12862_1_-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 508.39337,722.45563 H 510.75383"
|
||||
d="m 508.39337,722.45563 h 2.36046"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12864_1_-6" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 508.39337,724.58726 H 510.75383"
|
||||
d="m 508.39337,724.58726 h 2.36046"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12866_1_-2" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 508.39337,726.61236 H 510.75383"
|
||||
d="m 508.39337,726.61236 h 2.36046"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12868_1_-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 529.63532,726.61236 H 531.86404"
|
||||
d="m 529.63532,726.61236 h 2.22872"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12870_1_-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 529.63532,724.58726 H 531.86404"
|
||||
d="m 529.63532,724.58726 h 2.22872"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12872_1_-9" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 529.63532,722.45563 H 531.86404"
|
||||
d="m 529.63532,722.45563 h 2.22872"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12874_1_-8" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 518.88369,717.98038 V 716.06181"
|
||||
d="m 518.88369,717.98038 v -1.91857"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12876_1_-7" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 508.39337,728.74292 H 510.75383"
|
||||
d="m 508.39337,728.74292 h 2.36046"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12878_1_-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 518.88369,739.39999 V 737.48142"
|
||||
d="m 518.88369,739.39999 v -1.91857"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12880_1_-0" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 529.63532,728.74292 H 531.86404"
|
||||
d="m 529.63532,728.74292 h 2.22872"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12882_1_-4" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 508.39337,720.324 H 510.75383"
|
||||
d="m 508.39337,720.324 h 2.36046"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12884_1_-1" />
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.8878938;stroke-linecap:round;stroke-miterlimit:10"
|
||||
d="M 529.63532,720.324 H 531.86404"
|
||||
d="m 529.63532,720.324 h 2.22872"
|
||||
stroke-miterlimit="10"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12886_1_-0" />
|
||||
@ -36034,7 +32727,7 @@
|
||||
<path
|
||||
style="fill:#6a6a6a;stroke:#000000;stroke-width:2.60011077"
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 536.13747,805.20666 H 529.06263 C 528.69027,805.20666 528.3865,804.91157 528.3865,804.54512 V 791.82992 C 528.3865,791.46347 528.69027,791.16625 529.06263,791.16625 H 536.13747 C 536.51201,791.16625 536.8136,791.46347 536.8136,791.82992 V 804.54512 C 536.8136,804.91157 536.51201,805.20666 536.13747,805.20666 z"
|
||||
d="m 536.13747,805.20666 h -7.07484 c -0.37236,0 -0.67613,-0.29509 -0.67613,-0.66154 v -12.7152 c 0,-0.36645 0.30377,-0.66367 0.67613,-0.66367 h 7.07484 c 0.37454,0 0.67613,0.29722 0.67613,0.66367 v 12.7152 c 0,0.36645 -0.30159,0.66154 -0.67613,0.66154 z"
|
||||
id="rect4841_2_-7" />
|
||||
</g>
|
||||
<g
|
||||
@ -36166,11 +32859,11 @@
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8668-3"
|
||||
d="M 481.28621,675.07193 L 481.89919,676.91913 C 486.0583,675.4011 484.75177,668.65148 479.64107,670.096 C 484.01903,669.62089 484.08762,674.75874 481.28621,675.07193 z" />
|
||||
d="m 481.28621,675.07193 0.61298,1.8472 c 4.15911,-1.51803 2.85258,-8.26765 -2.25812,-6.82313 4.37796,-0.47511 4.44655,4.66274 1.64514,4.97593 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8670-1"
|
||||
d="M 479.90129,671.06754 L 479.28831,669.22034 C 475.1292,670.73837 476.43573,677.48799 481.54751,676.04347 C 477.16956,676.51858 477.10097,671.38073 479.90129,671.06754 z" />
|
||||
d="m 479.90129,671.06754 -0.61298,-1.8472 c -4.15911,1.51803 -2.85258,8.26765 2.2592,6.82313 -4.37795,0.47511 -4.44654,-4.66274 -1.64622,-4.97593 z" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8672-2"
|
||||
@ -36179,49 +32872,49 @@
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8674-8"
|
||||
d="M 468.75771,677.71276 H 467.02656 L 465.41409,674.45833 H 465.24206 V 676.67731 H 463.66334 V 669.47494 C 464.07816,669.46494 465.06023,669.31728 465.52623,669.31728 C 466.00202,669.31728 466.55947,669.33748 467.04616,669.5836 C 467.84531,669.97989 468.28082,670.81294 468.22965,672.30859 C 468.1284,673.52727 467.68309,674.11105 467.00478,674.34967 L 468.75771,677.71276 z M 466.64984,671.9709 C 466.64984,671.3573 466.42664,670.69363 465.75814,670.69363 C 465.58611,670.69363 465.39558,670.71283 465.24206,670.74263 V 673.278 C 466.21324,673.63593 466.64984,672.8636 466.64984,671.9709 z" />
|
||||
d="m 468.75771,677.71276 h -1.73115 l -1.61247,-3.25443 h -0.17203 v 2.21898 h -1.57872 v -7.20237 c 0.41482,-0.01 1.39689,-0.15766 1.86289,-0.15766 0.47579,0 1.03324,0.0202 1.51993,0.26632 0.79915,0.39629 1.23466,1.22934 1.18349,2.72499 -0.10125,1.21868 -0.54656,1.80246 -1.22487,2.04108 l 1.75293,3.36309 z m -2.10787,-5.74186 c 0,-0.6136 -0.2232,-1.27727 -0.8917,-1.27727 -0.17203,0 -0.36256,0.0192 -0.51608,0.049 v 2.53537 c 0.97118,0.35793 1.40778,-0.4144 1.40778,-1.3071 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8676-5"
|
||||
d="M 468.44196,676.67731 V 669.47494 H 471.76272 V 670.83211 H 470.06205 V 672.40766 H 471.68215 V 673.69559 H 470.06205 V 675.27114 H 471.76272 V 676.67731 H 468.44196 z" />
|
||||
d="m 468.44196,676.67731 v -7.20237 h 3.32076 v 1.35717 h -1.70067 v 1.57555 h 1.6201 v 1.28793 h -1.6201 v 1.57555 h 1.70067 v 1.40617 h -3.32076 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8678-4"
|
||||
d="M 474.48574,674.46792 L 475.2555,669.47494 H 476.94636 L 475.41773,676.67731 H 473.4035 L 471.86397,669.47494 H 473.56464 L 474.33549,674.46792 L 474.41609,675.07193 L 474.48579,674.46792 z" />
|
||||
d="m 474.48574,674.46792 0.76976,-4.99298 h 1.69086 l -1.52863,7.20237 h -2.01423 l -1.53953,-7.20237 h 1.70067 l 0.77085,4.99298 0.0806,0.60401 0.0697,-0.60401 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8680-3"
|
||||
d="M 484.72564,676.67731 V 669.47494 H 486.32505 V 675.27007 H 488.11717 V 676.67624 H 484.72564 z" />
|
||||
d="m 484.72564,676.67731 v -7.20237 h 1.59941 v 5.79513 h 1.79212 v 1.40617 h -3.39153 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8682-0"
|
||||
d="M 488.28919,674.69589 V 669.47494 H 489.9082 V 674.6064 C 489.9182,675.09217 489.9496,675.4778 490.61699,675.4778 C 491.2844,675.4778 491.31598,675.09217 491.32578,674.6064 V 669.47494 H 492.94478 V 674.69589 C 492.94478,676.16171 492.11405,676.8158 490.6159,676.8158 C 489.13952,676.8158 488.28919,676.16171 488.28919,674.69589 z" />
|
||||
d="m 488.28919,674.69589 v -5.22095 h 1.61901 v 5.13146 c 0.01,0.48577 0.0414,0.8714 0.70879,0.8714 0.66741,0 0.69899,-0.38563 0.70879,-0.8714 v -5.13146 h 1.619 v 5.22095 c 0,1.46582 -0.83073,2.11991 -2.32888,2.11991 -1.47638,0 -2.32671,-0.65409 -2.32671,-2.11991 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8684-2"
|
||||
d="M 493.14947,670.83211 L 493.26053,669.47494 H 497.56335 L 497.6951,670.83211 H 496.2884 V 676.67731 H 494.62802 V 670.83211 H 493.14947 z" />
|
||||
d="m 493.14947,670.83211 0.11106,-1.35717 h 4.30282 l 0.13175,1.35717 h -1.4067 v 5.8452 h -1.66038 v -5.8452 h -1.47855 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8686-9"
|
||||
d="M 497.927,669.47494 H 499.57867 V 676.67731 H 497.927 V 669.47494 z" />
|
||||
d="m 497.927,669.47494 h 1.65167 v 7.20237 H 497.927 v -7.20237 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8688-8"
|
||||
d="M 499.85086,673.05109 C 499.85086,671.24864 500.54006,669.27787 502.68603,669.28745 C 504.8222,669.27745 505.51139,671.24864 505.50159,673.05109 C 505.50159,674.87379 504.85377,676.82538 502.68603,676.8158 C 500.50957,676.8258 499.87264,674.87379 499.85086,673.05109 z M 501.55262,673.07129 C 501.55262,674.062 501.75513,675.48842 502.68603,675.52783 C 503.60822,675.48733 503.80964,674.062 503.80964,673.07129 C 503.80964,672.09017 503.60713,670.82248 502.68603,670.76283 C 501.75404,670.82253 501.55262,672.09017 501.55262,673.07129 z" />
|
||||
d="m 499.85086,673.05109 c 0,-1.80245 0.6892,-3.77322 2.83517,-3.76364 2.13617,-0.01 2.82536,1.96119 2.81556,3.76364 0,1.8227 -0.64782,3.77429 -2.81556,3.76471 -2.17646,0.01 -2.81339,-1.94201 -2.83517,-3.76471 z m 1.70176,0.0202 c 0,0.99071 0.20251,2.41713 1.13341,2.45654 0.92219,-0.0405 1.12361,-1.46583 1.12361,-2.45654 0,-0.98112 -0.20251,-2.24881 -1.12361,-2.30846 -0.93199,0.0597 -1.13341,1.32734 -1.13341,2.30846 z" />
|
||||
<path
|
||||
style="fill:#070606"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path8690-8"
|
||||
d="M 505.7531,676.67731 V 669.47494 H 507.1206 L 508.66992,673.01168 V 669.47494 H 510.23013 V 676.67731 H 508.93449 L 507.33509,673.15016 V 676.67731 H 505.7531 z" />
|
||||
d="m 505.7531,676.67731 v -7.20237 h 1.3675 l 1.54932,3.53674 v -3.53674 h 1.56021 v 7.20237 h -1.29564 l -1.5994,-3.52715 v 3.52715 h -1.58199 z" />
|
||||
<circle
|
||||
d="M 110.432,9.1289997 C 110.432,9.6470428 110.01205,10.067 109.494,10.067 C 108.97596,10.067 108.556,9.6470428 108.556,9.1289997 C 108.556,8.6109566 108.97596,8.1909997 109.494,8.1909997 C 110.01205,8.1909997 110.432,8.6109566 110.432,9.1289997 z"
|
||||
d="m 110.432,9.1289997 c 0,0.5180431 -0.41995,0.9380003 -0.938,0.9380003 -0.51804,0 -0.938,-0.4199572 -0.938,-0.9380003 0,-0.5180431 0.41996,-0.938 0.938,-0.938 0.51805,0 0.938,0.4199569 0.938,0.938 z"
|
||||
style="fill:#070606"
|
||||
sodipodi:ry="0.93800002"
|
||||
sodipodi:rx="0.93800002"
|
||||
@ -36259,7 +32952,7 @@
|
||||
sodipodi:rx="1.413"
|
||||
sodipodi:ry="1.413"
|
||||
style="fill:#2c2c2c"
|
||||
d="M 132.598,20.466 C 132.598,21.246378 131.96538,21.879 131.185,21.879 C 130.40462,21.879 129.772,21.246378 129.772,20.466 C 129.772,19.685621 130.40462,19.053 131.185,19.053 C 131.96538,19.053 132.598,19.685621 132.598,20.466 z" />
|
||||
d="m 132.598,20.466 c 0,0.780378 -0.63262,1.413 -1.413,1.413 -0.78038,0 -1.413,-0.632622 -1.413,-1.413 0,-0.780379 0.63262,-1.413 1.413,-1.413 0.78038,0 1.413,0.632621 1.413,1.413 z" />
|
||||
<circle
|
||||
transform="matrix(1.0887723,0,0,1.065281,361.38407,663.43267)"
|
||||
cx="151.73199"
|
||||
@ -36271,14 +32964,14 @@
|
||||
sodipodi:rx="1.413"
|
||||
sodipodi:ry="1.413"
|
||||
style="fill:#2c2c2c"
|
||||
d="M 153.14499,29.417 C 153.14499,30.197378 152.51237,30.83 151.73199,30.83 C 150.95162,30.83 150.31899,30.197378 150.31899,29.417 C 150.31899,28.636621 150.95162,28.004 151.73199,28.004 C 152.51237,28.004 153.14499,28.636621 153.14499,29.417 z" />
|
||||
d="m 153.14499,29.417 c 0,0.780378 -0.63262,1.413 -1.413,1.413 -0.78037,0 -1.413,-0.632622 -1.413,-1.413 0,-0.780379 0.63263,-1.413 1.413,-1.413 0.78038,0 1.413,0.632621 1.413,1.413 z" />
|
||||
</g>
|
||||
</g>
|
||||
<polygon
|
||||
inkscape:transform-center-y="95.699765"
|
||||
inkscape:transform-center-x="-66.090998"
|
||||
transform="matrix(0,-1.0887723,1.065281,0,1247.1905,860.25683)"
|
||||
points="186.083,4.74 191.036,13.319 186.194,11.031 181.129,13.319 "
|
||||
points="186.194,11.031 181.129,13.319 186.083,4.74 191.036,13.319 "
|
||||
id="polygon8706-0" />
|
||||
<g
|
||||
transform="translate(726.6625,-66.912713)"
|
||||
@ -36371,7 +33064,7 @@
|
||||
id="g8710-1"
|
||||
transform="matrix(1.0887723,0,0,1.065281,431.17616,631.18026)">
|
||||
<circle
|
||||
d="M 195.585,45.712002 C 195.585,48.448573 193.36658,50.667002 190.63,50.667002 C 187.89343,50.667002 185.675,48.448573 185.675,45.712002 C 185.675,42.975431 187.89343,40.757002 190.63,40.757002 C 193.36658,40.757002 195.585,42.975431 195.585,45.712002 z"
|
||||
d="m 195.585,45.712002 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -36386,7 +33079,7 @@
|
||||
id="g8714-9"
|
||||
transform="matrix(1.0887723,0,0,1.065281,431.17616,631.18026)">
|
||||
<circle
|
||||
d="M 210.585,45.712002 C 210.585,48.448573 208.36658,50.667002 205.63,50.667002 C 202.89343,50.667002 200.675,48.448573 200.675,45.712002 C 200.675,42.975431 202.89343,40.757002 205.63,40.757002 C 208.36658,40.757002 210.585,42.975431 210.585,45.712002 z"
|
||||
d="m 210.585,45.712002 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -36401,7 +33094,7 @@
|
||||
id="g8718-4"
|
||||
transform="matrix(1.0887723,0,0,1.065281,431.17616,631.18026)">
|
||||
<circle
|
||||
d="M 195.585,60.712002 C 195.585,63.448573 193.36658,65.667002 190.63,65.667002 C 187.89343,65.667002 185.675,63.448573 185.675,60.712002 C 185.675,57.975431 187.89343,55.757002 190.63,55.757002 C 193.36658,55.757002 195.585,57.975431 195.585,60.712002 z"
|
||||
d="m 195.585,60.712002 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -36416,7 +33109,7 @@
|
||||
id="g8722-8"
|
||||
transform="matrix(1.0887723,0,0,1.065281,431.17616,631.18026)">
|
||||
<circle
|
||||
d="M 210.585,60.712002 C 210.585,63.448573 208.36658,65.667002 205.63,65.667002 C 202.89343,65.667002 200.675,63.448573 200.675,60.712002 C 200.675,57.975431 202.89343,55.757002 205.63,55.757002 C 208.36658,55.757002 210.585,57.975431 210.585,60.712002 z"
|
||||
d="m 210.585,60.712002 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -36431,7 +33124,7 @@
|
||||
id="g8726-5"
|
||||
transform="matrix(1.0887723,0,0,1.065281,431.17616,631.18026)">
|
||||
<circle
|
||||
d="M 195.585,75.711998 C 195.585,78.448569 193.36658,80.666998 190.63,80.666998 C 187.89343,80.666998 185.675,78.448569 185.675,75.711998 C 185.675,72.975427 187.89343,70.756998 190.63,70.756998 C 193.36658,70.756998 195.585,72.975427 195.585,75.711998 z"
|
||||
d="m 195.585,75.711998 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -36446,7 +33139,7 @@
|
||||
id="g8730-3"
|
||||
transform="matrix(1.0887723,0,0,1.065281,431.17616,631.18026)">
|
||||
<circle
|
||||
d="M 210.585,75.711998 C 210.585,78.448569 208.36658,80.666998 205.63,80.666998 C 202.89343,80.666998 200.675,78.448569 200.675,75.711998 C 200.675,72.975427 202.89343,70.756998 205.63,70.756998 C 208.36658,70.756998 210.585,72.975427 210.585,75.711998 z"
|
||||
d="m 210.585,75.711998 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -36461,7 +33154,7 @@
|
||||
id="g8734-8"
|
||||
transform="matrix(1.0887723,0,0,1.065281,431.17616,631.18026)">
|
||||
<circle
|
||||
d="M 195.585,90.711998 C 195.585,93.448569 193.36658,95.666998 190.63,95.666998 C 187.89343,95.666998 185.675,93.448569 185.675,90.711998 C 185.675,87.975427 187.89343,85.756998 190.63,85.756998 C 193.36658,85.756998 195.585,87.975427 195.585,90.711998 z"
|
||||
d="m 195.585,90.711998 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -36476,7 +33169,7 @@
|
||||
id="g8738-2"
|
||||
transform="matrix(1.0887723,0,0,1.065281,431.17616,631.18026)">
|
||||
<circle
|
||||
d="M 210.585,90.711998 C 210.585,93.448569 208.36658,95.666998 205.63,95.666998 C 202.89343,95.666998 200.675,93.448569 200.675,90.711998 C 200.675,87.975427 202.89343,85.756998 205.63,85.756998 C 208.36658,85.756998 210.585,87.975427 210.585,90.711998 z"
|
||||
d="m 210.585,90.711998 c 0,2.736571 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.218429 -4.955,-4.955 0,-2.736571 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.218429 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -36491,7 +33184,7 @@
|
||||
id="g8742-5"
|
||||
transform="matrix(1.0887723,0,0,1.065281,431.17616,631.18026)">
|
||||
<circle
|
||||
d="M 195.585,105.712 C 195.585,108.44857 193.36658,110.667 190.63,110.667 C 187.89343,110.667 185.675,108.44857 185.675,105.712 C 185.675,102.97543 187.89343,100.757 190.63,100.757 C 193.36658,100.757 195.585,102.97543 195.585,105.712 z"
|
||||
d="m 195.585,105.712 c 0,2.73657 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.21843 -4.955,-4.955 0,-2.73657 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.21843 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -36506,7 +33199,7 @@
|
||||
id="g8746-8"
|
||||
transform="matrix(1.0887723,0,0,1.065281,431.17616,631.18026)">
|
||||
<circle
|
||||
d="M 210.585,105.712 C 210.585,108.44857 208.36658,110.667 205.63,110.667 C 202.89343,110.667 200.675,108.44857 200.675,105.712 C 200.675,102.97543 202.89343,100.757 205.63,100.757 C 208.36658,100.757 210.585,102.97543 210.585,105.712 z"
|
||||
d="m 210.585,105.712 c 0,2.73657 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.21843 -4.955,-4.955 0,-2.73657 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.21843 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -36521,7 +33214,7 @@
|
||||
id="g8750-5"
|
||||
transform="matrix(1.0887723,0,0,1.065281,431.17616,631.18026)">
|
||||
<circle
|
||||
d="M 195.585,120.712 C 195.585,123.44857 193.36658,125.667 190.63,125.667 C 187.89343,125.667 185.675,123.44857 185.675,120.712 C 185.675,117.97543 187.89343,115.757 190.63,115.757 C 193.36658,115.757 195.585,117.97543 195.585,120.712 z"
|
||||
d="m 195.585,120.712 c 0,2.73657 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.21843 -4.955,-4.955 0,-2.73657 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.21843 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -36536,7 +33229,7 @@
|
||||
id="g8754-0"
|
||||
transform="matrix(1.0887723,0,0,1.065281,431.17616,631.18026)">
|
||||
<circle
|
||||
d="M 210.585,120.712 C 210.585,123.44857 208.36658,125.667 205.63,125.667 C 202.89343,125.667 200.675,123.44857 200.675,120.712 C 200.675,117.97543 202.89343,115.757 205.63,115.757 C 208.36658,115.757 210.585,117.97543 210.585,120.712 z"
|
||||
d="m 210.585,120.712 c 0,2.73657 -2.21842,4.955 -4.955,4.955 -2.73657,0 -4.955,-2.21843 -4.955,-4.955 0,-2.73657 2.21843,-4.955 4.955,-4.955 2.73658,0 4.955,2.21843 4.955,4.955 z"
|
||||
style="fill:none;stroke:#dab452;stroke-width:1.5;stroke-linecap:square"
|
||||
sodipodi:ry="4.9549999"
|
||||
sodipodi:rx="4.9549999"
|
||||
@ -36621,22 +33314,22 @@
|
||||
inkscape:connector-curvature="0"
|
||||
id="path14094"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:none"
|
||||
d="M 1286.1956,653.36166 C 1286.1956,653.78235 1286.0277,654.13224 1285.692,654.41134 C 1285.3764,654.68236 1285.0043,654.81787 1284.5755,654.81786 C 1284.1427,654.81786 1283.7746,654.68438 1283.4712,654.41741 L 1281.4568,660.01166 C 1281.2667,660.54965 1280.937,660.81864 1280.4678,660.81864 C 1279.8368,660.81864 1279.4626,660.5456 1279.3453,659.99953 L 1278.3381,655.22439 L 1276.9729,659.26536 C 1276.8314,659.68604 1276.5603,660.02178 1276.1599,660.27256 C 1275.7837,660.51122 1275.3671,660.63055 1274.91,660.63055 L 1272.0279,660.63055 C 1272.2059,660.1856 1272.3576,659.87211 1272.483,659.69008 C 1272.7216,659.33817 1273.0007,659.16221 1273.3203,659.16221 C 1273.5144,659.16221 1273.8077,659.20471 1274.2001,659.28963 C 1274.5965,659.37053 1274.8958,659.41098 1275.0981,659.41098 C 1275.5228,659.41098 1275.8241,659.15007 1276.0021,658.62827 L 1277.8709,653.20997 C 1278.0287,652.74076 1278.1642,652.43941 1278.2775,652.30591 C 1278.4676,652.06322 1278.7669,651.94187 1279.1754,651.94186 C 1279.7862,651.94186 1280.1786,652.37266 1280.3525,653.23424 L 1281.1838,657.38443 L 1282.4398,653.85919 C 1282.9049,652.55671 1283.6128,651.90546 1284.5634,651.90545 C 1284.9922,651.90545 1285.3663,652.03895 1285.6859,652.30591 C 1286.0257,652.58907 1286.1956,652.94099 1286.1956,653.36166" />
|
||||
d="m 1286.1956,653.36166 c 0,0.42069 -0.1679,0.77058 -0.5036,1.04968 -0.3156,0.27102 -0.6877,0.40653 -1.1165,0.40652 -0.4328,0 -0.8009,-0.13348 -1.1043,-0.40045 l -2.0144,5.59425 c -0.1901,0.53799 -0.5198,0.80698 -0.989,0.80698 -0.631,0 -1.0052,-0.27304 -1.1225,-0.81911 l -1.0072,-4.77514 -1.3652,4.04097 c -0.1415,0.42068 -0.4126,0.75642 -0.813,1.0072 -0.3762,0.23866 -0.7928,0.35799 -1.2499,0.35799 l -2.8821,0 c 0.178,-0.44495 0.3297,-0.75844 0.4551,-0.94047 0.2386,-0.35191 0.5177,-0.52787 0.8373,-0.52787 0.1941,0 0.4874,0.0425 0.8798,0.12742 0.3964,0.0809 0.6957,0.12135 0.898,0.12135 0.4247,0 0.726,-0.26091 0.904,-0.78271 l 1.8688,-5.4183 c 0.1578,-0.46921 0.2933,-0.77056 0.4066,-0.90406 0.1901,-0.24269 0.4894,-0.36404 0.8979,-0.36405 0.6108,0 1.0032,0.4308 1.1771,1.29238 l 0.8313,4.15019 1.256,-3.52524 c 0.4651,-1.30248 1.173,-1.95373 2.1236,-1.95374 0.4288,0 0.8029,0.1335 1.1225,0.40046 0.3398,0.28316 0.5097,0.63508 0.5097,1.05575" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path14096"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:none"
|
||||
d="M 1291.7352,659.65974 C 1291.541,660.30695 1291.0455,660.63055 1290.2487,660.63055 L 1287.9491,660.63055 C 1287.2938,660.63055 1286.9661,660.42021 1286.9661,659.99953 C 1286.5252,660.50111 1285.9832,660.7519 1285.34,660.7519 C 1284.8668,660.7519 1284.4825,660.60628 1284.1872,660.31504 C 1283.8919,660.0238 1283.7443,659.64357 1283.7443,659.17434 C 1283.7443,658.32894 1284.0679,657.66151 1284.7151,657.17206 C 1285.3016,656.72712 1286.0277,656.50464 1286.8933,656.50464 L 1290.3579,656.50464 L 1289.2172,659.65974 L 1291.7352,659.65974 M 1287.8217,657.47544 L 1286.4807,657.47544 L 1286.056,658.88917 C 1286.032,658.97817 1286.02,659.05906 1286.02,659.13187 C 1286.02,659.48379 1286.3638,659.65974 1287.0515,659.65974 L 1287.8221,657.47544" />
|
||||
d="m 1291.7352,659.65974 c -0.1942,0.64721 -0.6897,0.97081 -1.4865,0.97081 l -2.2996,0 c -0.6553,0 -0.983,-0.21034 -0.983,-0.63102 -0.4409,0.50158 -0.9829,0.75237 -1.6261,0.75237 -0.4732,0 -0.8575,-0.14562 -1.1528,-0.43686 -0.2953,-0.29124 -0.4429,-0.67147 -0.4429,-1.1407 0,-0.8454 0.3236,-1.51283 0.9708,-2.00228 0.5865,-0.44494 1.3126,-0.66742 2.1782,-0.66742 l 3.4646,0 -1.1407,3.1551 2.518,0 m -3.9135,-2.1843 -1.341,0 -0.4247,1.41373 c -0.024,0.089 -0.036,0.16989 -0.036,0.2427 0,0.35192 0.3438,0.52787 1.0315,0.52787 l 0.7706,-2.1843" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path14098"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:none"
|
||||
d="M 1300.0477,659.65974 C 1299.9425,660.01571 1299.7099,660.27863 1299.3499,660.44852 C 1299.0951,660.56987 1298.8221,660.63055 1298.5308,660.63055 L 1296.1099,660.63055 C 1295.5557,660.63055 1295.2786,660.44852 1295.2786,660.08447 C 1295.2786,659.96312 1295.3066,659.82155 1295.3636,659.65974 L 1295.8247,658.35523 L 1293.7375,660.12088 C 1293.248,660.46066 1292.8456,660.63055 1292.5301,660.63055 L 1291.4136,660.63055 L 1292.8638,656.50464 L 1295.0541,656.50464 L 1294.3685,658.44624 L 1296.2191,656.92936 C 1296.7207,656.52082 1297.2647,656.32464 1297.8513,656.34081 C 1298.2477,656.35701 1298.4459,656.56734 1298.4459,656.97183 C 1298.4459,657.1215 1298.4139,657.28937 1298.3489,657.47544 L 1297.5662,659.65974 L 1300.0478,659.65974" />
|
||||
d="m 1300.0477,659.65974 c -0.1052,0.35597 -0.3378,0.61889 -0.6978,0.78878 -0.2548,0.12135 -0.5278,0.18203 -0.8191,0.18203 l -2.4209,0 c -0.5542,0 -0.8313,-0.18203 -0.8313,-0.54608 0,-0.12135 0.028,-0.26292 0.085,-0.42473 l 0.4611,-1.30451 -2.0872,1.76565 c -0.4895,0.33978 -0.8919,0.50967 -1.2074,0.50967 l -1.1165,0 1.4502,-4.12591 2.1903,0 -0.6856,1.9416 1.8506,-1.51688 c 0.5016,-0.40854 1.0456,-0.60472 1.6322,-0.58855 0.3964,0.0162 0.5946,0.22653 0.5946,0.63102 0,0.14967 -0.032,0.31754 -0.097,0.50361 l -0.7827,2.1843 2.4816,0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path14100"
|
||||
style="fill:#000000;fill-rule:evenodd;stroke:none"
|
||||
d="M 1310.314,656.50464 C 1310.1521,657.15184 1309.6667,657.47544 1308.8578,657.47544 L 1305.0595,657.47544 C 1305.193,657.56444 1305.3022,657.72825 1305.3871,657.96691 C 1305.4721,658.20152 1305.5065,658.4058 1305.4903,658.57973 C 1305.4333,659.25525 1305.1363,659.78514 1304.5984,660.16942 C 1304.0846,660.53751 1303.4172,660.72358 1302.5961,660.72763 C 1301.6414,660.73563 1300.9073,660.54762 1300.3936,660.16335 C 1299.9365,659.82357 1299.7079,659.3766 1299.7079,658.82243 C 1299.7079,658.71322 1299.7179,658.604 1299.7379,658.49478 C 1299.843,657.88399 1300.1464,657.40465 1300.648,657.05678 C 1301.1819,656.68869 1301.8939,656.50464 1302.7838,656.50464 L 1310.3136,656.50464 M 1303.7,657.47544 L 1302.3105,657.47544 L 1301.7644,659.02873 C 1301.7364,659.10963 1301.7214,659.18648 1301.7214,659.25929 C 1301.7214,659.60716 1302.045,659.7811 1302.6923,659.7811 C 1302.7693,659.7811 1302.8358,659.7791 1302.8925,659.7751 L 1303.6995,657.47551" />
|
||||
d="m 1310.314,656.50464 c -0.1619,0.6472 -0.6473,0.9708 -1.4562,0.9708 l -3.7983,0 c 0.1335,0.089 0.2427,0.25281 0.3276,0.49147 0.085,0.23461 0.1194,0.43889 0.1032,0.61282 -0.057,0.67552 -0.354,1.20541 -0.8919,1.58969 -0.5138,0.36809 -1.1812,0.55416 -2.0023,0.55821 -0.9547,0.008 -1.6888,-0.18001 -2.2025,-0.56428 -0.4571,-0.33978 -0.6857,-0.78675 -0.6857,-1.34092 0,-0.10921 0.01,-0.21843 0.03,-0.32765 0.1051,-0.61079 0.4085,-1.09013 0.9101,-1.438 0.5339,-0.36809 1.2459,-0.55214 2.1358,-0.55214 l 7.5298,0 m -6.6136,0.9708 -1.3895,0 -0.5461,1.55329 c -0.028,0.0809 -0.043,0.15775 -0.043,0.23056 0,0.34787 0.3236,0.52181 0.9709,0.52181 0.077,0 0.1435,-0.002 0.2002,-0.006 l 0.807,-2.29959" />
|
||||
</g>
|
||||
<g
|
||||
id="g25083"
|
||||
@ -36961,50 +33654,50 @@
|
||||
id="text29413">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1398.0763,618.22131 L 1396.3318,618.22131 L 1396.3318,611.64683 C 1395.6944,612.24283 1394.9432,612.68361 1394.0782,612.96918 L 1394.0782,611.38609 C 1394.5335,611.2371 1395.0281,610.95566 1395.562,610.54178 C 1396.0959,610.12376 1396.4622,609.63746 1396.6608,609.08285 L 1398.0763,609.08285 L 1398.0763,618.22131"
|
||||
d="m 1398.0763,618.22131 -1.7445,0 0,-6.57448 c -0.6374,0.596 -1.3886,1.03678 -2.2536,1.32235 l 0,-1.58309 c 0.4553,-0.14899 0.9499,-0.43043 1.4838,-0.84431 0.5339,-0.41802 0.9002,-0.90432 1.0988,-1.45893 l 1.4155,0 0,9.13846"
|
||||
id="path29439" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1399.5042,632.49396 L 1399.5042,634.11429 L 1393.3891,634.11429 C 1393.4551,633.50175 1393.654,632.92232 1393.9851,632.376 C 1394.3162,631.82554 1394.9701,631.09711 1395.9469,630.19072 C 1396.7333,629.45815 1397.2154,628.9615 1397.3934,628.70075 C 1397.6335,628.34068 1397.7535,627.98474 1397.7535,627.63294 C 1397.7535,627.2439 1397.6479,626.94591 1397.4369,626.73896 C 1397.2299,626.52789 1396.9423,626.42235 1396.5739,626.42234 C 1396.2097,626.42235 1395.92,626.53203 1395.7048,626.75137 C 1395.4896,626.97074 1395.3654,627.33495 1395.3323,627.84402 L 1393.594,627.67019 C 1393.6975,626.70999 1394.0224,626.02088 1394.5687,625.60286 C 1395.115,625.18485 1395.7979,624.97584 1396.6174,624.97583 C 1397.5155,624.97584 1398.2212,625.21796 1398.7344,625.70219 C 1399.2476,626.18644 1399.5042,626.78863 1399.5042,627.50877 C 1399.5042,627.91852 1399.4292,628.30964 1399.2807,628.68212 C 1399.1358,629.05048 1398.9041,629.43746 1398.5854,629.84306 C 1398.3743,630.11208 1397.9935,630.49906 1397.4431,631.00399 C 1396.8926,631.50892 1396.5429,631.84417 1396.3939,632.00972 C 1396.249,632.17527 1396.1311,632.33668 1396.04,632.49396 L 1399.5042,632.49396"
|
||||
d="m 1399.5042,632.49396 0,1.62033 -6.1151,0 c 0.066,-0.61254 0.2649,-1.19197 0.596,-1.73829 0.3311,-0.55046 0.985,-1.27889 1.9618,-2.18528 0.7864,-0.73257 1.2685,-1.22922 1.4465,-1.48997 0.2401,-0.36007 0.3601,-0.71601 0.3601,-1.06781 0,-0.38904 -0.1056,-0.68703 -0.3166,-0.89398 -0.207,-0.21107 -0.4946,-0.31661 -0.863,-0.31662 -0.3642,1e-5 -0.6539,0.10969 -0.8691,0.32903 -0.2152,0.21937 -0.3394,0.58358 -0.3725,1.09265 l -1.7383,-0.17383 c 0.1035,-0.9602 0.4284,-1.64931 0.9747,-2.06733 0.5463,-0.41801 1.2292,-0.62702 2.0487,-0.62703 0.8981,10e-6 1.6038,0.24213 2.117,0.72636 0.5132,0.48425 0.7698,1.08644 0.7698,1.80658 0,0.40975 -0.075,0.80087 -0.2235,1.17335 -0.1449,0.36836 -0.3766,0.75534 -0.6953,1.16094 -0.2111,0.26902 -0.5919,0.656 -1.1423,1.16093 -0.5505,0.50493 -0.9002,0.84018 -1.0492,1.00573 -0.1449,0.16555 -0.2628,0.32696 -0.3539,0.48424 l 3.4642,0"
|
||||
id="path29441" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1393.5505,647.59229 L 1395.2392,647.38742 C 1395.2932,647.81785 1395.4378,648.14689 1395.6737,648.37452 C 1395.9097,648.60216 1396.1952,648.71597 1396.5305,648.71597 C 1396.8905,648.71597 1397.1927,648.57939 1397.4369,648.30623 C 1397.6852,648.03307 1397.8094,647.66472 1397.8094,647.20117 C 1397.8094,646.76246 1397.6914,646.4148 1397.4555,646.15819 C 1397.2196,645.90159 1396.9319,645.77329 1396.5926,645.77329 C 1396.3691,645.77329 1396.1021,645.81679 1395.7917,645.90366 L 1395.9842,644.48198 C 1396.456,644.49438 1396.816,644.39298 1397.0644,644.17778 C 1397.3127,643.95843 1397.4369,643.66871 1397.4369,643.30863 C 1397.4369,643.00237 1397.3459,642.75818 1397.1637,642.57607 C 1396.9816,642.39397 1396.7395,642.30291 1396.4374,642.30291 C 1396.1394,642.30291 1395.8848,642.40638 1395.6737,642.61331 C 1395.4627,642.82026 1395.3344,643.12239 1395.2888,643.51971 L 1393.6809,643.24655 C 1393.7927,642.6961 1393.9603,642.25739 1394.1838,641.93041 C 1394.4114,641.59932 1394.726,641.34064 1395.1274,641.15439 C 1395.533,640.96401 1395.9862,640.86882 1396.487,640.86881 C 1397.3437,640.86882 1398.0308,641.14198 1398.5481,641.68829 C 1398.9744,642.13529 1399.1876,642.64022 1399.1876,643.20309 C 1399.1876,644.00189 1398.7509,644.63926 1397.8777,645.11522 C 1398.3991,645.22697 1398.8151,645.47737 1399.1255,645.86641 C 1399.44,646.25546 1399.5973,646.72521 1399.5973,647.27567 C 1399.5973,648.07446 1399.3055,648.75529 1398.722,649.31817 C 1398.1384,649.88104 1397.412,650.16248 1396.5429,650.16248 C 1395.7193,650.16248 1395.0364,649.92657 1394.4942,649.45475 C 1393.952,648.97879 1393.6375,648.35797 1393.5505,647.59229"
|
||||
d="m 1393.5505,647.59229 1.6887,-0.20487 c 0.054,0.43043 0.1986,0.75947 0.4345,0.9871 0.236,0.22764 0.5215,0.34145 0.8568,0.34145 0.36,0 0.6622,-0.13658 0.9064,-0.40974 0.2483,-0.27316 0.3725,-0.64151 0.3725,-1.10506 0,-0.43871 -0.118,-0.78637 -0.3539,-1.04298 -0.2359,-0.2566 -0.5236,-0.3849 -0.8629,-0.3849 -0.2235,0 -0.4905,0.0435 -0.8009,0.13037 l 0.1925,-1.42168 c 0.4718,0.0124 0.8318,-0.089 1.0802,-0.3042 0.2483,-0.21935 0.3725,-0.50907 0.3725,-0.86915 0,-0.30626 -0.091,-0.55045 -0.2732,-0.73256 -0.1821,-0.1821 -0.4242,-0.27316 -0.7263,-0.27316 -0.298,0 -0.5526,0.10347 -0.7637,0.3104 -0.211,0.20695 -0.3393,0.50908 -0.3849,0.9064 l -1.6079,-0.27316 c 0.1118,-0.55045 0.2794,-0.98916 0.5029,-1.31614 0.2276,-0.33109 0.5422,-0.58977 0.9436,-0.77602 0.4056,-0.19038 0.8588,-0.28557 1.3596,-0.28558 0.8567,10e-6 1.5438,0.27317 2.0611,0.81948 0.4263,0.447 0.6395,0.95193 0.6395,1.5148 0,0.7988 -0.4367,1.43617 -1.3099,1.91213 0.5214,0.11175 0.9374,0.36215 1.2478,0.75119 0.3145,0.38905 0.4718,0.8588 0.4718,1.40926 0,0.79879 -0.2918,1.47962 -0.8753,2.0425 -0.5836,0.56287 -1.31,0.84431 -2.1791,0.84431 -0.8236,0 -1.5065,-0.23591 -2.0487,-0.70773 -0.5422,-0.47596 -0.8567,-1.09678 -0.9437,-1.86246"
|
||||
id="path29443" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1397.0333,665.90026 L 1397.0333,664.06884 L 1393.3084,664.06884 L 1393.3084,662.54162 L 1397.2568,656.76179 L 1398.722,656.76179 L 1398.722,662.53542 L 1399.8519,662.53542 L 1399.8519,664.06884 L 1398.722,664.06884 L 1398.722,665.90026 L 1397.0333,665.90026 M 1397.0333,662.53542 L 1397.0333,659.42511 L 1394.9412,662.53542 L 1397.0333,662.53542"
|
||||
d="m 1397.0333,665.90026 0,-1.83142 -3.7249,0 0,-1.52722 3.9484,-5.77983 1.4652,0 0,5.77363 1.1299,0 0,1.53342 -1.1299,0 0,1.83142 -1.6887,0 m 0,-3.36484 0,-3.11031 -2.0921,3.11031 2.0921,0"
|
||||
id="path29445" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1393.6375,679.45275 L 1395.3758,679.27271 C 1395.4258,679.6659 1395.5723,679.97838 1395.8165,680.21015 C 1396.0607,680.43778 1396.3422,680.5516 1396.6608,680.5516 C 1397.0251,680.5516 1397.3334,680.40467 1397.5859,680.11082 C 1397.8383,679.81283 1397.9646,679.36584 1397.9646,678.76985 C 1397.9646,678.21111 1397.8383,677.7931 1397.5859,677.51579 C 1397.3375,677.23436 1397.0126,677.09364 1396.6112,677.09363 C 1396.1104,677.09364 1395.6613,677.31506 1395.264,677.75791 L 1393.8485,677.55304 L 1394.7425,672.81619 L 1399.3552,672.81619 L 1399.3552,674.44894 L 1396.0649,674.44894 L 1395.7917,675.99478 C 1396.1807,675.80027 1396.5781,675.703 1396.9837,675.703 C 1397.7576,675.703 1398.4136,675.98444 1398.9517,676.54731 C 1399.4897,677.11019 1399.7587,677.84069 1399.7587,678.73881 C 1399.7587,679.48793 1399.5414,680.15635 1399.1069,680.74405 C 1398.515,681.54698 1397.6935,681.94844 1396.6422,681.94844 C 1395.802,681.94844 1395.1171,681.72288 1394.5873,681.27175 C 1394.0575,680.82062 1393.7409,680.21429 1393.6375,679.45275"
|
||||
d="m 1393.6375,679.45275 1.7383,-0.18004 c 0.05,0.39319 0.1965,0.70567 0.4407,0.93744 0.2442,0.22763 0.5257,0.34145 0.8443,0.34145 0.3643,0 0.6726,-0.14693 0.9251,-0.44078 0.2524,-0.29799 0.3787,-0.74498 0.3787,-1.34097 0,-0.55874 -0.1263,-0.97675 -0.3787,-1.25406 -0.2484,-0.28143 -0.5733,-0.42215 -0.9747,-0.42216 -0.5008,1e-5 -0.9499,0.22143 -1.3472,0.66428 l -1.4155,-0.20487 0.894,-4.73685 4.6127,0 0,1.63275 -3.2903,0 -0.2732,1.54584 c 0.389,-0.19451 0.7864,-0.29178 1.192,-0.29178 0.7739,0 1.4299,0.28144 1.968,0.84431 0.538,0.56288 0.807,1.29338 0.807,2.1915 0,0.74912 -0.2173,1.41754 -0.6518,2.00524 -0.5919,0.80293 -1.4134,1.20439 -2.4647,1.20439 -0.8402,0 -1.5251,-0.22556 -2.0549,-0.67669 -0.5298,-0.45113 -0.8464,-1.05746 -0.9498,-1.819"
|
||||
id="path29447" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M 1399.5228,690.81375 L 1397.8342,690.99999 C 1397.7932,690.65234 1397.6852,690.39574 1397.5114,690.23018 C 1397.3375,690.06463 1397.112,689.98186 1396.8347,689.98185 C 1396.4663,689.98186 1396.1538,690.14741 1395.8972,690.4785 C 1395.6448,690.80962 1395.4854,691.49872 1395.4192,692.54583 C 1395.8538,692.03263 1396.3939,691.77602 1397.0395,691.77602 C 1397.768,691.77602 1398.3909,692.05332 1398.9082,692.60792 C 1399.4297,693.16252 1399.6904,693.87853 1399.6904,694.75595 C 1399.6904,695.68718 1399.4173,696.43424 1398.871,696.99711 C 1398.3246,697.55999 1397.6231,697.84142 1396.7664,697.84142 C 1395.8476,697.84142 1395.0922,697.48549 1394.5004,696.77362 C 1393.9085,696.0576 1393.6126,694.88633 1393.6126,693.25978 C 1393.6126,691.59185 1393.921,690.38953 1394.5376,689.65281 C 1395.1543,688.91612 1395.9552,688.54776 1396.9402,688.54776 C 1397.6314,688.54776 1398.2025,688.74229 1398.6537,689.13133 C 1399.1089,689.51624 1399.3987,690.07705 1399.5228,690.81375 M 1395.5682,694.61937 C 1395.5682,695.18639 1395.6986,695.6251 1395.9593,695.93551 C 1396.2201,696.24178 1396.5181,696.39492 1396.8533,696.39492 C 1397.1761,696.39492 1397.4451,696.26868 1397.6604,696.01622 C 1397.8756,695.76375 1397.9832,695.34987 1397.9832,694.77458 C 1397.9832,694.18273 1397.8673,693.75023 1397.6355,693.47706 C 1397.4038,693.19977 1397.114,693.06112 1396.7664,693.06111 C 1396.4311,693.06112 1396.1476,693.19356 1395.9159,693.45844 C 1395.6841,693.71919 1395.5682,694.10616 1395.5682,694.61937"
|
||||
d="m 1399.5228,690.81375 -1.6886,0.18624 c -0.041,-0.34765 -0.149,-0.60425 -0.3228,-0.76981 -0.1739,-0.16555 -0.3994,-0.24832 -0.6767,-0.24833 -0.3684,10e-6 -0.6809,0.16556 -0.9375,0.49665 -0.2524,0.33112 -0.4118,1.02022 -0.478,2.06733 0.4346,-0.5132 0.9747,-0.76981 1.6203,-0.76981 0.7285,0 1.3514,0.2773 1.8687,0.8319 0.5215,0.5546 0.7822,1.27061 0.7822,2.14803 0,0.93123 -0.2731,1.67829 -0.8194,2.24116 -0.5464,0.56288 -1.2479,0.84431 -2.1046,0.84431 -0.9188,0 -1.6742,-0.35593 -2.266,-1.0678 -0.5919,-0.71602 -0.8878,-1.88729 -0.8878,-3.51384 0,-1.66793 0.3084,-2.87025 0.925,-3.60697 0.6167,-0.73669 1.4176,-1.10505 2.4026,-1.10505 0.6912,0 1.2623,0.19453 1.7135,0.58357 0.4552,0.38491 0.745,0.94572 0.8691,1.68242 m -3.9546,3.80562 c 0,0.56702 0.1304,1.00573 0.3911,1.31614 0.2608,0.30627 0.5588,0.45941 0.894,0.45941 0.3228,0 0.5918,-0.12624 0.8071,-0.3787 0.2152,-0.25247 0.3228,-0.66635 0.3228,-1.24164 0,-0.59185 -0.1159,-1.02435 -0.3477,-1.29752 -0.2317,-0.27729 -0.5215,-0.41594 -0.8691,-0.41595 -0.3353,10e-6 -0.6188,0.13245 -0.8505,0.39733 -0.2318,0.26075 -0.3477,0.64772 -0.3477,1.16093"
|
||||
id="path29449" />
|
||||
</g>
|
||||
<g
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
|
||||
id="text15586">
|
||||
<path
|
||||
d="M 1244.4045,614.53143 L 1244.4045,605.94159 L 1250.2932,605.94159 L 1250.2932,607.39471 L 1246.1389,607.39471 L 1246.1389,609.42792 L 1249.7249,609.42792 L 1249.7249,610.88104 L 1246.1389,610.88104 L 1246.1389,614.53143 L 1244.4045,614.53143"
|
||||
d="m 1244.4045,614.53143 0,-8.58984 5.8887,0 0,1.45312 -4.1543,0 0,2.03321 3.586,0 0,1.45312 -3.586,0 0,3.65039 -1.7344,0"
|
||||
id="path15604"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 1251.717,614.53143 L 1251.717,605.94159 L 1253.3635,605.94159 L 1253.3635,614.53143 L 1251.717,614.53143"
|
||||
d="m 1251.717,614.53143 0,-8.58984 1.6465,0 0,8.58984 -1.6465,0"
|
||||
id="path15606"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 1258.6487,612.55096 L 1260.2893,612.82635 C 1260.0784,613.42792 1259.7444,613.8869 1259.2874,614.20331 C 1258.8342,614.51581 1258.2659,614.67206 1257.5823,614.67206 C 1256.5002,614.67206 1255.6995,614.31854 1255.1799,613.61151 C 1254.7698,613.04511 1254.5647,612.33026 1254.5647,611.46698 C 1254.5647,610.43573 1254.8342,609.62909 1255.3733,609.04706 C 1255.9124,608.46113 1256.594,608.16816 1257.4182,608.16815 C 1258.344,608.16816 1259.0745,608.4748 1259.6096,609.08807 C 1260.1448,609.69745 1260.4006,610.633 1260.3772,611.89471 L 1256.2522,611.89471 C 1256.2642,612.383 1256.3967,612.76386 1256.6506,613.03729 C 1256.9045,613.30682 1257.2209,613.44159 1257.5999,613.44159 C 1257.8577,613.44159 1258.0745,613.37129 1258.2502,613.23065 C 1258.426,613.09003 1258.5588,612.86347 1258.6487,612.55096 M 1258.7427,610.8869 C 1258.7307,610.41034 1258.608,610.04902 1258.3736,609.80292 C 1258.1392,609.55292 1257.8541,609.42792 1257.5181,609.42792 C 1257.1587,609.42792 1256.8619,609.55878 1256.6275,609.8205 C 1256.3931,610.08222 1256.2779,610.43769 1256.2818,610.8869 L 1258.7427,610.8869"
|
||||
d="m 1258.6487,612.55096 1.6406,0.27539 c -0.2109,0.60157 -0.5449,1.06055 -1.0019,1.37696 -0.4532,0.3125 -1.0215,0.46875 -1.7051,0.46875 -1.0821,0 -1.8828,-0.35352 -2.4024,-1.06055 -0.4101,-0.5664 -0.6152,-1.28125 -0.6152,-2.14453 0,-1.03125 0.2695,-1.83789 0.8086,-2.41992 0.5391,-0.58593 1.2207,-0.8789 2.0449,-0.87891 0.9258,10e-6 1.6563,0.30665 2.1914,0.91992 0.5352,0.60938 0.791,1.54493 0.7676,2.80664 l -4.125,0 c 0.012,0.48829 0.1445,0.86915 0.3984,1.14258 0.2539,0.26953 0.5703,0.4043 0.9493,0.4043 0.2578,0 0.4746,-0.0703 0.6503,-0.21094 0.1758,-0.14062 0.3086,-0.36718 0.3985,-0.67969 m 0.094,-1.66406 c -0.012,-0.47656 -0.1347,-0.83788 -0.3691,-1.08398 -0.2344,-0.25 -0.5195,-0.375 -0.8555,-0.375 -0.3594,0 -0.6562,0.13086 -0.8906,0.39258 -0.2344,0.26172 -0.3496,0.61719 -0.3457,1.0664 l 2.4609,0"
|
||||
id="path15608"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 1260.9338,614.53143 L 1263.178,611.32635 L 1261.0276,608.30878 L 1263.0374,608.30878 L 1264.1389,610.01971 L 1265.2991,608.30878 L 1267.2327,608.30878 L 1265.1233,611.25604 L 1267.426,614.53143 L 1265.4045,614.53143 L 1264.1389,612.6037 L 1262.8616,614.53143 L 1260.9338,614.53143"
|
||||
d="m 1260.9338,614.53143 2.2442,-3.20508 -2.1504,-3.01757 2.0098,0 1.1015,1.71093 1.1602,-1.71093 1.9336,0 -2.1094,2.94726 2.3027,3.27539 -2.0215,0 -1.2656,-1.92773 -1.2773,1.92773 -1.9278,0"
|
||||
id="path15610"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 1268.4045,607.46503 L 1268.4045,605.94159 L 1270.051,605.94159 L 1270.051,607.46503 L 1268.4045,607.46503 M 1268.4045,614.53143 L 1268.4045,608.30878 L 1270.051,608.30878 L 1270.051,614.53143 L 1268.4045,614.53143"
|
||||
d="m 1268.4045,607.46503 0,-1.52344 1.6465,0 0,1.52344 -1.6465,0 m 0,7.0664 0,-6.22265 1.6465,0 0,6.22265 -1.6465,0"
|
||||
id="path15612"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -37012,19 +33705,19 @@
|
||||
style="font-size:12px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
|
||||
id="text15590">
|
||||
<path
|
||||
d="M 1306.5652,695.73376 L 1306.5652,687.14392 L 1309.1609,687.14392 L 1310.7195,693.0033 L 1312.2605,687.14392 L 1314.8621,687.14392 L 1314.8621,695.73376 L 1313.2507,695.73376 L 1313.2507,688.97205 L 1311.5457,695.73376 L 1309.8757,695.73376 L 1308.1765,688.97205 L 1308.1765,695.73376 L 1306.5652,695.73376"
|
||||
d="m 1306.5652,695.73376 0,-8.58984 2.5957,0 1.5586,5.85938 1.541,-5.85938 2.6016,0 0,8.58984 -1.6114,0 0,-6.76171 -1.705,6.76171 -1.67,0 -1.6992,-6.76171 0,6.76171 -1.6113,0"
|
||||
id="path15595"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 1317.8152,691.40955 L 1316.321,691.14001 C 1316.489,690.53846 1316.7781,690.09315 1317.1882,689.80408 C 1317.5984,689.51502 1318.2078,689.37049 1319.0164,689.37048 C 1319.7507,689.37049 1320.2976,689.45838 1320.657,689.63416 C 1321.0164,689.80604 1321.2683,690.02674 1321.4128,690.29626 C 1321.5613,690.56189 1321.6355,691.05213 1321.6355,691.76697 L 1321.6175,693.68884 C 1321.6175,694.23572 1321.6425,694.64002 1321.6935,694.90173 C 1321.7485,695.15955 1321.8478,695.43689 1321.9923,695.73376 L 1320.3634,695.73376 C 1320.3204,695.62439 1320.2674,695.46228 1320.2052,695.24744 C 1320.1782,695.14974 1320.1582,695.08533 1320.1462,695.05408 C 1319.865,695.32752 1319.5642,695.53259 1319.2439,695.66931 C 1318.9236,695.80603 1318.5818,695.87439 1318.2185,695.87439 C 1317.5779,695.87439 1317.072,695.70056 1316.7009,695.35291 C 1316.3337,695.00525 1316.1501,694.5658 1316.1501,694.03455 C 1316.1501,693.68299 1316.2341,693.37049 1316.4021,693.09705 C 1316.57,692.81971 1316.8044,692.60877 1317.1052,692.46423 C 1317.4099,692.3158 1317.8474,692.18689 1318.4177,692.07751 C 1319.1872,691.93299 1319.7204,691.79822 1320.0173,691.67322 L 1320.0173,691.50916 C 1320.0173,691.19275 1319.9393,690.96814 1319.7829,690.83533 C 1319.6267,690.69861 1319.3318,690.63025 1318.8982,690.63025 C 1318.6052,690.63025 1318.3767,690.68885 1318.2126,690.80603 C 1318.0486,690.91932 1317.9157,691.12049 1317.8142,691.40955 M 1320.0173,692.74548 C 1319.8064,692.81578 1319.4724,692.89978 1319.0154,692.99744 C 1318.5583,693.09514 1318.2595,693.1908 1318.1189,693.28455 C 1317.904,693.43689 1317.7966,693.63025 1317.7966,693.86462 C 1317.7966,694.09509 1317.8826,694.29431 1318.0544,694.46228 C 1318.2263,694.63025 1318.445,694.71423 1318.7107,694.71423 C 1319.0075,694.71423 1319.2907,694.61653 1319.5603,694.42126 C 1319.7595,694.27283 1319.8904,694.09119 1319.9529,693.87634 C 1319.9959,693.73572 1320.0169,693.46814 1320.0169,693.07361 L 1320.0169,692.74548"
|
||||
d="m 1317.8152,691.40955 -1.4942,-0.26954 c 0.168,-0.60155 0.4571,-1.04686 0.8672,-1.33593 0.4102,-0.28906 1.0196,-0.43359 1.8282,-0.4336 0.7343,10e-6 1.2812,0.0879 1.6406,0.26368 0.3594,0.17188 0.6113,0.39258 0.7558,0.6621 0.1485,0.26563 0.2227,0.75587 0.2227,1.47071 l -0.018,1.92187 c 0,0.54688 0.025,0.95118 0.076,1.21289 0.055,0.25782 0.1543,0.53516 0.2988,0.83203 l -1.6289,0 c -0.043,-0.10937 -0.096,-0.27148 -0.1582,-0.48632 -0.027,-0.0977 -0.047,-0.16211 -0.059,-0.19336 -0.2812,0.27344 -0.582,0.47851 -0.9023,0.61523 -0.3203,0.13672 -0.6621,0.20508 -1.0254,0.20508 -0.6406,0 -1.1465,-0.17383 -1.5176,-0.52148 -0.3672,-0.34766 -0.5508,-0.78711 -0.5508,-1.31836 0,-0.35156 0.084,-0.66406 0.252,-0.9375 0.1679,-0.27734 0.4023,-0.48828 0.7031,-0.63282 0.3047,-0.14843 0.7422,-0.27734 1.3125,-0.38672 0.7695,-0.14452 1.3027,-0.27929 1.5996,-0.40429 l 0,-0.16406 c 0,-0.31641 -0.078,-0.54102 -0.2344,-0.67383 -0.1562,-0.13672 -0.4511,-0.20508 -0.8847,-0.20508 -0.293,0 -0.5215,0.0586 -0.6856,0.17578 -0.164,0.11329 -0.2969,0.31446 -0.3984,0.60352 m 2.2031,1.33593 c -0.2109,0.0703 -0.5449,0.1543 -1.0019,0.25196 -0.4571,0.0977 -0.7559,0.19336 -0.8965,0.28711 -0.2149,0.15234 -0.3223,0.3457 -0.3223,0.58007 0,0.23047 0.086,0.42969 0.2578,0.59766 0.1719,0.16797 0.3906,0.25195 0.6563,0.25195 0.2968,0 0.58,-0.0977 0.8496,-0.29297 0.1992,-0.14843 0.3301,-0.33007 0.3926,-0.54492 0.043,-0.14062 0.064,-0.4082 0.064,-0.80273 l 0,-0.32813"
|
||||
id="path15597"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 1323.2644,688.66736 L 1323.2644,687.14392 L 1324.9109,687.14392 L 1324.9109,688.66736 L 1323.2644,688.66736 M 1323.2644,695.73376 L 1323.2644,689.51111 L 1324.9109,689.51111 L 1324.9109,695.73376 L 1323.2644,695.73376"
|
||||
d="m 1323.2644,688.66736 0,-1.52344 1.6465,0 0,1.52344 -1.6465,0 m 0,7.0664 0,-6.22265 1.6465,0 0,6.22265 -1.6465,0"
|
||||
id="path15599"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="M 1332.2527,695.73376 L 1330.6062,695.73376 L 1330.6062,692.55798 C 1330.6062,691.88611 1330.5712,691.45252 1330.5007,691.2572 C 1330.4307,691.05799 1330.3152,690.90369 1330.155,690.79431 C 1329.9988,690.68494 1329.8093,690.63025 1329.5867,690.63025 C 1329.3015,690.63025 1329.0457,690.70835 1328.8191,690.86462 C 1328.5925,691.02088 1328.4363,691.22791 1328.3503,691.48572 C 1328.2683,691.74353 1328.2273,692.2201 1328.2273,692.91541 L 1328.2273,695.73376 L 1326.5808,695.73376 L 1326.5808,689.51111 L 1328.1101,689.51111 L 1328.1101,690.42517 C 1328.6531,689.72205 1329.3367,689.37049 1330.1609,689.37048 C 1330.5242,689.37049 1330.8562,689.43688 1331.157,689.5697 C 1331.4578,689.69861 1331.6843,689.86463 1331.8367,690.06775 C 1331.9929,690.27088 1332.1003,690.50135 1332.1589,690.75916 C 1332.2209,691.01697 1332.2529,691.38611 1332.2529,691.86658 L 1332.2529,695.73376"
|
||||
d="m 1332.2527,695.73376 -1.6465,0 0,-3.17578 c 0,-0.67187 -0.035,-1.10546 -0.1055,-1.30078 -0.07,-0.19921 -0.1855,-0.35351 -0.3457,-0.46289 -0.1562,-0.10937 -0.3457,-0.16406 -0.5683,-0.16406 -0.2852,0 -0.541,0.0781 -0.7676,0.23437 -0.2266,0.15626 -0.3828,0.36329 -0.4688,0.6211 -0.082,0.25781 -0.123,0.73438 -0.123,1.42969 l 0,2.81835 -1.6465,0 0,-6.22265 1.5293,0 0,0.91406 c 0.543,-0.70312 1.2266,-1.05468 2.0508,-1.05469 0.3633,10e-6 0.6953,0.0664 0.9961,0.19922 0.3008,0.12891 0.5273,0.29493 0.6797,0.49805 0.1562,0.20313 0.2636,0.4336 0.3222,0.69141 0.062,0.25781 0.094,0.62695 0.094,1.10742 l 0,3.86718"
|
||||
id="path15601"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
@ -37378,7 +34071,7 @@
|
||||
style="fill:none;stroke:#000000;stroke-width:0.99212599px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<ellipse
|
||||
id="ellipse8748"
|
||||
d="M 253.1,45.400002 C 253.1,70.197588 221.71516,90.300003 183,90.300003 C 144.28484,90.300003 112.9,70.197588 112.9,45.400002 C 112.9,20.602415 144.28484,0.5 183,0.5 C 221.71516,0.5 253.1,20.602415 253.1,45.400002 z"
|
||||
d="m 253.1,45.400002 c 0,24.797586 -31.38484,44.900001 -70.1,44.900001 -38.71516,0 -70.1,-20.102415 -70.1,-44.900001 C 112.9,20.602415 144.28484,0.5 183,0.5 c 38.71516,0 70.1,20.102415 70.1,44.900002 z"
|
||||
cx="183"
|
||||
rx="70.099998"
|
||||
cy="45.400002"
|
||||
@ -37391,7 +34084,7 @@
|
||||
style="fill:#ff0000;fill-rule:evenodd;stroke:#000000;stroke-width:0.99199998px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<ellipse
|
||||
id="ellipse8750"
|
||||
d="M 253.1,51.299999 C 253.1,76.097585 221.71516,96.200001 183,96.200001 C 144.28484,96.200001 112.9,76.097585 112.9,51.299999 C 112.9,26.502413 144.28484,6.3999977 183,6.3999977 C 221.71516,6.3999977 253.1,26.502413 253.1,51.299999 z"
|
||||
d="m 253.1,51.299999 c 0,24.797586 -31.38484,44.900002 -70.1,44.900002 -38.71516,0 -70.1,-20.102416 -70.1,-44.900002 0,-24.797586 31.38484,-44.9000013 70.1,-44.9000013 38.71516,0 70.1,20.1024153 70.1,44.9000013 z"
|
||||
cx="183"
|
||||
rx="70.099998"
|
||||
cy="51.299999"
|
||||
@ -37404,7 +34097,7 @@
|
||||
style="fill:#443838;fill-rule:evenodd;stroke:#000000;stroke-width:0.99199998px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<ellipse
|
||||
id="ellipse8752"
|
||||
d="M 253.1,45.400002 C 253.1,70.197588 221.71516,90.300003 183,90.300003 C 144.28484,90.300003 112.9,70.197588 112.9,45.400002 C 112.9,20.602415 144.28484,0.5 183,0.5 C 221.71516,0.5 253.1,20.602415 253.1,45.400002 z"
|
||||
d="m 253.1,45.400002 c 0,24.797586 -31.38484,44.900001 -70.1,44.900001 -38.71516,0 -70.1,-20.102415 -70.1,-44.900001 C 112.9,20.602415 144.28484,0.5 183,0.5 c 38.71516,0 70.1,20.102415 70.1,44.900002 z"
|
||||
cx="183"
|
||||
rx="70.099998"
|
||||
cy="45.400002"
|
||||
@ -37530,7 +34223,7 @@
|
||||
style="fill:#b3b3b3;fill-rule:nonzero;stroke:#000000;stroke-width:0.99212599px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<ellipse
|
||||
id="ellipse8796"
|
||||
d="M 198.1,45.400002 C 198.1,50.370564 191.3395,54.400002 183,54.400002 C 174.6605,54.400002 167.9,50.370564 167.9,45.400002 C 167.9,40.429439 174.6605,36.400002 183,36.400002 C 191.3395,36.400002 198.1,40.429439 198.1,45.400002 z"
|
||||
d="m 198.1,45.400002 c 0,4.970562 -6.7605,9 -15.1,9 -8.3395,0 -15.1,-4.029438 -15.1,-9 0,-4.970563 6.7605,-9 15.1,-9 8.3395,0 15.1,4.029437 15.1,9 z"
|
||||
cx="183"
|
||||
rx="15.1"
|
||||
cy="45.400002"
|
||||
@ -41359,7 +38052,7 @@
|
||||
<g
|
||||
id="g3887-1-0">
|
||||
<circle
|
||||
d="M 386.44699,686.89099 C 386.44699,688.40977 385.21577,689.64099 383.69699,689.64099 C 382.17821,689.64099 380.94699,688.40977 380.94699,686.89099 C 380.94699,685.37221 382.17821,684.14099 383.69699,684.14099 C 385.21577,684.14099 386.44699,685.37221 386.44699,686.89099 z"
|
||||
d="m 386.44699,686.89099 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51878,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51878 1.23122,-2.75 2.75,-2.75 1.51878,0 2.75,1.23122 2.75,2.75 z"
|
||||
sodipodi:ry="2.75"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:cy="686.89099"
|
||||
@ -41705,7 +38398,7 @@
|
||||
<g
|
||||
id="g3913-3-1">
|
||||
<circle
|
||||
d="M 411.435,717.672 C 411.435,719.19078 410.20378,720.422 408.685,720.422 C 407.16621,720.422 405.935,719.19078 405.935,717.672 C 405.935,716.15321 407.16621,714.922 408.685,714.922 C 410.20378,714.922 411.435,716.15321 411.435,717.672 z"
|
||||
d="m 411.435,717.672 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51879,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51879 1.23121,-2.75 2.75,-2.75 1.51878,0 2.75,1.23121 2.75,2.75 z"
|
||||
sodipodi:ry="2.75"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:cy="717.672"
|
||||
@ -42348,7 +39041,7 @@
|
||||
<g
|
||||
id="g3806-2">
|
||||
<circle
|
||||
d="M 586.448,613.99402 C 586.448,615.5128 585.21678,616.74402 583.698,616.74402 C 582.17921,616.74402 580.948,615.5128 580.948,613.99402 C 580.948,612.47524 582.17921,611.24402 583.698,611.24402 C 585.21678,611.24402 586.448,612.47524 586.448,613.99402 z"
|
||||
d="m 586.448,613.99402 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51879,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51878 1.23121,-2.75 2.75,-2.75 1.51878,0 2.75,1.23122 2.75,2.75 z"
|
||||
sodipodi:ry="2.75"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:cy="613.99402"
|
||||
@ -42717,7 +39410,7 @@
|
||||
<g
|
||||
id="g3851-2">
|
||||
<circle
|
||||
d="M 216.804,613.62 C 216.804,615.13878 215.57278,616.37 214.054,616.37 C 212.53522,616.37 211.304,615.13878 211.304,613.62 C 211.304,612.10121 212.53522,610.87 214.054,610.87 C 215.57278,610.87 216.804,612.10121 216.804,613.62 z"
|
||||
d="m 216.804,613.62 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51878,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51879 1.23122,-2.75 2.75,-2.75 1.51878,0 2.75,1.23121 2.75,2.75 z"
|
||||
sodipodi:ry="2.75"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:cy="613.62"
|
||||
@ -43436,7 +40129,7 @@
|
||||
<g
|
||||
id="g3806-3-8-3">
|
||||
<circle
|
||||
d="M 586.448,613.99402 C 586.448,615.5128 585.21678,616.74402 583.698,616.74402 C 582.17921,616.74402 580.948,615.5128 580.948,613.99402 C 580.948,612.47524 582.17921,611.24402 583.698,611.24402 C 585.21678,611.24402 586.448,612.47524 586.448,613.99402 z"
|
||||
d="m 586.448,613.99402 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51879,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51878 1.23121,-2.75 2.75,-2.75 1.51878,0 2.75,1.23122 2.75,2.75 z"
|
||||
sodipodi:ry="2.75"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:cy="613.99402"
|
||||
@ -43537,7 +40230,7 @@
|
||||
<g
|
||||
id="g3806-3-8">
|
||||
<circle
|
||||
d="M 586.448,613.99402 C 586.448,615.5128 585.21678,616.74402 583.698,616.74402 C 582.17921,616.74402 580.948,615.5128 580.948,613.99402 C 580.948,612.47524 582.17921,611.24402 583.698,611.24402 C 585.21678,611.24402 586.448,612.47524 586.448,613.99402 z"
|
||||
d="m 586.448,613.99402 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51879,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51878 1.23121,-2.75 2.75,-2.75 1.51878,0 2.75,1.23122 2.75,2.75 z"
|
||||
sodipodi:ry="2.75"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:cy="613.99402"
|
||||
@ -44640,7 +41333,7 @@
|
||||
sodipodi:cy="686.89099"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:ry="2.75"
|
||||
d="M 386.44699,686.89099 C 386.44699,688.40977 385.21577,689.64099 383.69699,689.64099 C 382.17821,689.64099 380.94699,688.40977 380.94699,686.89099 C 380.94699,685.37221 382.17821,684.14099 383.69699,684.14099 C 385.21577,684.14099 386.44699,685.37221 386.44699,686.89099 z" />
|
||||
d="m 386.44699,686.89099 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51878,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51878 1.23122,-2.75 2.75,-2.75 1.51878,0 2.75,1.23122 2.75,2.75 z" />
|
||||
<polygon
|
||||
id="polygon3891-8"
|
||||
points="385.232,688.145 384.951,688.426 383.697,687.172 382.443,688.426 382.162,688.145 383.416,686.891 382.162,685.637 382.443,685.355 383.697,686.609 384.951,685.355 385.232,685.637 383.978,686.891 "
|
||||
@ -44706,7 +41399,7 @@
|
||||
sodipodi:cy="717.672"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:ry="2.75"
|
||||
d="M 411.435,717.672 C 411.435,719.19078 410.20378,720.422 408.685,720.422 C 407.16621,720.422 405.935,719.19078 405.935,717.672 C 405.935,716.15321 407.16621,714.922 408.685,714.922 C 410.20378,714.922 411.435,716.15321 411.435,717.672 z" />
|
||||
d="m 411.435,717.672 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51879,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51879 1.23121,-2.75 2.75,-2.75 1.51878,0 2.75,1.23121 2.75,2.75 z" />
|
||||
<polygon
|
||||
id="polygon3917-1"
|
||||
points="408.685,717.953 409.938,719.207 410.22,718.926 408.966,717.672 410.22,716.418 409.938,716.137 408.685,717.391 407.431,716.137 407.149,716.418 408.403,717.672 407.149,718.926 407.431,719.207 "
|
||||
@ -44834,7 +41527,7 @@
|
||||
sodipodi:cy="613.62"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:ry="2.75"
|
||||
d="M 216.804,613.62 C 216.804,615.13878 215.57278,616.37 214.054,616.37 C 212.53522,616.37 211.304,615.13878 211.304,613.62 C 211.304,612.10121 212.53522,610.87 214.054,610.87 C 215.57278,610.87 216.804,612.10121 216.804,613.62 z" />
|
||||
d="m 216.804,613.62 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51878,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51879 1.23122,-2.75 2.75,-2.75 1.51878,0 2.75,1.23121 2.75,2.75 z" />
|
||||
<polygon
|
||||
id="polygon3855-2"
|
||||
points="213.773,613.621 212.52,612.367 212.801,612.086 214.055,613.34 215.309,612.086 215.59,612.367 214.336,613.621 215.59,614.875 215.309,615.156 214.055,613.901 212.801,615.156 212.52,614.875 "
|
||||
@ -45857,7 +42550,7 @@
|
||||
sodipodi:cy="613.62"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:ry="2.75"
|
||||
d="M 216.804,613.62 C 216.804,615.13878 215.57278,616.37 214.054,616.37 C 212.53522,616.37 211.304,615.13878 211.304,613.62 C 211.304,612.10121 212.53522,610.87 214.054,610.87 C 215.57278,610.87 216.804,612.10121 216.804,613.62 z" />
|
||||
d="m 216.804,613.62 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51878,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51879 1.23122,-2.75 2.75,-2.75 1.51878,0 2.75,1.23121 2.75,2.75 z" />
|
||||
<polygon
|
||||
id="polygon3855"
|
||||
points="215.309,615.156 214.055,613.901 212.801,615.156 212.52,614.875 213.773,613.621 212.52,612.367 212.801,612.086 214.055,613.34 215.309,612.086 215.59,612.367 214.336,613.621 215.59,614.875 "
|
||||
@ -45954,7 +42647,7 @@
|
||||
sodipodi:cy="613.99402"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:ry="2.75"
|
||||
d="M 586.448,613.99402 C 586.448,615.5128 585.21678,616.74402 583.698,616.74402 C 582.17921,616.74402 580.948,615.5128 580.948,613.99402 C 580.948,612.47524 582.17921,611.24402 583.698,611.24402 C 585.21678,611.24402 586.448,612.47524 586.448,613.99402 z" />
|
||||
d="m 586.448,613.99402 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51879,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51878 1.23121,-2.75 2.75,-2.75 1.51878,0 2.75,1.23122 2.75,2.75 z" />
|
||||
<polygon
|
||||
id="polygon3810"
|
||||
points="582.163,612.74 583.417,613.994 582.163,615.248 582.444,615.529 583.698,614.275 584.952,615.529 585.233,615.248 583.979,613.994 585.233,612.74 584.952,612.459 583.698,613.713 582.444,612.459 "
|
||||
@ -46115,7 +42808,7 @@
|
||||
sodipodi:cy="686.89099"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:ry="2.75"
|
||||
d="M 386.44699,686.89099 C 386.44699,688.40977 385.21577,689.64099 383.69699,689.64099 C 382.17821,689.64099 380.94699,688.40977 380.94699,686.89099 C 380.94699,685.37221 382.17821,684.14099 383.69699,684.14099 C 385.21577,684.14099 386.44699,685.37221 386.44699,686.89099 z" />
|
||||
d="m 386.44699,686.89099 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51878,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51878 1.23122,-2.75 2.75,-2.75 1.51878,0 2.75,1.23122 2.75,2.75 z" />
|
||||
<polygon
|
||||
id="polygon3891"
|
||||
points="383.416,686.891 382.162,685.637 382.443,685.355 383.697,686.609 384.951,685.355 385.232,685.637 383.978,686.891 385.232,688.145 384.951,688.426 383.697,687.172 382.443,688.426 382.162,688.145 "
|
||||
@ -46181,7 +42874,7 @@
|
||||
sodipodi:cy="717.672"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:ry="2.75"
|
||||
d="M 411.435,717.672 C 411.435,719.19078 410.20378,720.422 408.685,720.422 C 407.16621,720.422 405.935,719.19078 405.935,717.672 C 405.935,716.15321 407.16621,714.922 408.685,714.922 C 410.20378,714.922 411.435,716.15321 411.435,717.672 z" />
|
||||
d="m 411.435,717.672 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51879,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51879 1.23121,-2.75 2.75,-2.75 1.51878,0 2.75,1.23121 2.75,2.75 z" />
|
||||
<polygon
|
||||
id="polygon3917"
|
||||
points="409.938,716.137 408.685,717.391 407.431,716.137 407.149,716.418 408.403,717.672 407.149,718.926 407.431,719.207 408.685,717.953 409.938,719.207 410.22,718.926 408.966,717.672 410.22,716.418 "
|
||||
@ -46287,7 +42980,7 @@
|
||||
transform="translate(-1.0465068e-7,-4.4182544e-5)">
|
||||
<path
|
||||
transform="matrix(-1,0,0,1,681.77091,708.1928)"
|
||||
d="M 191.31786,1225.9447 C 191.31786,1237.067 148.48989,1246.0834 95.658928,1246.0834 C 42.827961,1246.0834 0,1237.067 0,1225.9447 C 0,1214.8224 42.827961,1205.806 95.658928,1205.806 C 148.48989,1205.806 191.31786,1214.8224 191.31786,1225.9447 z"
|
||||
d="m 191.31786,1225.9447 c 0,11.1223 -42.82797,20.1387 -95.658932,20.1387 C 42.827961,1246.0834 0,1237.067 0,1225.9447 c 0,-11.1223 42.827961,-20.1387 95.658928,-20.1387 52.830962,0 95.658932,9.0164 95.658932,20.1387 z"
|
||||
sodipodi:ry="20.138721"
|
||||
sodipodi:rx="95.658928"
|
||||
sodipodi:cy="1225.9447"
|
||||
@ -46366,7 +43059,7 @@
|
||||
y="1906.3666" />
|
||||
<path
|
||||
transform="translate(-0.00459003,-104.83732)"
|
||||
d="M 314.66354,2090.5566 C 314.66354,2093.0956 312.43178,2095.1538 309.67877,2095.1538 C 306.92576,2095.1538 304.694,2093.0956 304.694,2090.5566 C 304.694,2088.0177 306.92576,2085.9595 309.67877,2085.9595 C 312.43178,2085.9595 314.66354,2088.0177 314.66354,2090.5566 z"
|
||||
d="m 314.66354,2090.5566 c 0,2.539 -2.23176,4.5972 -4.98477,4.5972 -2.75301,0 -4.98477,-2.0582 -4.98477,-4.5972 0,-2.5389 2.23176,-4.5971 4.98477,-4.5971 2.75301,0 4.98477,2.0582 4.98477,4.5971 z"
|
||||
sodipodi:ry="4.5971303"
|
||||
sodipodi:rx="4.9847689"
|
||||
sodipodi:cy="2090.5566"
|
||||
@ -46393,7 +43086,7 @@
|
||||
sodipodi:cy="-54.65202"
|
||||
sodipodi:rx="7.9385705"
|
||||
sodipodi:ry="7.9385705"
|
||||
d="M 154.44129,-54.65202 C 154.44129,-50.267668 150.88707,-46.713449 146.50272,-46.713449 C 142.11836,-46.713449 138.56415,-50.267668 138.56415,-54.65202 C 138.56415,-59.036371 142.11836,-62.59059 146.50272,-62.59059 C 150.88707,-62.59059 154.44129,-59.036371 154.44129,-54.65202 z"
|
||||
d="m 154.44129,-54.65202 c 0,4.384352 -3.55422,7.938571 -7.93857,7.938571 -4.38436,0 -7.93857,-3.554219 -7.93857,-7.938571 0,-4.384351 3.55421,-7.93857 7.93857,-7.93857 4.38435,0 7.93857,3.554219 7.93857,7.93857 z"
|
||||
transform="matrix(-0.81878721,0,0,0.81878721,565.51334,1690.0415)" />
|
||||
<g
|
||||
style="display:inline"
|
||||
@ -46451,7 +43144,7 @@
|
||||
<g
|
||||
id="g3851-8">
|
||||
<circle
|
||||
d="M 216.804,613.62 C 216.804,615.13878 215.57278,616.37 214.054,616.37 C 212.53522,616.37 211.304,615.13878 211.304,613.62 C 211.304,612.10121 212.53522,610.87 214.054,610.87 C 215.57278,610.87 216.804,612.10121 216.804,613.62 z"
|
||||
d="m 216.804,613.62 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51878,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51879 1.23122,-2.75 2.75,-2.75 1.51878,0 2.75,1.23121 2.75,2.75 z"
|
||||
sodipodi:ry="2.75"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:cy="613.62"
|
||||
@ -46510,7 +43203,7 @@
|
||||
sodipodi:cy="1225.9447"
|
||||
sodipodi:rx="95.658928"
|
||||
sodipodi:ry="20.138721"
|
||||
d="M 191.31786,1225.9447 C 191.31786,1237.067 148.48989,1246.0834 95.658928,1246.0834 C 42.827961,1246.0834 0,1237.067 0,1225.9447 C 0,1214.8224 42.827961,1205.806 95.658928,1205.806 C 148.48989,1205.806 191.31786,1214.8224 191.31786,1225.9447 z"
|
||||
d="m 191.31786,1225.9447 c 0,11.1223 -42.82797,20.1387 -95.658932,20.1387 C 42.827961,1246.0834 0,1237.067 0,1225.9447 c 0,-11.1223 42.827961,-20.1387 95.658928,-20.1387 52.830962,0 95.658932,9.0164 95.658932,20.1387 z"
|
||||
transform="matrix(-1,0,0,1,243.77091,708.1928)" />
|
||||
<g
|
||||
style="display:inline"
|
||||
@ -46532,7 +43225,7 @@
|
||||
</g>
|
||||
<path
|
||||
transform="matrix(-2.5815325,0,0,2.5815325,1310.6966,-3004.1641)"
|
||||
d="M 464.20661,1875.9762 C 464.20661,1882.8587 458.62722,1888.4381 451.74469,1888.4381 C 444.86216,1888.4381 439.28277,1882.8587 439.28277,1875.9762 C 439.28277,1869.0937 444.86216,1863.5143 451.74469,1863.5143 C 458.62722,1863.5143 464.20661,1869.0937 464.20661,1875.9762 z"
|
||||
d="m 464.20661,1875.9762 c 0,6.8825 -5.57939,12.4619 -12.46192,12.4619 -6.88253,0 -12.46192,-5.5794 -12.46192,-12.4619 0,-6.8825 5.57939,-12.4619 12.46192,-12.4619 6.88253,0 12.46192,5.5794 12.46192,12.4619 z"
|
||||
sodipodi:ry="12.461923"
|
||||
sodipodi:rx="12.461923"
|
||||
sodipodi:cy="1875.9762"
|
||||
@ -46584,7 +43277,7 @@
|
||||
id="motorbike-m1">
|
||||
<path
|
||||
transform="matrix(1.1648161,0,0,1.1648161,-71.612697,-316.94008)"
|
||||
d="M 428.06704,1876.2877 C 428.06704,1891.6013 415.65289,1904.0155 400.33926,1904.0155 C 385.02564,1904.0155 372.61149,1891.6013 372.61149,1876.2877 C 372.61149,1860.9741 385.02564,1848.5599 400.33926,1848.5599 C 415.65289,1848.5599 428.06704,1860.9741 428.06704,1876.2877 z"
|
||||
d="m 428.06704,1876.2877 c 0,15.3136 -12.41415,27.7278 -27.72778,27.7278 -15.31362,0 -27.72777,-12.4142 -27.72777,-27.7278 0,-15.3136 12.41415,-27.7278 27.72777,-27.7278 15.31363,0 27.72778,12.4142 27.72778,27.7278 z"
|
||||
sodipodi:ry="27.727777"
|
||||
sodipodi:rx="27.727777"
|
||||
sodipodi:cy="1876.2877"
|
||||
@ -46600,7 +43293,7 @@
|
||||
sodipodi:cy="1876.2877"
|
||||
sodipodi:rx="27.727777"
|
||||
sodipodi:ry="27.727777"
|
||||
d="M 428.06704,1876.2877 C 428.06704,1891.6013 415.65289,1904.0155 400.33926,1904.0155 C 385.02564,1904.0155 372.61149,1891.6013 372.61149,1876.2877 C 372.61149,1860.9741 385.02564,1848.5599 400.33926,1848.5599 C 415.65289,1848.5599 428.06704,1860.9741 428.06704,1876.2877 z"
|
||||
d="m 428.06704,1876.2877 c 0,15.3136 -12.41415,27.7278 -27.72778,27.7278 -15.31362,0 -27.72777,-12.4142 -27.72777,-27.7278 0,-15.3136 12.41415,-27.7278 27.72777,-27.7278 15.31363,0 27.72778,12.4142 27.72778,27.7278 z"
|
||||
transform="matrix(1.1409811,0,0,1.1409811,-62.070587,-272.21865)" />
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,789.41785,0)"
|
||||
@ -47377,7 +44070,7 @@
|
||||
<g
|
||||
id="g9445-1">
|
||||
<circle
|
||||
d="M 411.435,717.672 C 411.435,719.19078 410.20378,720.422 408.685,720.422 C 407.16621,720.422 405.935,719.19078 405.935,717.672 C 405.935,716.15321 407.16621,714.922 408.685,714.922 C 410.20378,714.922 411.435,716.15321 411.435,717.672 z"
|
||||
d="m 411.435,717.672 c 0,1.51878 -1.23122,2.75 -2.75,2.75 -1.51879,0 -2.75,-1.23122 -2.75,-2.75 0,-1.51879 1.23121,-2.75 2.75,-2.75 1.51878,0 2.75,1.23121 2.75,2.75 z"
|
||||
sodipodi:ry="2.75"
|
||||
sodipodi:rx="2.75"
|
||||
sodipodi:cy="717.672"
|
||||
@ -47440,7 +44133,7 @@
|
||||
</g>
|
||||
<path
|
||||
transform="matrix(-3.6465408,0,0,3.6465408,671.05978,-4564.7251)"
|
||||
d="M 48.904387,1901.3416 C 48.904387,1901.8546 48.488497,1902.2705 47.975471,1902.2705 C 47.462446,1902.2705 47.046556,1901.8546 47.046556,1901.3416 C 47.046556,1900.8285 47.462446,1900.4126 47.975471,1900.4126 C 48.488497,1900.4126 48.904387,1900.8285 48.904387,1901.3416 z"
|
||||
d="m 48.904387,1901.3416 c 0,0.513 -0.41589,0.9289 -0.928916,0.9289 -0.513025,0 -0.928915,-0.4159 -0.928915,-0.9289 0,-0.5131 0.41589,-0.929 0.928915,-0.929 0.513026,0 0.928916,0.4159 0.928916,0.929 z"
|
||||
sodipodi:ry="0.92891532"
|
||||
sodipodi:rx="0.92891532"
|
||||
sodipodi:cy="1901.3416"
|
||||
|
Before Width: | Height: | Size: 2.7 MiB After Width: | Height: | Size: 2.5 MiB |
@ -95,8 +95,6 @@ int SetupWizard::nextId() const
|
||||
case PAGE_CONTROLLER:
|
||||
{
|
||||
switch (getControllerType()) {
|
||||
case CONTROLLER_CC:
|
||||
case CONTROLLER_CC3D:
|
||||
case CONTROLLER_REVO:
|
||||
case CONTROLLER_NANO:
|
||||
case CONTROLLER_DISCOVERYF4:
|
||||
@ -204,8 +202,6 @@ int SetupWizard::nextId() const
|
||||
case PAGE_SUMMARY:
|
||||
{
|
||||
switch (getControllerType()) {
|
||||
case CONTROLLER_CC:
|
||||
case CONTROLLER_CC3D:
|
||||
case CONTROLLER_REVO:
|
||||
case CONTROLLER_NANO:
|
||||
case CONTROLLER_DISCOVERYF4:
|
||||
@ -237,12 +233,6 @@ QString SetupWizard::getSummaryText()
|
||||
|
||||
summary.append("<b>").append(tr("Controller type: ")).append("</b>");
|
||||
switch (getControllerType()) {
|
||||
case CONTROLLER_CC:
|
||||
summary.append(tr("OpenPilot CopterControl"));
|
||||
break;
|
||||
case CONTROLLER_CC3D:
|
||||
summary.append(tr("OpenPilot CopterControl 3D"));
|
||||
break;
|
||||
case CONTROLLER_REVO:
|
||||
summary.append(tr("OpenPilot Revolution"));
|
||||
break;
|
||||
|
@ -100,15 +100,7 @@ bool VehicleConfigurationHelper::setupHardwareSettings(bool save)
|
||||
|
||||
bool VehicleConfigurationHelper::isApplicable(UAVObject *dataObj)
|
||||
{
|
||||
switch (m_configSource->getControllerType()) {
|
||||
case VehicleConfigurationSource::CONTROLLER_CC:
|
||||
case VehicleConfigurationSource::CONTROLLER_CC3D:
|
||||
if (dataObj->getName() == "EKFConfiguration") {
|
||||
return false;
|
||||
}
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void VehicleConfigurationHelper::addModifiedObject(UAVDataObject *object, QString description)
|
||||
@ -136,39 +128,6 @@ void VehicleConfigurationHelper::applyHardwareConfiguration()
|
||||
data.OptionalModules[HwSettings::OPTIONALMODULES_AIRSPEED] = 0;
|
||||
|
||||
switch (m_configSource->getControllerType()) {
|
||||
case VehicleConfigurationSource::CONTROLLER_CC:
|
||||
case VehicleConfigurationSource::CONTROLLER_CC3D:
|
||||
// Reset all ports
|
||||
data.CC_RcvrPort = HwSettings::CC_RCVRPORT_DISABLEDONESHOT;
|
||||
|
||||
// Default mainport to be active telemetry link
|
||||
data.CC_MainPort = HwSettings::CC_MAINPORT_TELEMETRY;
|
||||
|
||||
data.CC_FlexiPort = HwSettings::CC_FLEXIPORT_DISABLED;
|
||||
switch (m_configSource->getInputType()) {
|
||||
case VehicleConfigurationSource::INPUT_PWM:
|
||||
data.CC_RcvrPort = HwSettings::CC_RCVRPORT_PWMNOONESHOT;
|
||||
break;
|
||||
case VehicleConfigurationSource::INPUT_PPM:
|
||||
if (m_configSource->getEscType() == VehicleConfigurationSource::ESC_ONESHOT ||
|
||||
m_configSource->getEscType() == VehicleConfigurationSource::ESC_SYNCHED) {
|
||||
data.CC_RcvrPort = HwSettings::CC_RCVRPORT_PPM_PIN8ONESHOT;
|
||||
} else {
|
||||
data.CC_RcvrPort = HwSettings::CC_RCVRPORT_PPMNOONESHOT;
|
||||
}
|
||||
break;
|
||||
case VehicleConfigurationSource::INPUT_SBUS:
|
||||
// We have to set teletry on flexport since s.bus needs the mainport.
|
||||
data.CC_MainPort = HwSettings::CC_MAINPORT_SBUS;
|
||||
data.CC_FlexiPort = HwSettings::CC_FLEXIPORT_TELEMETRY;
|
||||
break;
|
||||
case VehicleConfigurationSource::INPUT_DSM:
|
||||
data.CC_FlexiPort = HwSettings::CC_FLEXIPORT_DSM;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case VehicleConfigurationSource::CONTROLLER_REVO:
|
||||
case VehicleConfigurationSource::CONTROLLER_NANO:
|
||||
case VehicleConfigurationSource::CONTROLLER_DISCOVERYF4:
|
||||
@ -430,10 +389,7 @@ void VehicleConfigurationHelper::applyActuatorConfiguration()
|
||||
// Servo always on channel 4
|
||||
data.BankUpdateFreq[0] = escFrequence;
|
||||
data.BankMode[0] = bankMode;
|
||||
if (m_configSource->getControllerType() == VehicleConfigurationSource::CONTROLLER_CC ||
|
||||
m_configSource->getControllerType() == VehicleConfigurationSource::CONTROLLER_CC3D) {
|
||||
data.BankUpdateFreq[1] = servoFrequence;
|
||||
} else if (m_configSource->getControllerType() == VehicleConfigurationSource::CONTROLLER_REVO) {
|
||||
if (m_configSource->getControllerType() == VehicleConfigurationSource::CONTROLLER_REVO) {
|
||||
data.BankUpdateFreq[1] = escFrequence;
|
||||
data.BankMode[1] = bankMode;
|
||||
data.BankUpdateFreq[2] = servoFrequence;
|
||||
@ -625,20 +581,6 @@ void VehicleConfigurationHelper::applySensorBiasConfiguration()
|
||||
addModifiedObject(accelGyroSettings, tr("Writing gyro and accelerometer bias settings"));
|
||||
|
||||
switch (m_configSource->getControllerType()) {
|
||||
case VehicleConfigurationSource::CONTROLLER_CC:
|
||||
case VehicleConfigurationSource::CONTROLLER_CC3D:
|
||||
{
|
||||
AttitudeSettings *copterControlCalibration = AttitudeSettings::GetInstance(m_uavoManager);
|
||||
Q_ASSERT(copterControlCalibration);
|
||||
AttitudeSettings::DataFields data = copterControlCalibration->getData();
|
||||
|
||||
data.AccelTau = DEFAULT_ENABLED_ACCEL_TAU;
|
||||
data.BiasCorrectGyro = AttitudeSettings::BIASCORRECTGYRO_TRUE;
|
||||
|
||||
copterControlCalibration->setData(data);
|
||||
addModifiedObject(copterControlCalibration, tr("Writing board settings"));
|
||||
break;
|
||||
}
|
||||
case VehicleConfigurationSource::CONTROLLER_REVO:
|
||||
{
|
||||
RevoCalibration *revolutionCalibration = RevoCalibration::GetInstance(m_uavoManager);
|
||||
|
@ -57,7 +57,7 @@ class VehicleConfigurationSource {
|
||||
public:
|
||||
VehicleConfigurationSource();
|
||||
|
||||
enum CONTROLLER_TYPE { CONTROLLER_UNKNOWN, CONTROLLER_CC, CONTROLLER_CC3D, CONTROLLER_REVO, CONTROLLER_NANO, CONTROLLER_OPLINK, CONTROLLER_DISCOVERYF4 };
|
||||
enum CONTROLLER_TYPE { CONTROLLER_UNKNOWN, CONTROLLER_REVO, CONTROLLER_NANO, CONTROLLER_OPLINK, CONTROLLER_DISCOVERYF4 };
|
||||
enum VEHICLE_TYPE { VEHICLE_UNKNOWN, VEHICLE_MULTI, VEHICLE_FIXEDWING, VEHICLE_HELI, VEHICLE_SURFACE };
|
||||
enum VEHICLE_SUB_TYPE { MULTI_ROTOR_UNKNOWN, MULTI_ROTOR_TRI_Y, MULTI_ROTOR_QUAD_X, MULTI_ROTOR_QUAD_PLUS, MULTI_ROTOR_QUAD_H,
|
||||
MULTI_ROTOR_HEXA, MULTI_ROTOR_HEXA_H, MULTI_ROTOR_HEXA_X, MULTI_ROTOR_HEXA_COAX_Y, MULTI_ROTOR_OCTO,
|
||||
|
@ -14,51 +14,23 @@ public:
|
||||
static QString idToBoardName(int id)
|
||||
{
|
||||
switch (id) {
|
||||
case 0x0101:
|
||||
// MB
|
||||
return QString("OpenPilot MainBoard");
|
||||
|
||||
break;
|
||||
case 0x0201:
|
||||
// INS
|
||||
return QString("OpenPilot INS");
|
||||
|
||||
break;
|
||||
case 0x0301:
|
||||
// OPLink Mini
|
||||
return QString("OPLink");
|
||||
|
||||
break;
|
||||
case 0x0401:
|
||||
// Coptercontrol
|
||||
return QString("CopterControl");
|
||||
|
||||
break;
|
||||
case 0x0402:
|
||||
// Coptercontrol 3D
|
||||
// It would be nice to say CC3D here but since currently we use string comparisons
|
||||
// for firmware compatibility and the filename path that would break
|
||||
return QString("CopterControl");
|
||||
|
||||
break;
|
||||
case 0x0901:
|
||||
// Revolution
|
||||
return QString("Revolution");
|
||||
|
||||
break;
|
||||
case 0x0903:
|
||||
// Revo Mini
|
||||
return QString("Revolution");
|
||||
|
||||
break;
|
||||
case 0x0904:
|
||||
return QString("DiscoveryF4");
|
||||
|
||||
break;
|
||||
default:
|
||||
return QString("");
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
deviceDescriptorStruct() {}
|
||||
|
@ -78,6 +78,11 @@ void DeviceWidget::populate()
|
||||
{
|
||||
int id = m_dfu->devices[deviceID].ID;
|
||||
|
||||
// Exclude CC/CC3D
|
||||
if ((id == 0x0401) || (id == 0x0402)) {
|
||||
return;
|
||||
}
|
||||
|
||||
myDevice->lbldevID->setText(tr("Device ID: ") + QString::number(id, 16));
|
||||
// DeviceID tells us what sort of HW we have detected:
|
||||
// display a nice icon:
|
||||
@ -86,22 +91,10 @@ void DeviceWidget::populate()
|
||||
myDevice->lblHWRev->setText(tr("HW Revision: ") + QString::number(id & 0x00FF, 16));
|
||||
|
||||
switch (id) {
|
||||
case 0x0101:
|
||||
case 0x0201:
|
||||
devicePic.load("");
|
||||
break;
|
||||
case 0x0301:
|
||||
devicePic.load(":/uploader/images/gcs-board-oplink.png");
|
||||
break;
|
||||
case 0x0401:
|
||||
devicePic.load(":/uploader/images/gcs-board-cc.png");
|
||||
break;
|
||||
case 0x0402:
|
||||
devicePic.load(":/uploader/images/gcs-board-cc3d.png");
|
||||
break;
|
||||
case 0x0903:
|
||||
devicePic.load(":/uploader/images/gcs-board-revo.png");
|
||||
break;
|
||||
case 0x0904:
|
||||
devicePic.load(":/uploader/images/gcs-board-revo.png");
|
||||
break;
|
||||
@ -361,8 +354,7 @@ void DeviceWidget::uploadFirmware()
|
||||
// - Check whether board type matches firmware:
|
||||
int board = m_dfu->devices[deviceID].ID;
|
||||
int firmwareBoard = ((desc.at(12) & 0xff) << 8) + (desc.at(13) & 0xff);
|
||||
if ((board == 0x401 && firmwareBoard == 0x402) ||
|
||||
(board == 0x901 && firmwareBoard == 0x902) || // L3GD20 revo supports Revolution firmware
|
||||
if ((board == 0x901 && firmwareBoard == 0x902) || // L3GD20 revo supports Revolution firmware
|
||||
(board == 0x902 && firmwareBoard == 0x903)) { // RevoMini1 supporetd by RevoMini2 firmware
|
||||
// These firmwares are designed to be backwards compatible
|
||||
} else if (firmwareBoard != board) {
|
||||
|
@ -1,2466 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="381.84375"
|
||||
height="236.375"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.0 r9654"
|
||||
sodipodi:docname="deviceID-1.svg"
|
||||
style="display:inline">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="116.34582"
|
||||
inkscape:cy="151.29577"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="691"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Mb pcb"
|
||||
style="display:inline"
|
||||
transform="translate(-195.96875,-338.1875)">
|
||||
<g
|
||||
id="device"
|
||||
inkscape:label="#g4184">
|
||||
<rect
|
||||
ry="10"
|
||||
y="348.28586"
|
||||
x="196.97975"
|
||||
height="225.26402"
|
||||
width="374.76657"
|
||||
id="rect2997"
|
||||
style="fill:#171717;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<rect
|
||||
y="339.19449"
|
||||
x="451.53818"
|
||||
height="26.263966"
|
||||
width="95.964493"
|
||||
id="rect3767"
|
||||
style="fill:#c89252;fill-opacity:1;stroke:#efc088;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<rect
|
||||
y="377.58029"
|
||||
x="553.5636"
|
||||
height="93.944183"
|
||||
width="22.223356"
|
||||
id="rect3769"
|
||||
style="fill:#c89252;fill-opacity:1;stroke:#efc088;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<rect
|
||||
y="489.70721"
|
||||
x="553.5636"
|
||||
height="78.791901"
|
||||
width="23.233509"
|
||||
id="rect3771"
|
||||
style="fill:#c89252;fill-opacity:1;stroke:#efc088;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<rect
|
||||
ry="2.5"
|
||||
y="395.57648"
|
||||
x="415.71429"
|
||||
height="76.785713"
|
||||
width="76.428574"
|
||||
id="rect3773"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<g
|
||||
id="g3875"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g3781"
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3777"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3779"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"
|
||||
id="g3785">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3787"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3789"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3791"
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3793"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3795"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"
|
||||
id="g3797">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3799"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3801"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3803"
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3805"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3807"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"
|
||||
id="g3809">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3811"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3813"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3815"
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3817"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3819"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"
|
||||
id="g3821">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3823"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3825"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3827"
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3829"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3831"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"
|
||||
id="g3833">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3835"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3837"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3839"
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3841"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3843"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"
|
||||
id="g3845">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3847"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3849"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3851"
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3853"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3855"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"
|
||||
id="g3857">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3859"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3861"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3863"
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3865"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3867"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"
|
||||
id="g3869">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3871"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3873"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,887.93406,-17.85058)"
|
||||
id="g3925"
|
||||
style="display:inline">
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"
|
||||
id="g3927">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3929"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3931"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3933"
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3935"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3937"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"
|
||||
id="g3939">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3941"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3943"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3945"
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3947"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3949"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"
|
||||
id="g3951">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3953"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3955"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3957"
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3959"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3961"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"
|
||||
id="g3963">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3965"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3967"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3969"
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3971"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3973"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"
|
||||
id="g3975">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3977"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3979"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3981"
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3983"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3985"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"
|
||||
id="g3987">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3989"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3991"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3993"
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3995"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3997"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"
|
||||
id="g3999">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4001"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4003"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4005"
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4007"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4009"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"
|
||||
id="g4011">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4013"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4015"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4017"
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4019"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4021"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g4023"
|
||||
transform="matrix(0,1,1,0,19.97685,-17.85058)"
|
||||
style="display:inline">
|
||||
<g
|
||||
id="g4025"
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4027"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4029"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"
|
||||
id="g4031">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4033"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4035"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4037"
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4039"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4041"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"
|
||||
id="g4043">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4045"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4047"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4049"
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4051"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4053"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"
|
||||
id="g4055">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4057"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4059"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4061"
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4063"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4065"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"
|
||||
id="g4067">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4069"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4071"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4073"
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4075"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4077"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"
|
||||
id="g4079">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4081"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4083"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4085"
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4087"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4089"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"
|
||||
id="g4091">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4093"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4095"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4097"
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4099"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4101"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"
|
||||
id="g4103">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4105"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4107"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4109"
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4111"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4113"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"
|
||||
id="g4115">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4117"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4119"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1,0,0,-1,0,867.2199)"
|
||||
id="g4121"
|
||||
style="display:inline">
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"
|
||||
id="g4123">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4125"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4127"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4129"
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4131"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4133"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"
|
||||
id="g4135">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4137"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4139"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4141"
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4143"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4145"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"
|
||||
id="g4147">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4149"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4151"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4153"
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4155"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4157"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"
|
||||
id="g4159">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4161"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4163"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4165"
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4167"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4169"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"
|
||||
id="g4171">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4173"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4175"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4177"
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4179"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4181"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"
|
||||
id="g4183">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4185"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4187"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4189"
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4191"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4193"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"
|
||||
id="g4195">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4197"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4199"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4201"
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4203"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4205"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"
|
||||
id="g4207">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4209"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4211"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4213"
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4215"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4217"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g4225"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4219"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4221"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4223"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(84,24)"
|
||||
id="g4230"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4232"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4234"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4236"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4238"
|
||||
transform="translate(54,142)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4240"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4242"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4244"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-10,136)"
|
||||
id="g4246"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4248"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4250"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4252"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4254"
|
||||
transform="translate(-184,192)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4256"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4258"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4260"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-210,192)"
|
||||
id="g4262"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4264"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4266"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4268"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4270"
|
||||
transform="translate(-54,62)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4272"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4274"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4276"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,687.67469,10.92467)"
|
||||
id="g4278"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4280"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4282"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4284"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4286"
|
||||
transform="matrix(0,1,-1,0,763.67469,32.92467)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4288"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4290"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4292"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,881.67469,32.92467)"
|
||||
id="g4294"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4296"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4298"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4300"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4302"
|
||||
transform="matrix(0,1,-1,0,843.67469,108.92467)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4304"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4306"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4308"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-50,-12)"
|
||||
id="g4318"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4320"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4322"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4324"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4326"
|
||||
transform="translate(-122,98)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4328"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4330"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4332"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-120,114)"
|
||||
id="g4334"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4336"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4338"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4340"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4342"
|
||||
transform="translate(-94,114)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4344"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4346"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4348"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-42,124)"
|
||||
id="g4350"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4352"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4354"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4356"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4358"
|
||||
transform="translate(16,140)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4360"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4362"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4364"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(74,194)"
|
||||
id="g4366"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4368"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4370"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4372"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4374"
|
||||
transform="translate(-42,190)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4376"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4378"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4380"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-42,174)"
|
||||
id="g4382"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4384"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4386"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4388"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-158,158)"
|
||||
id="g4390"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4392"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4394"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4396"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4398"
|
||||
transform="matrix(0,-1,1,0,1.07533,879.67469)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4400"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4402"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4404"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,-1,1,0,-30.92467,823.67469)"
|
||||
id="g4406"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4408"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4410"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4412"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4414"
|
||||
transform="translate(-22,-12)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#0052ff;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4416"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4418"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4420"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-158,176)"
|
||||
id="g4422"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4424"
|
||||
style="fill:#17c400;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4426"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4428"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4430"
|
||||
transform="translate(100,194)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#ff7900;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4432"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4434"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4436"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
ry="2"
|
||||
transform="translate(-100,-194)"
|
||||
y="519.38043"
|
||||
x="423.38019"
|
||||
height="22.728426"
|
||||
width="36.11293"
|
||||
id="rect4438"
|
||||
style="fill:#beb6b1;fill-opacity:1;stroke:#ffcd00;stroke-width:1;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
transform="translate(-100,-194)"
|
||||
y="525.44135"
|
||||
x="484.87323"
|
||||
height="14.647212"
|
||||
width="9.4701805"
|
||||
id="rect4440"
|
||||
style="fill:#484848;fill-opacity:1;stroke:#ffcd00;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#9b9797;fill-opacity:1;stroke:#ffcd00;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4442"
|
||||
width="9.4701805"
|
||||
height="2.2728434"
|
||||
x="384.87323"
|
||||
y="333.44135" />
|
||||
<path
|
||||
transform="translate(-100,-194)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4446"
|
||||
d="m 292.06036,569.50927 0,-68.05903 6.18718,0 0,-6.43973 46.84582,0 0,6.566 7.32361,0 0,68.5641 z"
|
||||
style="fill:#b5bac0;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
transform="translate(-100,-194)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4448"
|
||||
d="m 307.08637,507.51115 30.30458,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<g
|
||||
id="g4458">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 299.13142,535.29035 0,21.97082"
|
||||
id="path4450"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(-100,-194)" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4454"
|
||||
d="m 206.0153,341.29035 0,21.97082"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 298.63269,559.02893 7.97924,0"
|
||||
id="path4456"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="translate(-100,-194)"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(38,0)"
|
||||
id="g4463">
|
||||
<path
|
||||
transform="translate(-100,-194)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4465"
|
||||
d="m 299.13142,535.29035 0,21.97082"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 206.0153,341.29035 0,21.97082"
|
||||
id="path4467"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
transform="translate(-100,-194)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4469"
|
||||
d="m 298.63269,559.02893 7.97924,0"
|
||||
style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
transform="translate(-100,-194)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4471"
|
||||
d="m 312.85714,561.29075 0,-30.35714 c -0.63009,-2.35154 1.94091,-4.65364 3.66072,-3.66071 l 10.44643,0 c 1.73884,-1.00392 4.18145,1.50604 3.61607,3.61607 l 0,30.75893"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<g
|
||||
id="g4479">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4473"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-100,-194)" />
|
||||
<path
|
||||
transform="translate(-82,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4475"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4477"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-118,-194)" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,-20)"
|
||||
id="g4484">
|
||||
<path
|
||||
transform="translate(-100,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4486"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4488"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-82,-194)" />
|
||||
<path
|
||||
transform="translate(-118,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4490"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4492"
|
||||
transform="translate(0,-40)">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4494"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-100,-194)" />
|
||||
<path
|
||||
transform="translate(-82,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4496"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4498"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-118,-194)" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,-64)"
|
||||
id="g4500">
|
||||
<path
|
||||
transform="translate(-100,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4502"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4504"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-82,-194)" />
|
||||
<path
|
||||
transform="translate(-118,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4506"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4508"
|
||||
transform="translate(0,-82)">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4510"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-100,-194)" />
|
||||
<path
|
||||
transform="translate(-82,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4512"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4514"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-118,-194)" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,-102)"
|
||||
id="g4516">
|
||||
<path
|
||||
transform="translate(-100,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4518"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4520"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-82,-194)" />
|
||||
<path
|
||||
transform="translate(-118,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4522"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4524"
|
||||
transform="translate(0,-126)">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4526"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-100,-194)" />
|
||||
<path
|
||||
transform="translate(-82,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4528"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4530"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-118,-194)" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,-144)"
|
||||
id="g4532">
|
||||
<path
|
||||
transform="translate(-100,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4534"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4536"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-82,-194)" />
|
||||
<path
|
||||
transform="translate(-118,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4538"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4540"
|
||||
transform="translate(0,-162)">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4542"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-100,-194)" />
|
||||
<path
|
||||
transform="translate(-82,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4544"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4546"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-118,-194)" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(24,-186)"
|
||||
id="g4548">
|
||||
<path
|
||||
transform="translate(-100,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4550"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4552"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-82,-194)" />
|
||||
<path
|
||||
transform="translate(-118,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4554"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<rect
|
||||
transform="translate(-100,-194)"
|
||||
y="352.00504"
|
||||
x="208.21428"
|
||||
height="8.5714283"
|
||||
width="9.6428576"
|
||||
id="rect4556"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
ry="1.6"
|
||||
transform="translate(-100,-194)"
|
||||
y="418.43362"
|
||||
x="268.21429"
|
||||
height="36.07143"
|
||||
width="35.357143"
|
||||
id="rect4558"
|
||||
style="fill:#e5e5e5;fill-opacity:1;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(-100.71428,-194.17855)"
|
||||
d="m 288.21429,436.64789 c 0,0.98622 -0.71954,1.78571 -1.60714,1.78571 -0.8876,0 -1.60715,-0.79949 -1.60715,-1.78571 0,-0.98622 0.71955,-1.78572 1.60715,-1.78572 0.8876,0 1.60714,0.7995 1.60714,1.78572 z"
|
||||
sodipodi:ry="1.7857143"
|
||||
sodipodi:rx="1.6071428"
|
||||
sodipodi:cy="436.64789"
|
||||
sodipodi:cx="286.60715"
|
||||
id="path4560"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<rect
|
||||
y="372.52951"
|
||||
x="359.36176"
|
||||
height="48.487324"
|
||||
width="24.748737"
|
||||
id="rect4564"
|
||||
style="fill:#444444;fill-opacity:1;stroke:none;display:inline" />
|
||||
<g
|
||||
transform="translate(0.50508,0)"
|
||||
id="g4572"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none"
|
||||
id="rect4570"
|
||||
width="3.9143078"
|
||||
height="4.2931485"
|
||||
x="348.75516"
|
||||
y="377.95908" />
|
||||
<path
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
id="path4568"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0.50508,10)"
|
||||
id="g4576"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="377.95908"
|
||||
x="348.75516"
|
||||
height="4.2931485"
|
||||
width="3.9143078"
|
||||
id="rect4578"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4580"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4582"
|
||||
transform="translate(0.50508,20)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none"
|
||||
id="rect4584"
|
||||
width="3.9143078"
|
||||
height="4.2931485"
|
||||
x="348.75516"
|
||||
y="377.95908" />
|
||||
<path
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
id="path4586"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0.50508,30)"
|
||||
id="g4588"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="377.95908"
|
||||
x="348.75516"
|
||||
height="4.2931485"
|
||||
width="3.9143078"
|
||||
id="rect4590"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4592"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4594"
|
||||
transform="translate(0.50508,40)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none"
|
||||
id="rect4596"
|
||||
width="3.9143078"
|
||||
height="4.2931485"
|
||||
x="348.75516"
|
||||
y="377.95908" />
|
||||
<path
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
id="path4598"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,742.80618,40)"
|
||||
id="g4600"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="377.95908"
|
||||
x="348.75516"
|
||||
height="4.2931485"
|
||||
width="3.9143078"
|
||||
id="rect4602"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4604"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4606"
|
||||
transform="matrix(-1,0,0,1,742.80618,30)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none"
|
||||
id="rect4608"
|
||||
width="3.9143078"
|
||||
height="4.2931485"
|
||||
x="348.75516"
|
||||
y="377.95908" />
|
||||
<path
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
id="path4610"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,742.80618,20)"
|
||||
id="g4612"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="377.95908"
|
||||
x="348.75516"
|
||||
height="4.2931485"
|
||||
width="3.9143078"
|
||||
id="rect4614"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4616"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4618"
|
||||
transform="matrix(-1,0,0,1,742.80618,10)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none"
|
||||
id="rect4620"
|
||||
width="3.9143078"
|
||||
height="4.2931485"
|
||||
x="348.75516"
|
||||
y="377.95908" />
|
||||
<path
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
id="path4622"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,742.80618,0)"
|
||||
id="g4624"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="377.95908"
|
||||
x="348.75516"
|
||||
height="4.2931485"
|
||||
width="3.9143078"
|
||||
id="rect4626"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4628"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
transform="translate(0,-0.50508)"
|
||||
d="m 367.82181,381.8103 a 1.8309015,1.7046324 0 1 1 -3.66181,0 1.8309015,1.7046324 0 1 1 3.66181,0 z"
|
||||
sodipodi:ry="1.7046324"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:cx="365.99091"
|
||||
id="path4630"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none;display:inline"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none;display:inline"
|
||||
id="path4632"
|
||||
sodipodi:cx="365.99091"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:ry="1.7046324"
|
||||
d="m 367.82181,381.8103 a 1.8309015,1.7046324 0 1 1 -3.66181,0 1.8309015,1.7046324 0 1 1 3.66181,0 z"
|
||||
transform="translate(10,-0.50508)" />
|
||||
<path
|
||||
transform="translate(10,9.49492)"
|
||||
d="m 367.82181,381.8103 a 1.8309015,1.7046324 0 1 1 -3.66181,0 1.8309015,1.7046324 0 1 1 3.66181,0 z"
|
||||
sodipodi:ry="1.7046324"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:cx="365.99091"
|
||||
id="path4634"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none;display:inline"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none;display:inline"
|
||||
id="path4636"
|
||||
sodipodi:cx="365.99091"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:ry="1.7046324"
|
||||
d="m 367.82181,381.8103 a 1.8309015,1.7046324 0 1 1 -3.66181,0 1.8309015,1.7046324 0 1 1 3.66181,0 z"
|
||||
transform="translate(0,9.49492)" />
|
||||
<path
|
||||
transform="translate(0,19.49492)"
|
||||
d="m 367.82181,381.8103 a 1.8309015,1.7046324 0 1 1 -3.66181,0 1.8309015,1.7046324 0 1 1 3.66181,0 z"
|
||||
sodipodi:ry="1.7046324"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:cx="365.99091"
|
||||
id="path4638"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none;display:inline"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none;display:inline"
|
||||
id="path4640"
|
||||
sodipodi:cx="365.99091"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:ry="1.7046324"
|
||||
d="m 367.82181,381.8103 a 1.8309015,1.7046324 0 1 1 -3.66181,0 1.8309015,1.7046324 0 1 1 3.66181,0 z"
|
||||
transform="translate(10,19.49492)" />
|
||||
<path
|
||||
transform="translate(10,29.49492)"
|
||||
d="m 367.82181,381.8103 a 1.8309015,1.7046324 0 1 1 -3.66181,0 1.8309015,1.7046324 0 1 1 3.66181,0 z"
|
||||
sodipodi:ry="1.7046324"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:cx="365.99091"
|
||||
id="path4642"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none;display:inline"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none;display:inline"
|
||||
id="path4644"
|
||||
sodipodi:cx="365.99091"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:ry="1.7046324"
|
||||
d="m 367.82181,381.8103 a 1.8309015,1.7046324 0 1 1 -3.66181,0 1.8309015,1.7046324 0 1 1 3.66181,0 z"
|
||||
transform="translate(0,29.49492)" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 108 KiB |
@ -1,2948 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="370.71875"
|
||||
height="380.8125"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.0 r9654"
|
||||
sodipodi:docname="ahrs-1.svg"
|
||||
style="display:inline">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.98994949"
|
||||
inkscape:cx="153.7499"
|
||||
inkscape:cy="168.32049"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="691"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Mb pcb"
|
||||
style="display:inline"
|
||||
transform="translate(-191.9375,-268.5)">
|
||||
<g
|
||||
id="device"
|
||||
inkscape:label="#g5559">
|
||||
<rect
|
||||
ry="16.816143"
|
||||
y="269.49396"
|
||||
x="192.93918"
|
||||
height="378.80719"
|
||||
width="368.70566"
|
||||
id="rect2997"
|
||||
style="fill:#171717;fill-opacity:1;stroke:#000000;stroke-width:1.99999988;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<g
|
||||
transform="translate(435.88082,119.70308)"
|
||||
id="g3471"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3773"
|
||||
width="76.428574"
|
||||
height="76.785713"
|
||||
x="-104.28571"
|
||||
y="358.43362"
|
||||
ry="2.5" />
|
||||
<g
|
||||
id="g3875"
|
||||
transform="translate(-520,-37.142857)">
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"
|
||||
id="g3781">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3777"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3779"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3785"
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3787"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3789"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"
|
||||
id="g3791">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3793"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3795"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3797"
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3799"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3801"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"
|
||||
id="g3803">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3805"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3807"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3809"
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3811"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3813"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"
|
||||
id="g3815">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3817"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3819"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3821"
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3823"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3825"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"
|
||||
id="g3827">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3829"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3831"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3833"
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3835"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3837"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"
|
||||
id="g3839">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3841"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3843"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3845"
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3847"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3849"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"
|
||||
id="g3851">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3853"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3855"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3857"
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3859"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3861"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"
|
||||
id="g3863">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3865"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3867"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3869"
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3871"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3873"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g3925"
|
||||
transform="matrix(0,1,-1,0,367.93406,-54.993437)">
|
||||
<g
|
||||
id="g3927"
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3929"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3931"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"
|
||||
id="g3933">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3935"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3937"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3939"
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3941"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3943"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"
|
||||
id="g3945">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3947"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3949"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3951"
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3953"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3955"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"
|
||||
id="g3957">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3959"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3961"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3963"
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3965"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3967"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"
|
||||
id="g3969">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3971"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3973"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3975"
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3977"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"
|
||||
id="g3981">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3983"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3985"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3987"
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3989"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3991"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"
|
||||
id="g3993">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3995"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3997"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3999"
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4001"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4003"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"
|
||||
id="g4005">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4007"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4009"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4011"
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4013"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4015"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"
|
||||
id="g4017">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4019"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4021"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,1,0,-500.02315,-54.993437)"
|
||||
id="g4023">
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"
|
||||
id="g4025">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4027"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4029"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4031"
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4033"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4035"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"
|
||||
id="g4037">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4039"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4041"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4043"
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4045"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4047"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"
|
||||
id="g4049">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4051"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4053"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4055"
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4057"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4059"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"
|
||||
id="g4061">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4063"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4065"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4067"
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4069"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4071"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"
|
||||
id="g4073">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4075"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4077"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4079"
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4081"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4083"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"
|
||||
id="g4085">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4087"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4089"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4091"
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4093"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4095"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"
|
||||
id="g4097">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4099"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4101"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4103"
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4105"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4107"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"
|
||||
id="g4109">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4111"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4113"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4115"
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4117"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4119"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g4121"
|
||||
transform="matrix(1,0,0,-1,-520,830.07704)">
|
||||
<g
|
||||
id="g4123"
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4125"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4127"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"
|
||||
id="g4129">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4131"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4133"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4135"
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4137"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4139"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"
|
||||
id="g4141">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4143"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4145"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4147"
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4149"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4151"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"
|
||||
id="g4153">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4155"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4157"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4159"
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4161"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4163"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"
|
||||
id="g4165">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4167"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4169"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4171"
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4173"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4175"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"
|
||||
id="g4177">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4179"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4181"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4183"
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4185"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4187"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"
|
||||
id="g4189">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4191"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4193"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4195"
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4197"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4199"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"
|
||||
id="g4201">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4203"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4205"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
<g
|
||||
id="g4207"
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4209"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4211"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"
|
||||
id="g4213">
|
||||
<path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4215"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:0.86591274px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4217"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g3963-6"
|
||||
transform="matrix(0,1.4970318,-1,0,421.89061,-156.72568)"
|
||||
style="display:inline" />
|
||||
<rect
|
||||
y="279.64172"
|
||||
x="-178.53194"
|
||||
height="40.925297"
|
||||
width="40.730717"
|
||||
id="rect4972"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4974"
|
||||
width="40.730717"
|
||||
height="40.925297"
|
||||
x="-162.53194"
|
||||
y="167.64172" />
|
||||
<rect
|
||||
y="220.02498"
|
||||
x="-48.531937"
|
||||
height="52.542053"
|
||||
width="40.730717"
|
||||
id="rect4976"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4978"
|
||||
width="40.730717"
|
||||
height="52.542053"
|
||||
x="-310.66138"
|
||||
y="37.562393" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,611.68744,-5.73342)"
|
||||
id="g4294"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4296"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4298"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4300"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4302"
|
||||
transform="matrix(0,1,-1,0,611.06309,135.42142)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4304"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4306"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4308"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-208,150.85714)"
|
||||
id="g4366"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4368"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4370"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4372"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4414"
|
||||
transform="translate(-208.51135,168.54502)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#0052ff;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4416"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4418"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4420"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(211.48864,30.30458)"
|
||||
id="g4796"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#ff7900;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4432"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="2.1160583"
|
||||
y="522.61218" />
|
||||
<rect
|
||||
y="522.61218"
|
||||
x="8.5892944"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4434"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4436"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="-1.4107056"
|
||||
y="522.61218" />
|
||||
</g>
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
style="fill:#beb6b1;fill-opacity:1;stroke:#ffcd00;stroke-width:1;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4438"
|
||||
width="49.244915"
|
||||
height="29.799494"
|
||||
x="-533.37653"
|
||||
y="262.11063"
|
||||
ry="2.6222224" />
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,558.71934,354.50506)"
|
||||
id="g4479"
|
||||
style="display:inline">
|
||||
<path
|
||||
transform="translate(-110,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4473"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4475"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-82,-194)" />
|
||||
<path
|
||||
transform="translate(-164,-194)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path4477"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path5016"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(-136,-194)" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(654,162)"
|
||||
id="g3874"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#444444;fill-opacity:1;stroke:none"
|
||||
id="rect4564"
|
||||
width="24.748737"
|
||||
height="48.487324"
|
||||
x="-160.63824"
|
||||
y="335.38666" />
|
||||
<g
|
||||
id="g4572"
|
||||
transform="translate(-519.49492,-37.142857)">
|
||||
<rect
|
||||
y="377.95908"
|
||||
x="348.75516"
|
||||
height="4.2931485"
|
||||
width="3.9143078"
|
||||
id="rect4570"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4568"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4576"
|
||||
transform="translate(-519.49492,-27.142857)">
|
||||
<rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none"
|
||||
id="rect4578"
|
||||
width="3.9143078"
|
||||
height="4.2931485"
|
||||
x="348.75516"
|
||||
y="377.95908" />
|
||||
<path
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
id="path4580"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-519.49492,-17.142857)"
|
||||
id="g4582">
|
||||
<rect
|
||||
y="377.95908"
|
||||
x="348.75516"
|
||||
height="4.2931485"
|
||||
width="3.9143078"
|
||||
id="rect4584"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4586"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4588"
|
||||
transform="translate(-519.49492,-7.1428571)">
|
||||
<rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none"
|
||||
id="rect4590"
|
||||
width="3.9143078"
|
||||
height="4.2931485"
|
||||
x="348.75516"
|
||||
y="377.95908" />
|
||||
<path
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
id="path4592"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-519.49492,2.8571429)"
|
||||
id="g4594">
|
||||
<rect
|
||||
y="377.95908"
|
||||
x="348.75516"
|
||||
height="4.2931485"
|
||||
width="3.9143078"
|
||||
id="rect4596"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4598"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4600"
|
||||
transform="matrix(-1,0,0,1,222.80618,2.8571429)">
|
||||
<rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none"
|
||||
id="rect4602"
|
||||
width="3.9143078"
|
||||
height="4.2931485"
|
||||
x="348.75516"
|
||||
y="377.95908" />
|
||||
<path
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
id="path4604"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,222.80618,-7.1428571)"
|
||||
id="g4606">
|
||||
<rect
|
||||
y="377.95908"
|
||||
x="348.75516"
|
||||
height="4.2931485"
|
||||
width="3.9143078"
|
||||
id="rect4608"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4610"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4612"
|
||||
transform="matrix(-1,0,0,1,222.80618,-17.142857)">
|
||||
<rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none"
|
||||
id="rect4614"
|
||||
width="3.9143078"
|
||||
height="4.2931485"
|
||||
x="348.75516"
|
||||
y="377.95908" />
|
||||
<path
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
id="path4616"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,222.80618,-27.142857)"
|
||||
id="g4618">
|
||||
<rect
|
||||
y="377.95908"
|
||||
x="348.75516"
|
||||
height="4.2931485"
|
||||
width="3.9143078"
|
||||
id="rect4620"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4622"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4624"
|
||||
transform="matrix(-1,0,0,1,222.80618,-37.142857)">
|
||||
<rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:none"
|
||||
id="rect4626"
|
||||
width="3.9143078"
|
||||
height="4.2931485"
|
||||
x="348.75516"
|
||||
y="377.95908" />
|
||||
<path
|
||||
style="fill:none;stroke:#f3c61b;stroke-width:2.13612175;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 358.85669,379.85312 -7.20209,0"
|
||||
id="path4628"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none"
|
||||
id="path4630"
|
||||
sodipodi:cx="365.99091"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:ry="1.7046324"
|
||||
d="m 367.82181,381.8103 c 0,0.94145 -0.81973,1.70464 -1.8309,1.70464 -1.01118,0 -1.83091,-0.76319 -1.83091,-1.70464 0,-0.94144 0.81973,-1.70463 1.83091,-1.70463 1.01117,0 1.8309,0.76319 1.8309,1.70463 z"
|
||||
transform="translate(-520,-37.647933)" />
|
||||
<path
|
||||
transform="translate(-510,-37.647933)"
|
||||
d="m 367.82181,381.8103 c 0,0.94145 -0.81973,1.70464 -1.8309,1.70464 -1.01118,0 -1.83091,-0.76319 -1.83091,-1.70464 0,-0.94144 0.81973,-1.70463 1.83091,-1.70463 1.01117,0 1.8309,0.76319 1.8309,1.70463 z"
|
||||
sodipodi:ry="1.7046324"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:cx="365.99091"
|
||||
id="path4632"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none"
|
||||
id="path4634"
|
||||
sodipodi:cx="365.99091"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:ry="1.7046324"
|
||||
d="m 367.82181,381.8103 c 0,0.94145 -0.81973,1.70464 -1.8309,1.70464 -1.01118,0 -1.83091,-0.76319 -1.83091,-1.70464 0,-0.94144 0.81973,-1.70463 1.83091,-1.70463 1.01117,0 1.8309,0.76319 1.8309,1.70463 z"
|
||||
transform="translate(-510,-27.647933)" />
|
||||
<path
|
||||
transform="translate(-520,-27.647933)"
|
||||
d="m 367.82181,381.8103 c 0,0.94145 -0.81973,1.70464 -1.8309,1.70464 -1.01118,0 -1.83091,-0.76319 -1.83091,-1.70464 0,-0.94144 0.81973,-1.70463 1.83091,-1.70463 1.01117,0 1.8309,0.76319 1.8309,1.70463 z"
|
||||
sodipodi:ry="1.7046324"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:cx="365.99091"
|
||||
id="path4636"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none"
|
||||
id="path4638"
|
||||
sodipodi:cx="365.99091"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:ry="1.7046324"
|
||||
d="m 367.82181,381.8103 c 0,0.94145 -0.81973,1.70464 -1.8309,1.70464 -1.01118,0 -1.83091,-0.76319 -1.83091,-1.70464 0,-0.94144 0.81973,-1.70463 1.83091,-1.70463 1.01117,0 1.8309,0.76319 1.8309,1.70463 z"
|
||||
transform="translate(-520,-17.647933)" />
|
||||
<path
|
||||
transform="translate(-510,-17.647933)"
|
||||
d="m 367.82181,381.8103 c 0,0.94145 -0.81973,1.70464 -1.8309,1.70464 -1.01118,0 -1.83091,-0.76319 -1.83091,-1.70464 0,-0.94144 0.81973,-1.70463 1.83091,-1.70463 1.01117,0 1.8309,0.76319 1.8309,1.70463 z"
|
||||
sodipodi:ry="1.7046324"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:cx="365.99091"
|
||||
id="path4640"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none"
|
||||
id="path4642"
|
||||
sodipodi:cx="365.99091"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:ry="1.7046324"
|
||||
d="m 367.82181,381.8103 c 0,0.94145 -0.81973,1.70464 -1.8309,1.70464 -1.01118,0 -1.83091,-0.76319 -1.83091,-1.70464 0,-0.94144 0.81973,-1.70463 1.83091,-1.70463 1.01117,0 1.8309,0.76319 1.8309,1.70463 z"
|
||||
transform="translate(-510,-7.6479331)" />
|
||||
<path
|
||||
transform="translate(-520,-7.6479331)"
|
||||
d="m 367.82181,381.8103 c 0,0.94145 -0.81973,1.70464 -1.8309,1.70464 -1.01118,0 -1.83091,-0.76319 -1.83091,-1.70464 0,-0.94144 0.81973,-1.70463 1.83091,-1.70463 1.01117,0 1.8309,0.76319 1.8309,1.70463 z"
|
||||
sodipodi:ry="1.7046324"
|
||||
sodipodi:rx="1.8309015"
|
||||
sodipodi:cy="381.8103"
|
||||
sodipodi:cx="365.99091"
|
||||
id="path4644"
|
||||
style="fill:#f3c61b;fill-opacity:1;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<g
|
||||
id="g3730"
|
||||
transform="matrix(0,1,-1,0,593.68744,-47.73342)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3732"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3734"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3736"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,573.68744,-47.73342)"
|
||||
id="g3738"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3740"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3742"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3744"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3746"
|
||||
transform="matrix(0,1,-1,0,637.68744,-47.73342)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3748"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3750"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3752"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,657.68744,-47.73342)"
|
||||
id="g3754"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3756"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3758"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3760"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3762"
|
||||
transform="matrix(0,1,-1,0,681.68744,-27.73342)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3764"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3766"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3768"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,685.68744,10.26658)"
|
||||
id="g3770"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3772"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3774"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3776"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3778"
|
||||
transform="matrix(0,1,-1,0,671.68744,138.26658)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3780"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3782"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3784"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,737.68744,-25.73342)"
|
||||
id="g3786"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3788"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3790"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3792"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3794"
|
||||
transform="matrix(0,1,-1,0,777.68744,-3.73342)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3796"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3798"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3800"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,805.68744,62.26658)"
|
||||
id="g3802"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3804"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3806"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3808"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3810"
|
||||
transform="matrix(0,1,-1,0,819.68744,-17.73342)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3812"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3814"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3816"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,819.68744,-77.73342)"
|
||||
id="g3818"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3820"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3822"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3824"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3826"
|
||||
transform="matrix(0,1,-1,0,841.68744,-77.73342)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3828"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3830"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3832"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,755.68744,-115.73342)"
|
||||
id="g3834"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3836"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3838"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3840"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3842"
|
||||
transform="matrix(0,1,-1,0,625.68744,-121.73342)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3844"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3846"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3848"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,863.68744,-65.73342)"
|
||||
id="g3850"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3852"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3854"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3856"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3858"
|
||||
transform="matrix(0,1,-1,0,889.68744,-65.73342)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3860"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3862"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3864"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,621.68744,190.26658)"
|
||||
id="g3866"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3868"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3870"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3872"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-140,-21.14286)"
|
||||
id="g3915"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3917"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3919"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3921"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3923"
|
||||
transform="translate(-68,-17.14286)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3925"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3927"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3929"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-68,4.85714)"
|
||||
id="g3931"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3933"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3935"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3937"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3940"
|
||||
transform="translate(74,82.85714)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3942"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3944"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3946"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(112,82.85714)"
|
||||
id="g3948"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3950"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3952"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3954"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3956"
|
||||
transform="translate(76,110.85714)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3958"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3960"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3962"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(42,210.85714)"
|
||||
id="g3964"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3966"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3968"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3970"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3972"
|
||||
transform="translate(0,190.85714)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3974"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3976"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3978"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1.5210261,-2.1909167,0,1090.3626,-84.90041)"
|
||||
id="g3980"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect3982"
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3984"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect3986"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4764"
|
||||
transform="matrix(0,1.5210261,-2.1909167,0,1080.3626,-30.90041)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4766"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4768"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4770"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1.5210261,-2.1909167,0,1296.3626,-40.90041)"
|
||||
id="g4772"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4774"
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4776"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4778"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4780"
|
||||
transform="matrix(1.5210261,0,0,2.1909167,-191.55781,-172.80784)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4782"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4784"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4786"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
id="g4788"
|
||||
transform="matrix(0,1.5210261,-2.1909167,0,1146.3626,-206.90042)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4790"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4792"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4794"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
id="g4801"
|
||||
transform="translate(-208,206.85714)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4803"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4805"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4807"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-160,220.85714)"
|
||||
id="g4809"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4811"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4813"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4815"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4817"
|
||||
transform="matrix(0,-1,1,0,-106.92467,984.53183)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4819"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4821"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4823"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,-1,1,0,61.07533,846.53183)"
|
||||
id="g4825"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4827"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4829"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4831"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4833"
|
||||
transform="matrix(0,-1,1,0,179.07533,830.53183)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4835"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4837"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4839"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
id="g4920"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g4871"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-33.0226)">
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4867"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4869"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-23.0226)"
|
||||
id="g4875">
|
||||
<rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4877"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4879"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g4881"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-13.0226)">
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4883"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4885"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-13.0226)"
|
||||
id="g4887">
|
||||
<rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4889"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4891"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g4899"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-33.0226)">
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4901"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4903"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
</g>
|
||||
<rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4841"
|
||||
width="18.687822"
|
||||
height="31.819805"
|
||||
x="443.12988"
|
||||
y="590.15265"
|
||||
ry="1.5" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1,-1,0,904.65372,155.47139)"
|
||||
id="g4938"
|
||||
style="display:inline">
|
||||
<g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-33.0226)"
|
||||
id="g4940"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4942"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4944"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4946"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-23.0226)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4948"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4950"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-13.0226)"
|
||||
id="g4952"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4954"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4956"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4958"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-13.0226)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4960"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4962"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-33.0226)"
|
||||
id="g4964"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4966"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4968"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
<rect
|
||||
ry="1.5"
|
||||
y="590.15265"
|
||||
x="443.12988"
|
||||
height="31.819805"
|
||||
width="18.687822"
|
||||
id="rect4970"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g4980"
|
||||
transform="matrix(0,-1,1,0,63.07533,738.53183)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4982"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4984"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4986"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
transform="translate(188.57143,331.57648)"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4988"
|
||||
d="m 170.71578,-0.54828875 15.65736,0 0,-32.82995725 17.1726,0 -25.00128,-25.001276 -25.75889,25.75889 17.93021,0 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<g
|
||||
transform="matrix(0,-1,1,0,-64.92467,932.53183)"
|
||||
id="g4992"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4994"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4996"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4998"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g5000"
|
||||
transform="matrix(0,-1,1,0,-120.92467,914.53183)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#878380;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect5002"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect5004"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect5006"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0,-1,1,0,-120.92467,952.53183)"
|
||||
id="g5008"
|
||||
style="display:inline">
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect5010"
|
||||
style="fill:#878380;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect5012"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" />
|
||||
<rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect5014"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<rect
|
||||
transform="translate(188.57143,331.57648)"
|
||||
y="269.42856"
|
||||
x="140.71428"
|
||||
height="52.142857"
|
||||
width="89.285713"
|
||||
id="rect5020"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:#828282;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
|
||||
<g
|
||||
transform="matrix(-1.4970318,0,0,1,974.62682,213.03078)"
|
||||
id="g4964-3"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4966-2"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4968-1"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g5046"
|
||||
transform="matrix(-1.4970318,0,0,1,984.62682,213.03078)">
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect5048"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect5050"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-1.4970318,0,0,1,994.62682,213.03078)"
|
||||
id="g5052"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect5054"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect5056"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g5058"
|
||||
transform="matrix(-1.4970318,0,0,1,1004.6268,213.03078)">
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect5060"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect5062"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(-1.4970318,0,0,1,1014.6268,213.03078)"
|
||||
id="g5064"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect5066"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect5068"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g5070"
|
||||
transform="matrix(-1.4970318,0,0,1,1024.6268,213.03078)">
|
||||
<rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect5072"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect5074"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 122 KiB |
Before Width: | Height: | Size: 239 KiB |
@ -1,2646 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg3578"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.0 r9654"
|
||||
width="217.16675"
|
||||
height="212.0625"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="CopterControl-v1.svg"><metadata
|
||||
id="metadata3584"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs3582"><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath3596"><path
|
||||
d="M 0,0 662,0 662,675 0,675 0,0 z"
|
||||
id="path3598"
|
||||
inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1366"
|
||||
inkscape:window-height="691"
|
||||
id="namedview3580"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.4596704"
|
||||
inkscape:cx="74.195835"
|
||||
inkscape:cy="113.87434"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="24"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer2"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" /><g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Rendering#1"
|
||||
style="display:inline"
|
||||
transform="translate(-40.177007,-31.1875)"><g
|
||||
id="device"
|
||||
inkscape:label="#g15334"><rect
|
||||
rx="13.079585"
|
||||
ry="10"
|
||||
y="32.199471"
|
||||
x="46.668976"
|
||||
height="210.03767"
|
||||
width="209.67079"
|
||||
id="rect9798"
|
||||
style="fill:#171717;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><g
|
||||
transform="translate(-311.74173,-199.45)"
|
||||
id="g4318"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4320"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4322"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4324"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
transform="matrix(0,-1,1,0,-158.96398,620.23853)"
|
||||
id="g4406"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4408"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4410"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4412"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10505"
|
||||
transform="translate(-238.1085,-287.13166)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10507"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10509"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10511"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="translate(-297.20885,-185.40155)"
|
||||
id="g10513"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10515"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10517"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10519"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g4225"
|
||||
style="display:inline"
|
||||
transform="translate(-324.12933,-188.57649)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4219"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4221"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4223"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="translate(-229.42344,-179.37234)"
|
||||
style="display:inline"
|
||||
id="g10548"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10550"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10552"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10554"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g10556"
|
||||
style="display:inline"
|
||||
transform="translate(-230.15008,-167.50383)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10558"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10560"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10562"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="translate(-235.23659,-253.7322)"
|
||||
style="display:inline"
|
||||
id="g10564"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10566"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10568"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10570"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g10572"
|
||||
style="display:inline"
|
||||
transform="translate(-214.16393,-327.60763)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10574"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10576"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10578"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
id="g4414"
|
||||
transform="translate(-365.77251,-288.34483)"
|
||||
style="display:inline"><rect
|
||||
style="fill:#0052ff;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4416"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4418"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4420"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
id="g10667"
|
||||
style="display:inline"
|
||||
transform="translate(-466.1013,-470.16522)"><rect
|
||||
style="fill:#ff7900;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4432"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="522.11609"
|
||||
y="559.755" /><rect
|
||||
y="559.755"
|
||||
x="528.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4434"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4436"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="518.58929"
|
||||
y="559.755" /></g><g
|
||||
transform="matrix(0,1,-1,0,476.81179,-372.57224)"
|
||||
id="g4278"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4280"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4282"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4284"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10761"
|
||||
transform="matrix(0,1,-1,0,476.81179,-340.57224)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10763"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10765"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10767"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0,1,-1,0,531.29622,-332.15009)"
|
||||
id="g10769"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10771"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10773"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10775"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10777"
|
||||
transform="matrix(0,1,-1,0,453.06093,-235.02206)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10779"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10781"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10783"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0,1,-1,0,453.06093,-213.9494)"
|
||||
id="g10785"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10787"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10789"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10791"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10793"
|
||||
transform="matrix(0,1,-1,0,497.6284,-222.66912)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10795"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10797"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10799"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
style="display:inline"
|
||||
id="g10801"
|
||||
transform="matrix(0,-1,1,0,-252.45879,579.30427)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10803"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10805"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10807"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0,-1,1,0,-263.11623,579.54648)"
|
||||
id="g10809"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10811"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10813"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10815"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10817"
|
||||
transform="matrix(0,-1,1,0,-273.53145,580.27312)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10819"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10821"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10823"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0,-1,1,0,-272.56259,546.12087)"
|
||||
id="g10825"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10827"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10829"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10831"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10833"
|
||||
transform="matrix(0,-1,1,0,-257.06086,546.36308)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10835"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10837"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10839"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
id="g10887"><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4550"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(20.6651,-466.48541)" /><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4554"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(4.6651,-466.48541)" /><rect
|
||||
y="71.519623"
|
||||
x="210.81711"
|
||||
height="8.5714283"
|
||||
width="9.6428576"
|
||||
id="rect4556"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /></g><g
|
||||
transform="translate(0,14)"
|
||||
id="g10892"><path
|
||||
transform="translate(20.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10894"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><path
|
||||
transform="translate(4.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10896"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect10898"
|
||||
width="9.6428576"
|
||||
height="8.5714283"
|
||||
x="210.81711"
|
||||
y="71.519623" /></g><g
|
||||
id="g10900"
|
||||
transform="translate(0,30)"><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path10902"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(20.6651,-466.48541)" /><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path10904"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(4.6651,-466.48541)" /><rect
|
||||
y="71.519623"
|
||||
x="210.81711"
|
||||
height="8.5714283"
|
||||
width="9.6428576"
|
||||
id="rect10906"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /></g><g
|
||||
transform="translate(0,46)"
|
||||
id="g10908"><path
|
||||
transform="translate(20.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10910"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><path
|
||||
transform="translate(4.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10912"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect10914"
|
||||
width="9.6428576"
|
||||
height="8.5714283"
|
||||
x="210.81711"
|
||||
y="71.519623" /></g><g
|
||||
id="g10916"
|
||||
transform="translate(0,62)"><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path10918"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(20.6651,-466.48541)" /><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path10920"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(4.6651,-466.48541)" /><rect
|
||||
y="71.519623"
|
||||
x="210.81711"
|
||||
height="8.5714283"
|
||||
width="9.6428576"
|
||||
id="rect10922"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /></g><g
|
||||
transform="translate(0,76)"
|
||||
id="g10924"><path
|
||||
transform="translate(20.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10926"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><path
|
||||
transform="translate(4.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10928"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect10930"
|
||||
width="9.6428576"
|
||||
height="8.5714283"
|
||||
x="210.81711"
|
||||
y="71.519623" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.2406633,-1.7870765,0,753.06413,-443.20477)"
|
||||
id="g4788"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4790"
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4792"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4794"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g12054"
|
||||
transform="matrix(0,1.2406633,-1.7870765,0,753.06413,-475.20477)"
|
||||
style="display:inline"><rect
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12056"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect12058"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12060"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(1.2406633,0,0,1.7870765,-460.86273,-457.63731)"
|
||||
id="g12062"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect12064"
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12066"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect12068"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g12070"
|
||||
transform="matrix(1.2406633,0,0,1.7870765,-426.86273,-457.63731)"
|
||||
style="display:inline"><rect
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12072"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect12074"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12076"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
id="g12796"><g
|
||||
transform="translate(-0.3633218,-0.12110727)"
|
||||
id="g12766"><path
|
||||
d="m 133.77917,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5376"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 130.94256,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5378"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 145.57351,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5386"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 142.58758,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5388"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 139.75097,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5390"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 130.94256,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5454"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 133.77917,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5456"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 139.75097,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5466"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 142.58758,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5468"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 145.57351,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5470"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,57.810942 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5612"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,60.64656 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5614"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,63.63141 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5616"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,63.63141 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5618"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,60.64656 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5620"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,57.810942 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5622"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,46.020858 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5624"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,49.005667 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5626"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,51.841284 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5628"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,51.841284 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5630"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,49.005667 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5632"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,46.020858 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5634"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 136.76509,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5636"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,54.826134 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5726"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 136.76509,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5728"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,54.826134 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5730"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,43.036008 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5738"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,43.036008 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5740"
|
||||
inkscape:connector-curvature="0" /></g><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4974"
|
||||
width="24.34742"
|
||||
height="31.192205"
|
||||
x="125.66183"
|
||||
y="37.711323" /></g><g
|
||||
id="g12828"><g
|
||||
id="g12830"
|
||||
transform="translate(-0.3633218,-0.12110727)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12832"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 133.77917,39.752694 0,-2.686385" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12834"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 130.94256,39.752694 0,-2.686385" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12836"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 145.57351,39.752694 0,-2.686385" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12838"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 142.58758,39.752694 0,-2.686385" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12840"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 139.75097,39.752694 0,-2.686385" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12842"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 130.94256,69.7503 0,-2.686344" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12844"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 133.77917,69.7503 0,-2.686344" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12846"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 139.75097,69.7503 0,-2.686344" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12848"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 142.58758,69.7503 0,-2.686344" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12850"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 145.57351,69.7503 0,-2.686344" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12852"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,57.810942 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12854"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,60.64656 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12856"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,63.63141 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12858"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,63.63141 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12860"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,60.64656 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12862"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,57.810942 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12864"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,46.020858 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12866"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,49.005667 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12868"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,51.841284 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12870"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,51.841284 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12872"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,49.005667 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12874"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,46.020858 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12876"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 136.76509,39.752694 0,-2.686385" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12878"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,54.826134 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12880"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 136.76509,69.7503 0,-2.686344" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12882"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,54.826134 2.53802,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12884"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.82147,43.036008 2.6873,0" /><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path12886"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 149.0073,43.036008 2.53802,0" /></g><rect
|
||||
y="37.711323"
|
||||
x="125.66183"
|
||||
height="31.192205"
|
||||
width="24.34742"
|
||||
id="rect12888"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /></g><g
|
||||
transform="translate(0.68508616,38.685086)"
|
||||
id="g12890"><g
|
||||
transform="translate(-0.3633218,-0.12110727)"
|
||||
id="g12892"><path
|
||||
d="m 133.77917,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12894"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 130.94256,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12896"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 145.57351,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12898"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 142.58758,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12900"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 139.75097,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12902"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 130.94256,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12904"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 133.77917,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12906"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 139.75097,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12908"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 142.58758,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12910"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 145.57351,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12912"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,57.810942 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12914"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,60.64656 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12916"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,63.63141 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12918"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,63.63141 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12920"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,60.64656 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12922"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,57.810942 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12924"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,46.020858 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12926"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,49.005667 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12928"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,51.841284 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12930"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,51.841284 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12932"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,49.005667 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12934"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,46.020858 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12936"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 136.76509,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12938"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,54.826134 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12940"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 136.76509,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12942"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,54.826134 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12944"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,43.036008 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12946"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,43.036008 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path12948"
|
||||
inkscape:connector-curvature="0" /></g><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect12950"
|
||||
width="24.34742"
|
||||
height="31.192205"
|
||||
x="125.66183"
|
||||
y="37.711323" /></g><g
|
||||
id="g12952"
|
||||
style="display:inline"
|
||||
transform="matrix(0.55313316,0,0,0.55313316,202.151,-66.0335)"><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:3.61576581;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3773"
|
||||
width="76.428574"
|
||||
height="76.785713"
|
||||
x="-104.28571"
|
||||
y="358.43362"
|
||||
ry="2.5" /><g
|
||||
id="g3875"
|
||||
transform="translate(-520,-37.142857)"><g
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"
|
||||
id="g3781"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3777"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3779"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3785"
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3787"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3789"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"
|
||||
id="g3791"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3793"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3795"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3797"
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3799"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3801"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"
|
||||
id="g3803"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3805"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3807"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3809"
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3811"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3813"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"
|
||||
id="g3815"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3817"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3819"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3821"
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3823"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3825"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"
|
||||
id="g3827"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3829"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3831"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3833"
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3835"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3837"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"
|
||||
id="g3839"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3841"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3843"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3845"
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3847"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3849"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"
|
||||
id="g3851"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3853"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3855"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3857"
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3859"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3861"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"
|
||||
id="g3863"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3865"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3867"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3869"
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3871"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3873"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g></g><g
|
||||
id="g3925"
|
||||
transform="matrix(0,1,-1,0,367.93406,-54.993437)"><g
|
||||
id="g3927"
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3929"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3931"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"
|
||||
id="g3933"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3935"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3937"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3939"
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3941"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3943"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"
|
||||
id="g3945"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3947"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3949"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3951"
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3953"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3955"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"
|
||||
id="g3957"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3959"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3961"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3963"
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3965"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3967"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"
|
||||
id="g3969"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3971"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3973"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3975"
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3977"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"
|
||||
id="g3981"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3983"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3985"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3987"
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3989"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3991"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"
|
||||
id="g3993"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3995"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3997"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3999"
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4001"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4003"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"
|
||||
id="g4005"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4007"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4009"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4011"
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4013"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4015"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"
|
||||
id="g4017"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4019"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4021"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g></g><g
|
||||
transform="matrix(0,1,1,0,-500.02315,-54.993437)"
|
||||
id="g4023"><g
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"
|
||||
id="g4025"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4027"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4029"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4031"
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4033"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4035"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"
|
||||
id="g4037"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4039"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4041"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4043"
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4045"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4047"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"
|
||||
id="g4049"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4051"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4053"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4055"
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4057"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4059"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"
|
||||
id="g4061"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4063"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4065"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4067"
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4069"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4071"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"
|
||||
id="g4073"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4075"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4077"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4079"
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4081"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4083"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"
|
||||
id="g4085"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4087"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4089"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4091"
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4093"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4095"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"
|
||||
id="g4097"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4099"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4101"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4103"
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4105"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4107"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"
|
||||
id="g4109"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4111"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4113"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4115"
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4117"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4119"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g></g><g
|
||||
id="g4121"
|
||||
transform="matrix(1,0,0,-1,-520,830.07704)"><g
|
||||
id="g4123"
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4125"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4127"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"
|
||||
id="g4129"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4131"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4133"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4135"
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4137"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4139"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"
|
||||
id="g4141"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4143"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4145"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4147"
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4149"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4151"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"
|
||||
id="g4153"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4155"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4157"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4159"
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4161"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4163"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"
|
||||
id="g4165"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4167"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4169"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4171"
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4173"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4175"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"
|
||||
id="g4177"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4179"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4181"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4183"
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4185"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4187"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"
|
||||
id="g4189"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4191"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4193"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4195"
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4197"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4199"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"
|
||||
id="g4201"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4203"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4205"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4207"
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4209"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4211"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"
|
||||
id="g4213"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4215"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4217"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g></g></g><g
|
||||
style="display:inline"
|
||||
id="g4920"
|
||||
transform="matrix(0.41419929,0,0,0.41419929,-10.368172,-50.871127)"><g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-33.0226)"
|
||||
id="g4871"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4867"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4869"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g4875"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-23.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4877"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4879"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-13.0226)"
|
||||
id="g4881"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4883"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4885"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g4887"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-13.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4889"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4891"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-33.0226)"
|
||||
id="g4899"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4901"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4903"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><rect
|
||||
ry="1.5"
|
||||
y="590.15265"
|
||||
x="443.12988"
|
||||
height="31.819805"
|
||||
width="18.687822"
|
||||
id="rect4841"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:2.41429687;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
transform="matrix(0,0.41419929,-0.41419929,0,462.12545,-133.30339)"
|
||||
id="g13877"
|
||||
style="display:inline"><g
|
||||
style="display:inline"
|
||||
id="g13879"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-33.0226)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect13881"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect13883"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-23.0226)"
|
||||
id="g13885"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect13887"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect13889"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g13891"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-13.0226)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect13893"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect13895"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-13.0226)"
|
||||
id="g13897"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect13899"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect13901"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g13903"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-33.0226)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect13905"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect13907"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:2.41429687;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect13909"
|
||||
width="18.687822"
|
||||
height="31.819805"
|
||||
x="443.12988"
|
||||
y="590.15265"
|
||||
ry="1.5" /></g><g
|
||||
id="g13760"
|
||||
style="display:inline"
|
||||
transform="matrix(0,0.61819183,-0.61819183,0,444.94676,-97.125819)"><rect
|
||||
transform="translate(188.57143,331.57648)"
|
||||
y="269.42856"
|
||||
x="140.71428"
|
||||
height="52.142857"
|
||||
width="89.285713"
|
||||
id="rect5020"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:#828282;stroke-width:3.23524165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /><g
|
||||
transform="matrix(-1.4970318,0,0,1,971.39158,213.03078)"
|
||||
id="g4964-3"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4966-2"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4968-1"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g5046"
|
||||
transform="matrix(-1.4970318,0,0,1,981.39158,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect5048"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect5050"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,991.39158,213.03078)"
|
||||
id="g5052"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect5054"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect5056"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g5058"
|
||||
transform="matrix(-1.4970318,0,0,1,1001.3916,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect5060"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect5062"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,1011.3916,213.03078)"
|
||||
id="g5064"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect5066"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect5068"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g5070"
|
||||
transform="matrix(-1.4970318,0,0,1,1021.3916,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect5072"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect5074"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
style="display:inline"
|
||||
id="g13998"
|
||||
transform="matrix(-1.4970318,0,0,1,1031.0972,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14000"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14002"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,1040.8028,213.03078)"
|
||||
id="g14004"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14006"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14008"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g></g><g
|
||||
style="display:inline"
|
||||
id="g4920-2"
|
||||
transform="matrix(-0.48222043,0,0,-0.59728256,285.82656,546.58597)"><g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-33.0226)"
|
||||
id="g4871-7"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4867-0"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4869-4"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g4875-1"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-23.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4877-3"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4879-4"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-13.0226)"
|
||||
id="g4881-9"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4883-6"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4885-2"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g4887-8"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-13.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4889-3"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4891-3"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-33.0226)"
|
||||
id="g4899-7"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4901-7"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4903-8"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><rect
|
||||
ry="1.5"
|
||||
y="590.15265"
|
||||
x="443.12988"
|
||||
height="31.819805"
|
||||
width="18.687822"
|
||||
id="rect4841-1"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:1.86331928;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14076"
|
||||
transform="matrix(0,-1,1,0,-150.96398,652.23853)"><rect
|
||||
y="365.75504"
|
||||
x="426.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect14080"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect14082"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0.61819183,0,0,0.48347584,-108.7519,-76.23362)"
|
||||
style="display:inline"
|
||||
id="g14084"><rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:#828282;stroke-width:3.65831399;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect14086"
|
||||
width="53.268898"
|
||||
height="52.142857"
|
||||
x="329.28571"
|
||||
y="601.00507" /><g
|
||||
style="display:inline"
|
||||
id="g14088"
|
||||
transform="matrix(-1.4970318,0,0,1,971.39158,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14090"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14092"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,981.39158,213.03078)"
|
||||
id="g14094"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14096"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14098"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14100"
|
||||
transform="matrix(-1.4970318,0,0,1,991.39158,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14102"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14104"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,1001.3916,213.03078)"
|
||||
id="g14106"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14108"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14110"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g></g><g
|
||||
id="g14136"
|
||||
style="display:inline"
|
||||
transform="matrix(0.61819183,0,0,0.48347584,-30.7519,-76.23362)"><rect
|
||||
y="601.00507"
|
||||
x="329.28571"
|
||||
height="52.142857"
|
||||
width="53.268898"
|
||||
id="rect14138"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:#828282;stroke-width:3.65831399;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /><g
|
||||
transform="matrix(-1.4970318,0,0,1,971.39158,213.03078)"
|
||||
id="g14140"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14142"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14144"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14146"
|
||||
transform="matrix(-1.4970318,0,0,1,981.39158,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14148"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14150"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,991.39158,213.03078)"
|
||||
id="g14152"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14154"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14156"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14158"
|
||||
transform="matrix(-1.4970318,0,0,1,1001.3916,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14160"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14162"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(2.4017041,0,0,3.9408912,-788.51882,-1271.7817)"
|
||||
id="g14164"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect14166"
|
||||
style="fill:#00440d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect14168"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect14170"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect14172"
|
||||
width="18.524187"
|
||||
height="28.45186"
|
||||
x="174.85481"
|
||||
y="44.491241" /><g
|
||||
style="display:inline"
|
||||
id="g14192"
|
||||
transform="translate(-342.57061,-300.15766)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect14194"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect14196"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect14198"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
style="display:inline"
|
||||
id="g14200"
|
||||
transform="matrix(0,0.63857044,-0.6183842,0,527.83252,-72.180508)"><g
|
||||
transform="matrix(0,1.4970318,-1,0,852.39835,-33.0226)"
|
||||
id="g14202"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14204"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14206"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g14208"
|
||||
transform="matrix(0,1.4970318,-1,0,852.39835,-23.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14210"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14212"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,-1,0,852.39835,-13.0226)"
|
||||
id="g14214"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14216"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14218"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g14220"
|
||||
transform="matrix(0,1.4970318,1,0,46.519992,-13.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14222"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14224"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,1,0,46.519992,-33.0226)"
|
||||
id="g14226"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14228"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14230"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,1,0,46.519992,-22.679788)"
|
||||
id="g14240"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14242"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14244"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,1,0,46.519992,-3.365413)"
|
||||
id="g14246"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14248"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14250"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14252"
|
||||
transform="matrix(0,1.4970318,-1,0,852.39835,-3.365413)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14254"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14256"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><rect
|
||||
ry="1.9272836"
|
||||
y="590.15265"
|
||||
x="432.12994"
|
||||
height="40.883862"
|
||||
width="34.998043"
|
||||
id="rect14232"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:1.59135258;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g></g></g></svg>
|
Before Width: | Height: | Size: 139 KiB |
@ -1,2389 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="svg3578"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.2 r9819"
|
||||
width="217.16675"
|
||||
height="212.0625"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="deviceID-0402.svg"><metadata
|
||||
id="metadata3584"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs3582"><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath3596"><path
|
||||
d="M 0,0 662,0 662,675 0,675 0,0 z"
|
||||
id="path3598"
|
||||
inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1680"
|
||||
inkscape:window-height="930"
|
||||
id="namedview3580"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.4596704"
|
||||
inkscape:cx="74.195835"
|
||||
inkscape:cy="113.87434"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="device"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" /><g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Rendering#1"
|
||||
style="display:inline"
|
||||
transform="translate(-40.177007,-31.1875)"><g
|
||||
id="device"
|
||||
inkscape:label="#g15334"><rect
|
||||
rx="13.079585"
|
||||
ry="10"
|
||||
y="32.199471"
|
||||
x="46.668976"
|
||||
height="210.03767"
|
||||
width="209.67079"
|
||||
id="rect9798"
|
||||
style="fill:#171717;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><g
|
||||
transform="translate(-311.74173,-199.45)"
|
||||
id="g4318"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4320"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4322"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4324"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
transform="matrix(0,-1,1,0,-158.96398,620.23853)"
|
||||
id="g4406"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4408"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4410"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4412"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10505"
|
||||
transform="translate(-238.1085,-287.13166)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10507"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10509"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10511"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="translate(-297.20885,-185.40155)"
|
||||
id="g10513"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10515"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10517"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10519"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g4225"
|
||||
style="display:inline"
|
||||
transform="translate(-324.12933,-188.57649)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4219"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4221"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4223"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="translate(-229.42344,-179.37234)"
|
||||
style="display:inline"
|
||||
id="g10548"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10550"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10552"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10554"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g10556"
|
||||
style="display:inline"
|
||||
transform="translate(-230.15008,-167.50383)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10558"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10560"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10562"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="translate(-235.23659,-253.7322)"
|
||||
style="display:inline"
|
||||
id="g10564"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10566"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10568"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10570"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g10572"
|
||||
style="display:inline"
|
||||
transform="translate(-214.16393,-327.60763)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10574"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10576"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10578"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
id="g4414"
|
||||
transform="translate(-365.77251,-288.34483)"
|
||||
style="display:inline"><rect
|
||||
style="fill:#0052ff;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4416"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4418"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4420"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
id="g10667"
|
||||
style="display:inline"
|
||||
transform="translate(-466.1013,-470.16522)"><rect
|
||||
style="fill:#ff7900;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4432"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="522.11609"
|
||||
y="559.755" /><rect
|
||||
y="559.755"
|
||||
x="528.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4434"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4436"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="518.58929"
|
||||
y="559.755" /></g><g
|
||||
transform="matrix(0,1,-1,0,476.81179,-372.57224)"
|
||||
id="g4278"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4280"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4282"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4284"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10761"
|
||||
transform="matrix(0,1,-1,0,476.81179,-340.57224)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10763"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10765"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10767"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
style="display:inline"
|
||||
id="g10777"
|
||||
transform="matrix(0,1,-1,0,453.06093,-235.02206)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10779"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10781"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10783"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0,1,-1,0,453.06093,-213.9494)"
|
||||
id="g10785"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10787"
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10789"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10791"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10793"
|
||||
transform="matrix(0,1,-1,0,497.6284,-222.66912)"><rect
|
||||
style="fill:#bc781e;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10795"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10797"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10799"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
style="display:inline"
|
||||
id="g10801"
|
||||
transform="matrix(0,-1,1,0,-252.45879,579.30427)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10803"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10805"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10807"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0,-1,1,0,-263.11623,579.54648)"
|
||||
id="g10809"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10811"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10813"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10815"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10817"
|
||||
transform="matrix(0,-1,1,0,-273.53145,580.27312)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10819"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10821"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10823"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0,-1,1,0,-272.56259,546.12087)"
|
||||
id="g10825"
|
||||
style="display:inline"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect10827"
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10829"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10831"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g10833"
|
||||
transform="matrix(0,-1,1,0,-257.06086,546.36308)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10835"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect10837"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect10839"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
id="g10887"><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4550"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(20.6651,-466.48541)" /><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4554"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(4.6651,-466.48541)" /><rect
|
||||
y="71.519623"
|
||||
x="210.81711"
|
||||
height="8.5714283"
|
||||
width="9.6428576"
|
||||
id="rect4556"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /></g><g
|
||||
transform="translate(0,14)"
|
||||
id="g10892"><path
|
||||
transform="translate(20.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10894"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><path
|
||||
transform="translate(4.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10896"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect10898"
|
||||
width="9.6428576"
|
||||
height="8.5714283"
|
||||
x="210.81711"
|
||||
y="71.519623" /></g><g
|
||||
id="g10900"
|
||||
transform="translate(0,30)"><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path10902"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(20.6651,-466.48541)" /><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path10904"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(4.6651,-466.48541)" /><rect
|
||||
y="71.519623"
|
||||
x="210.81711"
|
||||
height="8.5714283"
|
||||
width="9.6428576"
|
||||
id="rect10906"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /></g><g
|
||||
transform="translate(0,46)"
|
||||
id="g10908"><path
|
||||
transform="translate(20.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10910"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><path
|
||||
transform="translate(4.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10912"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect10914"
|
||||
width="9.6428576"
|
||||
height="8.5714283"
|
||||
x="210.81711"
|
||||
y="71.519623" /></g><g
|
||||
id="g10916"
|
||||
transform="translate(0,62)"><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path10918"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(20.6651,-466.48541)" /><path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path10920"
|
||||
sodipodi:cx="225.89285"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:ry="5.1785712"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
transform="translate(4.6651,-466.48541)" /><rect
|
||||
y="71.519623"
|
||||
x="210.81711"
|
||||
height="8.5714283"
|
||||
width="9.6428576"
|
||||
id="rect10922"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /></g><g
|
||||
transform="translate(0,76)"
|
||||
id="g10924"><path
|
||||
transform="translate(20.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10926"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><path
|
||||
transform="translate(4.6651,-466.48541)"
|
||||
d="m 231.07142,542.54077 c 0,2.86005 -2.31852,5.17857 -5.17857,5.17857 -2.86004,0 -5.17857,-2.31852 -5.17857,-5.17857 0,-2.86004 2.31853,-5.17857 5.17857,-5.17857 2.86005,0 5.17857,2.31853 5.17857,5.17857 z"
|
||||
sodipodi:ry="5.1785712"
|
||||
sodipodi:rx="5.1785712"
|
||||
sodipodi:cy="542.54077"
|
||||
sodipodi:cx="225.89285"
|
||||
id="path10928"
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" /><rect
|
||||
style="fill:none;stroke:#f2edda;stroke-width:1.5;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect10930"
|
||||
width="9.6428576"
|
||||
height="8.5714283"
|
||||
x="210.81711"
|
||||
y="71.519623" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.2406633,-1.7870765,0,753.06413,-443.20477)"
|
||||
id="g4788"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect4790"
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4792"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect4794"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g12054"
|
||||
transform="matrix(0,1.2406633,-1.7870765,0,753.06413,-475.20477)"
|
||||
style="display:inline"><rect
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12056"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect12058"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12060"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(1.2406633,0,0,1.7870765,-460.86273,-457.63731)"
|
||||
id="g12062"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect12064"
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12066"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect12068"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
id="g12070"
|
||||
transform="matrix(1.2406633,0,0,1.7870765,-426.86273,-457.63731)"
|
||||
style="display:inline"><rect
|
||||
style="fill:#a9814d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12072"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect12074"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect12076"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
id="g12796"
|
||||
transform="matrix(1.2994908,0,0,1,-24.942522,8.9061202)"><g
|
||||
transform="translate(-0.3633218,-0.12110727)"
|
||||
id="g12766"><path
|
||||
d="m 133.77917,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5376"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 130.94256,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5378"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 145.57351,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5386"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 142.58758,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5388"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 139.75097,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5390"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 130.94256,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5454"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 133.77917,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5456"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 139.75097,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5466"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 142.58758,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5468"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 145.57351,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5470"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,57.810942 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5612"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,60.64656 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5614"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,63.63141 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5616"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,63.63141 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5618"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,60.64656 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5620"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,57.810942 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5622"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,46.020858 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5624"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,49.005667 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5626"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,51.841284 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5628"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,51.841284 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5630"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,49.005667 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5632"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,46.020858 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5634"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 136.76509,39.752694 0,-2.686385"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5636"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,54.826134 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5726"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 136.76509,69.7503 0,-2.686344"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5728"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,54.826134 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5730"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 124.82147,43.036008 2.6873,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5738"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 149.0073,43.036008 2.53802,0"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.49294174;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path5740"
|
||||
inkscape:connector-curvature="0" /></g><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4974"
|
||||
width="24.34742"
|
||||
height="31.192205"
|
||||
x="125.66183"
|
||||
y="37.711323" /></g><g
|
||||
id="g12952"
|
||||
style="display:inline"
|
||||
transform="matrix(0.55313316,0,0,0.55313316,202.151,-66.0335)"><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:3.61576581;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3773"
|
||||
width="76.428574"
|
||||
height="76.785713"
|
||||
x="-104.28571"
|
||||
y="358.43362"
|
||||
ry="2.5" /><g
|
||||
id="g3875"
|
||||
transform="translate(-520,-37.142857)"><g
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"
|
||||
id="g3781"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3777"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3779"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3785"
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3787"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3789"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"
|
||||
id="g3791"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3793"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3795"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3797"
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3799"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3801"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"
|
||||
id="g3803"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3805"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3807"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3809"
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3811"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3813"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"
|
||||
id="g3815"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3817"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3819"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3821"
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3823"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3825"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"
|
||||
id="g3827"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3829"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3831"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3833"
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3835"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3837"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"
|
||||
id="g3839"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3841"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3843"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3845"
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3847"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3849"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"
|
||||
id="g3851"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3853"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3855"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3857"
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3859"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3861"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"
|
||||
id="g3863"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3865"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3867"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3869"
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3871"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3873"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g></g><g
|
||||
id="g3925"
|
||||
transform="matrix(0,1,-1,0,367.93406,-54.993437)"><g
|
||||
id="g3927"
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3929"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3931"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"
|
||||
id="g3933"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3935"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3937"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3939"
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3941"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3943"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"
|
||||
id="g3945"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3947"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3949"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3951"
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3953"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3955"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"
|
||||
id="g3957"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3959"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3961"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3963"
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3965"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3967"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"
|
||||
id="g3969"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3971"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3973"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3975"
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3977"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3979"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"
|
||||
id="g3981"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3983"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3985"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3987"
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3989"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3991"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"
|
||||
id="g3993"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path3995"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path3997"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g3999"
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4001"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4003"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"
|
||||
id="g4005"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4007"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4009"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4011"
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4013"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4015"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"
|
||||
id="g4017"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4019"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4021"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g></g><g
|
||||
transform="matrix(0,1,1,0,-500.02315,-54.993437)"
|
||||
id="g4023"><g
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"
|
||||
id="g4025"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4027"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4029"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4031"
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4033"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4035"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"
|
||||
id="g4037"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4039"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4041"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4043"
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4045"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4047"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"
|
||||
id="g4049"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4051"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4053"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4055"
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4057"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4059"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"
|
||||
id="g4061"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4063"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4065"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4067"
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4069"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4071"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"
|
||||
id="g4073"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4075"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4077"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4079"
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4081"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4083"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"
|
||||
id="g4085"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4087"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4089"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4091"
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4093"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4095"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"
|
||||
id="g4097"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4099"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4101"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4103"
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4105"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4107"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"
|
||||
id="g4109"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4111"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4113"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4115"
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4117"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4119"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g></g><g
|
||||
id="g4121"
|
||||
transform="matrix(1,0,0,-1,-520,830.07704)"><g
|
||||
id="g4123"
|
||||
transform="matrix(1.4970318,0,0,1,-211.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4125"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4127"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-207.28069,0.21205357)"
|
||||
id="g4129"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4131"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4133"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4135"
|
||||
transform="matrix(1.4970318,0,0,1,-203.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4137"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4139"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-199.28069,0.21205357)"
|
||||
id="g4141"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4143"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4145"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4147"
|
||||
transform="matrix(1.4970318,0,0,1,-195.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4149"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4151"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-191.28069,0.21205357)"
|
||||
id="g4153"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4155"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4157"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4159"
|
||||
transform="matrix(1.4970318,0,0,1,-187.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4161"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4163"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-183.28069,0.21205357)"
|
||||
id="g4165"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4167"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4169"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4171"
|
||||
transform="matrix(1.4970318,0,0,1,-179.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4173"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4175"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-175.28069,0.21205357)"
|
||||
id="g4177"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4179"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4181"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4183"
|
||||
transform="matrix(1.4970318,0,0,1,-171.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4185"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4187"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-167.28069,0.21205357)"
|
||||
id="g4189"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4191"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4193"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4195"
|
||||
transform="matrix(1.4970318,0,0,1,-163.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4197"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4199"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-159.28069,0.21205357)"
|
||||
id="g4201"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4203"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4205"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g><g
|
||||
id="g4207"
|
||||
transform="matrix(1.4970318,0,0,1,-155.28069,0.21205357)"><path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4209"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /><path
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4211"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /></g><g
|
||||
transform="matrix(1.4970318,0,0,1,-151.28069,0.21205357)"
|
||||
id="g4213"><path
|
||||
style="fill:none;stroke:#e9dcdc;stroke-width:1.80788291px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.9087,394.32647 0,-7.85715"
|
||||
id="path4215"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
style="fill:none;stroke:#8c8989;stroke-width:1.56546891px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 423.84066,392.00721 0.13607,0"
|
||||
id="path4217"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" /></g></g></g><g
|
||||
style="display:inline"
|
||||
id="g4920"
|
||||
transform="matrix(0.41419929,0,0,0.41419929,-10.368172,-50.871127)"><g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-33.0226)"
|
||||
id="g4871"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4867"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4869"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g4875"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-23.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4877"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4879"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-13.0226)"
|
||||
id="g4881"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4883"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4885"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g4887"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-13.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4889"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4891"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-33.0226)"
|
||||
id="g4899"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4901"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4903"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><rect
|
||||
ry="1.5"
|
||||
y="590.15265"
|
||||
x="443.12988"
|
||||
height="31.819805"
|
||||
width="18.687822"
|
||||
id="rect4841"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:2.41429687;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
transform="matrix(0,0.41419929,-0.41419929,0,462.12545,-133.30339)"
|
||||
id="g13877"
|
||||
style="display:inline"><g
|
||||
style="display:inline"
|
||||
id="g13879"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-33.0226)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect13881"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect13883"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-23.0226)"
|
||||
id="g13885"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect13887"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect13889"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g13891"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-13.0226)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect13893"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect13895"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-13.0226)"
|
||||
id="g13897"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect13899"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect13901"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g13903"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-33.0226)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect13905"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect13907"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><rect
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:2.41429687;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect13909"
|
||||
width="18.687822"
|
||||
height="31.819805"
|
||||
x="443.12988"
|
||||
y="590.15265"
|
||||
ry="1.5" /></g><g
|
||||
id="g13760"
|
||||
style="display:inline"
|
||||
transform="matrix(0,0.61819183,-0.61819183,0,444.94676,-97.125819)"><rect
|
||||
transform="translate(188.57143,331.57648)"
|
||||
y="269.42856"
|
||||
x="140.71428"
|
||||
height="52.142857"
|
||||
width="89.285713"
|
||||
id="rect5020"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:#828282;stroke-width:3.23524165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /><g
|
||||
transform="matrix(-1.4970318,0,0,1,971.39158,213.03078)"
|
||||
id="g4964-3"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4966-2"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4968-1"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g5046"
|
||||
transform="matrix(-1.4970318,0,0,1,981.39158,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect5048"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect5050"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,991.39158,213.03078)"
|
||||
id="g5052"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect5054"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect5056"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g5058"
|
||||
transform="matrix(-1.4970318,0,0,1,1001.3916,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect5060"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect5062"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,1011.3916,213.03078)"
|
||||
id="g5064"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect5066"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect5068"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g5070"
|
||||
transform="matrix(-1.4970318,0,0,1,1021.3916,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect5072"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect5074"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
style="display:inline"
|
||||
id="g13998"
|
||||
transform="matrix(-1.4970318,0,0,1,1031.0972,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14000"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14002"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,1040.8028,213.03078)"
|
||||
id="g14004"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14006"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14008"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g></g><g
|
||||
style="display:inline"
|
||||
id="g4920-2"
|
||||
transform="matrix(-0.48222043,0,0,-0.59728256,285.82656,546.58597)"><g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-33.0226)"
|
||||
id="g4871-7"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4867-0"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4869-4"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g4875-1"
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-23.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4877-3"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4879-4"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,-1,0,849.26635,-13.0226)"
|
||||
id="g4881-9"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4883-6"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4885-2"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g4887-8"
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-13.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect4889-3"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect4891-3"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,1,0,55.91598,-33.0226)"
|
||||
id="g4899-7"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect4901-7"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect4903-8"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><rect
|
||||
ry="1.5"
|
||||
y="590.15265"
|
||||
x="443.12988"
|
||||
height="31.819805"
|
||||
width="18.687822"
|
||||
id="rect4841-1"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:1.86331928;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14076"
|
||||
transform="matrix(0,-1,1,0,-150.96398,652.23853)"><rect
|
||||
y="365.75504"
|
||||
x="426.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect14080"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect14082"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
transform="matrix(0.61819183,0,0,0.48347584,-108.7519,-76.23362)"
|
||||
style="display:inline"
|
||||
id="g14084"><rect
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:#828282;stroke-width:3.65831399;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect14086"
|
||||
width="53.268898"
|
||||
height="52.142857"
|
||||
x="329.28571"
|
||||
y="601.00507" /><g
|
||||
style="display:inline"
|
||||
id="g14088"
|
||||
transform="matrix(-1.4970318,0,0,1,971.39158,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14090"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14092"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,981.39158,213.03078)"
|
||||
id="g14094"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14096"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14098"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14100"
|
||||
transform="matrix(-1.4970318,0,0,1,991.39158,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14102"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14104"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,1001.3916,213.03078)"
|
||||
id="g14106"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14108"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14110"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g></g><g
|
||||
id="g14136"
|
||||
style="display:inline"
|
||||
transform="matrix(0.61819183,0,0,0.48347584,-30.7519,-76.23362)"><rect
|
||||
y="601.00507"
|
||||
x="329.28571"
|
||||
height="52.142857"
|
||||
width="53.268898"
|
||||
id="rect14138"
|
||||
style="fill:#fffcfc;fill-opacity:1;stroke:#828282;stroke-width:3.65831399;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /><g
|
||||
transform="matrix(-1.4970318,0,0,1,971.39158,213.03078)"
|
||||
id="g14140"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14142"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14144"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14146"
|
||||
transform="matrix(-1.4970318,0,0,1,981.39158,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14148"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14150"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(-1.4970318,0,0,1,991.39158,213.03078)"
|
||||
id="g14152"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14154"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14156"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14158"
|
||||
transform="matrix(-1.4970318,0,0,1,1001.3916,213.03078)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14160"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14162"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(2.4017041,0,0,3.9408912,-788.51882,-1271.7817)"
|
||||
id="g14164"><rect
|
||||
y="365.75504"
|
||||
x="422.11606"
|
||||
height="5.0892859"
|
||||
width="6.5178571"
|
||||
id="rect14166"
|
||||
style="fill:#00440d;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect14168"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="428.58929"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="418.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect14170"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14192"
|
||||
transform="translate(-342.57061,-300.15766)"><rect
|
||||
style="fill:#312d29;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect14194"
|
||||
width="6.5178571"
|
||||
height="5.0892859"
|
||||
x="422.11606"
|
||||
y="365.75504" /><rect
|
||||
y="365.75504"
|
||||
x="428.58929"
|
||||
height="5.0892859"
|
||||
width="3.5714285"
|
||||
id="rect14196"
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /><rect
|
||||
style="fill:#d3d0ce;fill-opacity:1;stroke:#8c8989;stroke-width:0;stroke-linecap:square;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect14198"
|
||||
width="3.5714285"
|
||||
height="5.0892859"
|
||||
x="418.58929"
|
||||
y="365.75504" /></g><g
|
||||
style="display:inline"
|
||||
id="g14200"
|
||||
transform="matrix(0,0.63857044,-0.6183842,0,527.83252,-72.180508)"><g
|
||||
transform="matrix(0,1.4970318,-1,0,852.39835,-33.0226)"
|
||||
id="g14202"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14204"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14206"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g14208"
|
||||
transform="matrix(0,1.4970318,-1,0,852.39835,-23.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14210"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14212"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,-1,0,852.39835,-13.0226)"
|
||||
id="g14214"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14216"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14218"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
id="g14220"
|
||||
transform="matrix(0,1.4970318,1,0,46.519992,-13.0226)"
|
||||
style="display:inline"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14222"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14224"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><g
|
||||
transform="matrix(0,1.4970318,1,0,46.519992,-33.0226)"
|
||||
id="g14226"
|
||||
style="display:inline"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14228"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14230"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,1,0,46.519992,-22.679788)"
|
||||
id="g14240"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14242"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14244"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
transform="matrix(0,1.4970318,1,0,46.519992,-3.365413)"
|
||||
id="g14246"><rect
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none"
|
||||
id="rect14248"
|
||||
width="10.985409"
|
||||
height="4.0486217"
|
||||
x="-386.60983"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-383.45309"
|
||||
height="4.0486217"
|
||||
width="2.5253813"
|
||||
id="rect14250"
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none" /></g><g
|
||||
style="display:inline"
|
||||
id="g14252"
|
||||
transform="matrix(0,1.4970318,-1,0,852.39835,-3.365413)"><rect
|
||||
transform="matrix(0,-1,1,0,0,0)"
|
||||
y="417.41403"
|
||||
x="-386.60983"
|
||||
height="4.0486217"
|
||||
width="10.985409"
|
||||
id="rect14254"
|
||||
style="fill:#e9dcdc;fill-opacity:1;stroke:none" /><rect
|
||||
style="fill:#8c8989;fill-opacity:1;stroke:none"
|
||||
id="rect14256"
|
||||
width="2.5253813"
|
||||
height="4.0486217"
|
||||
x="-383.45309"
|
||||
y="417.41403"
|
||||
transform="matrix(0,-1,1,0,0,0)" /></g><rect
|
||||
ry="1.9272836"
|
||||
y="590.15265"
|
||||
x="432.12994"
|
||||
height="40.883862"
|
||||
width="34.998043"
|
||||
id="rect14232"
|
||||
style="fill:#6a6a6a;fill-opacity:1;stroke:#000000;stroke-width:1.59135258;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g><text
|
||||
xml:space="preserve"
|
||||
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Sans Bold"
|
||||
x="123.07243"
|
||||
y="109.6582"
|
||||
id="text3548"
|
||||
sodipodi:linespacing="125%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3550"
|
||||
x="123.07243"
|
||||
y="109.6582"
|
||||
style="font-size:20px;fill:#ffffff">CC3D</tspan></text>
|
||||
</g></g></svg>
|
Before Width: | Height: | Size: 120 KiB |
Before Width: | Height: | Size: 237 KiB |
Before Width: | Height: | Size: 242 KiB |
Before Width: | Height: | Size: 180 KiB |
@ -1074,7 +1074,6 @@ int DFUObject::receiveData(void *data, int size)
|
||||
#define BOARD_ID_MB 1
|
||||
#define BOARD_ID_INS 2
|
||||
#define BOARD_ID_PIP 3
|
||||
#define BOARD_ID_CC 4
|
||||
#define BOARD_ID_REVO 9
|
||||
|
||||
/**
|
||||
@ -1098,9 +1097,6 @@ OP_DFU::eBoardType DFUObject::GetBoardType(int boardNum)
|
||||
case BOARD_ID_PIP: // PIP RF Modem
|
||||
brdType = eBoardPip;
|
||||
break;
|
||||
case BOARD_ID_CC: // CopterControl family
|
||||
brdType = eBoardCC;
|
||||
break;
|
||||
case BOARD_ID_REVO: // Revo board
|
||||
brdType = eBoardRevo;
|
||||
break;
|
||||
|
@ -92,7 +92,6 @@ enum eBoardType {
|
||||
eBoardMainbrd = 1,
|
||||
eBoardINS,
|
||||
eBoardPip = 3,
|
||||
eBoardCC = 4,
|
||||
eBoardRevo = 9,
|
||||
};
|
||||
|
||||
|
@ -72,19 +72,9 @@ void RunningDeviceWidget::populate()
|
||||
myDevice->devicePicture->scene()->clear();
|
||||
|
||||
switch (id) {
|
||||
case 0x0101:
|
||||
case 0x0201:
|
||||
devicePic.load("");
|
||||
break;
|
||||
case 0x0301:
|
||||
devicePic.load(":/uploader/images/gcs-board-oplink.png");
|
||||
break;
|
||||
case 0x0401:
|
||||
devicePic.load(":/uploader/images/gcs-board-cc.png");
|
||||
break;
|
||||
case 0x0402:
|
||||
devicePic.load(":/uploader/images/gcs-board-cc3d.png");
|
||||
break;
|
||||
case 0x0903:
|
||||
devicePic.load(":/uploader/images/gcs-board-revo.png");
|
||||
break;
|
||||
|
@ -5,17 +5,9 @@
|
||||
<file>images/process-stop.svg</file>
|
||||
<file>images/dialog-apply.svg</file>
|
||||
<file>images/gtk-info.svg</file>
|
||||
<file>images/deviceID-0401.svg</file>
|
||||
<file>images/deviceID-0301.svg</file>
|
||||
<file>images/deviceID-0201.svg</file>
|
||||
<file>images/deviceID-0101.svg</file>
|
||||
<file>images/application-certificate.svg</file>
|
||||
<file>images/warning.svg</file>
|
||||
<file>images/error.svg</file>
|
||||
<file>images/deviceID-0402.svg</file>
|
||||
<file>images/gcs-board-cc.png</file>
|
||||
<file>images/gcs-board-cc3d.png</file>
|
||||
<file>images/pipx.png</file>
|
||||
<file>images/gcs-board-oplink.png</file>
|
||||
<file>images/gcs-board-revo.png</file>
|
||||
</qresource>
|
||||
|
@ -752,10 +752,6 @@ bool UploaderGadgetWidget::autoUpdate(bool erase)
|
||||
case 0x301:
|
||||
filename = "fw_oplinkmini";
|
||||
break;
|
||||
case 0x401:
|
||||
case 0x402:
|
||||
filename = "fw_coptercontrol";
|
||||
break;
|
||||
case 0x501:
|
||||
filename = "fw_osd";
|
||||
break;
|
||||
@ -814,7 +810,6 @@ bool UploaderGadgetWidget::autoUpdate(bool erase)
|
||||
commonSystemBoot(false, erase);
|
||||
|
||||
// Wait for board to connect to GCS again after boot and erase
|
||||
// For older board like CC3D this can take some time
|
||||
// Theres a special case with OPLink
|
||||
if (!telemetryManager->isConnected() && !m_oplinkwatchdog.isConnected()) {
|
||||
progressUpdate(erase ? BOOTING_AND_ERASING : BOOTING, QVariant());
|
||||
|
@ -178,18 +178,11 @@ void UsageTrackerPlugin::collectUsageParameters(QMap<QString, QString> ¶mete
|
||||
parameters["conf_receiver"] = getUAVFieldValue(objManager, "ManualControlSettings", "ChannelGroups", 0);
|
||||
parameters["conf_vehicle"] = getUAVFieldValue(objManager, "SystemSettings", "AirframeType");
|
||||
|
||||
if ((boardModel & 0xff00) == 0x0400) {
|
||||
// CopterControl family
|
||||
parameters["conf_rport"] = getUAVFieldValue(objManager, "HwSettings", "CC_RcvrPort");
|
||||
parameters["conf_mport"] = getUAVFieldValue(objManager, "HwSettings", "CC_MainPort");
|
||||
parameters["conf_fport"] = getUAVFieldValue(objManager, "HwSettings", "CC_FlexiPort");
|
||||
} else if ((boardModel & 0xff00) == 0x0900) {
|
||||
// Revolution family
|
||||
parameters["conf_rport"] = getUAVFieldValue(objManager, "HwSettings", "RM_RcvrPort");
|
||||
parameters["conf_mport"] = getUAVFieldValue(objManager, "HwSettings", "RM_MainPort");
|
||||
parameters["conf_fport"] = getUAVFieldValue(objManager, "HwSettings", "RM_FlexiPort");
|
||||
parameters["conf_fusion"] = getUAVFieldValue(objManager, "RevoSettings", "FusionAlgorithm");
|
||||
}
|
||||
// Revolution family
|
||||
parameters["conf_rport"] = getUAVFieldValue(objManager, "HwSettings", "RM_RcvrPort");
|
||||
parameters["conf_mport"] = getUAVFieldValue(objManager, "HwSettings", "RM_MainPort");
|
||||
parameters["conf_fport"] = getUAVFieldValue(objManager, "HwSettings", "RM_FlexiPort");
|
||||
parameters["conf_fusion"] = getUAVFieldValue(objManager, "RevoSettings", "FusionAlgorithm");
|
||||
|
||||
parameters["conf_uport"] = getUAVFieldValue(objManager, "HwSettings", "USB_HIDPort");
|
||||
parameters["conf_vport"] = getUAVFieldValue(objManager, "HwSettings", "USB_VCPPort");
|
||||
|