Skip to content

Instantly share code, notes, and snippets.

@TooMuchAir
Last active December 15, 2025 21:37
Show Gist options
  • Select an option

  • Save TooMuchAir/8fa5d2a6ff109621794bab7146242121 to your computer and use it in GitHub Desktop.

Select an option

Save TooMuchAir/8fa5d2a6ff109621794bab7146242121 to your computer and use it in GitHub Desktop.
ESPHome YAML Fan Controller for Radiators

ESPHome YAML Fan Controller for Radiators

Description ESPHome YAML config file that uses an ESP and a few parts to turn a normal radiator into a smart radiator with fans.

This project combines several features:

  • Automatically turn on and off fans underneath a radiator to increase heating or cooling, ideal for heat pump operated systems
  • Control the speed of the fans
  • Measure flow and return temperatures
  • Report temperatures, so that radiator valves and water throughput can be optimized (hydraulic balancing)

Prerequisites/Required Parts

  • ESP32 (supports hardware PWM)
  • Socket for ESP32 (recommended)
  • PWM fan(s)
  • 3D printed frame that holds the fans
  • Magnets to hold the frame
  • 12V power supply
  • 5V fixed voltage regulator (for ESP32 power supply)
  • NPN Darlington transistor
  • 4.7 kΩ resistor
  • 2 DS18B20 temperature probes
  • 12V connector socket (recommended)
  • soldering board to hold all parts

HW Setup:

Wiring
Ideally, the entire system is powered by only one 12V source that can feed the fans, as well as the ESP32. The 5V regulator steps the voltage down for the ESP32. The power supply will need to support all fans. However, if the fans are operated at a fraction of their maximum performance, the power supply can be undersized. Two DS18B20 temperature probes are used for flow and return lines. These need to be attached to the respective pipes with wire straps or similar. The NPN transistor is used to turn the fans off completely, as this cannot be achieved through the PWM signal. It needs to be capable to handle the electrical current and should be able to work with the ESP32. I have used a TIP102, though that may be oversized. The fans can be daisy-chained, incl. the PWM wire, which can be connected to the ESP32 directly. Everything should fit onto a small soldering board and can be glued to the frame underneath the radiator. The fans can be put onto a 3D printed frame. There are various models with different sizes on Thingiverse, such as this one. Magnets are needed to hold the frame in place. In addition, I have used anti-vibration rubber fan mounts to hold the fans on the frame. In the end, everything should nicely fit into the bottom of radiator and should be invisible (apart from the power adapter), guaranteeing a high WAF.

Wiring:
Should be pretty straightforward. Only thing to be aware of is to not daisy-chain the tachometer signal from the fans, as these will all be different.

ESPHome:
The ESP must be ESPHome-controlled. The home page explains the multiple ways this can be achieved.

Config File:
The YAML file configures:

  • variables that hold heating and cooling threshold temperatures. When these are exceeded the fans will be turned on/off.
  • variables that hold the PWM values = speed of the fans
  • variable that controls the mode. This is used to "switch" between the thresholds for heating and cooling, so that the fans do not turn on in the winter, once the temperature falls below the cooling threshold (and vice versa in the summer).
  • an MQTT component that exposes the variables. Read/write using topic/state or topic/command.
  • one or more WiFi networks to connect to.

ESP YAML Setup:
Adjust the settings in the "substitutions" section of the YAML file and create a "secrets" file with the necessary passwords.
The DS18B20 addresses need to be discovered. This can be achieved by temporarily using an empty 1-Wire YAML configuration in DEBUG mode. The address(es) of the 1-Wire sensors will then be shown in the debug log:

    substitutions:
      device_name: livingroomradiator  # Adjust!
      friendly_name: "Radiator Livingroom" # Adjust!
      one_wire_pin: 10 # 1-Wire pin for DS18B20 temperature. Adjust!
      # pwm_pin: 0 # PWM output to fans. Adjust!
      # pwm_freq: 25000  # higher values will decrease resolution, lower values will become audible
      # pwm_channel: 0
      # fan_enable_pin: 2 # turn fan on/off  # Adjust!
      # sensor_flow_temp: 0x0000000000000000  # Adjust!
      # sensor_return_temp: 0x0000000000000000  # Adjust!
      domain: .fritz.box # Adjust!
      # mqtt_broker: mqtt${domain} # Adjust!
      # mqtt_topic_prefix: 'radiator/${device_name}'
      log_level: DEBUG   # INFO DEBUG
    
    #define PWMRESOLUTION  8
    #define PWM_MAX_VAL    255 // 2^PWMRESOLUTION -1
    
    ############ SETUP ############
    esphome:
      name: ${device_name}
      friendly_name: ${friendly_name}
      min_version: 2025.9.0
      name_add_mac_suffix: false
    
    esp32:
      variant: esp32c3
      framework:
        type: esp-idf
    
    logger:
      level: ${log_level} # INFO  # Don't use DEBUG in production
      baud_rate: 0 #disable serial in order to use serial ports for modbus
      logs:
        # Reduce verbosity for components that might log sensitive data
        wifi: WARN
        api: WARN
    
    wifi:
      min_auth_mode: WPA2
      domain: ${domain}
      networks:
      - ssid: !secret wifi_ssid
        password: !secret wifi_password
    
    ota:
      - platform: esphome
        password: !secret eh_tesla_ota_password
    
    one_wire:
      - platform: gpio
        pin: ${one_wire_pin}

Once the sensor addresses are added to the YAML code it can be "Installed" (uploaded) to the ESP device. The temperature threshold and PWM values can be modified using MQTT (with topic/command). In addition, it is possible to monitor the flow and return temperatures. If these are very close together (less than 2-3 °C), then the radiator is not able to radiate enough heat and the throughput should likely be limited by using the valve.

Warm regards!

Display the source blob
Display the rendered blob
Raw
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
<!-- Created with Fritzing (https://fritzing.org/) -->
<svg xmlns="http://www.w3.org/2000/svg" baseProfile="tiny" height="3.80343in" version="1.2" viewBox="0 0 509.694 273.847" width="7.07909in" x="0in" xmlns:svg="http://www.w3.org/2000/svg" y="0in">
<g id="watermark" >
<g >
<g >
<path d="M484.962,267.647c-0.604,0,-1.131,0.325,-1.422,0.809l-2.796,0l3.96,-4.071c0.146,-0.146,0.289,-0.322,0.428,-0.521c0.149,-0.222,0.228,-0.479,0.228,-0.768c0,-0.279,-0.097,-0.518,-0.287,-0.71c-0.19,-0.188,-0.444,-0.287,-0.754,-0.287l-4.636,0c-0.305,0,-0.555,0.06,-0.742,0.17c-0.219,0.13,-0.33,0.368,-0.33,0.707c0,0.329,0.111,0.562,0.33,0.692c0.188,0.111,0.438,0.168,0.742,0.168l3.148,0l-3.974,4.086c-0.146,0.147,-0.289,0.315,-0.425,0.504c-0.153,0.212,-0.23,0.472,-0.23,0.771c0,0.28,0.096,0.521,0.288,0.711c0.188,0.188,0.442,0.285,0.754,0.285l4.315,0c0.293,0.467,0.812,0.776,1.4,0.776c0.916,0,1.66,-0.744,1.66,-1.661C486.621,268.392,485.876,267.647,484.962,267.647zM484.962,269.91c-0.334,0,-0.604,-0.271,-0.604,-0.604c0,-0.333,0.27,-0.604,0.604,-0.604c0.332,0,0.604,0.271,0.604,0.604C485.565,269.641,485.294,269.91,484.962,269.91z" fill="#8C8C8C" />
<path d="M468.019,257.605c-0.914,0,-1.659,0.745,-1.659,1.66c0,0.916,0.745,1.66,1.659,1.66s1.658,-0.744,1.658,-1.66C469.679,258.35,468.935,257.605,468.019,257.605zM468.02,259.868c-0.333,0,-0.604,-0.27,-0.604,-0.603s0.271,-0.603,0.604,-0.603c0.331,0,0.604,0.27,0.604,0.603S468.351,259.868,468.02,259.868z" fill="#8C8C8C" />
<path d="M476.54,262.267c-0.193,-0.111,-0.439,-0.169,-0.732,-0.169l-1.465,0L474.343,259.576c0,-0.292,-0.057,-0.538,-0.166,-0.729C474.087,258.69,473.894,258.505,473.484,258.505c-0.34,0,-0.578,0.116,-0.709,0.342c-0.109,0.193,-0.167,0.438,-0.167,0.729l0,2.521l-0.481,0c-0.295,0,-0.539,0.06,-0.731,0.169c-0.228,0.129,-0.341,0.368,-0.341,0.708c0,0.412,0.185,0.603,0.341,0.692c0.192,0.111,0.438,0.168,0.731,0.168l0.481,0l0,4.362c0,0.277,0.026,0.533,0.081,0.768c0.056,0.246,0.154,0.464,0.298,0.645c0.146,0.186,0.345,0.332,0.595,0.436c0.241,0.098,0.555,0.146,0.93,0.146l0.896,0c0.292,0,0.539,-0.054,0.731,-0.166c0.154,-0.089,0.341,-0.281,0.341,-0.693c0,-0.338,-0.114,-0.578,-0.341,-0.709c-0.192,-0.109,-0.439,-0.168,-0.731,-0.168l-0.821,0c-0.138,0,-0.19,-0.019,-0.207,-0.024c-0.014,-0.034,-0.035,-0.103,-0.035,-0.231L474.345,263.835l1.465,0c0.295,0,0.541,-0.057,0.734,-0.168c0.152,-0.09,0.34,-0.28,0.34,-0.692C476.88,262.635,476.767,262.396,476.54,262.267z" fill="#8C8C8C" />
<path d="M468.085,262.097l-1.191,0c-0.292,0,-0.538,0.059,-0.731,0.169c-0.226,0.129,-0.341,0.368,-0.341,0.708c0,0.412,0.188,0.604,0.341,0.691c0.193,0.113,0.439,0.168,0.731,0.168l0.544,0l0,5.362c0,0.293,0.057,0.539,0.167,0.73c0.131,0.227,0.367,0.341,0.708,0.341c0.411,0,0.604,-0.187,0.692,-0.341c0.111,-0.191,0.168,-0.438,0.168,-0.73L469.173,263.185c0,-0.386,-0.084,-0.656,-0.256,-0.83C468.742,262.183,468.472,262.097,468.085,262.097z" fill="#8C8C8C" />
<path d="M464.25,262.267c-0.193,-0.111,-0.44,-0.169,-0.732,-0.169l-0.604,0c-0.25,0,-0.498,0.063,-0.734,0.187c-0.226,0.119,-0.433,0.271,-0.616,0.453l-0.644,0.604l0,-0.247c0,-0.291,-0.055,-0.538,-0.168,-0.729c-0.128,-0.228,-0.368,-0.34,-0.707,-0.34c-0.41,0,-0.604,0.184,-0.693,0.34c-0.11,0.191,-0.167,0.438,-0.167,0.729l0,4.801c-0.475,0.293,-0.791,0.816,-0.791,1.412c0,0.917,0.745,1.661,1.658,1.661c0.916,0,1.66,-0.744,1.66,-1.661c0,-0.596,-0.317,-1.119,-0.792,-1.412l0,-2.21l1.738,-1.564c0.1,-0.09,0.199,-0.164,0.297,-0.217c0.084,-0.045,0.174,-0.067,0.274,-0.067l0.288,0c0.292,0,0.539,-0.056,0.732,-0.169c0.155,-0.088,0.339,-0.279,0.339,-0.691C464.59,262.635,464.475,262.396,464.25,262.267zM460.051,269.91c-0.332,0,-0.603,-0.271,-0.603,-0.604c0,-0.333,0.271,-0.604,0.603,-0.604c0.333,0,0.604,0.271,0.604,0.604C460.655,269.641,460.384,269.91,460.051,269.91z" fill="#8C8C8C" />
<path d="M457.534,258.748c-0.193,-0.111,-0.44,-0.167,-0.731,-0.167l-0.59,0c-0.2,0,-0.389,0.004,-0.562,0.016c-0.176,0.009,-0.345,0.035,-0.506,0.07c-0.168,0.041,-0.336,0.109,-0.496,0.202c-0.158,0.093,-0.319,0.222,-0.48,0.382c-0.334,0.314,-0.554,0.656,-0.652,1.017c-0.094,0.348,-0.143,0.735,-0.143,1.151l0,0.678l-0.483,0c-0.292,0,-0.539,0.059,-0.73,0.169c-0.227,0.13,-0.342,0.369,-0.342,0.708c0,0.412,0.185,0.604,0.341,0.693c0.191,0.111,0.438,0.166,0.73,0.166l0.483,0l0,5.362c0,0.293,0.057,0.539,0.167,0.73c0.13,0.227,0.367,0.341,0.708,0.341c0.411,0,0.603,-0.187,0.692,-0.341c0.111,-0.191,0.168,-0.438,0.168,-0.73l0,-5.36l0.92,0c0.293,0,0.54,-0.057,0.732,-0.168c0.155,-0.09,0.34,-0.28,0.34,-0.692c0,-0.34,-0.114,-0.579,-0.34,-0.708c-0.189,-0.111,-0.436,-0.17,-0.729,-0.17l-0.92,0l0,-0.678c0,-0.218,0.019,-0.41,0.056,-0.571c0.032,-0.141,0.103,-0.261,0.218,-0.367l0.002,-0.004l0.002,-0.002c0.082,-0.082,0.176,-0.126,0.29,-0.136c0.15,-0.015,0.339,-0.022,0.564,-0.022l0.56,0c0.291,0,0.539,-0.058,0.731,-0.168c0.154,-0.088,0.339,-0.281,0.339,-0.693C457.874,259.117,457.759,258.878,457.534,258.748z" fill="#8C8C8C" />
<path d="M509.527,262.365c-0.089,-0.156,-0.282,-0.34,-0.693,-0.34c-0.339,0,-0.578,0.113,-0.707,0.34c-0.078,0.133,-0.127,0.293,-0.152,0.477l-0.021,-0.021c-0.216,-0.236,-0.466,-0.42,-0.747,-0.539c-0.277,-0.119,-0.563,-0.183,-0.849,-0.183l-0.709,0c-0.249,0,-0.466,0.015,-0.64,0.041c-0.182,0.026,-0.352,0.074,-0.51,0.14c-0.158,0.066,-0.313,0.15,-0.459,0.254c-0.139,0.097,-0.303,0.226,-0.486,0.377c-0.188,0.156,-0.342,0.302,-0.463,0.434c-0.127,0.141,-0.23,0.293,-0.306,0.455c-0.069,0.16,-0.122,0.337,-0.147,0.523c-0.026,0.178,-0.041,0.391,-0.041,0.631l0,2.386c0,0.24,0.015,0.451,0.041,0.631c0.025,0.188,0.078,0.361,0.147,0.521c0.074,0.164,0.179,0.318,0.306,0.457c0.119,0.129,0.274,0.274,0.463,0.433c0.186,0.153,0.35,0.28,0.486,0.379c0.146,0.103,0.299,0.188,0.459,0.254c0.158,0.065,0.329,0.112,0.51,0.14c0.174,0.026,0.389,0.039,0.64,0.039l0.709,0c0.298,0,0.591,-0.066,0.87,-0.199c0.244,-0.114,0.492,-0.291,0.73,-0.523l0,1.434c0,0.18,-0.025,0.334,-0.072,0.465c-0.043,0.119,-0.159,0.258,-0.344,0.406c-0.154,0.127,-0.309,0.217,-0.457,0.264c-0.15,0.049,-0.341,0.074,-0.563,0.074l-2.203,0c-0.293,0,-0.538,0.055,-0.732,0.166c-0.152,0.088,-0.34,0.282,-0.34,0.692c0,0.341,0.115,0.579,0.34,0.71c0.194,0.109,0.439,0.167,0.732,0.167l2.326,0c0.247,0,0.463,-0.015,0.638,-0.041c0.179,-0.026,0.351,-0.073,0.513,-0.14c0.153,-0.064,0.31,-0.15,0.455,-0.254c0.143,-0.101,0.305,-0.227,0.487,-0.379c0.185,-0.153,0.343,-0.299,0.463,-0.431c0.128,-0.141,0.229,-0.294,0.304,-0.456c0.071,-0.162,0.123,-0.338,0.148,-0.523c0.025,-0.182,0.041,-0.393,0.041,-0.631l0,-7.898C509.694,262.803,509.64,262.556,509.527,262.365zM507.958,266.825c0,0.188,-0.062,0.35,-0.188,0.49c-0.15,0.172,-0.394,0.403,-0.716,0.686l-0.002,0.003l-0.002,0.004c-0.139,0.13,-0.291,0.237,-0.453,0.325c-0.148,0.082,-0.325,0.121,-0.526,0.121L505.77,268.454c-0.222,0,-0.41,-0.021,-0.563,-0.072c-0.148,-0.049,-0.301,-0.137,-0.453,-0.264c-0.231,-0.186,-0.315,-0.322,-0.346,-0.404c-0.049,-0.131,-0.072,-0.285,-0.072,-0.465l0,-2.206c0,-0.18,0.023,-0.336,0.072,-0.467c0.029,-0.082,0.113,-0.217,0.346,-0.403c0.152,-0.127,0.305,-0.216,0.453,-0.265c0.153,-0.049,0.342,-0.072,0.563,-0.072l0.301,0c0.212,0,0.388,0.037,0.526,0.113c0.152,0.082,0.308,0.191,0.457,0.324c0.322,0.293,0.564,0.529,0.716,0.7c0.128,0.146,0.188,0.304,0.188,0.492L507.958,266.825z" fill="#8C8C8C" />
<path d="M489.548,257.605c-0.914,0,-1.66,0.745,-1.66,1.66c0,0.916,0.746,1.66,1.66,1.66s1.66,-0.744,1.66,-1.66C491.208,258.35,490.462,257.605,489.548,257.605zM489.548,259.868c-0.332,0,-0.604,-0.27,-0.604,-0.603s0.271,-0.603,0.604,-0.603s0.604,0.27,0.604,0.603C490.152,259.598,489.88,259.868,489.548,259.868z" fill="#8C8C8C" />
<path d="M500.234,267.873l-0.107,-3.419c-0.011,-0.178,-0.021,-0.338,-0.031,-0.489c-0.01,-0.162,-0.037,-0.322,-0.082,-0.476c-0.045,-0.158,-0.11,-0.309,-0.198,-0.453c-0.093,-0.146,-0.216,-0.289,-0.37,-0.42c-0.225,-0.192,-0.443,-0.334,-0.646,-0.416c-0.207,-0.084,-0.461,-0.127,-0.754,-0.127l-1.012,0c-0.259,0,-0.501,0.058,-0.716,0.164c-0.197,0.098,-0.39,0.203,-0.572,0.315l-0.003,0.002l-0.003,0.003l-0.837,0.555l0,-0.041c0,-0.291,-0.057,-0.539,-0.168,-0.733c-0.129,-0.226,-0.367,-0.339,-0.707,-0.339c-0.411,0,-0.604,0.185,-0.693,0.339c-0.109,0.194,-0.168,0.438,-0.168,0.733l0,6.099c0,0.295,0.059,0.539,0.168,0.734c0.09,0.153,0.282,0.338,0.693,0.338c0.34,0,0.578,-0.114,0.707,-0.338c0.111,-0.195,0.168,-0.439,0.168,-0.734L494.903,265.135l1.953,-1.215c0.04,-0.024,0.082,-0.048,0.121,-0.063c0.031,-0.016,0.07,-0.025,0.115,-0.031c0.049,-0.012,0.117,-0.016,0.195,-0.016l0.362,0c0.188,0,0.334,0.021,0.435,0.059c0.082,0.029,0.143,0.076,0.18,0.143c0.05,0.078,0.08,0.18,0.098,0.303c0.02,0.139,0.034,0.309,0.045,0.504l0.096,3.097c-0.457,0.297,-0.762,0.811,-0.762,1.394c0,0.917,0.746,1.661,1.66,1.661c0.916,0,1.66,-0.744,1.66,-1.661C501.06,268.698,500.727,268.16,500.234,267.873zM499.4,269.91c-0.334,0,-0.602,-0.271,-0.602,-0.604c0,-0.333,0.268,-0.604,0.602,-0.604c0.333,0,0.604,0.271,0.604,0.604C500.005,269.641,499.733,269.91,499.4,269.91z" fill="#8C8C8C" />
<path d="M489.611,262.097l-1.193,0c-0.293,0,-0.539,0.059,-0.731,0.169c-0.226,0.129,-0.341,0.368,-0.341,0.708c0,0.412,0.186,0.604,0.341,0.691c0.192,0.113,0.438,0.168,0.731,0.168l0.545,0l0,5.362c0,0.293,0.055,0.539,0.168,0.73c0.127,0.227,0.365,0.341,0.707,0.341c0.41,0,0.604,-0.187,0.691,-0.341c0.111,-0.191,0.17,-0.438,0.17,-0.73L490.699,263.185c0,-0.386,-0.085,-0.656,-0.259,-0.83C490.268,262.183,489.995,262.097,489.611,262.097z" fill="#8C8C8C" />
</g>
</g>
</g>
<g partID="62390">
<g transform="translate(394.403,108.467)">
<g id="breadboard">
<path d="m0,5.12423l51.0236,0l0,2.10696l-3.4217,2.19401,3.4217,2.29039l0,2.78929l-3.41858,2.37827,3.41858,1.96724,-2.88e-06,3.0274,-3.42058,1.99559,3.42058,2.3726l0,2.79212l-3.70562,2.20535,3.70562,2.17701l0,2.70708l-3.41858,2.19118,3.41858,2.19118l0,2.78929l-3.41858,2.19401,3.41858,2.19118l0,2.70425l-3.42058,2.27905,3.42058,2.19118l0,2.8885l-3.42058,2.27622,3.42058,2.00976l0,6.92706l-51.0236,0l0,-6.92706l3.42058,-2.19401,-3.42058,-2.18268l0,-2.69858l3.13553,-2.2337,-3.13553,-2.34992l0,-2.75244l3.13553,-2.12599,-3.13553,-2.40945l0,-2.77512l3.42058,-2.10614,-3.42058,-2.27905l0,-2.61921l3.42058,-2.17777,-3.42058,-2.27262l0,-2.89417l3.42058,-2.1515,-3.42058,-2.26772l0,-2.65323l3.13553,-2.39244,-3.13553,-1.99276l0,-2.70502l3.13553,-2.47671,-3.13553,-2.00693z" fill="#333333" id="upper" stroke-width="0"/>
<path d="m0,13.8614,2.84315,0.0007344c2.23888,0.00991368,3.15007,0.994052,3.13512,2.8063,0.0121529,1.73438,-0.928298,2.74196,-3.13512,2.80913l-2.84315,-0.000216,1.44e-06,-1.33863c1.27284,0.0172649,1.75336,-0.362023,1.8,-1.43474,-0.0064656,-1.14462,-0.2591,-1.61514,-1.8,-1.70888z" fill="#f7bd13" id="path376" stroke-width="0"/>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="2.681" id="rect3806-5" width="7.96601" x="6.22267" y="-9.62387"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.046" id="rect3808-3" opacity="0.2" width="7.96601" x="6.22267" y="-9.62387"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.798998" id="rect3810-2" width="7.96601" x="6.22267" y="-7.59388"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.032" id="rect3812-0" opacity="0.2" width="7.96601" x="6.22267" y="-6.82187"/>
</g>
<path d="m9.62388,13.0316l0,0,0,0,0,-0.0930024,0,0c-0.251,-0.0799992,-0.796003,-0.135,-1.075,-0.135,-0.291,0,-0.693,0.0480002,-0.955001,0.135l0,0,0,0l7.2e-06,1.223l2.03,0z" fill="#dcdcdc" id="path3814-1"/>
<path d="m9.51984,7.4677l0.104,0l0,-1.222l-2.03,0l0,1.223c0.262994,0.0880013,0.658994,0.192999,0.954,0.192999,0.345996,0,0.670997,-0.0749952,0.972,-0.193997z" fill="#dcdcdc" id="path3816-8"/>
<path d="m7.48786,14.1687l0,-1.22298l0.106006,-0.0069984l0,1.223z" fill="#999999" id="path3818-3"/>
<path d="m7.48584,6.25167l0,1.223l0.108001,-0.0069984l0,-1.22201l-0.108001,0.0059976z" fill="#999999" id="path3820-0"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.046" id="rect3822-1" opacity="0.15" width="1.223" x="6.24567" y="-6.83587"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.046" id="rect3824-2" opacity="0.5" width="1.223" x="6.24567" y="-9.62387"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.046" id="rect3826-2" opacity="0.15" width="1.224" x="12.9397" y="-6.83587"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.046" id="rect3828-8" opacity="0.5" width="1.224" x="12.9397" y="-9.62387"/>
</g>
<line fill="none" id="line3830-8" x1="6.78987" x2="6.78987" y1="6.98467" y2="6.98467"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.692" id="rect3832-0" width="0.118" x="14.0697" y="-7.48787"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.692" id="rect3834-1" width="0.119" x="6.24567" y="-7.48787"/>
</g>
<g transform="matrix(0, -5.76507, 5.76507, 0, 6.89538, 35.0444)">
<polygon fill="#cccccc" id="_x30_.1.15.0.0.0.0" points="0.232488,1.53086,0.258984,1.53086,0.258984,2.12587,0.232488,2.12587,0.232488,2.57558,1.38298,2.57558,1.38298,1.08108,0.232488,1.08108" stroke-width="0.173455"/>
</g>
<g transform="matrix(0, -5.76507, 5.76507, 0, 6.89538, 35.0444)">
<polygon fill="#cccccc" id="_x30_.1.15.0.0.0.1" points="1.5673,2.12587,1.54073,2.12587,1.54073,1.53086,1.5673,1.53086,1.5673,1.08108,0.425376,1.08108,0.425376,2.57558,1.5673,2.57558" stroke-width="0.173455"/>
</g>
<g transform="rotate(-90)">
<ellipse cx="-29.8575" cy="17.4365" fill="#641d1c" id="_x30_.1.15.0.0.0.2" rx="2.12399" ry="2.12399" stroke-width="1"/>
</g>
<path d="m19.5597,29.7537c0,-1.17345,-0.950126,-2.1244,-2.12275,-2.1244,-1.17303,0,-2.12524,0.950126,-2.12524,2.1244l0,0.103355c0,-1.17344,0.951372,-2.1244,2.12524,-2.1244,1.17261,0,2.12275,0.950962,2.12275,2.1244z" enable-background="new " id="_x30_.1.15.0.0.0.3" opacity="0.2" stroke-width="1"/>
<g transform="rotate(-90)">
<ellipse cx="-29.8571" cy="17.4365" fill="#852725" id="_x30_.1.15.0.0.0.4" rx="2.04637" ry="2.04637" stroke-width="1"/>
</g>
<g transform="rotate(-90)">
<ellipse cx="-29.9052" cy="17.4365" fill="#b3b3b3" id="_x30_.1.15.0.0.0.5" rx="2.04595" ry="2.04595" stroke-width="1"/>
</g>
<path d="m17.4851,31.9031c1.1307,0,2.04679,-0.915674,2.04679,-2.04679,0,-1.13069,-0.916092,-2.04595,-2.04679,-2.04595l-0.0967147,0c1.1307,0,2.04679,0.91651,2.04679,2.04595,0,1.13111,-0.916092,2.04679,-2.04679,2.04679z" enable-background="new " id="_x30_.1.15.0.0.0.6.0" opacity="0.1" stroke-width="1"/>
<path d="m17.4851,27.8107c-1.13111,0,-2.04637,0.91651,-2.04637,2.04595,0,1.13111,0.915264,2.04679,2.04637,2.04679l-0.0967147,0c-1.1307,0,-2.04679,-0.915674,-2.04679,-2.04679,0,-1.13069,0.916092,-2.04595,2.04679,-2.04595z" enable-background="new " fill="#ffffff" id="_x30_.1.15.0.0.0.6.1" opacity="0.2" stroke-width="1"/>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.153997" id="_x30_.1.15.0.0.0.7.0" opacity="0.2" stroke-width="1" width="2.59345" x="-15.7199" y="-33.704"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.153997" id="_x30_.1.15.0.0.0.8.0" opacity="0.2" stroke-width="1" width="2.59179" x="-21.7426" y="-33.7039"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.152751" id="_x30_.1.15.0.0.0.9.0" opacity="0.2" stroke-width="1" width="3.43109" x="-19.1505" y="-33.5512"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.152751" id="_x30_.1.15.0.0.0.10.0" opacity="0.2" stroke-width="1" width="2.59345" x="-15.7199" y="-26.1671"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.153166" id="_x30_.1.15.0.0.0.11.0" opacity="0.2" stroke-width="1" width="2.59179" x="-21.7422" y="-26.1685"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.153166" id="_x30_.1.15.0.0.0.12.0" opacity="0.2" stroke-width="1" width="3.43151" x="-19.1511" y="-26.3213"/>
</g>
<rect fill="#e6e6e6" height="0.934356" id="_x30_.1.15.0.1.0" stroke-width="1" width="1.14148" x="21.7534" y="31.9321"/>
<rect fill="#e6e6e6" height="0.934771" id="_x30_.1.15.0.1.1" stroke-width="1" width="1.14148" x="21.7534" y="26.8469"/>
<rect fill="#e6e6e6" height="0.934356" id="_x30_.1.15.0.1.3" stroke-width="1" width="1.14148" x="12.0507" y="31.9321"/>
<rect fill="#e6e6e6" height="0.934771" id="_x30_.1.15.0.1.4" stroke-width="1" width="1.14148" x="12.0507" y="26.8469"/>
<rect enable-background="new " fill="#ffffff" height="0.934356" id="_x30_.1.15.0.1.6" opacity="0.2" stroke-width="1" width="0.138638" x="12.0507" y="31.9321"/>
<rect enable-background="new " fill="#ffffff" height="0.934771" id="_x30_.1.15.0.1.7" opacity="0.2" stroke-width="1" width="0.138638" x="12.0507" y="26.8469"/>
<rect enable-background="new " height="0.934356" id="_x30_.1.15.0.1.8" opacity="0.2" stroke-width="1" width="0.0431689" x="22.8699" y="31.9242"/>
<rect enable-background="new " height="0.934771" id="_x30_.1.15.0.1.9" opacity="0.2" stroke-width="1" width="0.0431689" x="22.8699" y="26.839"/>
<rect enable-background="new " height="0.934356" id="_x30_.1.15.0.1.10" opacity="0.1" stroke-width="1" width="0.138638" x="21.76" y="31.9375"/>
<rect enable-background="new " height="0.934771" id="_x30_.1.15.0.1.11" opacity="0.1" stroke-width="1" width="0.138638" x="21.76" y="26.8523"/>
<text fill="#ffffff" font-family="OCRA" font-size="3.49999" id="text3683" x="45.8311" y="66.4411">0</text>
<text fill="#ffffff" font-family="OCRA" font-size="3.49999" id="text3685" x="1.00943" y="66.74">21</text>
<g transform="rotate(-90)">
<text fill="#ffffff" font-family="OCRA" font-size="2.88" id="text3687" x="-33.1625" y="43.7055">RST</text>
</g>
<g transform="scale(-1)">
<rect fill="#666666" height="0.65" id="rect8" width="0.99" x="-29.0359" y="-21.521"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.512" id="rect10" width="0.0889999" x="-29.0359" y="-21.521"/>
</g>
<g transform="scale(-1)">
<rect fill="#666666" height="0.65" id="rect14" width="0.991001" x="-27.1919" y="-21.521"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.512" id="rect16" width="0.0889999" x="-27.1919" y="-21.521"/>
</g>
<g transform="scale(-1)">
<rect fill="#666666" height="0.65" id="rect20" width="0.991001" x="-25.3509" y="-21.521"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.512" id="rect22" width="0.0889999" x="-25.3509" y="-21.521"/>
</g>
<g transform="scale(-1)">
<rect fill="#666666" height="0.65" id="rect26" width="0.99" x="-23.5069" y="-21.521"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.512" id="rect28" width="0.0879998" x="-23.5069" y="-21.521"/>
</g>
<g transform="scale(-1)">
<rect fill="#666666" height="0.65" id="rect32" width="0.99" x="-21.6649" y="-21.521"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.512" id="rect34" width="0.0889999" x="-21.6649" y="-21.521"/>
</g>
<g transform="matrix(-1, 1.22465e-16, -1.22465e-16, -1, 36.3209, 21.521)">
<polygon fill="#b3b3b3" id="polygon38" points="2.06,0.366,20.905,0.366,20.904,19.104,20.848,21.364,2.164,21.364,2.06,19.335"/>
</g>
<g transform="matrix(-1, 1.22465e-16, -1.22465e-16, -1, 36.3209, 21.521)">
<polygon fill="#999999" id="polygon40" points="2.275,21.197,4.061,21.192,13.309,21.19,10.12,17.786,2.275,17.786"/>
</g>
<g transform="scale(-1)">
<rect fill="#666666" height="3.041" id="rect42" width="1.831" x="-15.2169" y="-14.541"/>
</g>
<g transform="scale(-1)">
<rect fill="#666666" height="3.041" id="rect44" width="1.829" x="-36.3209" y="-14.541"/>
</g>
<g transform="scale(-1)">
<rect fill="#cccccc" height="0.13" id="rect46" width="18.845" x="-34.2609" y="-21.155"/>
</g>
<g transform="scale(-1)">
<rect fill="#333333" height="18.363" id="rect48" width="10.291" x="-29.9999" y="-21.155"/>
</g>
<g transform="scale(-1)">
<rect fill="#b3b3b3" height="1.082" id="rect50" width="1.003" x="-35.4949" y="-3.33302"/>
</g>
<g transform="scale(-1)">
<rect fill="#cccccc" height="1.082" id="rect52" width="0.642" x="-35.1319" y="-3.33302"/>
</g>
<g transform="scale(-1)">
<rect fill="#b3b3b3" height="1.082" id="rect54" width="1.001" x="-15.2179" y="-3.33302"/>
</g>
<g transform="scale(-1)">
<rect fill="#cccccc" height="1.082" id="rect56" width="0.642" x="-15.2179" y="-3.33302"/>
</g>
<g transform="scale(-1)">
<rect fill="#f2f2f2" height="0.648" id="rect58" width="0.477" x="-20.9209" y="-2.41704"/>
</g>
<g transform="scale(-1)">
<rect fill="#f2f2f2" height="0.648" id="rect62" width="0.479" x="-23.0079" y="-2.41704"/>
</g>
<g transform="scale(-1)">
<rect fill="#f2f2f2" height="0.648" id="rect66" width="0.477" x="-25.092" y="-2.41704"/>
</g>
<g transform="scale(-1)">
<rect fill="#f2f2f2" height="0.648" id="rect70" width="0.477" x="-27.1779" y="-2.41704"/>
</g>
<g transform="scale(-1)">
<rect fill="#f2f2f2" height="0.648" id="rect74" width="0.477" x="-29.2629" y="-2.41704"/>
</g>
<g transform="scale(-1)">
<rect fill="#808080" height="0.648" id="rect78" width="0.0959998" x="-29.2629" y="-2.41704"/>
</g>
<g transform="scale(-1)">
<rect fill="#808080" height="0.648" id="rect82" width="0.0959998" x="-27.1779" y="-2.41704"/>
</g>
<g transform="scale(-1)">
<rect fill="#808080" height="0.648" id="rect86" width="0.0979999" x="-25.092" y="-2.41704"/>
</g>
<g transform="scale(-1)">
<rect fill="#808080" height="0.648" id="rect90" width="0.0979999" x="-23.0069" y="-2.41704"/>
</g>
<g transform="scale(-1)">
<rect fill="#808080" height="0.648" id="rect94" width="0.0979999" x="-20.9199" y="-2.41704"/>
</g>
<path d="m29.776,1.58299l-0.514,0l0,0.396l-0.477,0l0,-0.396l-1.608,0l0,0.396l-0.475993,0l0,-0.396l-1.608,0l0,0.396l-0.477,0l0,-0.396l-1.607,0l0,0.396l-0.479,0l0,-0.396l-1.60902,0l0,0.396l-0.477,0l0,-0.396l-0.322992,0,-0.269,0c-0.0789998,0,-0.144,0.0640001,-0.144,0.146l0,1.064c0,0.0799999,0.063,0.146,0.144,0.146l10.003,4.608e-05c0.0789998,0,0.146,-0.0640001,0.146,-0.146l0,-1.064c0,-0.0779998,-0.0650002,-0.146,-0.146,-0.146z" fill="#4d4d4d" id="path100"/>
<path d="m34.492,20.588,-0.229,0.567l-2.534,0c0,0,2.302,-0.113,2.384,-0.283,0.0820008,-0.170001,-0.11,-0.284,-0.11,-0.284z" fill="#cccccc" id="path102"/>
<path d="m15.2169,20.588,0.229,0.566,2.53501,-2.16e-06c0,0,-2.301,-0.113,-2.383,-0.283,-0.0820008,-0.170001,0.109,-0.283,0.109,-0.283z" fill="#cccccc" id="path104"/>
<path d="m34.492,4.833l0,-4.833l-19.276,0.0059976l0,4.827zm-18.829,-4.509l18.383,0l0,3.411l-18.385,0z" fill="#cccccc" id="path106"/>
<path d="m18.6059,20.588l0,-1.067l1.60502,0l0,1.634l0.461,0l0,-0.566l8.36395,2.88e-06l0,0.565997l0.525031,0l0,-1.635l1.606,-5.04e-06l0,1.068l3.325,0l0,-16.439l-19.273,0l5.76e-05,16.439zm10.955,-13.29l0,-0.814003l1.593,4.32e-05l0,0.880999c0.426,0.277,0.708,0.760003,0.708,1.307,0,0.598,-0.219,1.105,-0.708,1.369l0,0,0,4.48l-1.592,0l0,-4.482c-0.488,-0.264,-0.824998,-0.772999,-0.824998,-1.371,2.16e-05,-0.597046,0.335974,-1.10702,0.823997,-1.37004zm-10.888,0l0,-0.814003l1.592,0l0,0.880999c0.426,0.277,0.707,0.760003,0.707,1.307,0,0.598,-0.217,1.105,-0.707,1.369l0,0,0,4.48l-1.592,0l0,-4.482c-0.49,-0.264,-0.825998,-0.772999,-0.825998,-1.371,1.44e-05,-0.597002,0.334958,-1.10698,0.825998,-1.36999z" fill="#e6e6e6" id="path108"/>
<g transform="matrix(-1, 1.22465e-16, -1.22465e-16, -1, 36.3209, 21.521)">
<polygon fill="#f2f2f2" id="polygon110" points="1.829,0.932998,3.36,0.932998,2.235,17.376,1.829,17.376"/>
</g>
<g transform="matrix(-1, 1.22465e-16, -1.22465e-16, -1, 36.3209, 21.521)">
<polygon fill="#999999" id="polygon112" points="19.968,0.932998,21.104,0.932998,21.104,17.376,20.535,6.396"/>
</g>
<g transform="scale(-1)">
<rect fill="#cccccc" height="0.13" id="rect114" width="1.592" x="-31.1539" y="-14.52"/>
</g>
<g transform="scale(-1)">
<rect fill="#cccccc" height="0.13" id="rect116" width="1.591" x="-20.2629" y="-14.52"/>
</g>
<g transform="scale(-1)">
<rect fill="#b3b3b3" height="0.66" id="rect118" width="17.387" x="-33.5469" y="-5.00904"/>
</g>
<g transform="scale(-1)">
<rect fill="#cccccc" height="0.313" id="rect120" width="17.387" x="-33.5469" y="-4.45802"/>
</g>
<g transform="matrix(0, -5.76507, 5.76507, 0, 23.6202, 35.0444)">
<polygon fill="#cccccc" id="polygon1" points="0.258984,2.12587,0.232488,2.12587,0.232488,2.57558,1.38298,2.57558,1.38298,1.08108,0.232488,1.08108,0.232488,1.53086,0.258984,1.53086" stroke-width="0.173455"/>
</g>
<g transform="matrix(0, -5.76507, 5.76507, 0, 23.6202, 35.0444)">
<polygon fill="#cccccc" id="polygon2" points="1.54073,1.53086,1.5673,1.53086,1.5673,1.08108,0.425376,1.08108,0.425376,2.57558,1.5673,2.57558,1.5673,2.12587,1.54073,2.12587" stroke-width="0.173455"/>
</g>
<g transform="rotate(-90)">
<ellipse cx="-29.8575" cy="34.1613" fill="#641d1c" id="ellipse2" rx="2.12399" ry="2.12399" stroke-width="1"/>
</g>
<path d="m36.2845,29.7537c0,-1.17345,-0.950126,-2.1244,-2.12275,-2.1244,-1.17303,0,-2.12524,0.950126,-2.12524,2.1244l0,0.103355c0,-1.17344,0.951372,-2.1244,2.12524,-2.1244,1.17261,0,2.12275,0.950962,2.12275,2.1244z" enable-background="new " id="path2" opacity="0.2" stroke-width="1"/>
<g transform="rotate(-90)">
<ellipse cx="-29.8571" cy="34.1613" fill="#852725" id="ellipse3" rx="2.04637" ry="2.04637" stroke-width="1"/>
</g>
<g transform="rotate(-90)">
<ellipse cx="-29.9052" cy="34.1613" fill="#b3b3b3" id="ellipse4" rx="2.04595" ry="2.04595" stroke-width="1"/>
</g>
<path d="m34.2099,31.9031c1.1307,0,2.04679,-0.915674,2.04679,-2.04679,0,-1.13069,-0.916092,-2.04595,-2.04679,-2.04595l-0.0967147,0c1.1307,0,2.04679,0.91651,2.04679,2.04595,0,1.13111,-0.916092,2.04679,-2.04679,2.04679z" enable-background="new " id="path4" opacity="0.1" stroke-width="1"/>
<path d="m34.2099,27.8107c-1.13111,0,-2.04637,0.91651,-2.04637,2.04595,0,1.13111,0.915264,2.04679,2.04637,2.04679l-0.0967147,0c-1.1307,0,-2.04679,-0.915674,-2.04679,-2.04679,0,-1.13069,0.916092,-2.04595,2.04679,-2.04595z" enable-background="new " fill="#ffffff" id="path5" opacity="0.2" stroke-width="1"/>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.153997" id="rect5" opacity="0.2" stroke-width="1" width="2.59345" x="-32.4447" y="-33.704"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.153997" id="rect6" opacity="0.2" stroke-width="1" width="2.59179" x="-38.4675" y="-33.7039"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.152751" id="rect7" opacity="0.2" stroke-width="1" width="3.43109" x="-35.8753" y="-33.5512"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.152751" id="rect9" opacity="0.2" stroke-width="1" width="2.59345" x="-32.4448" y="-26.1671"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.153166" id="rect11" opacity="0.2" stroke-width="1" width="2.59179" x="-38.4671" y="-26.1685"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.153166" id="rect12" opacity="0.2" stroke-width="1" width="3.43151" x="-35.8759" y="-26.3213"/>
</g>
<rect fill="#e6e6e6" height="0.934356" id="rect13" stroke-width="1" width="1.14148" x="38.4782" y="31.9321"/>
<rect fill="#e6e6e6" height="0.934771" id="rect15" stroke-width="1" width="1.14148" x="38.4782" y="26.8469"/>
<rect fill="#e6e6e6" height="0.934356" id="rect17" stroke-width="1" width="1.14148" x="28.7756" y="31.9321"/>
<rect fill="#e6e6e6" height="0.934771" id="rect18" stroke-width="1" width="1.14148" x="28.7756" y="26.8469"/>
<rect enable-background="new " fill="#ffffff" height="0.934356" id="rect19" opacity="0.2" stroke-width="1" width="0.138638" x="28.7756" y="31.9321"/>
<rect enable-background="new " fill="#ffffff" height="0.934771" id="rect21" opacity="0.2" stroke-width="1" width="0.138638" x="28.7756" y="26.8469"/>
<rect enable-background="new " height="0.934356" id="rect23" opacity="0.2" stroke-width="1" width="0.0431689" x="39.5948" y="31.9242"/>
<rect enable-background="new " height="0.934771" id="rect24" opacity="0.2" stroke-width="1" width="0.0431689" x="39.5948" y="26.839"/>
<rect enable-background="new " height="0.934356" id="rect25" opacity="0.1" stroke-width="1" width="0.138638" x="38.4849" y="31.9375"/>
<rect enable-background="new " height="0.934771" id="rect27" opacity="0.1" stroke-width="1" width="0.138638" x="38.4849" y="26.8523"/>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.3184" id="rect64" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-18.344" y="44.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.3184" id="rect66-7" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-16.8486" y="44.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.3184" id="rect68" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-15.2364" y="44.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.3184" id="rect34-3" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-19.9796" y="44.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.3184" id="rect70-2" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-11.6614" y="44.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.3184" id="rect72" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-10.166" y="44.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.3184" id="rect74-7" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-8.55372" y="44.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.3184" id="rect76" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-13.297" y="44.4693"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect94-7" stroke="none" stroke-linecap="round" stroke-width="0" width="1.35489" x="20.5983" y="-48.6043"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect96" stroke="none" stroke-linecap="round" stroke-width="0" width="1.35489" x="20.5983" y="-50.0997"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect98" stroke="none" stroke-linecap="round" stroke-width="0" width="1.35489" x="20.5983" y="-51.7119"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect100" stroke="none" stroke-linecap="round" stroke-width="0" width="1.35489" x="20.5983" y="-46.9687"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect102" stroke="none" stroke-linecap="round" stroke-width="0" width="1.35489" x="20.5983" y="-55.2869"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect104" stroke="none" stroke-linecap="round" stroke-width="0" width="1.35489" x="20.5983" y="-56.7823"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect106" stroke="none" stroke-linecap="round" stroke-width="0" width="1.35489" x="20.5983" y="-58.3946"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect108" stroke="none" stroke-linecap="round" stroke-width="0" width="1.35489" x="20.5983" y="-53.6513"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.36701" id="rect78-6" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-18.531" y="59.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.36701" id="rect80" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-17.0355" y="59.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.36701" id="rect82-1" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-15.4233" y="59.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.36701" id="rect84" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-20.1666" y="59.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.36701" id="rect86-9" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-11.8483" y="59.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.36701" id="rect88" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-10.3529" y="59.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.36701" id="rect90-5" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-8.74065" y="59.4693"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="8" fill="#8c8c8c" height="1.36701" id="rect92" stroke="none" stroke-linecap="round" stroke-width="0" width="0.723006" x="-13.4839" y="59.4693"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect120-9" stroke="none" stroke-linecap="round" stroke-width="0" width="1.20907" x="5.62751" y="-49.0417"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect122" stroke="none" stroke-linecap="round" stroke-width="0" width="1.20907" x="5.62751" y="-50.5371"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect124" stroke="none" stroke-linecap="round" stroke-width="0" width="1.20907" x="5.62751" y="-52.1494"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect126" stroke="none" stroke-linecap="round" stroke-width="0" width="1.20907" x="5.62751" y="-47.4061"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect128" stroke="none" stroke-linecap="round" stroke-width="0" width="1.20907" x="5.62751" y="-55.7244"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect130" stroke="none" stroke-linecap="round" stroke-width="0" width="1.20907" x="5.62751" y="-57.2198"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect132" stroke="none" stroke-linecap="round" stroke-width="0" width="1.20907" x="5.62751" y="-58.832"/>
</g>
<g transform="rotate(135)">
<rect connectorname="8" fill="#8c8c8c" height="0.735127" id="rect134" stroke="none" stroke-linecap="round" stroke-width="0" width="1.20907" x="5.62751" y="-54.0888"/>
</g>
<g transform="rotate(-45)">
<rect connectorname="EP" fill="#8c8c8c" height="10.8078" id="rect36" stroke="none" stroke-linecap="round" stroke-width="0" width="10.8079" x="-18.6242" y="47.2661"/>
</g>
<g transform="rotate(-45)">
<rect fill="#303030" height="14.2889" id="rect38" stroke="none" stroke-width="0" width="14.2174" x="-20.7799" y="45.5256"/>
</g>
<g transform="matrix(1.03694, -1.03694, 1.03694, 1.03694, 13.9962, 43.3835)">
<polygon fill="#1f1f1f" id="polygon40-6" points="8.97509,4.09692,0.72,4.09692,0,3.37692,9.69509,3.37692" stroke-width="0.024549"/>
</g>
<g transform="matrix(1.03694, -1.03694, 1.03694, 1.03694, 13.9962, 43.3835)">
<polygon fill="#1f1f1f" id="polygon42" points="8.97509,12.4007,0.72,12.4007,0,13.1207,9.69509,13.1207" stroke-width="0.024549"/>
</g>
<g transform="matrix(1.03694, -1.03694, 1.03694, 1.03694, 13.9962, 43.3835)">
<polygon fill="#000000" id="polygon44" points="0.72,12.4007,0.72,4.09692,0,3.37692,0,13.1207" stroke-width="0.024549"/>
</g>
<g transform="matrix(1.03694, -1.03694, 1.03694, 1.03694, 13.9962, 43.3835)">
<polygon fill="#3d3d3d" id="polygon46" points="8.97509,12.4007,8.97509,4.09692,9.69509,3.37692,9.69509,13.1207" stroke-width="0.024549"/>
</g>
<g transform="rotate(-45)">
<circle cx="-17.6124" cy="56.6469" fill="#1f1f1f" id="circle48" r="1.05585" stroke="none" stroke-width="0"/>
</g>
<g transform="rotate(-90)">
<text fill="#ffffff" font-family="OCRA" font-size="2.88" id="text27" x="-34.5574" y="8.73313">BOOT</text>
</g>
<text fill="#ffffff" font-family="OCRA" font-size="2.88" id="text28" x="37.1628" y="40.8346">8</text>
<text fill="#ffffff" font-family="OCRA" font-size="2.16" id="text29" x="39.4575" y="24.4853">3.3</text>
<text fill="#ffffff" font-family="OCRA" font-size="2.16" id="text30" x="6.47786" y="24.1864">PW</text>
<text fill="#ffffff" font-family="OCRA" font-size="2.16" id="text31" x="40.5535" y="17.0126">G</text>
<text fill="#ffffff" font-family="OCRA" font-size="2.16" id="text32" x="40.2546" y="9.7391">5V</text>
<g transform="rotate(90)">
<rect fill="#f2f2f2" height="1.61922" id="rect3806" stroke-width="0.0719996" width="4.81115" x="17.2823" y="-9.00269"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0277822" id="rect3808" opacity="0.2" stroke-width="0.0719996" width="4.81115" x="17.2823" y="-9.00269"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.445124" id="rect3810" stroke-width="0.0719996" width="4.7594" x="17.3166" y="-7.71868"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0193267" id="rect3812" opacity="0.2" stroke-width="0.0719996" width="4.81115" x="17.2823" y="-7.31039"/>
</g>
<path d="m9.00266,21.3947l0,0,0,0,0,-0.0561701,0,0c-0.151594,-0.0483163,-0.480755,-0.0815342,-0.649259,-0.0815342,-0.175753,0,-0.418545,0.0289901,-0.576783,0.0815342l0,0,0,0l4.32e-06,0.738641l1.22604,0z" fill="#999999" id="path3814" stroke-width="0.0719996"/>
<path d="m8.93988,18.0343l0.0628114,0l0,-0.738043l-1.22604,0l0,0.738641c0.158838,0.0531497,0.398007,0.116564,0.576178,0.116564,0.208968,0,0.405256,-0.0452938,0.587048,-0.117166z" fill="#999999" id="path3816" stroke-width="0.0719996"/>
<path d="m7.71264,22.0814l0,-0.738634l0.0640231,-0.0042264l0,0.738641z" fill="#999999" id="path3818" stroke-width="0.0719996"/>
<path d="m7.71142,17.2998l0,0.738641l0.0652277,-0.0042264l0,-0.738043l-0.0652277,0.0036216z" fill="#999999" id="path3820" stroke-width="0.0719996"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0277822" id="rect3822" opacity="0.15" stroke-width="0.0719996" width="0.738643" x="17.2962" y="-7.31885"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0277822" id="rect3824" opacity="0.5" stroke-width="0.0719996" width="0.738643" x="17.2962" y="-9.00269"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0277822" id="rect3826" opacity="0.15" stroke-width="0.0719996" width="0.739248" x="21.3391" y="-7.31885"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0277822" id="rect3828" opacity="0.5" stroke-width="0.0719996" width="0.739248" x="21.3391" y="-9.00269"/>
</g>
<line fill="none" id="line3830" stroke-width="0.0719996" x1="7.29107" x2="7.29107" y1="17.7425" y2="17.7425"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.417941" id="rect3832" stroke-width="0.0719996" width="0.0712674" x="22.0216" y="-7.71263"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.417941" id="rect3834" stroke-width="0.0719996" width="0.0718714" x="17.2962" y="-7.71263"/>
</g>
<g transform="scale(-1)">
<rect fill="#f2f2f2" height="1.61922" id="rect33" stroke-width="0.0719996" width="4.81115" x="-41.0324" y="-37.5903"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0277822" id="rect35" opacity="0.2" stroke-width="0.0719996" width="4.81115" x="-41.0324" y="-37.5903"/>
</g>
<g transform="scale(-1)">
<rect fill="#333333" height="0.445124" id="rect37" stroke-width="0.0719996" width="4.7594" x="-40.9982" y="-36.3063"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0193267" id="rect39" opacity="0.2" stroke-width="0.0719996" width="4.81115" x="-41.0324" y="-35.898"/>
</g>
<path d="m36.9201,37.5903l0,0,0,0l0.0561701,0l0,0c0.0483163,-0.151594,0.0815342,-0.480755,0.0815342,-0.649259,0,-0.175753,-0.0289901,-0.418545,-0.0815342,-0.576783l0,0,0,0l-0.738641,4.32e-06l0,1.22604z" fill="#999999" id="path39" stroke-width="0.0719996"/>
<path d="m40.2805,37.5275l0,0.0628114l0.738043,0l0,-1.22604l-0.738641,0c-0.0531497,0.158838,-0.116564,0.398007,-0.116564,0.576178,0,0.208968,0.0452938,0.405256,0.117166,0.587048z" fill="#999999" id="path40" stroke-width="0.0719996"/>
<path d="m36.2334,36.3002l0.738634,0l0.0042264,0.0640231l-0.738641,0z" fill="#999999" id="path41" stroke-width="0.0719996"/>
<path d="m41.0149,36.299l-0.738641,0l0.0042264,0.0652277l0.738043,0l-0.0036216,-0.0652277z" fill="#999999" id="path42" stroke-width="0.0719996"/>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0277822" id="rect43" opacity="0.15" stroke-width="0.0719996" width="0.738643" x="-41.0185" y="-35.9064"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0277822" id="rect45" opacity="0.5" stroke-width="0.0719996" width="0.738643" x="-41.0185" y="-37.5903"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0277822" id="rect47" opacity="0.15" stroke-width="0.0719996" width="0.739248" x="-36.9756" y="-35.9064"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0277822" id="rect49" opacity="0.5" stroke-width="0.0719996" width="0.739248" x="-36.9756" y="-37.5903"/>
</g>
<line fill="none" id="line49" stroke-width="0.0719996" x1="40.5722" x2="40.5722" y1="35.8787" y2="35.8787"/>
<g transform="scale(-1)">
<rect fill="#999999" height="0.417941" id="rect51" stroke-width="0.0719996" width="0.0712674" x="-36.2932" y="-36.3002"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.417941" id="rect53" stroke-width="0.0719996" width="0.0718714" x="-41.0185" y="-36.3002"/>
</g>
<g transform="scale(-1)">
<rect fill="#4d4d4d" height="0.772751" id="rect55" stroke-width="0.0720007" width="2.29606" x="-42.9868" y="-12.2957"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect57" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="-42.9868" y="-12.2957"/>
</g>
<g transform="scale(-1)">
<rect fill="#333333" height="0.230297" id="rect59" stroke-width="0.0720007" width="2.29606" x="-42.9868" y="-11.7106"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.00922343" id="rect60" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="-42.9868" y="-11.4881"/>
</g>
<path d="m41.0242,12.2957l0,0,0,0l0.0268063,0l0,0c0.023058,-0.0723463,0.038911,-0.229434,0.038911,-0.309851,0,-0.0838757,-0.0138348,-0.199745,-0.038911,-0.275262l0,0,0,0l-0.352508,2.16e-06l0,0.585111z" fill="#dcdcdc" id="path60" stroke-width="0.0720007"/>
<path d="m42.628,12.2657l0,0.0299758l0.352221,0l0,-0.585111l-0.352508,0c-0.0253649,0.075803,-0.0556286,0.189943,-0.0556286,0.274974,0,0.0997272,0.0216158,0.193403,0.0559159,0.280161z" fill="#dcdcdc" id="path61" stroke-width="0.0720007"/>
<path d="m40.6966,11.6801l0.352504,0l0.002016,0.0305546l-0.352508,0z" fill="#999999" id="path62" stroke-width="0.0720007"/>
<path d="m42.9785,11.6795l-0.352508,0l0.002016,0.0311292l0.35222,0z" fill="#999999" id="path63" stroke-width="0.0720007"/>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0132587" id="rect63" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="-42.9802" y="-11.4921"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect65" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="-42.9802" y="-12.2957"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0132587" id="rect67" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="-41.0508" y="-11.4921"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect69" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="-41.0508" y="-12.2957"/>
</g>
<line fill="none" id="line69" stroke-width="0.0720007" x1="42.7672" x2="42.7672" y1="11.4789" y2="11.4789"/>
<g transform="scale(-1)">
<rect fill="#999999" height="0.199457" id="rect71" stroke-width="0.0720007" width="0.0340115" x="-40.7251" y="-11.68"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.199457" id="rect73" stroke-width="0.0720007" width="0.0342997" x="-42.9802" y="-11.68"/>
</g>
<g transform="scale(-1)">
<rect fill="#4d4d4d" height="0.772751" id="rect75" stroke-width="0.0720007" width="2.29606" x="-42.9868" y="-13.9971"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect77" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="-42.9868" y="-13.9971"/>
</g>
<g transform="scale(-1)">
<rect fill="#333333" height="0.230297" id="rect79" stroke-width="0.0720007" width="2.29606" x="-42.9868" y="-13.412"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.00922343" id="rect81" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="-42.9868" y="-13.1895"/>
</g>
<path d="m41.0242,13.9972l0,0,0,0l0.0268063,0l0,0c0.023058,-0.0723463,0.038911,-0.229434,0.038911,-0.309851,0,-0.0838757,-0.0138348,-0.199745,-0.038911,-0.275262l0,0,0,0l-0.352508,2.16e-06l0,0.585111z" fill="#dcdcdc" id="path81" stroke-width="0.0720007"/>
<path d="m42.628,13.9671l0,0.0299758l0.352221,0l0,-0.585111l-0.352508,0c-0.0253649,0.075803,-0.0556286,0.189943,-0.0556286,0.274974,0,0.0997272,0.0216158,0.193403,0.0559159,0.280161z" fill="#dcdcdc" id="path82" stroke-width="0.0720007"/>
<path d="m40.6966,13.3815l0.352504,0l0.002016,0.0305546l-0.352508,0z" fill="#999999" id="path83" stroke-width="0.0720007"/>
<path d="m42.9785,13.3809l-0.352508,0l0.002016,0.0311292l0.35222,0z" fill="#999999" id="path84" stroke-width="0.0720007"/>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0132587" id="rect85" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="-42.9802" y="-13.1935"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect87" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="-42.9802" y="-13.9971"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0132587" id="rect89" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="-41.0508" y="-13.1935"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect91" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="-41.0508" y="-13.9971"/>
</g>
<line fill="none" id="line91" stroke-width="0.0720007" x1="42.7672" x2="42.7672" y1="13.1803" y2="13.1803"/>
<g transform="scale(-1)">
<rect fill="#999999" height="0.199457" id="rect93" stroke-width="0.0720007" width="0.0340115" x="-40.7251" y="-13.3815"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.199457" id="rect95" stroke-width="0.0720007" width="0.0342997" x="-42.9802" y="-13.3815"/>
</g>
<g transform="scale(-1)">
<rect fill="#4d4d4d" height="1.34516" id="rect97" stroke-width="0.0720007" width="3.99685" x="-10.9109" y="-36.3229"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.02308" id="rect99" opacity="0.2" stroke-width="0.0720007" width="3.99685" x="-10.9109" y="-36.3229"/>
</g>
<g transform="scale(-1)">
<rect fill="#333333" height="0.400888" id="rect101" stroke-width="0.0720007" width="3.99685" x="-10.9109" y="-35.3044"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0160556" id="rect103" opacity="0.2" stroke-width="0.0720007" width="3.99685" x="-10.9109" y="-34.9171"/>
</g>
<path d="m7.49455,36.3229l0,0,0,0l0.0466632,0l0,0c0.0401386,-0.125936,0.067734,-0.399385,0.067734,-0.53937,0,-0.146006,-0.0240833,-0.347705,-0.067734,-0.479161l0,0,0,0l-0.613626,3.6e-06l0,1.01853z" fill="#dcdcdc" id="path103" stroke-width="0.0720007"/>
<path d="m10.2862,36.2708l0,0.0521806l0.613125,0l0,-1.01853l-0.613625,0c-0.044154,0.131954,-0.096835,0.330643,-0.096835,0.478658,0,0.1736,0.0376279,0.336665,0.0973354,0.487688z" fill="#dcdcdc" id="path105" stroke-width="0.0720007"/>
<path d="m6.9241,35.2512l0.613619,0l0.0035136,0.0531871l-0.613626,0z" fill="#999999" id="path107" stroke-width="0.0720007"/>
<path d="m10.8963,35.2502l-0.613625,0l0.0035136,0.0541872l0.613125,0l-0.0030096,-0.0541872z" fill="#999999" id="path109" stroke-width="0.0720007"/>
<g transform="scale(-1)">
<rect enable-background="new " height="0.02308" id="rect109" opacity="0.15" stroke-width="0.0720007" width="0.613625" x="-10.8994" y="-34.9241"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.02308" id="rect110" opacity="0.5" stroke-width="0.0720007" width="0.613625" x="-10.8994" y="-36.3229"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.02308" id="rect111" opacity="0.15" stroke-width="0.0720007" width="0.614128" x="-7.54072" y="-34.9241"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.02308" id="rect112" opacity="0.5" stroke-width="0.0720007" width="0.614128" x="-7.54072" y="-36.3229"/>
</g>
<line fill="none" id="line112" stroke-width="0.0720007" x1="10.5286" x2="10.5286" y1="34.901" y2="34.901"/>
<g transform="scale(-1)">
<rect fill="#999999" height="0.347203" id="rect113" stroke-width="0.0720007" width="0.0592051" x="-6.97377" y="-35.2512"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.347203" id="rect115" stroke-width="0.0720007" width="0.0597069" x="-10.8994" y="-35.2512"/>
</g>
<g transform="scale(-1)">
<rect fill="#4d4d4d" height="1.34516" id="rect117" stroke-width="0.0720007" width="3.99685" x="-10.8113" y="-48.3789"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.02308" id="rect119" opacity="0.2" stroke-width="0.0720007" width="3.99685" x="-10.8113" y="-48.3789"/>
</g>
<g transform="scale(-1)">
<rect fill="#333333" height="0.400888" id="rect121" stroke-width="0.0720007" width="3.99685" x="-10.8113" y="-47.3604"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0160556" id="rect123" opacity="0.2" stroke-width="0.0720007" width="3.99685" x="-10.8113" y="-46.9731"/>
</g>
<path d="m7.3949,48.379l0,0,0,0l0.0466625,0l0,0c0.0401386,-0.125936,0.0677347,-0.399385,0.0677347,-0.53937,0,-0.146006,-0.0240833,-0.347705,-0.0677347,-0.479161l0,0,0,0l-0.613625,3.6e-06l0,1.01853z" fill="#dcdcdc" id="path123" stroke-width="0.0720007"/>
<path d="m10.1866,48.3268l0,0.0521806l0.613125,0l0,-1.01853l-0.613625,0c-0.044154,0.131954,-0.096835,0.330643,-0.096835,0.478658,0,0.1736,0.0376279,0.336665,0.0973354,0.487688z" fill="#dcdcdc" id="path124" stroke-width="0.0720007"/>
<path d="m6.82446,47.3072l0.613618,0l0.0035136,0.0531871l-0.613625,0z" fill="#999999" id="path125" stroke-width="0.0720007"/>
<path d="m10.7967,47.3062l-0.613625,0l0.0035136,0.0541872l0.613125,0l-0.0030096,-0.0541872z" fill="#999999" id="path126" stroke-width="0.0720007"/>
<g transform="scale(-1)">
<rect enable-background="new " height="0.02308" id="rect127" opacity="0.15" stroke-width="0.0720007" width="0.613625" x="-10.7997" y="-46.9801"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.02308" id="rect129" opacity="0.5" stroke-width="0.0720007" width="0.613625" x="-10.7997" y="-48.3789"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.02308" id="rect131" opacity="0.15" stroke-width="0.0720007" width="0.614128" x="-7.44108" y="-46.9801"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.02308" id="rect133" opacity="0.5" stroke-width="0.0720007" width="0.614128" x="-7.44108" y="-48.3789"/>
</g>
<line fill="none" id="line133" stroke-width="0.0720007" x1="10.4289" x2="10.4289" y1="46.957" y2="46.957"/>
<g transform="scale(-1)">
<rect fill="#999999" height="0.347203" id="rect135" stroke-width="0.0720007" width="0.0592051" x="-6.87413" y="-47.3072"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.347203" id="rect136" stroke-width="0.0720007" width="0.0597069" x="-10.7997" y="-47.3072"/>
</g>
<g transform="scale(-1)">
<rect fill="#8c8c8c" height="1.01379" id="rect4552" stroke="none" stroke-linecap="round" stroke-width="0" width="1.76634" x="-9.28544" y="-45.6055"/>
</g>
<g transform="scale(-1)">
<rect fill="#8c8c8c" height="1.83486" id="rect4554" stroke="none" stroke-linecap="round" stroke-width="0" width="1.68265" x="-9.11954" y="-39.4116"/>
</g>
<g transform="scale(-1)">
<rect fill="#8c8c8c" height="1.01379" id="rect4572" stroke="none" stroke-linecap="round" stroke-width="0" width="1.76634" x="-14.3878" y="-45.6055"/>
</g>
<g transform="scale(-1)">
<rect fill="#8c8c8c" height="1.83486" id="rect4574" stroke="none" stroke-linecap="round" stroke-width="0" width="1.68265" x="-11.9542" y="-39.4116"/>
</g>
<g transform="scale(-1)">
<rect fill="#8c8c8c" height="1.83486" id="rect4656" stroke="none" stroke-linecap="round" stroke-width="0" width="1.68265" x="-14.5054" y="-39.4116"/>
</g>
<g transform="scale(-1)">
<rect fill="#4d4d4d" height="5.98897" id="rect4558" stroke="none" stroke-width="0" width="8.30412" x="-15.0403" y="-44.7322"/>
</g>
<g transform="scale(-1)">
<ellipse cx="-12.9291" cy="-40.5047" fill="#1f1f1f" id="circle4560" rx="0.703739" ry="0.587154" stroke="none" stroke-width="0"/>
</g>
<g transform="matrix(-1,0,-0.75223498,-0.65889494,0,0)">
<rect fill="#333333" height="0.891119" id="rect4562" stroke-width="0.923969" width="7.63246" x="35.9862" y="-67.8609"/>
</g>
<g transform="matrix(-1,0,0.76728823,-0.6413024,0,0)">
<rect fill="#333333" height="0.915565" id="rect4564" stroke-width="0.936554" width="7.60162" x="-61.4107" y="-61.3429"/>
</g>
<g transform="matrix(-0.80304474,0.59591875,0,-1,0,0)">
<rect fill="#000000" height="5.42765" id="rect4566" stroke-width="0.836928" width="0.876339" x="-9.26062" y="-49.6978"/>
</g>
<g transform="matrix(-0.76337131,-0.64595994,0,-1,0,0)">
<rect fill="#000000" height="5.38684" id="rect4568" stroke-width="0.858413" width="0.921883" x="-19.71" y="-32.0132"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect137" stroke-width="0.0720007" width="2.29606" x="33.165" y="-25.0101"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect138" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="33.165" y="-25.0101"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect139" stroke-width="0.0720007" width="2.29606" x="33.165" y="-24.425"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect140" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="33.165" y="-24.2025"/>
</g>
<path d="m25.0101,35.1277l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path140" stroke-width="0.0720007"/>
<path d="m24.9802,33.5239l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path141" stroke-width="0.0720007"/>
<path d="m24.3945,35.4553l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path142" stroke-width="0.0720007"/>
<path d="m24.3939,33.1734l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path143" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect143" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="33.1717" y="-24.2065"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect144" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="33.1717" y="-25.0101"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect145" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="35.1011" y="-24.2065"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect146" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="35.1011" y="-25.0101"/>
</g>
<line fill="none" id="line146" stroke-width="0.0720007" x1="24.1933" x2="24.1933" y1="33.3847" y2="33.3847"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect147" stroke-width="0.0720007" width="0.0340115" x="35.4268" y="-24.3945"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect148" stroke-width="0.0720007" width="0.0342997" x="33.1717" y="-24.3945"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect149" stroke-width="0.0720007" width="2.29606" x="33.165" y="-26.7096"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect150" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="33.165" y="-26.7096"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect151" stroke-width="0.0720007" width="2.29606" x="33.165" y="-26.1245"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect152" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="33.165" y="-25.902"/>
</g>
<path d="m26.7096,35.1277l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path152" stroke-width="0.0720007"/>
<path d="m26.6797,33.5239l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path153" stroke-width="0.0720007"/>
<path d="m26.094,35.4553l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path154" stroke-width="0.0720007"/>
<path d="m26.0934,33.1734l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path155" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect155" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="33.1717" y="-25.906"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect156" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="33.1717" y="-26.7096"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect157" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="35.1011" y="-25.906"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect158" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="35.1011" y="-26.7096"/>
</g>
<line fill="none" id="line158" stroke-width="0.0720007" x1="25.8928" x2="25.8928" y1="33.3847" y2="33.3847"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect159" stroke-width="0.0720007" width="0.0340115" x="35.4268" y="-26.094"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect160" stroke-width="0.0720007" width="0.0342997" x="33.1717" y="-26.094"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect161" stroke-width="0.0720007" width="2.29606" x="35.2574" y="-22.226"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect162" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="35.2574" y="-22.226"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect163" stroke-width="0.0720007" width="2.29606" x="35.2574" y="-21.6409"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect164" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="35.2574" y="-21.4183"/>
</g>
<path d="m22.226,37.22l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path164" stroke-width="0.0720007"/>
<path d="m22.196,35.6162l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path165" stroke-width="0.0720007"/>
<path d="m21.6103,37.5477l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path166" stroke-width="0.0720007"/>
<path d="m21.6097,35.2657l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path167" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect167" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="35.264" y="-21.4224"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect168" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="35.264" y="-22.226"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect169" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="37.1935" y="-21.4224"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect170" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="37.1935" y="-22.226"/>
</g>
<line fill="none" id="line170" stroke-width="0.0720007" x1="21.4091" x2="21.4091" y1="35.477" y2="35.477"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect171" stroke-width="0.0720007" width="0.0340115" x="37.5192" y="-21.6103"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect172" stroke-width="0.0720007" width="0.0342997" x="35.264" y="-21.6103"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect173" stroke-width="0.0720007" width="2.29606" x="35.2574" y="-20.5244"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect174" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="35.2574" y="-20.5244"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect175" stroke-width="0.0720007" width="2.29606" x="35.2574" y="-19.9393"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect176" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="35.2574" y="-19.7168"/>
</g>
<path d="m20.5244,37.22l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path176" stroke-width="0.0720007"/>
<path d="m20.4944,35.6162l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path177" stroke-width="0.0720007"/>
<path d="m19.9087,37.5477l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path178" stroke-width="0.0720007"/>
<path d="m19.9081,35.2657l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path179" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect179" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="35.264" y="-19.7208"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect180" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="35.264" y="-20.5244"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect181" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="37.1935" y="-19.7208"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect182" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="37.1935" y="-20.5244"/>
</g>
<line fill="none" id="line182" stroke-width="0.0720007" x1="19.7076" x2="19.7076" y1="35.477" y2="35.477"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect183" stroke-width="0.0720007" width="0.0340115" x="37.5192" y="-19.9088"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect184" stroke-width="0.0720007" width="0.0342997" x="35.264" y="-19.9088"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect185" stroke-width="0.0720007" width="2.29606" x="35.5563" y="-33.6764"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect186" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="35.5563" y="-33.6764"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect187" stroke-width="0.0720007" width="2.29606" x="35.5563" y="-33.0913"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect188" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="35.5563" y="-32.8688"/>
</g>
<path d="m33.6764,37.5189l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path188" stroke-width="0.0720007"/>
<path d="m33.6465,35.9152l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path189" stroke-width="0.0720007"/>
<path d="m33.0607,37.8466l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path190" stroke-width="0.0720007"/>
<path d="m33.0602,35.5647l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path191" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect191" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="35.5629" y="-32.8728"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect192" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="35.5629" y="-33.6764"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect193" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="37.4924" y="-32.8728"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect194" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="37.4924" y="-33.6764"/>
</g>
<line fill="none" id="line194" stroke-width="0.0720007" x1="32.8596" x2="32.8596" y1="35.776" y2="35.776"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect195" stroke-width="0.0720007" width="0.0340115" x="37.8181" y="-33.0608"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect196" stroke-width="0.0720007" width="0.0342997" x="35.5629" y="-33.0608"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect197" stroke-width="0.0720007" width="2.29606" x="35.5563" y="-35.378"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect198" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="35.5563" y="-35.378"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect199" stroke-width="0.0720007" width="2.29606" x="35.5563" y="-34.7929"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect200" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="35.5563" y="-34.5703"/>
</g>
<path d="m35.378,37.5189l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path200" stroke-width="0.0720007"/>
<path d="m35.348,35.9152l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path201" stroke-width="0.0720007"/>
<path d="m34.7623,37.8466l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path202" stroke-width="0.0720007"/>
<path d="m34.7617,35.5647l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path203" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect203" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="35.5629" y="-34.5744"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect204" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="35.5629" y="-35.378"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect205" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="37.4924" y="-34.5744"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect206" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="37.4924" y="-35.378"/>
</g>
<line fill="none" id="line206" stroke-width="0.0720007" x1="34.5611" x2="34.5611" y1="35.776" y2="35.776"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect207" stroke-width="0.0720007" width="0.0340115" x="37.8181" y="-34.7623"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect208" stroke-width="0.0720007" width="0.0342997" x="35.5629" y="-34.7623"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect209" stroke-width="0.0720007" width="2.29606" x="35.5563" y="-42.5518"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect210" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="35.5563" y="-42.5518"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect211" stroke-width="0.0720007" width="2.29606" x="35.5563" y="-41.9667"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect212" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="35.5563" y="-41.7442"/>
</g>
<path d="m42.5518,37.5189l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path212" stroke-width="0.0720007"/>
<path d="m42.5218,35.9152l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path213" stroke-width="0.0720007"/>
<path d="m41.9361,37.8466l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path214" stroke-width="0.0720007"/>
<path d="m41.9355,35.5647l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path215" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect215" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="35.5629" y="-41.7482"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect216" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="35.5629" y="-42.5518"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect217" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="37.4924" y="-41.7482"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect218" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="37.4924" y="-42.5518"/>
</g>
<line fill="none" id="line218" stroke-width="0.0720007" x1="41.7349" x2="41.7349" y1="35.776" y2="35.776"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect219" stroke-width="0.0720007" width="0.0340115" x="37.8181" y="-41.9361"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect220" stroke-width="0.0720007" width="0.0342997" x="35.5629" y="-41.9361"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect221" stroke-width="0.0720007" width="2.29606" x="43.328" y="-42.7511"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect222" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="43.328" y="-42.7511"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect223" stroke-width="0.0720007" width="2.29606" x="43.328" y="-42.1659"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect224" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="43.328" y="-41.9434"/>
</g>
<path d="m42.7511,45.2905l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path224" stroke-width="0.0720007"/>
<path d="m42.7211,43.6868l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path225" stroke-width="0.0720007"/>
<path d="m42.1354,45.6183l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path226" stroke-width="0.0720007"/>
<path d="m42.1348,43.3363l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path227" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect227" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="43.3346" y="-41.9475"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect228" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="43.3346" y="-42.7511"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect229" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="45.264" y="-41.9475"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect230" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="45.264" y="-42.7511"/>
</g>
<line fill="none" id="line230" stroke-width="0.0720007" x1="41.9342" x2="41.9342" y1="43.5476" y2="43.5476"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect231" stroke-width="0.0720007" width="0.0340115" x="45.5897" y="-42.1354"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect232" stroke-width="0.0720007" width="0.0342997" x="43.3346" y="-42.1354"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect233" stroke-width="0.0720007" width="2.29606" x="43.328" y="-44.4517"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect234" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="43.328" y="-44.4517"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect235" stroke-width="0.0720007" width="2.29606" x="43.328" y="-43.8666"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect236" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="43.328" y="-43.644"/>
</g>
<path d="m44.4517,45.2905l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path236" stroke-width="0.0720007"/>
<path d="m44.4217,43.6868l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path237" stroke-width="0.0720007"/>
<path d="m43.836,45.6183l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path238" stroke-width="0.0720007"/>
<path d="m43.8354,43.3363l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path239" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect239" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="43.3346" y="-43.6481"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect240" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="43.3346" y="-44.4517"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect241" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="45.264" y="-43.6481"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect242" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="45.264" y="-44.4517"/>
</g>
<line fill="none" id="line242" stroke-width="0.0720007" x1="43.6348" x2="43.6348" y1="43.5476" y2="43.5476"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect243" stroke-width="0.0720007" width="0.0340115" x="45.5897" y="-43.836"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect244" stroke-width="0.0720007" width="0.0342997" x="43.3346" y="-43.836"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect245" stroke-width="0.0720007" width="2.29606" x="46.4448" y="-44.4517"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect246" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="46.4448" y="-44.4517"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect247" stroke-width="0.0720007" width="2.29606" x="46.4448" y="-43.8666"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect248" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="46.4448" y="-43.644"/>
</g>
<path d="m44.4517,48.4074l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path248" stroke-width="0.0720007"/>
<path d="m44.4217,46.8037l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path249" stroke-width="0.0720007"/>
<path d="m43.836,48.7351l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path250" stroke-width="0.0720007"/>
<path d="m43.8354,46.4532l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path251" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect251" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="46.4515" y="-43.6481"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect252" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="46.4515" y="-44.4517"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect253" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="48.3809" y="-43.6481"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect254" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="48.3809" y="-44.4517"/>
</g>
<line fill="none" id="line254" stroke-width="0.0720007" x1="43.6348" x2="43.6348" y1="46.6645" y2="46.6645"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect255" stroke-width="0.0720007" width="0.0340115" x="48.7066" y="-43.836"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect256" stroke-width="0.0720007" width="0.0342997" x="46.4515" y="-43.836"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect257" stroke-width="0.0720007" width="2.29606" x="54.3161" y="-37.9753"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect258" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="54.3161" y="-37.9753"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect259" stroke-width="0.0720007" width="2.29606" x="54.3161" y="-37.3902"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect260" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="54.3161" y="-37.1677"/>
</g>
<path d="m37.9753,56.2787l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path260" stroke-width="0.0720007"/>
<path d="m37.9453,54.675l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path261" stroke-width="0.0720007"/>
<path d="m37.3597,56.6064l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path262" stroke-width="0.0720007"/>
<path d="m37.3591,54.3245l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path263" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect263" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="54.3228" y="-37.1717"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect264" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="54.3228" y="-37.9753"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect265" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="56.2522" y="-37.1717"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect266" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="56.2522" y="-37.9753"/>
</g>
<line fill="none" id="line266" stroke-width="0.0720007" x1="37.1584" x2="37.1584" y1="54.5358" y2="54.5358"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect267" stroke-width="0.0720007" width="0.0340115" x="56.5779" y="-37.3596"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect268" stroke-width="0.0720007" width="0.0342997" x="54.3228" y="-37.3596"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect269" stroke-width="0.0720007" width="2.29606" x="54.3161" y="-36.2737"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect270" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="54.3161" y="-36.2737"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect271" stroke-width="0.0720007" width="2.29606" x="54.3161" y="-35.6886"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect272" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="54.3161" y="-35.4661"/>
</g>
<path d="m36.2737,56.2787l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path272" stroke-width="0.0720007"/>
<path d="m36.2437,54.675l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path273" stroke-width="0.0720007"/>
<path d="m35.6581,56.6064l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path274" stroke-width="0.0720007"/>
<path d="m35.6575,54.3245l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path275" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect275" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="54.3228" y="-35.4701"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect276" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="54.3228" y="-36.2737"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect277" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="56.2522" y="-35.4701"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect278" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="56.2522" y="-36.2737"/>
</g>
<line fill="none" id="line278" stroke-width="0.0720007" x1="35.4569" x2="35.4569" y1="54.5358" y2="54.5358"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect279" stroke-width="0.0720007" width="0.0340115" x="56.5779" y="-35.658"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect280" stroke-width="0.0720007" width="0.0342997" x="54.3228" y="-35.658"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="1.57679" id="rect281" stroke-width="0.0720007" width="4.68508" x="53.6187" y="-40.6109"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0270541" id="rect282" opacity="0.2" stroke-width="0.0720007" width="4.68508" x="53.6187" y="-40.6109"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.469918" id="rect283" stroke-width="0.0720007" width="4.68508" x="53.6187" y="-39.417"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0188203" id="rect284" opacity="0.2" stroke-width="0.0720007" width="4.68508" x="53.6187" y="-38.963"/>
</g>
<path d="m40.6109,57.6233l0,0,0,0,0,-0.0546977,0,0c-0.147622,-0.0470498,-0.468156,-0.079398,-0.632245,-0.079398,-0.171148,0,-0.407577,0.0282305,-0.561668,0.079398l0,0,0,0l4.32e-06,0.719287l1.19391,0z" fill="#dcdcdc" id="path284" stroke-width="0.0720007"/>
<path d="m40.5498,54.3509l0.0611654,0l0,-0.7187l-1.19391,0l0,0.719287c0.154676,0.0517565,0.387577,0.113509,0.561079,0.113509,0.203491,0,0.394636,-0.0441072,0.571664,-0.114096z" fill="#dcdcdc" id="path285" stroke-width="0.0720007"/>
<path d="m39.3546,58.292l0,-0.719279l0.0623455,-0.0041184l0,0.719287z" fill="#999999" id="path286" stroke-width="0.0720007"/>
<path d="m39.3535,53.6358l0,0.719287l0.0635184,-0.0041184l0,-0.7187l-0.0635184,0.003528z" fill="#999999" id="path287" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0270541" id="rect287" opacity="0.15" stroke-width="0.0720007" width="0.719287" x="53.6322" y="-38.9712"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0270541" id="rect288" opacity="0.5" stroke-width="0.0720007" width="0.719287" x="53.6322" y="-40.6109"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0270541" id="rect289" opacity="0.15" stroke-width="0.0720007" width="0.719875" x="57.5692" y="-38.9712"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0270541" id="rect290" opacity="0.5" stroke-width="0.0720007" width="0.719875" x="57.5692" y="-40.6109"/>
</g>
<line fill="none" id="line290" stroke-width="0.0720007" x1="38.9441" x2="38.9441" y1="54.0668" y2="54.0668"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.406988" id="rect291" stroke-width="0.0720007" width="0.0693998" x="58.2337" y="-39.3546"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.406988" id="rect292" stroke-width="0.0720007" width="0.069988" x="53.6322" y="-39.3546"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect293" stroke-width="0.0720007" width="2.29606" x="56.4085" y="-23.8192"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect294" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="56.4085" y="-23.8192"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect295" stroke-width="0.0720007" width="2.29606" x="56.4085" y="-23.2341"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect296" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="56.4085" y="-23.0115"/>
</g>
<path d="m23.8192,58.3711l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path296" stroke-width="0.0720007"/>
<path d="m23.7892,56.7673l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path297" stroke-width="0.0720007"/>
<path d="m23.2035,58.6988l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path298" stroke-width="0.0720007"/>
<path d="m23.2029,56.4168l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path299" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect299" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="56.4151" y="-23.0156"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect300" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="56.4151" y="-23.8192"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect301" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="58.3445" y="-23.0156"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect302" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="58.3445" y="-23.8192"/>
</g>
<line fill="none" id="line302" stroke-width="0.0720007" x1="23.0023" x2="23.0023" y1="56.6281" y2="56.6281"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect303" stroke-width="0.0720007" width="0.0340115" x="58.6702" y="-23.2035"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect304" stroke-width="0.0720007" width="0.0342997" x="56.4151" y="-23.2035"/>
</g>
<g transform="scale(-1)">
<rect fill="#aa0000" height="5.82903" id="rect305" stroke-width="0.0719999" width="17.3197" x="-34.4963" y="-68.4551"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.100013" id="rect306" opacity="0.2" stroke-width="0.0719999" width="17.3197" x="-34.4963" y="-68.4551"/>
</g>
<g transform="scale(-1)">
<rect fill="#333333" height="1.73718" id="rect307" stroke-width="0.0719999" width="17.3197" x="-34.4963" y="-64.0415"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0695743" id="rect308" opacity="0.2" stroke-width="0.0719999" width="17.3197" x="-34.4963" y="-62.363"/>
</g>
<path d="m19.6921,68.4551l0,0,0,0l0.202206,0l0,0c0.173934,-0.545724,0.293517,-1.73067,0.293517,-2.33727,0,-0.632692,-0.104362,-1.50672,-0.293517,-2.07636l0,0,0,0l-2.65905,1.584e-05l0,4.41361z" fill="#dcdcdc" id="path308" stroke-width="0.0719999"/>
<path d="m31.7894,68.229l0,0.226116l2.65687,0l0,-4.41361l-2.65905,0c-0.191333,0.571802,-0.419618,1.43279,-0.419618,2.07418,0,0.752263,0.163055,1.45888,0.421788,2.11332z" fill="#dcdcdc" id="path309" stroke-width="0.0719999"/>
<path d="m17.2201,63.811l2.65901,0l0.0152158,0.230477l-2.65905,0z" fill="#999999" id="path310" stroke-width="0.0719999"/>
<path d="m34.4332,63.8067l-2.65905,0l0.0152158,0.234814l2.65687,0l-0.0130406,-0.234814z" fill="#999999" id="path311" stroke-width="0.0719999"/>
<g transform="scale(-1)">
<rect enable-background="new " height="0.100013" id="rect311" opacity="0.15" stroke-width="0.0719999" width="2.65904" x="-34.4463" y="-62.3934"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.100013" id="rect312" opacity="0.5" stroke-width="0.0719999" width="2.65904" x="-34.4463" y="-68.4551"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.100013" id="rect313" opacity="0.15" stroke-width="0.0719999" width="2.66122" x="-19.8922" y="-62.3934"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.100013" id="rect314" opacity="0.5" stroke-width="0.0719999" width="2.66122" x="-19.8922" y="-68.4551"/>
</g>
<line fill="none" id="line314" stroke-width="0.0719999" x1="32.8395" x2="32.8395" y1="62.2934" y2="62.2934"/>
<g transform="scale(-1)">
<rect fill="#999999" height="1.50455" id="rect315" stroke-width="0.0719999" width="0.256556" x="-17.4354" y="-63.811"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="1.50455" id="rect316" stroke-width="0.0719999" width="0.25873" x="-34.4463" y="-63.811"/>
</g>
<g transform="scale(-1)">
<rect fill="#4d4d4d" height="0.772751" id="rect317" stroke-width="0.0720007" width="2.29606" x="-10.0119" y="-49.7948"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect318" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="-10.0119" y="-49.7948"/>
</g>
<g transform="scale(-1)">
<rect fill="#333333" height="0.230297" id="rect319" stroke-width="0.0720007" width="2.29606" x="-10.0119" y="-49.2097"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.00922343" id="rect320" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="-10.0119" y="-48.9871"/>
</g>
<path d="m8.04931,49.7948l0,0,0,0l0.0268063,0l0,0c0.023058,-0.0723463,0.038911,-0.229434,0.038911,-0.309851,0,-0.0838757,-0.0138348,-0.199745,-0.038911,-0.275262l0,0,0,0l-0.352508,2.16e-06l0,0.585111z" fill="#dcdcdc" id="path320" stroke-width="0.0720007"/>
<path d="m9.65304,49.7648l0,0.0299758l0.352221,0l0,-0.585111l-0.352508,0c-0.0253649,0.075803,-0.0556286,0.189943,-0.0556286,0.274974,0,0.0997272,0.0216158,0.193403,0.0559159,0.280161z" fill="#dcdcdc" id="path321" stroke-width="0.0720007"/>
<path d="m7.72157,49.1791l0.352504,0l0.002016,0.0305546l-0.352508,0z" fill="#999999" id="path322" stroke-width="0.0720007"/>
<path d="m10.0035,49.1785l-0.352508,0l0.002016,0.0311292l0.35222,0z" fill="#999999" id="path323" stroke-width="0.0720007"/>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0132587" id="rect323" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="-10.0052" y="-48.9912"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect324" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="-10.0052" y="-49.7948"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0132587" id="rect325" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="-8.0758" y="-48.9912"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect326" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="-8.0758" y="-49.7948"/>
</g>
<line fill="none" id="line326" stroke-width="0.0720007" x1="9.79223" x2="9.79223" y1="48.9779" y2="48.9779"/>
<g transform="scale(-1)">
<rect fill="#999999" height="0.199457" id="rect327" stroke-width="0.0720007" width="0.0340115" x="-7.7501" y="-49.1791"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.199457" id="rect328" stroke-width="0.0720007" width="0.0342997" x="-10.0052" y="-49.1791"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect329" stroke-width="0.0720007" width="2.29606" x="52.7219" y="-19.5348"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect330" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="52.7219" y="-19.5348"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect331" stroke-width="0.0720007" width="2.29606" x="52.7219" y="-18.9497"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect332" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="52.7219" y="-18.7272"/>
</g>
<path d="m19.5348,54.6845l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.16e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path332" stroke-width="0.0720007"/>
<path d="m19.5048,53.0808l0.0299758,0l0,-0.352221l-0.585111,0l0,0.352508c0.075803,0.0253649,0.189943,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path333" stroke-width="0.0720007"/>
<path d="m18.9192,55.0123l0,-0.352504l0.0305546,-0.002016l0,0.352508z" fill="#999999" id="path334" stroke-width="0.0720007"/>
<path d="m18.9186,52.7303l0,0.352508l0.0311292,-0.002016l0,-0.35222z" fill="#999999" id="path335" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect335" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="52.7286" y="-18.7312"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect336" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="52.7286" y="-19.5348"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect337" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="54.658" y="-18.7312"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect338" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="54.658" y="-19.5348"/>
</g>
<line fill="none" id="line338" stroke-width="0.0720007" x1="18.7179" x2="18.7179" y1="52.9416" y2="52.9416"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect339" stroke-width="0.0720007" width="0.0340115" x="54.9837" y="-18.9191"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect340" stroke-width="0.0720007" width="0.0342997" x="52.7286" y="-18.9191"/>
</g>
<g transform="rotate(90)">
<rect fill="#4d4d4d" height="0.772751" id="rect341" stroke-width="0.0720007" width="2.29606" x="54.0172" y="-7.4788"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect342" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="54.0172" y="-7.4788"/>
</g>
<g transform="rotate(90)">
<rect fill="#333333" height="0.230297" id="rect343" stroke-width="0.0720007" width="2.29606" x="54.0172" y="-6.89369"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.00922343" id="rect344" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="54.0172" y="-6.67117"/>
</g>
<path d="m7.47878,55.9798l0,0,0,0,0,-0.0268063,0,0c-0.0723463,-0.023058,-0.229434,-0.038911,-0.309851,-0.038911,-0.0838757,0,-0.199745,0.0138348,-0.275262,0.038911l0,0,0,0l2.088e-06,0.352508l0.585111,0z" fill="#dcdcdc" id="path344" stroke-width="0.0720007"/>
<path d="m7.44883,54.3761l0.0299765,0l0,-0.352221l-0.585111,0l0,0.352508c0.0758038,0.0253649,0.189944,0.0556286,0.274974,0.0556286,0.0997272,0,0.193403,-0.0216158,0.280161,-0.0559159z" fill="#dcdcdc" id="path345" stroke-width="0.0720007"/>
<path d="m6.86313,56.3075l0,-0.352504l0.0305543,-0.002016l0,0.352508z" fill="#999999" id="path346" stroke-width="0.0720007"/>
<path d="m6.86256,54.0256l0,0.352508l0.0311291,-0.002016l0,-0.35222z" fill="#999999" id="path347" stroke-width="0.0720007"/>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect347" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="54.0238" y="-6.67521"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect348" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="54.0238" y="-7.4788"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " height="0.0132587" id="rect349" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="55.9533" y="-6.67521"/>
</g>
<g transform="rotate(90)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect350" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="55.9533" y="-7.4788"/>
</g>
<line fill="none" id="line350" stroke-width="0.0720007" x1="6.66195" x2="6.66195" y1="54.2368" y2="54.2368"/>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect351" stroke-width="0.0720007" width="0.0340115" x="56.279" y="-6.86313"/>
</g>
<g transform="rotate(90)">
<rect fill="#999999" height="0.199457" id="rect352" stroke-width="0.0720007" width="0.0342997" x="54.0238" y="-6.86313"/>
</g>
<g transform="scale(-1)">
<rect fill="#4d4d4d" height="0.772751" id="rect353" stroke-width="0.0720007" width="2.29606" x="-16.8868" y="-49.5955"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect354" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="-16.8868" y="-49.5955"/>
</g>
<g transform="scale(-1)">
<rect fill="#333333" height="0.230297" id="rect355" stroke-width="0.0720007" width="2.29606" x="-16.8868" y="-49.0104"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.00922343" id="rect356" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="-16.8868" y="-48.7879"/>
</g>
<path d="m14.9242,49.5955l0,0,0,0l0.0268063,0l0,0c0.023058,-0.0723463,0.038911,-0.229434,0.038911,-0.309851,0,-0.0838757,-0.0138348,-0.199745,-0.038911,-0.275262l0,0,0,0l-0.352508,2.16e-06l0,0.585111z" fill="#dcdcdc" id="path356" stroke-width="0.0720007"/>
<path d="m16.5279,49.5655l0,0.0299758l0.352221,0l0,-0.585111l-0.352508,0c-0.0253649,0.075803,-0.0556286,0.189943,-0.0556286,0.274974,0,0.0997272,0.0216158,0.193403,0.0559159,0.280161z" fill="#dcdcdc" id="path357" stroke-width="0.0720007"/>
<path d="m14.5965,48.9798l0.352504,0l0.002016,0.0305546l-0.352508,0z" fill="#999999" id="path358" stroke-width="0.0720007"/>
<path d="m16.8784,48.9792l-0.352508,0l0.002016,0.0311292l0.35222,0z" fill="#999999" id="path359" stroke-width="0.0720007"/>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0132587" id="rect359" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="-16.8801" y="-48.7919"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect360" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="-16.8801" y="-49.5955"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0132587" id="rect361" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="-14.9507" y="-48.7919"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect362" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="-14.9507" y="-49.5955"/>
</g>
<line fill="none" id="line362" stroke-width="0.0720007" x1="16.6671" x2="16.6671" y1="48.7786" y2="48.7786"/>
<g transform="scale(-1)">
<rect fill="#999999" height="0.199457" id="rect363" stroke-width="0.0720007" width="0.0340115" x="-14.625" y="-48.9798"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.199457" id="rect364" stroke-width="0.0720007" width="0.0342997" x="-16.8801" y="-48.9798"/>
</g>
<g transform="scale(-1)">
<rect fill="#4d4d4d" height="0.772751" id="rect365" stroke-width="0.0720007" width="2.29606" x="-16.8868" y="-51.2954"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect366" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="-16.8868" y="-51.2954"/>
</g>
<g transform="scale(-1)">
<rect fill="#333333" height="0.230297" id="rect367" stroke-width="0.0720007" width="2.29606" x="-16.8868" y="-50.7103"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.00922343" id="rect368" opacity="0.2" stroke-width="0.0720007" width="2.29606" x="-16.8868" y="-50.4878"/>
</g>
<path d="m14.9242,51.2954l0,0,0,0l0.0268063,0l0,0c0.023058,-0.0723463,0.038911,-0.229434,0.038911,-0.309851,0,-0.0838757,-0.0138348,-0.199745,-0.038911,-0.275262l0,0,0,0l-0.352508,2.16e-06l0,0.585111z" fill="#dcdcdc" id="path368" stroke-width="0.0720007"/>
<path d="m16.5279,51.2654l0,0.0299758l0.352221,0l0,-0.585111l-0.352508,0c-0.0253649,0.075803,-0.0556286,0.189943,-0.0556286,0.274974,0,0.0997272,0.0216158,0.193403,0.0559159,0.280161z" fill="#dcdcdc" id="path369" stroke-width="0.0720007"/>
<path d="m14.5965,50.6797l0.352504,0l0.002016,0.0305546l-0.352508,0z" fill="#999999" id="path370" stroke-width="0.0720007"/>
<path d="m16.8784,50.6791l-0.352508,0l0.002016,0.0311292l0.35222,0z" fill="#999999" id="path371" stroke-width="0.0720007"/>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0132587" id="rect371" opacity="0.15" stroke-width="0.0720007" width="0.352508" x="-16.8801" y="-50.4918"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect372" opacity="0.5" stroke-width="0.0720007" width="0.352508" x="-16.8801" y="-51.2954"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " height="0.0132587" id="rect373" opacity="0.15" stroke-width="0.0720007" width="0.352797" x="-14.9507" y="-50.4918"/>
</g>
<g transform="scale(-1)">
<rect enable-background="new " fill="#ffffff" height="0.0132587" id="rect374" opacity="0.5" stroke-width="0.0720007" width="0.352797" x="-14.9507" y="-51.2954"/>
</g>
<line fill="none" id="line374" stroke-width="0.0720007" x1="16.6671" x2="16.6671" y1="50.4786" y2="50.4786"/>
<g transform="scale(-1)">
<rect fill="#999999" height="0.199457" id="rect375" stroke-width="0.0720007" width="0.0340115" x="-14.625" y="-50.6797"/>
</g>
<g transform="scale(-1)">
<rect fill="#999999" height="0.199457" id="rect376" stroke-width="0.0720007" width="0.0342997" x="-16.8801" y="-50.6797"/>
</g>
<rect fill="#cccccc" height="6.34082" id="rect390" stroke="#666666" stroke-width="0.072" width="8.59533" x="8.79002" y="52.3281"/>
<path d="m0,6.696,2.84315,0.0007344c2.23888,0.00991368,3.15007,0.994052,3.13512,2.8063,0.0121529,1.73438,-0.928298,2.74196,-3.13512,2.80913l-2.84315,-0.000216,1.44e-06,-1.33863c1.27284,0.0172649,1.75336,-0.362023,1.8,-1.43474,-0.0064656,-1.14462,-0.2591,-1.61514,-1.8,-1.70888z" fill="#f7bd13" id="path1" stroke-width="0"/>
<path d="m0,21.096,2.84315,0.0007344c2.23888,0.00991368,3.15007,0.994052,3.13512,2.8063,0.0121529,1.73438,-0.928298,2.74196,-3.13512,2.80913l-2.84315,-0.000216,1.44e-06,-1.33863c1.27284,0.0172649,1.75336,-0.362023,1.8,-1.43474,-0.0064656,-1.14462,-0.2591,-1.61514,-1.8,-1.70888z" fill="#f7bd13" id="path3" stroke-width="0"/>
<path d="m0,28.296,2.84315,0.0007344c2.23888,0.00991368,3.15007,0.994052,3.13512,2.8063,0.0121529,1.73438,-0.928298,2.74196,-3.13512,2.80913l-2.84315,-0.000216,1.44e-06,-1.33863c1.27284,0.0172649,1.75336,-0.362023,1.8,-1.43474,-0.0064656,-1.14462,-0.2591,-1.61514,-1.8,-1.70888z" fill="#f7bd13" id="path6" stroke-width="0"/>
<path d="m0,35.496,2.84315,0.0007344c2.23888,0.00991368,3.15007,0.994052,3.13512,2.8063,0.0121529,1.73438,-0.928298,2.74196,-3.13512,2.80913l-2.84315,-0.000216,1.44e-06,-1.33863c1.27284,0.0172649,1.75336,-0.362023,1.8,-1.43474,-0.0064656,-1.14462,-0.2591,-1.61514,-1.8,-1.70888z" fill="#f7bd13" id="path7" stroke-width="0"/>
<path d="m0,42.696,2.84315,0.0007344c2.23888,0.00991368,3.15007,0.994052,3.13512,2.8063,0.0121529,1.73438,-0.928298,2.74196,-3.13512,2.80913l-2.84315,-0.000216,1.44e-06,-1.33863c1.27284,0.0172649,1.75336,-0.362023,1.8,-1.43474,-0.0064656,-1.14462,-0.2591,-1.61514,-1.8,-1.70888z" fill="#f7bd13" id="path8" stroke-width="0"/>
<path d="m0,49.896,2.84315,0.0007344c2.23888,0.00991368,3.15007,0.994052,3.13512,2.8063,0.0121529,1.73438,-0.928298,2.74196,-3.13512,2.80913l-2.84315,-0.000216,1.44e-06,-1.33863c1.27284,0.0172649,1.75336,-0.362023,1.8,-1.43474,-0.0064656,-1.14462,-0.2591,-1.61514,-1.8,-1.70888z" fill="#f7bd13" id="path9" stroke-width="0"/>
<path d="m0,57.096,2.84315,0.0007344c2.23888,0.00991368,3.15007,0.994052,3.13512,2.8063,0.0121529,1.73438,-0.928298,2.74196,-3.13512,2.80913l-2.84315,-0.000216,1.44e-06,-1.33863c1.27284,0.0172649,1.75336,-0.362023,1.8,-1.43474,-0.0064656,-1.14462,-0.2591,-1.61514,-1.8,-1.70888z" fill="#f7bd13" id="path10" stroke-width="0"/>
<path d="m51.0493,62.7122,-2.84315,-0.0007344c-2.23888,-0.00991368,-3.15007,-0.994052,-3.13512,-2.8063,-0.0121529,-1.73438,0.928298,-2.74196,3.13512,-2.80913l2.84315,0.000216,-1.44e-06,1.33863c-1.27284,-0.0172649,-1.75336,0.362023,-1.8,1.43474,0.0064656,1.14462,0.2591,1.61514,1.8,1.70888z" fill="#f7bd13" id="path18" stroke-width="0"/>
<path d="m51.0493,55.5122,-2.84315,-0.0007344c-2.23888,-0.00991368,-3.15007,-0.994052,-3.13512,-2.8063,-0.0121529,-1.73438,0.928298,-2.74196,3.13512,-2.80913l2.84315,0.000216,-1.44e-06,1.33863c-1.27284,-0.0172649,-1.75336,0.362023,-1.8,1.43474,0.0064656,1.14462,0.2591,1.61514,1.8,1.70888z" fill="#f7bd13" id="path17" stroke-width="0"/>
<path d="m51.0493,48.3122,-2.84315,-0.0007344c-2.23888,-0.00991368,-3.15007,-0.994052,-3.13512,-2.8063,-0.0121529,-1.73438,0.928298,-2.74196,3.13512,-2.80913l2.84315,0.000216,-1.44e-06,1.33863c-1.27284,-0.0172649,-1.75336,0.362023,-1.8,1.43474,0.0064656,1.14462,0.2591,1.61514,1.8,1.70888z" fill="#f7bd13" id="path16" stroke-width="0"/>
<path d="m51.0493,41.1122,-2.84315,-0.0007344c-2.23888,-0.00991368,-3.15007,-0.994052,-3.13512,-2.8063,-0.0121529,-1.73438,0.928298,-2.74196,3.13512,-2.80913l2.84315,0.000216,-1.44e-06,1.33863c-1.27284,-0.0172649,-1.75336,0.362023,-1.8,1.43474,0.0064656,1.14462,0.2591,1.61514,1.8,1.70888z" fill="#f7bd13" id="path15" stroke-width="0"/>
<path d="m51.0493,33.9122,-2.84315,-0.0007344c-2.23888,-0.00991368,-3.15007,-0.994052,-3.13512,-2.8063,-0.0121529,-1.73438,0.928298,-2.74196,3.13512,-2.80913l2.84315,0.000216,-1.44e-06,1.33863c-1.27284,-0.0172649,-1.75336,0.362023,-1.8,1.43474,0.0064656,1.14462,0.2591,1.61514,1.8,1.70888z" fill="#f7bd13" id="path14" stroke-width="0"/>
<path d="m51.0493,26.7122,-2.84315,-0.0007344c-2.23888,-0.00991368,-3.15007,-0.994052,-3.13512,-2.8063,-0.0121529,-1.73438,0.928298,-2.74196,3.13512,-2.80913l2.84315,0.000216,-1.44e-06,1.33863c-1.27284,-0.0172649,-1.75336,0.362023,-1.8,1.43474,0.0064656,1.14462,0.2591,1.61514,1.8,1.70888z" fill="#f7bd13" id="path13" stroke-width="0"/>
<path d="m51.0493,19.5122,-2.84315,-0.0007344c-2.23888,-0.00991368,-3.15007,-0.994052,-3.13512,-2.8063,-0.0121529,-1.73438,0.928298,-2.74196,3.13512,-2.80913l2.84315,0.000216,-1.44e-06,1.33863c-1.27284,-0.0172649,-1.75336,0.362023,-1.8,1.43474,0.0064656,1.14462,0.2591,1.61514,1.8,1.70888z" fill="#f7bd13" id="path12" stroke-width="0"/>
<path d="m51.0493,12.3116,-2.84315,-0.0007344c-2.23888,-0.00991368,-3.15007,-0.994052,-3.13512,-2.8063,-0.0121529,-1.73438,0.928298,-2.74196,3.13512,-2.80913l2.84315,0.000216,-1.44e-06,1.33863c-1.27284,-0.0172649,-1.75336,0.362023,-1.8,1.43474,0.0064656,1.14462,0.2591,1.61514,1.8,1.70888z" fill="#f7bd13" id="path11" stroke-width="0"/>
<circle cx="3.93767" cy="9.48054" fill="#ffffff" id="connector0pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
<circle cx="3.93767" cy="16.7106" fill="#ffffff" id="connector1pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
<circle cx="3.93767" cy="23.9106" fill="#ffffff" id="connector2pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
<circle cx="3.93767" cy="31.1106" fill="#ffffff" id="connector3pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
<circle cx="3.93767" cy="38.3106" fill="#ffffff" id="connector4pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
<circle cx="3.93767" cy="45.5106" fill="#ffffff" id="connector5pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
<circle cx="3.93767" cy="52.7106" fill="#ffffff" id="connector6pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
<circle cx="3.93767" cy="59.9106" fill="#ffffff" id="connector7pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
<g transform="scale(-1)">
<circle cx="-47.1356" cy="-59.9097" fill="#ffffff" id="connector8pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
</g>
<g transform="scale(-1)">
<circle cx="-47.1356" cy="-52.7097" fill="#ffffff" id="connector9pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
</g>
<g transform="scale(-1)">
<circle cx="-47.1356" cy="-45.5097" fill="#ffffff" id="connector10pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
</g>
<g transform="scale(-1)">
<circle cx="-47.1356" cy="-38.3097" fill="#ffffff" id="connector11pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
</g>
<g transform="scale(-1)">
<circle cx="-47.1356" cy="-31.1097" fill="#ffffff" id="connector12pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
</g>
<g transform="scale(-1)">
<circle cx="-47.1356" cy="-23.9097" fill="#ffffff" id="connector13pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
</g>
<g transform="scale(-1)">
<circle cx="-47.1356" cy="-16.7097" fill="#ffffff" id="connector14pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
</g>
<g transform="scale(-1)">
<circle cx="-47.1356" cy="-9.50973" fill="#ffffff" id="connector15pin" r="1.728" stroke="#f7bd13" stroke-width="0.719998"/>
</g>
</g>
</g>
</g>
<g partID="63350">
<g transform="translate(427.863,15.5096)">
<g id="breadboard" >
<g fill="none" id="connector0leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.16" x1="9.001" x2="9.001" y1="62.317" y2="72.317"/>
<g fill="none" id="connector1leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.16" x1="18.999" x2="18.999" y1="62.317" y2="72.317"/>
<g fill="none" id="connector2leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.16" x1="28.997" x2="28.997" y1="62.317" y2="72.317"/>
<path d="M24.4778,0.36L13.6793,0.36l0,1.80144c3.13488,0,5.67,1.77984,5.67,3.97296c-0.00144,2.19168,-2.53656,3.96936,-5.67,3.96936l0,5.82264l10.7986,0L24.4778,0.36z" fill="#BFBCBC" />
<path d="M8.01072,6.13008C8.01072,3.93624,10.5473,2.16,13.6793,2.16L13.6793,0.35928L2.88072,0.35928L2.88072,15.9192l10.7986,0l0,-5.82192C10.5473,10.0987,8.01072,8.32248,8.01072,6.13008z" fill="#808080" />
<rect fill="#8C8C8C" height="4.104" id="connector0pin" width="2.16" x="5.40072" y="40.7016"/>
<rect fill="#8C8C8C" height="4.104" id="connector1pin" width="2.16" x="12.5993" y="40.7016"/>
<rect fill="#8C8C8C" height="4.104" id="connector2pin" width="2.16" x="19.7978" y="40.7016"/>
<polygon fill="#CCCCCC" id="polygon10" points="0.36072,3.258,0.36072,12.8628,2.88072,12.8628,2.88072,0.36" />
<polygon fill="#999999" id="polygon12" points="26.9978,3.258,24.4778,0.36,24.4778,12.8628,26.9978,12.8628" />
<polygon fill="#8C8C8C" id="polygon21" points="9.00072,40.806,7.38792,41.526,5.57352,41.526,3.96072,40.806,3.96072,32.0364,9.00072,32.0364" />
<polygon fill="#8C8C8C" id="polygon23" points="16.1993,40.806,14.5865,41.526,12.7728,41.526,11.1593,40.806,11.1593,32.0364,16.1993,32.0364" />
<polygon fill="#8C8C8C" id="polygon25" points="23.3978,40.806,21.785,41.526,19.9721,41.526,18.3593,40.806,18.3593,32.0364,23.3978,32.0364" />
<rect fill="#141414" height="15.9998" width="8.64" x="18.3593" y="22.6958"/>
<rect fill="#333333" height="15.9998" width="8.64" x="0.36072" y="22.6958"/>
<path d="M0.36072,28.5545l0,5.16672c2.0376,0,3.69,-1.15488,3.69,-2.58336C4.05072,29.7115,2.39832,28.5545,0.36072,28.5545z" fill="#262626" id="path40_1_" />
<path d="M26.9978,28.5545c-2.0376,0,-3.69,1.15488,-3.69,2.58336c0,1.42488,1.6524,2.58336,3.69,2.58336L26.9978,28.5545z" id="path47" />
<path d="M0.36072,22.6958l0,7.11936c2.0376,0,3.69,1.15632,3.69,2.58336c0,1.42704,-1.6524,2.58336,-3.69,2.58336l0,3.71376l26.6386,0L26.9993,22.6958L0.36072,22.6958zM26.9978,34.9812c-2.0376,0,-3.69,-1.15488,-3.69,-2.58336c0,-1.42488,1.6524,-2.58336,3.69,-2.58336L26.9978,34.9812z" fill="#1A1A1A" />
<rect height="3.34728" id="rect49" width="26.6386" x="0.36072" y="19.3478"/>
<rect fill="#333333" height="4.13856" id="rect51" width="26.6386" x="0.36072" y="15.2093"/>
<rect fill="#B2B2B2" height="3.06" id="rect53" width="21.5986" x="2.88072" y="0.36"/>
<path d="M24.4778,2.70648L2.88072,2.70648l-2.52,2.89728l0,9.6048l26.6371,0L26.9978,5.60376L24.4778,2.70648zM13.6793,12.4459c-3.132,0,-5.66856,-1.77696,-5.66856,-3.96936c0,-2.19168,2.53656,-3.96792,5.66856,-3.96792c3.13488,0,5.67,1.77696,5.67,3.96792C19.3478,10.6682,16.8127,12.4459,13.6793,12.4459z" fill="#8C8C8C" id="path55" />
<g >
<path d="M8.34336,26.6954l0,-2.71368l1.0548,0l0,0.55224l0.55368,0l0,0.55296l0.50184,0l0,-1.10376l1.10664,0l0,2.71368l-1.10664,0l0,-0.5544l-0.50184,0l0,-0.55224l-0.55368,0l0,1.10448L8.34336,26.6954L8.34336,26.6954z" fill="#6D6D6D" id="path57" />
<path d="M14.7751,24.534l0.50184,0l0,1.05624l-0.50184,0l0,0.55224l-1.60632,0l0,0.55368l-1.1052,0l0,-2.71296l2.71512,0l0,0.55224L14.7751,24.534L14.7751,24.534zM14.2222,24.534l-1.0548,0l0,1.05624l1.0548,0L14.2222,24.534z" fill="#6D6D6D" id="path59" />
<path d="M15.8292,26.6954l0,-2.71368l1.05624,0l0,0.55224l0.55296,0l0,0.55296l0.55512,0l0,-1.10376l1.0548,0l0,2.71368L17.9928,26.6969l0,-0.5544L17.4384,26.1425l0,-0.55224l-0.55296,0l0,1.10448L15.8292,26.6954L15.8292,26.6954z" fill="#6D6D6D" id="path61" />
</g>
</g>
</g>
</g>
<path d="M434.344,60.3778L434.344,67.5778" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
<path d="M434.344,63.5778L434.344,67.5778" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
<path d="M441.542,60.3778L441.542,67.5778" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
<path d="M441.542,63.5778L441.542,67.5778" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
<path d="M448.741,60.3778L448.741,67.5778" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
<path d="M448.741,63.5778L448.741,67.5778" fill="none" opacity="0.3" stroke="#ff0000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
<g partID="67190">
<g transform="translate(298.263,37.1096)">
<g id="breadboard" >
<rect fill="none" height="0.72" id="connector0pin" width="2.16" x="5.40072" y="43.2"/>
<rect fill="none" height="0.72" id="connector1pin" width="2.16" x="12.5993" y="43.2"/>
<rect fill="none" height="0.72" id="connector2pin" width="2.16" x="19.7978" y="43.2"/>
<g fill="none" id="connector0leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.16" x1="9.001" x2="9.001" y1="62.317" y2="72.317"/>
<g fill="none" id="connector1leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.16" x1="18.999" x2="18.999" y1="62.317" y2="72.317"/>
<g fill="none" id="connector2leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.16" x1="28.997" x2="28.997" y1="62.317" y2="72.317"/>
<path d="M24.4778,0.36L13.6793,0.36l0,1.80144c3.13488,0,5.67,1.77912,5.67,3.97224c-0.00144,2.19168,-2.53656,3.96936,-5.67,3.96936l0,5.82264l10.7986,0L24.4778,0.36z" fill="#BFBCBC" />
<path d="M8.01072,6.13008C8.01072,3.93624,10.5473,2.16,13.6793,2.16L13.6793,0.35928L2.88072,0.35928L2.88072,15.9192l10.7986,0l0,-5.82192C10.5473,10.0987,8.01072,8.32248,8.01072,6.13008z" fill="#808080" />
<rect fill="#8C8C8C" height="11.3666" id="rect4" width="2.16" x="5.40072" y="33.5016"/>
<rect fill="#8C8C8C" height="11.3666" id="rect6" width="2.16" x="12.5993" y="33.5016"/>
<rect fill="#8C8C8C" height="11.3666" id="rect8" width="2.16" x="19.7978" y="33.5016"/>
<polygon fill="#CCCCCC" id="polygon10" points="0.36072,3.258,0.36072,12.8628,2.88072,12.8628,2.88072,0.36" />
<polygon fill="#999999" id="polygon12" points="26.9978,3.258,24.4778,0.36,24.4778,12.8628,26.9978,12.8628" />
<polygon fill="#8C8C8C" id="polygon21" points="9.00072,40.806,7.38792,41.526,5.57352,41.526,3.96072,40.806,3.96072,32.0364,9.00072,32.0364" />
<polygon fill="#8C8C8C" id="polygon23" points="16.1993,40.806,14.5865,41.526,12.7728,41.526,11.1593,40.806,11.1593,32.0364,16.1993,32.0364" />
<polygon fill="#8C8C8C" id="polygon25" points="23.3978,40.806,21.785,41.526,19.9721,41.526,18.3593,40.806,18.3593,32.0364,23.3978,32.0364" />
<rect fill="#141414" height="15.9998" width="8.64" x="18.3593" y="22.6958"/>
<rect fill="#333333" height="15.9998" width="8.64" x="0.36072" y="22.6958"/>
<path d="M0.36072,28.5545l0,5.16672c2.0376,0,3.69,-1.15488,3.69,-2.58336C4.05072,29.7115,2.39832,28.5545,0.36072,28.5545z" fill="#262626" id="path40_1_" />
<path d="M26.9978,28.5545c-2.0376,0,-3.69,1.15488,-3.69,2.58336c0,1.42488,1.6524,2.58336,3.69,2.58336L26.9978,28.5545z" id="path47" />
<path d="M0.36072,22.6958l0,7.11936c2.0376,0,3.69,1.15632,3.69,2.58336c0,1.42704,-1.6524,2.58336,-3.69,2.58336l0,3.71376l26.6386,0L26.9993,22.6958L0.36072,22.6958zM26.9978,34.9812c-2.0376,0,-3.69,-1.15488,-3.69,-2.58336c0,-1.42488,1.6524,-2.58336,3.69,-2.58336L26.9978,34.9812z" fill="#1A1A1A" />
<rect height="3.34728" id="rect49" width="26.6386" x="0.36072" y="19.3478"/>
<rect fill="#333333" height="4.13856" id="rect51" width="26.6386" x="0.36072" y="15.2093"/>
<rect fill="#B2B2B2" height="3.06" id="rect53" width="21.5986" x="2.88072" y="0.36"/>
<path d="M24.4778,2.70648L2.88072,2.70648l-2.52,2.89728l0,9.6048l26.6371,0L26.9978,5.60376L24.4778,2.70648zM13.6793,12.4459c-3.132,0,-5.66856,-1.77696,-5.66856,-3.96936c0,-2.19168,2.53656,-3.96792,5.66856,-3.96792c3.13488,0,5.67,1.77696,5.67,3.96792C19.3478,10.6682,16.8127,12.4459,13.6793,12.4459z" fill="#8C8C8C" id="path55" />
<g id="g47" >
<path d="M8.27928,24.3259l0,1.08l-0.54,0l0,1.08l-0.54,0l0,0.54l-1.08,0l0,-0.54l-0.54,0l0,-1.08l-0.54,0l0,-1.08l1.08,0l0,1.08l1.08,0l0,-1.08L8.27928,24.3259z" fill="#663300" id="path49" />
<path d="M13.6793,24.8659l0.54,0l0,1.08l-0.54,0l0,0.54l0.54,0l0,0.54l-1.62,0l0,-0.54l-0.54,0l0,0.54l-1.08,0l0,-2.7l2.7,0L13.6793,24.8659L13.6793,24.8659zM13.1393,24.8659l-1.08,0l0,1.08l1.08,0L13.1393,24.8659z" fill="#663300" id="path51" />
<path d="M17.9993,24.3259l0,0.54l-2.16,0l0,0.54l1.62,0l0,0.54l-1.62,0l0,0.54l2.16,0l0,0.54l-3.24,0l0,-2.7L17.9993,24.3259z" fill="#663300" id="path53" />
<path d="M19.0793,26.4859l-0.54,0l0,-1.62l0.54,0l0,-0.54l2.7,0l0,0.54l-2.16,0l0,1.62l1.08,0l0,-0.54l-0.54,0l0,-0.54l1.62,0l0,1.62l-2.7,0L19.0793,26.4859z" fill="#663300" id="path56" />
</g>
</g>
</g>
</g>
<path d="M304.744,81.9778L304.744,89.1778" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
<path d="M304.744,85.1778L304.744,89.1778" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
<path d="M311.942,81.9778L311.942,89.1778" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
<path d="M311.942,85.1778L311.942,89.1778" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
<path d="M319.141,81.9778L319.141,89.1778" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
<path d="M319.141,85.1778L319.141,89.1778" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.16"/>
<g partID="68660">
<g transform="translate(154.199,205.34)">
<g transform="matrix(-1,0,0,-1,0,0)">
<g id="breadboard" >
<path baseline-shift="baseline" clip-rule="nonzero" color="#000000" color-interpolation="sRGB" color-interpolation-filters="linearRGB" color-rendering="auto" d="M41.8158,4.06456,37.3516,5.7752,65.5492,79.3639,70.1558,78.785,73.4277,50.6438,143.953,23.3109,142.225,18.8532,69.012,47.2278,66.531,68.5647Z" direction="ltr" display="inline" enable-background="accumulate" fill="#333333" fill-opacity="1" fill-rule="evenodd" font-family="'Droid Sans'" font-size="medium" font-stretch="normal" font-style="normal" font-variant="normal" font-weight="normal" gorn="0.3.0.0.0.0.0.0" id="path4272" image-rendering="auto" isolation="auto" letter-spacing="normal" line-height="normal" mix-blend-mode="normal" opacity="1" overflow="visible" shape-rendering="auto" solid-color="#000000" solid-opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.430268" text-align="start" text-anchor="start" text-decoration="none" text-decoration-color="#000000" text-decoration-line="none" text-decoration-style="solid" text-indent="0" text-rendering="auto" text-transform="none" visibility="visible" white-space="normal" word-spacing="normal" writing-mode="lr-tb" />
<path baseline-shift="baseline" clip-rule="nonzero" color="#000000" color-interpolation="sRGB" color-interpolation-filters="linearRGB" color-rendering="auto" d="M107.515,60.514,102.892,61.014,100.334,81.1534,13.4267,108.206,14.8474,112.771,104.69,84.8048,106.37,71.5778C108.434,77.3855,110.64,83.5838,115.003,95.8986,118.033,104.452,121.095,113.112,123.463,119.846,125.832,126.581,127.588,131.67,127.732,132.152L132.312,130.778C131.941,129.54,130.344,125.001,127.973,118.26,125.603,111.519,122.54,102.857,119.509,94.3024,113.447,77.193,107.515,60.514,107.515,60.514Z" direction="ltr" display="inline" enable-background="accumulate" fill="#333333" fill-opacity="1" fill-rule="evenodd" font-family="'Droid Sans'" font-size="medium" font-stretch="normal" font-style="normal" font-variant="normal" font-weight="normal" gorn="0.3.0.0.0.0.0.1" id="path4274" image-rendering="auto" isolation="auto" letter-spacing="normal" line-height="normal" mix-blend-mode="normal" opacity="1" overflow="visible" shape-rendering="auto" solid-color="#000000" solid-opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.430268" text-align="start" text-anchor="start" text-decoration="none" text-decoration-color="#000000" text-decoration-line="none" text-decoration-style="solid" text-indent="0" text-rendering="auto" text-transform="none" visibility="visible" white-space="normal" word-spacing="normal" writing-mode="lr-tb" />
<path d="M18.5819,0C13.7017,0,9.77299,3.92864,9.77299,8.80898L9.77299,130.803C9.77299,135.683,13.7017,139.612,18.5819,139.612L145.39,139.612C150.27,139.612,154.199,135.683,154.199,130.803L154.199,8.80898C154.199,3.92864,150.27,0,145.39,0ZM85.037,3.2536A70.1804,66.615,0,0,1,152.122,72.1994,70.1804,66.615,0,0,1,79.9941,136.394,70.1804,66.615,0,0,1,11.8207,68.4176L11.8968,66.4077A70.1804,66.615,0,0,1,85.037,3.2536Z" display="inline" fill="#1c1c1c" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.2" id="rect4257" opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.0645403" />
<path d="M82.1759,50.6166C82.1759,50.6166,82.8934,35.0454,81.6601,27.4052,80.5708,20.658,75.6423,7.80456,75.6423,7.80456,75.6423,7.80456,87.2418,6.35984,93.0078,6.94488,99.1896,7.57208,111.061,11.5871,111.061,11.5871,111.061,11.5871,107.006,26.7778,103.84,33.9388,100.902,40.5833,93.0078,52.8518,93.0078,52.8518Z" display="inline" fill="#1c1c1c" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.3" id="path4165" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M82.5782,50.1986C82.5782,50.1986,83.2957,34.6274,82.0623,26.9873,80.9731,20.2401,76.0446,7.38664,76.0446,7.38664,76.0446,7.38664,87.6441,5.94192,93.4101,6.52696,99.5919,7.15416,111.463,11.1692,111.463,11.1692,111.463,11.1692,107.408,26.3599,104.242,33.5209,101.304,40.1654,93.4101,52.4338,93.4101,52.4338Z" display="inline" fill="url(#radialGradient4475)" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.4" id="path4165-2" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M100.429,56.8926C100.429,56.8926,112.634,47.1969,117.581,41.2449,121.949,35.9886,128.394,23.8248,128.394,23.8248,128.394,23.8248,137.109,31.6158,140.458,36.3454,144.05,41.4159,148.828,53.0011,148.828,53.0011,148.828,53.0011,134.716,59.9318,127.238,62.2534,120.3,64.4078,105.865,66.5244,105.865,66.5244Z" display="inline" fill="#1c1c1c" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.5" id="path4165-3" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M106.88,70.9501C106.88,70.9501,121.628,75.9957,129.308,76.9493,136.091,77.7914,149.81,76.6561,149.81,76.6561,149.81,76.6561,147.951,88.1966,145.777,93.5685,143.445,99.3279,136.268,109.602,136.268,109.602,136.268,109.602,122.819,101.458,116.83,96.415,111.273,91.7354,101.703,80.724,101.703,80.724Z" display="inline" fill="#1c1c1c" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.6" id="path4165-3-6" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M94.9107,85.8095C94.9107,85.8095,100.065,100.52,104.064,107.146,107.596,112.997,116.971,123.077,116.971,123.077,116.971,123.077,106.752,128.752,101.186,130.365,95.2174,132.093,82.7056,132.806,82.7056,132.806,82.7056,132.806,80.7894,117.201,81.0499,109.375,81.2915,102.114,84.0284,87.7846,84.0284,87.7846Z" display="inline" fill="#1c1c1c" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.7" id="path4165-3-6-7" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M73.9907,85.4913C73.9907,85.4913,67.3506,99.594,65.5565,107.122,63.9721,113.771,63.5888,127.531,63.5888,127.531,63.5888,127.531,52.3234,124.412,47.2238,121.659,41.7564,118.706,32.3358,110.442,32.3358,110.442,32.3358,110.442,41.9116,97.9717,47.5843,92.5748,52.8478,87.5672,64.8467,79.2691,64.8467,79.2691Z" display="inline" fill="#1c1c1c" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.8" id="path4165-3-6-7-5" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M59.8391,76.0804C59.8391,76.0804,44.6884,79.7458,37.698,83.0666,31.5246,85.9991,20.5621,94.3254,20.5621,94.3254,20.5621,94.3254,15.9313,83.5927,14.8806,77.8931,13.754,71.7826,14.2891,59.262,14.2891,59.262,14.2891,59.262,30.0077,58.9073,37.7684,59.9446,44.9695,60.9072,58.956,65.0555,58.956,65.0555Z" display="inline" fill="#1c1c1c" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.9" id="path4165-3-6-7-5-3" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M66.0629,58.6934C66.0629,58.6934,54.7681,47.9506,48.1876,43.8775,42.3762,40.2805,29.4361,35.5841,29.4361,35.5841,29.4361,35.5841,35.9433,25.8737,40.1626,21.9004,44.6861,17.6406,55.4965,11.3013,55.4965,11.3013,55.4965,11.3013,64.3175,24.3163,67.6538,31.3997,70.7495,37.9722,74.8476,51.9734,74.8476,51.9734Z" display="inline" fill="#1c1c1c" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.10" id="path4165-3-6-7-5-3-5" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M110.877,68.4728A27.0739,25.9563,0,0,1,84.5777,94.9595,27.0739,25.9563,0,0,1,56.7528,69.9462,27.0739,25.9563,0,0,1,82.6323,43.0819,27.0739,25.9563,0,0,1,110.848,67.6896" display="inline" fill="#1c1c1c" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.11" id="path4163" opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.0656212" />
<path d="M100.106,56.2842C100.106,56.2842,112.311,46.5885,117.258,40.6365,121.626,35.3802,128.072,23.2164,128.072,23.2164,128.072,23.2164,136.786,31.0074,140.135,35.737,143.727,40.8075,148.505,52.3927,148.505,52.3927,148.505,52.3927,134.393,59.3234,126.915,61.645,119.977,63.7994,105.543,65.916,105.543,65.916Z" display="inline" fill="url(#radialGradient4560)" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.12" id="path4165-3-61" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M107.835,72.1504C107.835,72.1504,122.583,77.1961,130.263,78.1497,137.046,78.9918,150.765,77.8565,150.765,77.8565,150.765,77.8565,148.906,89.3969,146.731,94.769,144.4,100.528,137.223,110.802,137.223,110.802,137.223,110.802,123.774,102.659,117.785,97.6154,112.228,92.9357,102.658,81.9244,102.658,81.9244Z" display="inline" fill="url(#radialGradient4607)" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.13" id="path4165-3-6-0" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M95.9148,87.7043C95.9148,87.7043,101.069,102.415,105.068,109.041,108.6,114.892,117.976,124.972,117.976,124.972,117.976,124.972,107.756,130.647,102.19,132.26,96.2215,133.988,83.7097,134.701,83.7097,134.701,83.7097,134.701,81.7935,119.096,82.054,111.27,82.2956,104.009,85.0324,89.6794,85.0324,89.6794Z" display="inline" fill="url(#radialGradient4630)" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.14" id="path4165-3-6-7-2" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M111.199,68.0818A27.0739,25.9563,0,0,1,84.8999,94.5686,27.0739,25.9563,0,0,1,57.075,69.5553,27.0739,25.9563,0,0,1,82.9545,42.691,27.0739,25.9563,0,0,1,111.17,67.2986" display="inline" fill="url(#radialGradient4746)" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.15" id="path4163-3" opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.0656212" />
<path d="M73.4448,85.8362C73.4448,85.8362,66.8047,99.9389,65.0107,107.467,63.4263,114.116,63.043,127.876,63.043,127.876,63.043,127.876,51.7776,124.757,46.6779,122.004,41.2105,119.051,31.7899,110.787,31.7899,110.787,31.7899,110.787,41.3658,98.3166,47.0384,92.9198,52.3019,87.9121,64.3008,79.6141,64.3008,79.6141Z" display="inline" fill="url(#radialGradient4653)" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.16" id="path4165-3-6-7-5-37" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M59.338,76.599C59.338,76.599,44.1874,80.2645,37.1969,83.5851,31.0235,86.5177,20.0611,94.844,20.0611,94.844,20.0611,94.844,15.4303,84.1113,14.3795,78.4118,13.253,72.3012,13.7881,59.7806,13.7881,59.7806,13.7881,59.7806,29.5067,59.4258,37.2674,60.4632,44.4684,61.4258,58.4549,65.5741,58.4549,65.5741Z" display="inline" fill="url(#radialGradient4676)" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.17" id="path4165-3-6-7-5-3-59" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M65.3326,59.1116C65.3326,59.1116,54.0377,48.369,47.4573,44.2958,41.6459,40.6988,28.7058,36.0024,28.7058,36.0024,28.7058,36.0024,35.2129,26.2919,39.4322,22.3186,43.9557,18.0589,54.7662,11.7196,54.7662,11.7196,54.7662,11.7196,63.5871,24.7346,66.9234,31.818,70.0192,38.3905,74.1173,52.3918,74.1173,52.3918Z" display="inline" fill="url(#radialGradient4723)" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.18" id="path4165-3-6-7-5-3-5-7" opacity="1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path baseline-shift="baseline" clip-rule="nonzero" color="#000000" color-interpolation="sRGB" color-interpolation-filters="linearRGB" color-rendering="auto" d="M11.2073,122.328,0,122.435,0.0182075,124.348,11.2255,124.241Z" direction="ltr" display="inline" enable-background="accumulate" fill="#000000" fill-opacity="1" fill-rule="evenodd" font-family="'Droid Sans'" font-size="medium" font-stretch="normal" font-style="normal" font-variant="normal" font-weight="normal" gorn="0.3.0.0.0.0.0.20" id="path355" image-rendering="auto" isolation="auto" letter-spacing="normal" line-height="normal" mix-blend-mode="normal" opacity="1" overflow="visible" shape-rendering="auto" solid-color="#000000" solid-opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.172107" text-align="start" text-anchor="start" text-decoration="none" text-decoration-color="#000000" text-decoration-line="none" text-decoration-style="solid" text-indent="0" text-rendering="auto" text-transform="none" visibility="visible" white-space="normal" word-spacing="normal" writing-mode="lr-tb" />
<path baseline-shift="baseline" clip-rule="nonzero" color="#000000" color-interpolation="sRGB" color-interpolation-filters="linearRGB" color-rendering="auto" d="M11.2324,115.078,0.0251585,115.185,0.043366,117.097,11.2506,116.99Z" direction="ltr" display="inline" enable-background="accumulate" fill="#ff0000" fill-opacity="1" fill-rule="evenodd" font-family="'Droid Sans'" font-size="medium" font-stretch="normal" font-style="normal" font-variant="normal" font-weight="normal" gorn="0.3.0.0.0.0.0.22" id="path4281" image-rendering="auto" isolation="auto" letter-spacing="normal" line-height="normal" mix-blend-mode="normal" opacity="1" overflow="visible" shape-rendering="auto" solid-color="#000000" solid-opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.172107" text-align="start" text-anchor="start" text-decoration="none" text-decoration-color="#000000" text-decoration-line="none" text-decoration-style="solid" text-indent="0" text-rendering="auto" text-transform="none" visibility="visible" white-space="normal" word-spacing="normal" writing-mode="lr-tb" />
<path d="M14.8487,38.071,26.3958,20.7503,14.8487,9.68432Z" fill="#292929" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.23" id="path357" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M49.728,3.0792,32.6339,14.9592,21.3466,3.62824Z" fill="#292929" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.24" id="path4281-6" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M150.887,37.765,139.34,20.4444,150.887,9.37848Z" fill="#292929" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.25" id="path4281-2" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M116.008,2.77328,133.102,14.6533,144.389,3.3224Z" fill="#292929" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.26" id="path4281-6-9" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M116.614,135.182,133.868,123.535,145,135.018Z" fill="#292929" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.27" id="path4281-2-1" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M151.404,100.101,139.623,117.263,151.018,128.485Z" fill="#292929" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.28" id="path4281-6-9-2" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M48.8426,136.682,31.5889,125.035,20.4564,136.518Z" fill="#292929" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.29" id="path4281-2-1-7" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M14.0528,101.601,25.8338,118.763,14.4379,129.985Z" fill="#292929" fill-opacity="1" fill-rule="evenodd" gorn="0.3.0.0.0.0.0.30" id="path4281-6-9-2-0" stroke="none" stroke-linecap="butt" stroke-linejoin="miter" stroke-opacity="1" stroke-width="0.0215134" />
<path d="M22.5523,130.511A2.52593,2.28536,0,0,1,20.0986,132.843,2.52593,2.28536,0,0,1,17.5026,130.641,2.52593,2.28536,0,0,1,19.9171,128.276,2.52593,2.28536,0,0,1,22.5496,130.442" fill="#292929" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.31" id="path4352" opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.430268" />
<path d="M147.998,128.725A2.52593,2.28536,0,0,1,145.544,131.057,2.52593,2.28536,0,0,1,142.948,128.855,2.52593,2.28536,0,0,1,145.363,126.49,2.52593,2.28536,0,0,1,147.995,128.656" fill="#292929" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.32" id="path4352-9" opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.430268" />
<path d="M147.285,8.43696A2.52593,2.28536,0,0,1,144.832,10.769,2.52593,2.28536,0,0,1,142.236,8.56672,2.52593,2.28536,0,0,1,144.65,6.20136,2.52593,2.28536,0,0,1,147.283,8.368" fill="#292929" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.33" id="path4352-9-3" opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.430268" />
<path d="M22.4229,8.92112A2.52593,2.28536,0,0,1,19.9692,11.2532,2.52593,2.28536,0,0,1,17.3732,9.05088,2.52593,2.28536,0,0,1,19.7877,6.68552,2.52593,2.28536,0,0,1,22.4201,8.85216" fill="#292929" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.34" id="path4352-9-3-6" opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.430268" />
<path d="M85.2134,69.5374A2.52593,2.28536,0,0,1,82.7597,71.8694,2.52593,2.28536,0,0,1,80.1637,69.667,2.52593,2.28536,0,0,1,82.5782,67.3018,2.52593,2.28536,0,0,1,85.2106,69.4684" fill="#333333" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.35" id="path4352-9-3-6-0" opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.430268" />
<path d="M85.9351,70.259A2.52593,2.28536,0,0,1,83.4814,72.5911,2.52593,2.28536,0,0,1,80.8854,70.3887,2.52593,2.28536,0,0,1,83.2999,68.0234,2.52593,2.28536,0,0,1,85.9323,70.1901" display="inline" fill="url(#radialGradient4769)" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.36" id="path4352-9-3-6-0-6" opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.430268" />
<rect fill="#000000" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.37" height="4.74016" id="rect4790" opacity="1" ry="1.6429" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.430268" width="5.08863" x="8.84938" y="113.704"/>
<rect display="inline" fill="#000000" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.38" height="4.74016" id="rect4790-1" opacity="1" ry="1.6429" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.430268" width="5.08863" x="8.70802" y="120.893"/>
<path baseline-shift="baseline" clip-rule="nonzero" color="#000000" color-interpolation="sRGB" color-interpolation-filters="linearRGB" color-rendering="auto" d="M11.2073,107.939,0,108.046,0.0182075,109.959,11.2255,109.852Z" direction="ltr" display="inline" enable-background="accumulate" fill="#0000ff" fill-opacity="1" fill-rule="evenodd" font-family="'Droid Sans'" font-size="medium" font-stretch="normal" font-style="normal" font-variant="normal" font-weight="normal" gorn="0.3.0.0.0.0.0.20" id="path345" image-rendering="auto" isolation="auto" letter-spacing="normal" line-height="normal" mix-blend-mode="normal" opacity="1" overflow="visible" shape-rendering="auto" solid-color="#000000" solid-opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.172107" text-align="start" text-anchor="start" text-decoration="none" text-decoration-color="#000000" text-decoration-line="none" text-decoration-style="solid" text-indent="0" text-rendering="auto" text-transform="none" visibility="visible" white-space="normal" word-spacing="normal" writing-mode="lr-tb" />
<path baseline-shift="baseline" clip-rule="nonzero" color="#000000" color-interpolation="sRGB" color-interpolation-filters="linearRGB" color-rendering="auto" d="M11.2324,100.678,0.0251585,100.785,0.043366,102.697,11.2506,102.59Z" direction="ltr" display="inline" enable-background="accumulate" fill="#00ff00" fill-opacity="1" fill-rule="evenodd" font-family="'Droid Sans'" font-size="medium" font-stretch="normal" font-style="normal" font-variant="normal" font-weight="normal" gorn="0.3.0.0.0.0.0.22" id="path349" image-rendering="auto" isolation="auto" letter-spacing="normal" line-height="normal" mix-blend-mode="normal" opacity="1" overflow="visible" shape-rendering="auto" solid-color="#000000" solid-opacity="1" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="butt" stroke-linejoin="miter" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.172107" text-align="start" text-anchor="start" text-decoration="none" text-decoration-color="#000000" text-decoration-line="none" text-decoration-style="solid" text-indent="0" text-rendering="auto" text-transform="none" visibility="visible" white-space="normal" word-spacing="normal" writing-mode="lr-tb" />
<rect fill="#000000" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.37" height="4.74016" id="rect351" opacity="1" ry="1.6429" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.430268" width="5.08863" x="8.84938" y="99.3036"/>
<rect display="inline" fill="#000000" fill-opacity="1" fill-rule="nonzero" gorn="0.3.0.0.0.0.0.38" height="4.74016" id="rect353" opacity="1" ry="1.6429" stroke="none" stroke-dasharray="none" stroke-dashoffset="0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-opacity="1" stroke-width="0.430268" width="5.08863" x="8.70802" y="106.504"/>
<rect fill="none" gorn="0.3.0.0.0.0.0.19" height="1.62037" id="connector0pin" ry="0.365027" stroke="none" stroke-width="0" width="1.07153" x="0.123094" y="122.541"/>
<rect fill="none" gorn="0.3.0.0.0.0.0.21" height="1.62037" id="connector1pin" ry="0.365027" stroke="none" stroke-width="0" width="1.07153" x="0.136162" y="115.308"/>
<rect fill="none" gorn="0.3.0.0.0.0.0.19" height="1.62037" id="connector2pin" ry="0.365027" stroke="none" stroke-width="0" width="1.07153" x="0.123094" y="108.152"/>
<rect fill="none" gorn="0.3.0.0.0.0.0.21" height="1.62037" id="connector3pin" ry="0.365027" stroke="none" stroke-width="0" width="1.07153" x="0.136162" y="100.908"/>
</g>
</g>
</g>
</g>
<g partID="77210">
<g transform="translate(234.72,42.5576)">
<g transform="matrix(1, 0, 0, 1, 0, -270)">
<g id="breadboard">
<g>
<g transform="matrix(-0.5, 0, 0, -0.5, 36.5032, 748.942)">
<g id="g3061" style="display:inline">
<rect fill="#37c871" fill-opacity="1" height="39.685" id="rect2989" stroke="none" style="fill-rule:evenodd;" width="39.685" x="9.92126" y="792.283"/>
<rect fill="#ffffff" fill-opacity="0.35326089" height="5.66929" id="rect3761" stroke="none" style="fill-rule:evenodd;" width="39.685" x="9.92126" y="792.283"/>
<g transform="matrix(1.25, 0, 0, 1.25, -4.96063, -201.26)">
<path d="m25.5118,810.709a5.66929,5.66929,0,1,1,-11.3386,0,5.66929,5.66929,0,1,1,11.3386,0z" fill="#d7d7d7" fill-opacity="1" id="path3763" stroke="#000000" stroke-dasharray="none" stroke-opacity="1" stroke-width="0.226772" style="fill-rule:evenodd;stroke-miterlimit:4;"/>
</g>
<g transform="matrix(1.25, 0, 0, 1.25, 14.8819, -201.26)">
<path d="m25.5118,810.709a5.66929,5.66929,0,1,1,-11.3386,0,5.66929,5.66929,0,1,1,11.3386,0z" fill="#d7d7d7" fill-opacity="1" id="path3763-8" stroke="#000000" stroke-dasharray="none" stroke-opacity="1" stroke-width="0.226772" style="fill-rule:evenodd;stroke-miterlimit:4;"/>
</g>
<g transform="matrix(0.916667, 0, 0, 0.916667, 1.65354, 67.6771)">
<path d="m14.9771,819.101a8.50394,8.50394,0,1,1,10.9117,-12.9546" fill="none" id="path3787" stroke="#000000" stroke-dasharray="none" stroke-opacity="0.28235294" stroke-width="1.54617" style="stroke-miterlimit:4;"/>
</g>
<g transform="matrix(0.916667, 0, 0, 0.916667, 21.4949, 67.6771)">
<path d="M15.1796,819.238A8.50394,8.50394,0,1,1,26.5858,806.945" fill="none" id="path3834" stroke="#000000" stroke-dasharray="none" stroke-opacity="0.28235294" stroke-width="1.54617" style="stroke-miterlimit:4;"/>
</g>
<g transform="matrix(0.909091, 0, 0, 0.909091, 1.80387, 73.8296)">
<path d="m15.2679,817.538a7.08661,7.08661,0,0,1,9.07631,-10.8854" fill="none" id="path3838" stroke="#ffffff" stroke-dasharray="none" stroke-opacity="0.58695649" stroke-width="1.55906" style="stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;"/>
</g>
<g transform="matrix(0.909091, 0, 0, 0.909091, 21.6458, 73.8296)">
<path d="m15.2679,817.538a7.08661,7.08661,0,0,1,9.07631,-10.8854" fill="none" id="path3840" stroke="#ffff" stroke-dasharray="none" stroke-opacity="0.58695649" stroke-width="1.55906" style="stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;"/>
</g>
<g transform="matrix(0.93358, 0.358368, -0.358368, 0.93358, 292.358, 46.8301)">
<g id="g3870">
<path d="m19.8425,807.874,0,8.50392" fill="none" id="path3844" stroke="#575757" stroke-dasharray="none" stroke-opacity="1" stroke-width="1.73586" style="stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;"/>
<path d="m15.5906,812.126,8.50394,0" fill="none" id="path3848" stroke="#575757" stroke-dasharray="none" stroke-opacity="1" stroke-width="1.73586" style="stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;"/>
</g>
</g>
<g transform="matrix(0.981627, -0.190809, 0.190809, 0.981627, -134.759, 18.7072)">
<g id="g3874">
<path d="m19.8425,807.874,0,8.50392" fill="none" id="path3876" stroke="#575757" stroke-dasharray="none" stroke-opacity="1" stroke-width="1.73586" style="stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;"/>
<path d="m15.5906,812.126,8.50394,0" fill="none" id="path3878" stroke="#575757" stroke-dasharray="none" stroke-opacity="1" stroke-width="1.73586" style="stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;"/>
</g>
</g>
</g>
</g>
<rect fill="url(#linearGradient4380)" fill-opacity="1" height="18" id="rect3954" stroke="#000000" style="fill-rule:evenodd;display:inline" width="14.4" x="14.4" y="277.2"/>
<rect fill="url(#linearGradient4377)" fill-opacity="1" height="1.44003" id="rect4069" stroke="#000000" stroke-dasharray="none" stroke-opacity="1" stroke-width="0.72" style="stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;display:inline" width="12.96" x="15.12" y="275.76"/>
<path d="M9,316.8C8.0028,316.8,7.2,317.603,7.2,318.6l0,21.6c0,0.9972,0.8028,1.8,1.8,1.8l2.7,0,0,-3.6,19.8,0,0,3.6,2.7,0c0.9972,0,1.8,-0.8028,1.8,-1.8l0,-21.6C36,317.603,35.1972,316.8,34.2,316.8l-25.2,0z" fill="#000000)" fill-opacity="1" id="rect3058" stroke="none" style="display:inline"/>
<path d="m7.92,340.2,0,-19.6364,0,-1.96364m26.28,-1.08,-3.87692,0,-19.3846,0,-1.93846,0m-1.08,1.08c0,-0.596464,0.483533,-1.08,1.08,-1.08" fill="none" id="path3917" stroke="#000000" stroke-opacity="0.15760869" stroke-width="0.752015" style="stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;display:inline"/>
<rect fill="url(#linearGradient4370)" fill-opacity="1" height="1.79999" id="rect3964" rx="0.36" stroke="#343434" stroke-dasharray="none" stroke-opacity="1" stroke-width="0.72" style="fill-rule:evenodd;stroke-miterlimit:4;display:inline" width="22.32" x="10.44" y="311.76"/>
<rect fill="url(#linearGradient4367)" fill-opacity="1" height="1.80001" id="rect3984" rx="0.36" stroke="#343434" stroke-dasharray="none" stroke-opacity="1" stroke-width="0.72" style="fill-rule:evenodd;stroke-miterlimit:4;display:inline" width="20.88" x="11.16" y="307.44"/>
<rect fill="url(#linearGradient4364)" fill-opacity="1" height="1.8" id="rect3988" rx="0.36" stroke="#343434" stroke-dasharray="none" stroke-opacity="1" stroke-width="0.72" style="fill-rule:evenodd;stroke-miterlimit:4;display:inline" width="18" x="12.6" y="298.8"/>
<rect fill="url(#linearGradient4361)" fill-opacity="1" height="1.8" id="rect3992" rx="0.36" stroke="#343434" stroke-dasharray="none" stroke-opacity="1" stroke-width="0.72" style="fill-rule:evenodd;stroke-miterlimit:4;display:inline" width="19.44" x="11.88" y="303.12"/>
<rect fill="url(#linearGradient4358)" fill-opacity="1" height="1.8" id="rect3996" rx="0.36" stroke="#343434" stroke-dasharray="none" stroke-opacity="1" stroke-width="0.72" style="fill-rule:evenodd;stroke-miterlimit:4;display:inline" width="16.56" x="13.32" y="294.48"/>
<path d="m14.4,329.4,0,3.6m-1.8,-1.8,3.6,0" fill="none" id="path4133" stroke="#ffffff" stroke-dasharray="none" stroke-opacity="0.125" stroke-width="0.72" style="color:#000000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g transform="matrix(1, 0, 0, 1, -7.2, 0)">
<path d="m24.84,331.2a3.24,3.24,0,1,1,-6.48,0,3.24,3.24,0,1,1,6.48,0z" fill="none" id="path4137" stroke="#ffffff" stroke-dasharray="none" stroke-opacity="0.125" stroke-width="0.72" style="stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;display:inline"/>
</g>
<path d="m27,331.2,3.6,0" fill="#ffffff" id="path4144" stroke="#ffffff" stroke-dasharray="none" stroke-opacity="0.125" stroke-width="0.72" style="color:#000000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<g transform="matrix(1, 0, 0, 1, 7.2, 0)">
<path d="m24.84,331.2a3.24,3.24,0,1,1,-6.48,0,3.24,3.24,0,1,1,6.48,0z" fill="none" id="path4146" stroke="#ffffff" stroke-dasharray="none" stroke-opacity="0.125" stroke-width="0.72" style="stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;display:inline"/>
</g>
<g transform="matrix(1, 0, 0, 1, 0, 270)">
<rect fill="none" height="3.23999" id="connector1pad" stroke="none" width="3.24" x="15.12" y="81"/>
</g>
<rect fill="none" height="3.23999" id="connector2pad" stroke="none" width="3.24" x="25.2" y="351"/>
</g>
</g>
</g>
</g>
</g>
<g partID="89460">
<g transform="translate(317.7,192.138)">
<g id="breadboard">
<metadata id="metadata150882">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<dc:title xmlns:dc="http://purl.org/dc/elements/1.1/"/>
</cc:Work>
</rdf:RDF>
</metadata>
<defs id="defs150880"/>
<g transform="matrix(1, 0, 0, 1, 0, 8.0944)">
<g id="layer6" style="display:inline">
<g id="g213067">
<path d="m1.44,12.084,4.32,-4.32,0,-2.88" fill="none" id="path212445" stroke="#8c8c8c" stroke-dasharray="none" stroke-opacity="1" stroke-width="1.728" style="color:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<line fill="none" id="connector1leg" stroke="#8c8c8c" stroke-width="1.728" style="stroke-linecap:round" x1="1.44" x2="1.44" y1="12.084" y2="17.8256"/>
<line fill="none" id="connector2leg" stroke="#8c8c8c" stroke-width="1.728" style="stroke-linecap:round" x1="8.64" x2="8.64" y1="12.084" y2="17.8256"/>
<line fill="none" id="connector3leg" stroke="#8c8c8c" stroke-width="1.728" style="stroke-linecap:round" x1="15.84" x2="15.84" y1="12.084" y2="17.8256"/>
<rect fill="#8c8c8c" height="7.4808" id="rect9506" width="1.7232" x="7.7736" y="4.6032"/>
<rect fill="#1a1a1a" height="8.056" id="rect9553" width="10.6224" x="3.324" y="-3.4544"/>
<path d="m13.1424,-3.4544l0,1.9624,0,6.5824,0,1.4744c0.5064,-0.571199,0.804,-1.2432,0.804,-1.9624l0,0L13.9464,-3.4544l-0.804,0z" fill="#141414" id="path9555"/>
<path d="m4.1288,-3.4544l-0.804,0L3.3248,4.6016l0,0c0,0.7192,0.2984,1.3912,0.804,1.9624L4.1288,5.0896,4.1288,-1.492,4.1288,-3.4544z" fill="#242424" id="path9557"/>
<path d="m3.324,-3.4544,0,0c0,0.7192,0.2984,1.392,0.804,1.9624L13.1488,-1.492c0.5056,-0.5704,0.804,-1.2432,0.804,-1.9624l0,0L3.324,-3.4544z" fill="#1f1f1f" id="path9559"/>
<path d="m8.636,-7.1816c-2.9344,0,-5.312,1.6688,-5.312,3.7288L13.9464,-3.4528c0,-2.06,-2.376,-3.7288,-5.3104,-3.7288z" fill="#141414" id="path9561"/>
<path d="m15.84,12.084,-4.32,-4.32,0,-2.88" fill="none" id="path212957" stroke="#8c8c8c" stroke-dasharray="none" stroke-opacity="1" stroke-width="1.728" style="color:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<rect height="8.056" id="rect9563" width="9.0208" x="4.1288" y="-1.492"/>
<g fill="#e6e6e6" font-size="2.4" id="label0" style="font-family:OCRA">
<text id="tspan150901" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;font-family:OCR A Std;-inkscape-font-specification:OCR A Std" x="8.60631" y="1.93368">DS18</text>
</g>
<g fill="#e6e6e6" font-size="2.4" id="label0_1_" style="font-family:OCRA">
<text id="tspan150907" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:OCR A Std;-inkscape-font-specification:OCR A Std" x="6.0243" y="4.37093">B20</text>
</g>
<g transform="matrix(1, 0, 0, 1, -1.07214e-07, -8.0944)">
<path d="m1.44,25.92,0,1.44" fill="none" id="connector1pin" stroke="#8c8c8c" stroke-dasharray="none" stroke-opacity="0" stroke-width="1.728" style="color:#000000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g transform="matrix(1, 0, 0, 1, -1.07214e-07, -8.0944)">
<path d="m8.64,25.92,0,1.44" fill="none" id="connector2pin" stroke="#8c8c8c" stroke-dasharray="none" stroke-opacity="0" stroke-width="1.728" style="color:#000000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g transform="matrix(1, 0, 0, 1, -1.07214e-07, -8.0944)">
<path d="m15.84,25.92,0,1.44" fill="none" id="connector3pin" stroke="#8c8c8c" stroke-dasharray="none" stroke-opacity="0" stroke-width="1.728" style="color:#000000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g partID="86590">
<g transform="translate(252.9,192.138)">
<g id="breadboard">
<metadata id="metadata150882">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<dc:title xmlns:dc="http://purl.org/dc/elements/1.1/"/>
</cc:Work>
</rdf:RDF>
</metadata>
<defs id="defs150880"/>
<g transform="matrix(1, 0, 0, 1, 0, 8.0944)">
<g id="layer6" style="display:inline">
<g id="g213067">
<path d="m1.44,12.084,4.32,-4.32,0,-2.88" fill="none" id="path212445" stroke="#8c8c8c" stroke-dasharray="none" stroke-opacity="1" stroke-width="1.728" style="color:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<line fill="none" id="connector1leg" stroke="#8c8c8c" stroke-width="1.728" style="stroke-linecap:round" x1="1.44" x2="1.44" y1="12.084" y2="17.8256"/>
<line fill="none" id="connector2leg" stroke="#8c8c8c" stroke-width="1.728" style="stroke-linecap:round" x1="8.64" x2="8.64" y1="12.084" y2="17.8256"/>
<line fill="none" id="connector3leg" stroke="#8c8c8c" stroke-width="1.728" style="stroke-linecap:round" x1="15.84" x2="15.84" y1="12.084" y2="17.8256"/>
<rect fill="#8c8c8c" height="7.4808" id="rect9506" width="1.7232" x="7.7736" y="4.6032"/>
<rect fill="#1a1a1a" height="8.056" id="rect9553" width="10.6224" x="3.324" y="-3.4544"/>
<path d="m13.1424,-3.4544l0,1.9624,0,6.5824,0,1.4744c0.5064,-0.571199,0.804,-1.2432,0.804,-1.9624l0,0L13.9464,-3.4544l-0.804,0z" fill="#141414" id="path9555"/>
<path d="m4.1288,-3.4544l-0.804,0L3.3248,4.6016l0,0c0,0.7192,0.2984,1.3912,0.804,1.9624L4.1288,5.0896,4.1288,-1.492,4.1288,-3.4544z" fill="#242424" id="path9557"/>
<path d="m3.324,-3.4544,0,0c0,0.7192,0.2984,1.392,0.804,1.9624L13.1488,-1.492c0.5056,-0.5704,0.804,-1.2432,0.804,-1.9624l0,0L3.324,-3.4544z" fill="#1f1f1f" id="path9559"/>
<path d="m8.636,-7.1816c-2.9344,0,-5.312,1.6688,-5.312,3.7288L13.9464,-3.4528c0,-2.06,-2.376,-3.7288,-5.3104,-3.7288z" fill="#141414" id="path9561"/>
<path d="m15.84,12.084,-4.32,-4.32,0,-2.88" fill="none" id="path212957" stroke="#8c8c8c" stroke-dasharray="none" stroke-opacity="1" stroke-width="1.728" style="color:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
<rect height="8.056" id="rect9563" width="9.0208" x="4.1288" y="-1.492"/>
<g fill="#e6e6e6" font-size="2.4" id="label0" style="font-family:OCRA">
<text id="tspan150901" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;text-anchor:middle;font-family:OCR A Std;-inkscape-font-specification:OCR A Std" x="8.60631" y="1.93368">DS18</text>
</g>
<g fill="#e6e6e6" font-size="2.4" id="label0_1_" style="font-family:OCRA">
<text id="tspan150907" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:OCR A Std;-inkscape-font-specification:OCR A Std" x="6.0243" y="4.37093">B20</text>
</g>
<g transform="matrix(1, 0, 0, 1, -1.07214e-07, -8.0944)">
<path d="m1.44,25.92,0,1.44" fill="none" id="connector1pin" stroke="#8c8c8c" stroke-dasharray="none" stroke-opacity="0" stroke-width="1.728" style="color:#000000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g transform="matrix(1, 0, 0, 1, -1.07214e-07, -8.0944)">
<path d="m8.64,25.92,0,1.44" fill="none" id="connector2pin" stroke="#8c8c8c" stroke-dasharray="none" stroke-opacity="0" stroke-width="1.728" style="color:#000000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
<g transform="matrix(1, 0, 0, 1, -1.07214e-07, -8.0944)">
<path d="m15.84,25.92,0,1.44" fill="none" id="connector3pin" stroke="#8c8c8c" stroke-dasharray="none" stroke-opacity="0" stroke-width="1.728" style="color:#000000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"/>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g partID="89220">
<g transform="translate(476.493,128.745)">
<g id="breadboard" >
<rect fill="none" height="0.72" id="connector0pin" width="0.72" x="0.36" y="2.5848"/>
<rect fill="none" height="0.72" id="connector1pin" width="0.72" x="29.8202" y="2.5848"/>
<line fill="none" id="connector0leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.0952" x1="1.0476" x2="2.0952" y1="3.6324" y2="3.6324"/>
<line fill="none" id="connector1leg" stroke="#8C8C8C" stroke-linecap="round" stroke-width="2.0952" x1="29.8526" x2="28.805" y1="3.6324" y2="3.6324"/>
<path d="M1.0476,3.6324l28.3666,0" fill="none" stroke="#8C8C8C" stroke-width="2.0952" />
<path d="M10.2478,0.49536c-0.36,-0.1656,-0.9792,-0.2952,-1.3752,-0.2952l-1.9872,0c-0.396,0,-0.72,0.324,-0.72,0.72l0,5.35608c0,0.39672,0.324,0.72,0.72,0.72l1.9872,0c0.396,0,1.0152,-0.13608,1.3752,-0.2952l0.072,-0.03528c0.36,-0.1656,0.9792,-0.2952,1.3752,-0.2952l7.1856,0c0.39672,0,1.01448,0.13608,1.37448,0.2952l0.07272,0.03528c0.36,0.1656,0.97776,0.2952,1.3752,0.2952l1.9872,0c0.39744,0,0.72,-0.32328,0.72,-0.72L24.4102,0.92016c0,-0.396,-0.32256,-0.72,-0.72,-0.72l-1.9872,0c-0.39744,0,-1.0152,0.1368,-1.3752,0.2952l-0.07272,0.036c-0.36,0.1656,-0.97776,0.2952,-1.37448,0.2952l-7.1856,0c-0.396,0,-1.0152,-0.1368,-1.3752,-0.2952L10.2478,0.49536z" fill="#D9B477" id="body" />
<rect fill="#ad9f4e" height="6.79536" id="gold_band" width="0.70272" x="22.019" y="0.19368"/>
<rect fill="#c40808" height="5.5368" id="band_rd_multiplier" width="1.8504" x="16.1726" y="0.82656"/>
<rect fill="#8210d2" height="5.5368" id="band_2_nd" width="1.8504" x="12.4726" y="0.82656"/>
<path d="M10.6286,0.63936c-0.1152,-0.036,-0.2232,-0.072,-0.3096,-0.1152l-0.072,-0.036c-0.36,-0.16488,-0.9792,-0.2952,-1.3752,-0.2952l-0.0864,0l0,6.79608l0.0864,0c0.396,0,1.0152,-0.13608,1.3752,-0.2952l0.072,-0.03528c0.0864,-0.04464,0.1944,-0.07992,0.3096,-0.1152L10.6286,0.63936z" fill="#ffd500" id="band_1_st" />
<path d="M23.711,4.0896L23.711,4.0896c0,0.37944,-0.13032,0.69912,-0.2952,0.69912l-1.9224,0c-0.38016,0,-0.97776,-0.05616,-1.33272,-0.1224L20.088,4.65048c-0.34488,-0.0648,-0.94896,-0.1224,-1.33344,-0.1224L11.808,4.52808c-0.3816,0,-0.9792,0.0576,-1.332,0.1224l-0.072,0.01512c-0.3456,0.06552,-0.9432,0.1224,-1.332,0.1224l-0.3168,0l-1.0008,0l-0.3096,0c-0.3816,0,-0.6984,0.29376,-0.6984,0.64512l0,0.24696L6.7464,5.8392l0,0.1728c0,0.36,0.3168,0.64512,0.6984,0.64512l1.62,0c0.3816,0,0.9792,-0.1224,1.332,-0.26712l0.072,-0.02808c0.3456,-0.14112,0.9504,-0.26496,1.332,-0.26496l6.94656,0c0.37944,0,0.97704,0.12384,1.33416,0.26568l0.07416,0.02808c0.34488,0.14472,0.94464,0.26712,1.33344,0.26712l2.2248,0c0.38088,0,0.69912,-0.2952,0.69912,-0.64512L24.413,5.472L24.413,4.49928L24.413,2.65536C24.1358,2.76336,23.711,3.06576,23.711,4.0896z" id="Shadow" opacity="0.3" />
<rect height="3.15288" id="ShadowExtra" opacity="0.4" width="0.70272" x="22.019" y="3.48336"/>
<path d="M19.751,1.08576c0.22968,0,0.49104,-0.1008,0.6624,-0.1728c0.2016,-0.0792,0.57672,-0.144,0.96624,-0.144l1.46088,0c0.22464,0,0.22464,0.2448,0.22464,0.3744c0,0.1296,-0.01512,0.3816,-0.22464,0.3816l-3.06,0c-0.10728,0,-0.2304,-0.1152,-0.2304,-0.22392C19.5566,1.21536,19.6286,1.08576,19.751,1.08576z" fill="#FFFFFF" id="ReflexRight" opacity="0.25" />
<circle cx="6.99984" cy="1.13616" fill="#FFFFFF" id="ReflexLeft" opacity="0.35" r="0.432" />
<rect fill="#FFFF33" height="1.62" id="Reflex_gold" opacity="0.5" width="0.70272" x="22.019" y="0.42336"/>
<rect fill="#FFFFFF" height="0.7488" id="Reflex_extra" opacity="0.5" width="0.70272" x="22.019" y="0.78336"/>
</g>
</g>
</g>
<path d="M478.588,132.378L477.541,132.378" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.0952"/>
<path d="M478.588,132.378L477.541,132.378" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.0952"/>
<path d="M505.298,132.378L506.346,132.378" fill="none" opacity="1" stroke="#8c8c8c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.0952"/>
<path d="M505.298,132.378L506.346,132.378" fill="none" opacity="0.2" stroke="#00ff00" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.0952"/>
<g partID="99790">
<g transform="translate(144.308,102.434)">
<g id="breadboard" >
<text fill="#787878" font-family="Noto Sans" font-size="7.2" font-weight="400" id="label" stroke-width="0" text-anchor="middle" x="9.12362" xml:space="preserve" xmlns:xml="http://www.w3.org/XML/1998/namespace" y="10.0012">Tach</text>
</g>
</g>
</g>
<g partID="99770">
<g transform="translate(192.964,140.142)">
<g id="breadboard" >
<text fill="#787878" font-family="Noto Sans" font-size="7.2" font-weight="400" id="label" stroke-width="0" text-anchor="middle" x="10.2324" xml:space="preserve" xmlns:xml="http://www.w3.org/XML/1998/namespace" y="10.0012">PWM</text>
</g>
</g>
</g>
<g partID="99750">
<g transform="translate(153.145,0)">
<g id="breadboard" >
<text fill="#787878" font-family="Noto Sans" font-size="7.2" font-weight="400" id="label" stroke-width="0" text-anchor="middle" x="16.4737" xml:space="preserve" xmlns:xml="http://www.w3.org/XML/1998/namespace" y="10.0012">Fan GND</text>
</g>
</g>
</g>
<g partID="99730">
<g transform="translate(228.496,105.039)">
<g id="breadboard" >
<text fill="#787878" font-family="Noto Sans" font-size="7.2" font-weight="400" id="label" stroke-width="0" text-anchor="middle" x="7.71595" xml:space="preserve" xmlns:xml="http://www.w3.org/XML/1998/namespace" y="10.0012">12V</text>
</g>
</g>
</g>
<g partID="99710">
<g transform="translate(332.946,70.8175)">
<g id="breadboard" >
<text fill="#787878" font-family="Noto Sans" font-size="7.2" font-weight="400" id="label" stroke-width="0" text-anchor="middle" x="5.65864" xml:space="preserve" xmlns:xml="http://www.w3.org/XML/1998/namespace" y="10.0012">5V</text>
</g>
</g>
</g>
<g partID="99680">
<g transform="translate(480.674,110.646)">
<g id="breadboard" >
<text fill="#787878" font-family="Noto Sans" font-size="7.2" font-weight="400" id="label" stroke-width="0" text-anchor="middle" x="12.1902" xml:space="preserve" xmlns:xml="http://www.w3.org/XML/1998/namespace" y="10.0012">4.7 k&#x2126;</text>
</g>
</g>
</g>
<g partID="86620">
<line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="319.141" x2="456.028" y1="89.1778" y2="89.2206"/>
<line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="319.141" x2="456.028" y1="89.1778" y2="89.2206"/>
</g>
<g partID="86760">
<line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="456.028" x2="441.538" y1="117.999" y2="117.977"/>
<line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="456.028" x2="441.538" y1="117.999" y2="117.977"/>
</g>
<g partID="86690">
<line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="456.028" x2="456.028" y1="89.2206" y2="117.999"/>
<line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="456.028" x2="456.028" y1="89.2206" y2="117.999"/>
</g>
<g partID="87470">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="261.332" x2="463.02" y1="182.996" y2="182.996"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="261.332" x2="463.02" y1="182.996" y2="182.996"/>
</g>
<g partID="86900">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="463.223" x2="441.539" y1="125.194" y2="125.177"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="463.223" x2="441.539" y1="125.194" y2="125.177"/>
</g>
<g partID="86970">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="463.02" x2="463.223" y1="182.996" y2="125.194"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="463.02" x2="463.223" y1="182.996" y2="125.194"/>
</g>
<g partID="86830">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="261.54" x2="261.333" y1="125.178" y2="182.996"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="261.54" x2="261.333" y1="125.178" y2="182.996"/>
</g>
<g partID="87680">
<line stroke="#d6d63a" stroke-linecap="round" stroke-width="3.2" x1="304.541" x2="251.46" y1="161.167" y2="161.167"/>
<line stroke="#fff800" stroke-linecap="round" stroke-width="1.6" x1="304.541" x2="251.46" y1="161.167" y2="161.167"/>
</g>
<g partID="87610">
<line stroke="#d6d63a" stroke-linecap="round" stroke-width="3.2" x1="251.46" x2="251.46" y1="161.167" y2="125.178"/>
<line stroke="#fff800" stroke-linecap="round" stroke-width="1.6" x1="251.46" x2="251.46" y1="161.167" y2="125.178"/>
</g>
<g partID="87540">
<line stroke="#d6d63a" stroke-linecap="round" stroke-width="3.2" x1="304.744" x2="304.541" y1="89.1778" y2="161.167"/>
<line stroke="#fff800" stroke-linecap="round" stroke-width="1.6" x1="304.744" x2="304.541" y1="89.1778" y2="161.167"/>
</g>
<g partID="87860">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="312.136" x2="311.942" y1="125.194" y2="89.1778"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="312.136" x2="311.942" y1="125.194" y2="89.1778"/>
</g>
<g partID="87750">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="261.54" x2="312.136" y1="125.178" y2="125.194"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="261.54" x2="312.136" y1="125.178" y2="125.194"/>
</g>
<g partID="89250">
<line stroke="#ad6a38" stroke-linecap="round" stroke-width="3.2" x1="477.541" x2="441.538" y1="132.378" y2="132.377"/>
<line stroke="#ef6100" stroke-linecap="round" stroke-width="1.6" x1="477.541" x2="441.538" y1="132.378" y2="132.377"/>
</g>
<g partID="89390">
<line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="506.39" x2="441.538" y1="161.167" y2="161.177"/>
<line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="506.39" x2="441.538" y1="161.167" y2="161.177"/>
</g>
<g partID="89320">
<line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="506.346" x2="506.39" y1="132.378" y2="161.167"/>
<line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="506.346" x2="506.39" y1="132.378" y2="161.167"/>
</g>
<g partID="93230">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="239.978" x2="239.978" y1="182.719" y2="218.66"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="239.978" x2="239.978" y1="182.719" y2="218.66"/>
</g>
<g partID="91070">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="261.332" x2="239.978" y1="182.996" y2="182.719"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="261.332" x2="239.978" y1="182.996" y2="182.719"/>
</g>
<g partID="89690">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="239.978" x2="254.341" y1="218.66" y2="218.778"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="239.978" x2="254.341" y1="218.66" y2="218.778"/>
</g>
<g partID="89480">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="261.54" x2="261.333" y1="125.178" y2="182.996"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="261.54" x2="261.333" y1="125.178" y2="182.996"/>
</g>
<g partID="93840">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="311.86" x2="311.754" y1="125.152" y2="182.996"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="311.86" x2="311.754" y1="125.152" y2="182.996"/>
</g>
<g partID="93530">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="311.86" x2="311.86" y1="182.719" y2="218.66"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="311.86" x2="311.86" y1="182.719" y2="218.66"/>
</g>
<g partID="93380">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="311.755" x2="311.861" y1="182.996" y2="182.719"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="311.755" x2="311.861" y1="182.996" y2="182.719"/>
</g>
<g partID="89660">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="311.86" x2="319.14" y1="218.66" y2="218.778"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="311.86" x2="319.14" y1="218.66" y2="218.778"/>
</g>
<g partID="89510">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="261.54" x2="311.861" y1="125.178" y2="125.152"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="261.54" x2="311.861" y1="125.178" y2="125.152"/>
</g>
<g partID="95020">
<line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="506.492" x2="326.48" y1="247.596" y2="247.596"/>
<line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="506.492" x2="326.48" y1="247.596" y2="247.596"/>
</g>
<g partID="94870">
<line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="506.492" x2="506.492" y1="161.093" y2="247.596"/>
<line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="506.492" x2="506.492" y1="161.093" y2="247.596"/>
</g>
<g partID="94720">
<line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="326.481" x2="326.341" y1="247.596" y2="218.777"/>
<line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="326.481" x2="326.341" y1="247.596" y2="218.777"/>
</g>
<g partID="89540">
<line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="441.538" x2="506.492" y1="161.177" y2="161.093"/>
<line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="441.538" x2="506.492" y1="161.177" y2="161.093"/>
</g>
<g partID="95270">
<line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="369.428" x2="369.692" y1="89.2104" y2="218.681"/>
<line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="369.428" x2="369.692" y1="89.2104" y2="218.681"/>
</g>
<g partID="89720">
<line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="369.692" x2="333.54" y1="218.681" y2="218.778"/>
<line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="369.692" x2="333.54" y1="218.681" y2="218.778"/>
</g>
<g partID="89570">
<line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="319.141" x2="369.428" y1="89.1778" y2="89.2104"/>
<line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="319.141" x2="369.428" y1="89.1778" y2="89.2104"/>
</g>
<g partID="94490">
<line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="506.492" x2="506.492" y1="161.093" y2="247.596"/>
<line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="506.492" x2="506.492" y1="161.093" y2="247.596"/>
</g>
<g partID="89920">
<line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="506.492" x2="261.604" y1="247.596" y2="247.596"/>
<line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="506.492" x2="261.604" y1="247.596" y2="247.596"/>
</g>
<g partID="89890">
<line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="261.604" x2="261.54" y1="247.596" y2="218.777"/>
<line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="261.604" x2="261.54" y1="247.596" y2="218.777"/>
</g>
<g partID="89600">
<line stroke="#00a527" stroke-linecap="round" stroke-width="3.2" x1="441.538" x2="506.492" y1="161.177" y2="161.093"/>
<line stroke="#25cc35" stroke-linecap="round" stroke-width="1.6" x1="441.538" x2="506.492" y1="161.177" y2="161.093"/>
</g>
<g partID="94340">
<line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="333.487" x2="268.61" y1="233.281" y2="233.281"/>
<line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="333.487" x2="268.61" y1="233.281" y2="233.281"/>
</g>
<g partID="89750">
<line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="268.609" x2="268.741" y1="233.281" y2="218.778"/>
<line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="268.609" x2="268.741" y1="233.281" y2="218.778"/>
</g>
<g partID="89630">
<line stroke="#8c0000" stroke-linecap="round" stroke-width="3.2" x1="333.54" x2="333.487" y1="218.778" y2="233.281"/>
<line stroke="#cc1414" stroke-linecap="round" stroke-width="1.6" x1="333.54" x2="333.487" y1="218.778" y2="233.281"/>
</g>
<g partID="89980">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="462.984" x2="448.741" y1="67.3901" y2="67.5778"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="462.984" x2="448.741" y1="67.3901" y2="67.5778"/>
</g>
<g partID="89950">
<line stroke="#000000" stroke-linecap="round" stroke-width="3.2" x1="462.984" x2="462.984" y1="124.933" y2="67.3901"/>
<line stroke="#404040" stroke-linecap="round" stroke-width="1.6" x1="462.984" x2="462.984" y1="124.933" y2="67.3901"/>
</g>
<g partID="90220">
<line stroke="#6c2710" stroke-linecap="round" stroke-width="3.2" x1="153.426" x2="153.541" y1="17.3064" y2="81.9883"/>
<line stroke="#8c3b00" stroke-linecap="round" stroke-width="1.6" x1="153.426" x2="153.541" y1="17.3064" y2="81.9883"/>
</g>
<g partID="90150">
<line stroke="#6c2710" stroke-linecap="round" stroke-width="3.2" x1="405.441" x2="153.426" y1="17.3064" y2="17.3064"/>
<line stroke="#8c3b00" stroke-linecap="round" stroke-width="1.6" x1="405.441" x2="153.426" y1="17.3064" y2="17.3064"/>
</g>
<g partID="90080">
<line stroke="#6c2710" stroke-linecap="round" stroke-width="3.2" x1="405.441" x2="405.441" y1="67.3902" y2="17.3068"/>
<line stroke="#8c3b00" stroke-linecap="round" stroke-width="1.6" x1="405.441" x2="405.441" y1="67.3902" y2="17.3068"/>
</g>
<g partID="90010">
<line stroke="#6c2710" stroke-linecap="round" stroke-width="3.2" x1="434.344" x2="405.441" y1="67.5778" y2="67.3902"/>
<line stroke="#8c3b00" stroke-linecap="round" stroke-width="1.6" x1="434.344" x2="405.441" y1="67.5778" y2="67.3902"/>
</g>
<g partID="90460">
<line stroke="#00a0c6" stroke-linecap="round" stroke-width="3.2" x1="441.671" x2="441.542" y1="74.8494" y2="67.5778"/>
<line stroke="#33ffc5" stroke-linecap="round" stroke-width="1.6" x1="441.671" x2="441.542" y1="74.8494" y2="67.5778"/>
</g>
<g partID="90390">
<line stroke="#00a0c6" stroke-linecap="round" stroke-width="3.2" x1="376.669" x2="441.671" y1="74.8494" y2="74.8494"/>
<line stroke="#33ffc5" stroke-linecap="round" stroke-width="1.6" x1="376.669" x2="441.671" y1="74.8494" y2="74.8494"/>
</g>
<g partID="90320">
<line stroke="#00a0c6" stroke-linecap="round" stroke-width="3.2" x1="376.669" x2="376.669" y1="146.778" y2="74.8494"/>
<line stroke="#33ffc5" stroke-linecap="round" stroke-width="1.6" x1="376.669" x2="376.669" y1="146.778" y2="74.8494"/>
</g>
<g partID="90290">
<line stroke="#00a0c6" stroke-linecap="round" stroke-width="3.2" x1="398.34" x2="376.67" y1="146.778" y2="146.778"/>
<line stroke="#33ffc5" stroke-linecap="round" stroke-width="1.6" x1="398.34" x2="376.67" y1="146.778" y2="146.778"/>
</g>
<g partID="90670">
<line stroke="#1b5bb3" stroke-linecap="round" stroke-width="3.2" x1="196.583" x2="196.583" y1="96.1614" y2="139.318"/>
<line stroke="#418dd9" stroke-linecap="round" stroke-width="1.6" x1="196.583" x2="196.583" y1="96.1614" y2="139.318"/>
</g>
<g partID="90600">
<line stroke="#1b5bb3" stroke-linecap="round" stroke-width="3.2" x1="196.583" x2="398.34" y1="139.318" y2="139.578"/>
<line stroke="#418dd9" stroke-linecap="round" stroke-width="1.6" x1="196.583" x2="398.34" y1="139.318" y2="139.578"/>
</g>
<g partID="90530">
<line stroke="#1b5bb3" stroke-linecap="round" stroke-width="3.2" x1="153.54" x2="196.583" y1="96.3776" y2="96.1614"/>
<line stroke="#418dd9" stroke-linecap="round" stroke-width="1.6" x1="153.54" x2="196.583" y1="96.3776" y2="96.1614"/>
</g>
<g partID="90960">
<line stroke="#d6d63a" stroke-linecap="round" stroke-width="3.2" x1="225.354" x2="225.354" y1="124.933" y2="89.235"/>
<line stroke="#fff800" stroke-linecap="round" stroke-width="1.6" x1="225.354" x2="225.354" y1="124.933" y2="89.235"/>
</g>
<g partID="90850">
<line stroke="#d6d63a" stroke-linecap="round" stroke-width="3.2" x1="225.354" x2="153.528" y1="89.235" y2="89.2215"/>
<line stroke="#fff800" stroke-linecap="round" stroke-width="1.6" x1="225.354" x2="153.528" y1="89.235" y2="89.2215"/>
</g>
<g partID="90740">
<line stroke="#d6d63a" stroke-linecap="round" stroke-width="3.2" x1="251.46" x2="225.354" y1="125.178" y2="124.933"/>
<line stroke="#fff800" stroke-linecap="round" stroke-width="1.6" x1="251.46" x2="225.354" y1="125.178" y2="124.933"/>
</g>
</svg>
substitutions:
device_name: livingroomradiator # Adjust!
friendly_name: "Radiator Livingroom" # Adjust!
one_wire_pin: 10 # 1-Wire pin for DS18B20 temperature. Adjust!
pwm_pin: 0 # PWM output to fans. Adjust!
pwm_freq: 25000 # higher values will decrease resolution, lower values will become audible
pwm_channel: 0
fan_enable_pin: 2 # turn fan on/off # Adjust!
temp_read_retry: 5
sensor_flow_temp: 0x0000000000000000 # Adjust!
sensor_return_temp: 0x0000000000000000 # Adjust!
domain: .fritz.box # Adjust!
mqtt_broker: mqtt${domain} # Adjust!
mqtt_topic_prefix: 'radiator/${device_name}'
log_level: INFO # INFO DEBUG
#define PWMRESOLUTION 8
#define PWM_MAX_VAL 255 // 2^PWMRESOLUTION -1
############ SETUP ############
esphome:
name: ${device_name}
friendly_name: ${friendly_name}
min_version: 2025.9.0
name_add_mac_suffix: false
esp32: # Adjust if using different platform!
variant: esp32c3
framework:
type: esp-idf
logger:
level: ${log_level} # INFO # Don't use DEBUG in production
logs:
# Reduce verbosity for components that might log sensitive data
wifi: WARN
api: WARN
wifi:
min_auth_mode: WPA2
domain: ${domain}
networks:
- ssid: !secret wifi_ssid
password: !secret wifi_password
ota:
- platform: esphome
password: !secret eh_tesla_ota_password
one_wire:
- platform: gpio
pin: ${one_wire_pin}
mqtt: # used to monitor and set values
broker: ${mqtt_broker}
username: !secret mqtt_user
password: !secret mqtt_pw
topic_prefix: '${mqtt_topic_prefix}'
birth_message:
topic: ${mqtt_topic_prefix}/availability
payload: online
will_message:
topic: ${mqtt_topic_prefix}/availability
payload: offline
reboot_timeout: 0s
############ Definitions ############
.number: &number_nvs # Define an anchor, but exclude it
# name: "my counter"
# id: my_counter
min_value: 0.0
max_value: 255.0
step: 1.0
restore_value: true
initial_value: 0.0
optimistic: true
# internal: true # do not expose to frontend
.sensor: &temp_sensor # template for Dallas temp sensors
device_class: temperature
update_interval: 60s
filters:
- clamp:
min_value: 0.0
max_value: 80.0
ignore_out_of_range: true
############ Interface ############
# PWM component for fan
power_supply:
- id: fan_enable
pin: ${fan_enable_pin}
output: # cannot be queried
- platform: ledc
id: fan_pwm_output
pin: ${pwm_pin}
channel: ${pwm_channel}
frequency: ${pwm_freq} Hz
power_supply: fan_enable
fan:
- platform: speed
name: "PWM Fan"
id: fan_speed_control
output: fan_pwm_output
restore_mode: ALWAYS_OFF
speed_level_command_topic: ${mqtt_topic_prefix}/fan/speed/command
speed_level_state_topic: ${mqtt_topic_prefix}/fan/speed/state
number:
- platform: template
<<: *number_nvs
id: "pwmHeatValue"
name: "Heating PWM Value"
- platform: template
<<: *number_nvs
id: "pwmCoolValue"
name: "Cooling PWM Value"
- platform: template
<<: *number_nvs
id: "thHeating"
name: "Heating Temperature Threshold"
- platform: template
<<: *number_nvs
id: "thCooling"
name: "Cooling Temperature Threshold"
select:
- platform: template
name: "Fan Control Mode" # whether fan should be on when cooling/heating temp thresholds are crossed, or off.
id: fan_control_mode
optimistic: true
options:
- "heating"
- "cooling"
- "off"
initial_option: "heating"
# we use 2 temp sensors, one for flow, one for return:
sensor:
- platform: dallas_temp
<<: *temp_sensor
id: flow_temp
name: "Flow Temperature"
address: ${sensor_flow_temp}
on_value:
then:
- lambda: |-
float temp = x;
std::string mode = id(fan_control_mode).current_option();
if (mode == "heating") {
if (temp >= id(thHeating).state) {
// Wert aus number-Komponente holen und umrechnen
int speed_perc = id(pwmHeatValue).state * 100 / 255;
auto call = id(fan_speed_control).turn_on();
call.set_speed(speed_perc);
call.perform();
} else { // Lüfter aus
auto call = id(fan_speed_control).turn_off();
call.set_speed(0);
call.perform();
}
} else if (mode == "cooling") {
if (temp <= id(thCooling).state) {
int speed_perc = id(pwmCoolValue).state * 100 / 255;
auto call = id(fan_speed_control).turn_on();
call.set_speed(speed_perc);
call.perform();
} else { // Lüfter aus
auto call = id(fan_speed_control).turn_off();
call.set_speed(0);
call.perform();
}
} else if (mode == "off") {
auto call = id(fan_speed_control).turn_off();
call.set_speed(0);
call.perform();
}
- platform: dallas_temp
<<: *temp_sensor
id: return_temp
name: "Return Temperature"
address: ${sensor_return_temp}
- platform: wifi_signal # Send WiFi signal strength
name: "WiFi Strength"
update_interval: 300s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment