diff --git a/boards/beagleplay/demos-and-tutorials/low-power-video-doorbell.rst b/boards/beagleplay/demos-and-tutorials/low-power-video-doorbell.rst
index 4cac42d1da3320a66750503143c63b4366101cd1..4300427e6556a2cbf37d032e831bb91c93bf62cb 100644
--- a/boards/beagleplay/demos-and-tutorials/low-power-video-doorbell.rst
+++ b/boards/beagleplay/demos-and-tutorials/low-power-video-doorbell.rst
@@ -5,11 +5,11 @@ Smart energy efficient video doorbell
 
 1. Intelligent camera streaming and recording at 640x480 resolution and 30 FPS with power saving.
 2. Detect user activity using an external button/sensor and configure it as a wake-up source
-3. Camera should start streaming on wakeup event and pause on suspend thus saving power.
+3. Application should start streaming on wakeup event, pause on system suspend and resume back seamlessly thus saving power while system was in suspended state.
 
 Give options to enable below functionalities:
 
-- Live Camera feed to show visitor activity
+- Stream Live camera feed when visitor activity is detected
 - On-the-fly recording of live camera feed with a timeout to record visitor activity
 - On-the-fly streaming of live camera feed to remote server for post processing/storage or display.
 
@@ -152,31 +152,180 @@ Linux commands
 ***************
 
 Once your hardware, software and devicetree changes are all set, and
-you boot till linux prompt we can finally start with the final bit!
+you boot till linux prompt we can finally start with the final bit. The below section describes various gstreamer pipelines created using sample gst-launch-1.0 gstreamer application. You can create your own gstreamer application too with some dynamic features, customized options taking referece from these pipelines.
 
-.. todo:: Add more information on how each gst command is working.
+.. note::
+   If using CSI based TEVI-OV5640 module, you need to also set the mediagraph prior to using camera. You can set set the media graph and sanity test the camera using below command which uses cam tool from libcamera:
 
-1. Run the following gst pipeline:
+.. code:: console
+
+	cam -c1 --stream width=640,height=480,pixelformat=UYVY -C20
+
+Additionally, if using a different camera, you can check the supported resolutions and video formats using below command:
+
+.. code:: console
+
+	v4l2-ctl --all -d /dev/videoX (where X is your video node number e.g. /dev/video0)
+
+There are two sets of gstreamer pipelines that get run in this demo one at server side i.e. on beagleplay board directly which captures and displays the camera feed and streams it to the remote or client side, and the other at client side itself which receives the camera feed, records it, decodes it and displays it using the remote host machine.
+
+Server side gstreamer pipeline (on beagleplay board):
+=====================================================
+
+Here, you can run either of the below two sets of gstreamer pipeline depending upon your requirement :
+
+Display live camera feed
+------------------------
+
+Pipeline topology
+~~~~~~~~~~~~~~~~~
+
+.. code:: console
+
+	v4l2src --> kmssink
+
+Gstreamer Pipeline
+~~~~~~~~~~~~~~~~~~
+
+.. code:: console
+
+	#Stop weston if using kmssink
+	systemctl stop weston.service
+	gst-launch-1.0 -v v4l2src io-mode=dmabuf device="/dev/video0" ! video/x-raw, width=640, height=480, format=YUY2 ! kmssink 	driver-name=tidss force-modesetting=true sync=false async=false
+
+.. note::
+   Change the video format to UYVY if using CSI based ov5640 camera
+
+Description
+~~~~~~~~~~~~
+
+The Linux kernel uses V4L2 based driver for Camera and DRM/KMS based driver for Display, Gstreamer has v4l2src element to communicate with V4l2's based driver and kmssink element to talk with display driver and using above command, we can create a media pipeline which shares video buffers from camera to display using DMA to transfer the buffer. This is specified using io-mode property of v4l2src.
+By default display server i.e weston is in charge of controlling the display, so it needs to be disabled if we want to control the display directly. We also use kmssink's force-modesetting property to set the display mode to the camera resolution and have a full screen display. If using a graphics server involving GPU, one can use waylandsink (which uses weston as display server), glimagesink (which uses opengl API) or ximagesink (which uses Xorg as display server) depending upon the display server.
+
+Display live camera feed + Stream out to remote server
+------------------------------------------------------
+
+Pipeline topology
+~~~~~~~~~~~~~~~~~~
+
+.. code:: console
+
+                         .-->kmssink
+	v4l2src --> tee--|
+	                 .-->x264enc-->rtph264pay-->udpsink
+
+Gstreamer pipeline
+~~~~~~~~~~~~~~~~~~~
 
 .. code:: console
 
+	#Stop weston if using kmssink
+	systemctl stop weston.service
 	gst-launch-1.0 -v v4l2src io-mode=dmabuf device="/dev/video0" ! video/x-raw, width=640, height=480, format=YUY2 ! queue ! tee name=t t. ! queue ! kmssink driver-name=tidss force-modesetting=true sync=false async=false t. ! queue ! ticolorconvert ! queue ! x264enc speed-preset=superfast  key-int-max=30 tune=zerolatency bitrate=25000 ! queue ! rtph264pay config-interval=30 ! udpsink sync=false port=5000 host=192.168.0.2 async=false &
 
-If you also want to record the video:
+.. note::
+   Change the video format to UYVY if using CSI based ov5640 camera
+
+Description
+~~~~~~~~~~~~
+
+Here we use gstreamer's tee element to split the media pipeline graph into two arms, one arm is used to display the camera feed on-screen (which is same as the one described in previous section) and other arm is used to encode the camera feed and stream it to remote server. We use libx264 based x264enc element to encode the raw video to H.264 based access units. However x264enc does not support YUY2 video format, so we use ticolorconvert element to convert the video format to the one supported by the encoder, this element is CPU based but it uses ARM neon based instructions underneath for faster conversion. The x264enc element also offers different parameters to fine tune the encoding. We use superfast speed preset along with zerolatency tuning as we want to strem in realtime with minimal latency. We set IDR or key frame interval to 30 frames using key-int-max property. The IDR frame is important from streaming point of view as it marks arrival of fresh group of pictures without any dependencies to previous frames so that decoding at client side can resume back seamlessly even if there were packet losses in between due to network issues. However the value needs to be carefully chosen as the trade-off with higher frequency of IDR frames though is the increase in size of rtp payload which may consume more bandwidth. The video quality of encoded stream is controleld by bitrate parameter which specifies number of Kbits used for encoding video for 1s. Higher value for bitrate will increase the video quality albeit at the cost of increased size. The encoded frame is then packetized into RTP packets using rtph264pay element and transmitted over network using UDP protocol using udpsink element. The ip address and port number of remote host are specified using "host" and "port" property of udpsink element respectively.
+
+This gstreamer pipeline is useful for prototyping use-case where you not just want to display the camera feed outside the door when some visitor comes, but also want to stream out to a remote server (for e.g. security control rool or to your mobile device) for more safety.
+
+Display live camera feed + Stream out to remote server+ Record camera feed
+--------------------------------------------------------------------------
+
+Pipeline topology
+~~~~~~~~~~~~~~~~~
 
 .. code:: console
 
-	gst-launch-1.0 -v v4l2src io-mode=dmabuf device="/dev/video0" ! video/x-raw, width=640, height=480, format=YUY2 ! queue ! tee name=t t. ! queue ! kmssink driver-name=tidss force-modesetting=true sync=false async=false t. ! queue ! ticolorconvert ! x264enc speed-preset=superfast key-int-max=60 bitrate=5000 ! queue ! tee name=t1 t1. ! queue ! rtph264pay config-interval=60 ! udpsink port=5000 host=192.168.0.2 sync=false async=false t1. ! queue ! filesink location="op.h264"
+	                 .-->kmssink
+	v4l2src --> tee--|                  .--filesink
+	                 .-->x264enc-->tee--|
+	                                    .--rtph264pay-->udpsink
 
+Gstreamer pipeline
+~~~~~~~~~~~~~~~~~~
 
-2. Let that process run in the background and then to suspend the device:
+.. code:: console
+
+	#Stop weston if using kmssink
+	systemctl stop weston.service
+	gst-launch-1.0 -v v4l2src io-mode=dmabuf device="/dev/video0" ! video/x-raw, width=640, height=480, format=YUY2 ! queue ! tee name=t t. ! queue ! kmssink driver-name=tidss force-modesetting=true sync=false async=false t. ! queue ! ticolorconvert ! x264enc speed-preset=superfast key-int-max=30 bitrate=5000 ! queue ! tee name=t1 t1. ! queue ! rtph264pay config-interval=60 ! udpsink port=5000 host=192.168.0.2 sync=false async=false t1. ! queue ! filesink location="op.h264"
+
+.. note::
+   Change the video format to UYVY if using CSI based ov5640 camera
+
+Description
+~~~~~~~~~~~
+
+In addition to the media topology described in previous section, one more tee element is added here to save the encoded file over user-specified storage media. This could be helpful to have the camera feed of all the visitors (or potential intruders :)) recorded at the device end itself for future reference/analysis or as a blackbox recording. However care needs to be taken to constantly backup the recorded stream so that storage media does not run out of space.
+
+Client side gstreamer pipeline (runs on remote host):
+=====================================================
+
+The previous section described how the camera feed is displayed and streamed out to remote server using RTP and UDP protocols. Here we will discuss about how we can receive the transmitted stream and display it or record it. We use X86_64 based Ubuntu machine as remote host here.
+
+Display camera feed received over network
+------------------------------------------
+
+Pipeline topology
+~~~~~~~~~~~~~~~~~
+
+.. code:: console
+
+	udpsrc --> rtpjitterbuffer-->rtph264depay-->h264parse-->avdec_h264-->xvimagesink
+
+Gstreamer pipeline
+~~~~~~~~~~~~~~~~~~
+
+.. code:: console
+
+	# This is the IP address of the remote host which is specified in the server pipelien running on beagleplay
+	sudo ifconfig enp2s0 192.168.0.2
+	gst-launch-1.0 udpsrc port=5000 caps = "application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, payload=(int)96" ! rtpjitterbuffer latency=50 ! rtph264depay ! h264parse ! avdec_h264 ! queue ! fpsdisplaysink text-overlay=false name=fpssink video-sink="xvimagesink sync=false" sync=false -v
+
+Description
+~~~~~~~~~~~~
+
+The above gstreamer pipeline uses udpsrc element which reads UDP packets from the network, listening on the specified port (5000) and provide RTP packets to downstream element. rtpjitterbuffer element is used to buffer the incoming RTP packets to help reduce the impact of network jitter on smoothness of video. The bufferring is set to 50ms using latency property of rtpjitterbuffer, the value should be chosen optimally as tradeoff of choosing higher value is protection against network jitter maintaining the smoothness of pipeline but a higher value also increases the glass-to-glass latency. rtph264depay element is used to depacketize the H264 payload from RTP packets and feed send it to h264parse which parses it and provides access unit-by-access unit byte-stream to avdec_h264 which is a libav based software decoding element to decode H264 stream to raw video. fpsdisplaysink element is used along with xvimagesink (X11 backend) as video-sink to display overall frame-rate of the pipeline. If using weston as display server then waylandsink should be used as video-sink instead.
+
+Display camera feed received over network + record incoming stream
+------------------------------------------------------------------
+
+Pipeline topology
+~~~~~~~~~~~~~~~~~~
+
+.. code:: console
+
+	                                                             .-->avdec_h264-->xvimagesink
+	udpsrc --> rtpjitterbuffer-->rtph264depay-->h264parse-->tee--|
+                                                                     .-->filesink
+
+Gstreamer pipeline
+~~~~~~~~~~~~~~~~~~~
+
+.. code:: console
+
+	# This is the IP address of the remote host which is specified in the server pipelien running on beagleplay
+	sudo ifconfig enp2s0 192.168.0.2
+	gst-launch-1.0 udpsrc port=5000 caps = "application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, payload=(int)96" ! rtpjitterbuffer latency=50 ! rtph264depay ! h264parse ! video/x-h264, stream-format=byte-stream ! tee name=t t. ! queue ! filesink location="op.h264"  t. ! queue ! avdec_h264 ! queue ! fpsdisplaysink text-overlay=false name=fpssink video-sink="xvimagesink sync=false" sync=false -v
+
+Description
+~~~~~~~~~~~~
+
+This is same as pipeline described in previous section albeit with the extra addition of tee element which adds another arm to save the decoded video over a file on the host machine.
+
+2. Let the above pipelines run in the background and then to suspend the device (beagleplay):
 
 .. code:: console
 
 	echo mem > /sys/power/state
 
 3. Then, if you press the button/ trigger PIR sensor with some movement it should
-   bring the device back up and you will see the video resume almost instantly!
+   bring the device back up and you will see the video resume almost instantly on both the server side and client side. This is because underlying software stack also involving video and display related drivers support system suspend/resume, thus helping the application to resume seamlessly.
 
 4. Additionally, you can enable auto suspend for the device by using a simple systemd service. Follow the `guide here <https://tecadmin.net/run-shell-script-as-systemd-service/>`_
    to see how to create and enable a script as a systemd service. The script that I used was as follows:
@@ -197,4 +346,3 @@ Resources
 
 1. https://software-dl.ti.com/processor-sdk-linux/esd/AM62X/09_02_01_09/exports/docs/linux/Foundational_Components/Kernel/Kernel_Drivers/Power_Management/pm_low_power_modes.html#deep-sleep
 2. https://software-dl.ti.com/processor-sdk-linux/esd/AM62X/09_02_01_09/exports/docs/linux/Foundational_Components/Kernel/Kernel_Drivers/Camera/CSI2RX.html
-
diff --git a/boards/beagley/ai/04-expansion.rst b/boards/beagley/ai/04-expansion.rst
index 38f68796cb3d86262230c4edece694985dd3a1d2..fbd0fdf0bc0a55c5a1f7fd55d45d97798380b544 100644
--- a/boards/beagley/ai/04-expansion.rst
+++ b/boards/beagley/ai/04-expansion.rst
@@ -13,5 +13,5 @@ PCIe
 For software reference, you can see how PCIe is used on NVMe HATs.
 
 * :ref:`beagley-ai-expansion-nvme`
-* :ref:`beagley-ai-connecting-imx219-csi-cameras`
+* :ref:`beagley-ai-using-imx219-csi-cameras`
 * :ref:`beagley-ai-using-rtc`
diff --git a/boards/beagley/ai/05-demos.rst b/boards/beagley/ai/05-demos.rst
index 70c6d9b58d90580ac44472ad37d279205f23065b..ea2a23a185b12dadfb873f234c14c13555f528ee 100644
--- a/boards/beagley/ai/05-demos.rst
+++ b/boards/beagley/ai/05-demos.rst
@@ -6,9 +6,14 @@ Demos and tutorials
 .. toctree::
    :maxdepth: 1
 
+   demos/beagley-ai-using-gpio
+   demos/beagley-ai-using-pwm
    demos/beagley-ai-using-rtc
-   demos/beagley-ai-expansion-nvme
    demos/beagley-ai-pca9685-motor-drivers
+   demos/beagley-ai-expansion-nvme
+   demos/beagley-ai-using-imx219-csi-cameras
    demos/beagley-ai-arducam-imx219-v3link-dual-camera-kit
-   demos/beagley-ai-connecting-imx219-csi-cameras
+   
+   
+   
 
diff --git a/boards/beagley/ai/demos/beagley-ai-using-gpio.rst b/boards/beagley/ai/demos/beagley-ai-using-gpio.rst
new file mode 100644
index 0000000000000000000000000000000000000000..85cbcb56c1e168d11d58f8cddeaad57bbf624d85
--- /dev/null
+++ b/boards/beagley/ai/demos/beagley-ai-using-gpio.rst
@@ -0,0 +1,271 @@
+.. _beagley-ai-using-gpio:
+
+Using GPIO
+#################
+
+.. todo:: This page is a work in progress. Further testing and images will be added soon!
+
+**GPIO** stands for **General-Purpose Input/Output**. It's a set of programmable pins that you can use to connect and control various electronic components. 
+
+You can set each pin to either **read signals (input)** from things 
+like buttons and sensors or **send signals (output)** to things like LEDs and motors. This lets you interact with and control 
+the physical world using code!
+
+A great resource for understanding pin numbering can be found at `pinout.beagley.ai <https://pinout.beagley.ai/>`_ 
+
+.. note:: **WARNING** - BeagleY-AI GPIOs are 3.3V tolerant, using higher voltages WILL damage the processor!
+
+Pin Numbering
+**********************
+
+You will see pins referenced in several ways. While this is confusing at first, in reality, 
+we can pick our favorite way and stick to it.
+
+The two main ways of referring to GPIOs is **by their number**, so GPIO 2, 3, 4 etc. as seen in the diagram below. This corresponds
+to the SoC naming convention. For broad compatibility, BeagleY-AI re-uses the Broadcom GPIO numbering scheme used by RaspberryPi. 
+
+The second (and arguably easier) way we will use for this tutorial is to use the **actual pin header number** (shown in dark grey)
+
+So, for the rest of the tutorial, if we refer to **hat-08-gpio** we mean the **8th pin of the GPIO header**. Which, if you referenced
+the image below, can see refers to **GPIO 14 (UART TX)**
+
+.. figure:: ../images/gpio/pinout.png
+   :align: center
+   :alt: BeagleY-AI pinout
+
+   BeagleY-AI pinout
+
+
+If you are curious about the "real" GPIO numbers on the Texas Instruments AM67A SoC, you can look at the board schematics. 
+
+Required Hardware
+******************
+
+For the simple blink demo, all that is needed is an LED, a Resistor (we use 2.2K here) and 2 wires.
+
+Similarly, a button is used for the GPIO read example, but you can also just connect that pin to 3.3V or GND with a wire 
+to simulate a button press.
+
+
+.. todo:: Add fritzing diagram and chapter on Pin Binding here
+
+
+GPIO Write
+***********
+
+At it's most basic, we can set a GPIO using the **gpioset** command. 
+
+To set HAT **Pin 8** to **ON**:
+
+.. code:: console
+
+   gpioset hat-08-gpio 0=1
+
+.. image:: ../images/gpio/on.png
+   :width: 50 %
+   :align: center
+
+To set HAT **Pin 8** to **OFF**:
+
+.. code:: console
+
+   gpioset hat-08-gpio 0=0
+
+.. image:: ../images/gpio/off.png
+   :width: 50 %
+   :align: center
+
+Blink an LED
+**********************
+
+Let's write a script called **blinky.sh** that contains the following:
+
+.. code:: bash
+
+   #!/bin/bash
+
+   while :
+   do
+	   gpioset hat-08-gpio 0=1
+	   sleep 1
+	   gpioset hat-08-gpio 0=0
+	   sleep 1
+   done
+
+The script is quite simple, it's an infinite "while" loop in which we do the following:
+
+1. set the HAT Pin 8 as 1 (HIGH)
+2. Wait 1 Second
+3. set the HAT Pin 8 as 0 (LOW)
+4. Wait 1 Second
+
+Now execute it by typing:
+
+.. code:: console
+
+   bash blinky.sh
+
+.. image:: ../images/gpio/blinky.gif
+   :width: 50 %
+   :align: center
+
+You can exit by pressing ``Ctrl + c`` on your keyboard.
+
+GPIO Read
+**********
+
+Reading GPIOs can be done using the ``gpioget`` command
+
+.. code:: console
+
+   gpioget hat-08-gpio 0
+   
+Results in **1** if the Input is held **HIGH** or **0** if the Input is held **LOW**
+
+Read a Button
+**************
+
+A push button simply completes an electric circuit when pressed. Depending on wiring, it can drive a signal either "Low" (GND) or "High" (3.3V)
+
+We will connect our Button between HAT Pin 16 (GPIO23) and Ground (GND).
+
+The cool part is since we have an internal pull-up resistor, we don't need an external one!
+The pull resistor guarantees that the Pin stays in a known (HIGH) state unless the button is pressed,
+in which case it will go LOW.
+
+.. todo:: Add fritzing diagram here
+
+Let's write a script called **button.sh** to continuously read an input pin connected 
+to a button and print out when it's pressed! :
+
+.. code:: bash
+
+   #!/bin/bash
+
+   while :
+   do
+	   if (( $(gpioget hat-12-gpio 0) == 0))
+	   then
+		echo "Button Pressed!"
+	   fi
+   done
+
+Combining the Two
+**********************
+
+Now, logically, let's make an LED match the state of the button.
+
+Let's modify our script and call it **blinkyButton.sh**:
+
+.. code:: bash
+
+   #!/bin/bash
+
+   while :
+      do
+	      if (( $(gpioget hat-12-gpio 0) == 0))
+	      then
+		      gpioset hat-08-gpio 0=1
+	      else
+		      gpioset hat-08-gpio 0=0
+	      fi
+      done
+
+This means when we see HAT Pin 12 go LOW, we know the button is pressed, so we set HAT Pin 8 (our LED) to ON, otherwise, we turn it OFF.
+
+Now execute it by typing:
+
+.. code:: console
+
+   bash blinkyButton.sh.sh
+
+.. image:: ../images/gpio/BlinkyButton.gif
+   :width: 50 %
+   :align: center
+
+You can exit by pressing **Ctrl + c** on your keyboard.
+
+
+Understanding Internal Pull Resistors
+*******************************************
+
+Pull-up and pull-down resistors are used in digital circuits to ensure that inputs to logic settle at expected levels.
+
+* Pull-up resistors: Connect the input to a high voltage level (e.g., 3.3V) to ensure the input reads as a logic high (1) when no active device is pulling it low.
+
+* Pull-down resistors: Connect the input to ground (GND) to ensure the input reads as a logic low (0) when no active device is pulling it high.
+
+These resistors prevent floating inputs and undefined states.
+
+By default, all GPIOs on the HAT Header are configured as **Inputs with Pull-up Resistors Enabled**.
+
+This is important for something like a button, as without it, once a button is released, it goes in an "undefined" state!
+
+To configure Pull-ups on a per-pin basis, we can use pass the following arguments within **gpioget or gpioset**:
+
+.. code:: console
+
+   -B, --bias=[as-is|disable|pull-down|pull-up] (defaults to 'as-is')
+
+The "Bias" argument has the following options:
+   * **as-is** - This leaves the bias as-is... quite self explanatory
+   * **disable** - This state is also known as High-Z (high impedance) where the Pin is left Floating without any bias resistor
+   * **pull-down** - In this state, the pin is pulled DOWN by the internal 50KΩ resistor
+   * **pull-up** - In this state, the pin is pulled UP by the internal 50KΩ resistor
+
+For example, a command to read an input with the Bias intentionally disabled would look  like this:
+
+.. code:: bash
+
+   gpioget --bias=disable hat-08-gpio 0
+
+Pull resistors are a foundational block of digital circuits and understanding when to (and not to) use them is important.
+
+This article from SparkFun Electronics is a good basic primer - `Link <https://learn.sparkfun.com/tutorials/pull-up-resistors/all>`_ 
+
+Troubleshooting
+*******************
+
+* **My script won't run!**
+
+Make sure you gave the script execute permissions first and that you're executing it with a **./** before
+
+To make it executable:
+
+.. code:: bash
+
+   chmod +X scriptName.sh
+
+To run it:
+
+.. code:: bash
+
+   ./scriptName.sh
+
+
+Bonus - Turn all GPIOs ON/OFF
+*******************************
+
+.. image:: ../images/gpio/allonoff.gif
+   :width: 50 %
+   :align: center
+
+Copy and paste this with the button on the right to turn **all pins ON**. 
+
+.. code:: bash
+
+   gpioset hat-03-gpio 0=1 ;\ gpioset hat-05-gpio 0=1 ;\ gpioset hat-08-gpio 0=1 ;\ gpioset hat-10-gpio 0=1 ;\ gpioset hat-11-gpio 0=1 ;\ gpioset hat-12-gpio 0=1 ;\ gpioset hat-13-gpio 0=1 ;\ gpioset hat-15-gpio 0=1 ;\ gpioset hat-16-gpio 0=1 ;\ gpioset hat-18-gpio 0=1 ;\ gpioset hat-19-gpio 0=1 ;\ gpioset hat-21-gpio 0=1 ;\ gpioset hat-22-gpio 0=1 ;\ gpioset hat-23-gpio 0=1 ;\ gpioset hat-24-gpio 0=1 ;\ gpioset hat-26-gpio 0=1 ;\ gpioset hat-29-gpio 0=1 ;\ gpioset hat-31-gpio 0=1 ;\ gpioset hat-32-gpio 0=1 ;\ gpioset hat-33-gpio 0=1 ;\ gpioset hat-35-gpio 0=1 ;\ gpioset hat-36-gpio 0=1 ;\ gpioset hat-37-gpio 0=1 ;\ gpioset hat-40-gpio 0=1
+
+Similarly, copy and paste this to turn **all pins OFF**. 
+
+.. code:: bash
+
+   gpioset hat-03-gpio 0=0 ;\ gpioset hat-05-gpio 0=0 ;\ gpioset hat-08-gpio 0=0 ;\ gpioset hat-10-gpio 0=0 ;\ gpioset hat-11-gpio 0=0 ;\ gpioset hat-12-gpio 0=0 ;\ gpioset hat-13-gpio 0=0 ;\ gpioset hat-15-gpio 0=0 ;\ gpioset hat-16-gpio 0=0 ;\ gpioset hat-18-gpio 0=0 ;\ gpioset hat-19-gpio 0=0 ;\ gpioset hat-21-gpio 0=0 ;\ gpioset hat-22-gpio 0=0 ;\ gpioset hat-23-gpio 0=0 ;\ gpioset hat-24-gpio 0=0 ;\ gpioset hat-26-gpio 0=0 ;\ gpioset hat-29-gpio 0=0 ;\ gpioset hat-31-gpio 0=0 ;\ gpioset hat-32-gpio 0=0 ;\ gpioset hat-33-gpio 0=0 ;\ gpioset hat-35-gpio 0=0 ;\ gpioset hat-36-gpio 0=0 ;\ gpioset hat-37-gpio 0=0 ;\ gpioset hat-40-gpio 0=0
+
+
+Going Further
+*******************
+
+* `pinout.beagley.ai <https://pinout.beagley.ai/>`_ 
+* `GPIOSet Documentation <https://manpages.debian.org/testing/gpiod/gpioset.1.en.html>`_
+* `GPIOGet Documentation <https://manpages.debian.org/testing/gpiod/gpioget.1.en.html>`_
diff --git a/boards/beagley/ai/demos/beagley-ai-connecting-imx219-csi-cameras.rst b/boards/beagley/ai/demos/beagley-ai-using-imx219-csi-cameras.rst
similarity index 91%
rename from boards/beagley/ai/demos/beagley-ai-connecting-imx219-csi-cameras.rst
rename to boards/beagley/ai/demos/beagley-ai-using-imx219-csi-cameras.rst
index 5f02884ad9691fdc9c1b5bd30c143619b00deca1..eb9b66052430ec4250eb8edd3565c755ea9661da 100644
--- a/boards/beagley/ai/demos/beagley-ai-connecting-imx219-csi-cameras.rst
+++ b/boards/beagley/ai/demos/beagley-ai-using-imx219-csi-cameras.rst
@@ -1,11 +1,9 @@
-.. _beagley-ai-connecting-imx219-csi-cameras:
+.. _beagley-ai-using-imx219-csi-cameras:
 
 Using IMX219 CSI Cameras
 ############################
 
-.. todo::
-
-   Need to add `gstreamer` and/or `cheese` commands to show how to make use of connected cameras.
+.. note:: This page is a work in progress. Further drive testing and images will be added soon
 
 To enable an IMX219 CSI camera, modify the following file: `/boot/firmware/extlinux/extlinux.conf`
 
diff --git a/boards/beagley/ai/demos/beagley-ai-using-pwm.rst b/boards/beagley/ai/demos/beagley-ai-using-pwm.rst
new file mode 100644
index 0000000000000000000000000000000000000000..7a39a8fb30abd38b028e107d8f4ae54298afa957
--- /dev/null
+++ b/boards/beagley/ai/demos/beagley-ai-using-pwm.rst
@@ -0,0 +1,91 @@
+.. _beagley-ai-using-pwm:
+
+Pulse Width Modulation (PWM)
+#############################
+
+.. todo:: This page is a work in progress. Further testing and images will be added soon
+
+What is it
+************
+
+PWM, or Pulse Width Modulation, is a technique used to control the amount of power delivered to an electronic device by breaking up the power signal into discrete ON and OFF periods. 
+The amount of time the signal spends ON during each cycle determines the output power level (brightness of the LED).
+
+.. image:: ../images/gpio/pwm.jpg
+   :width: 50%
+   :align: center
+
+
+How do we do it
+*****************
+
+First we unbind the pin as GPIO 
+
+.. code:: bash
+
+    echo hat-08-gpio > /sys/bus/platform/drivers/gpio-aggregator/unbind
+
+Now we override the driver
+
+.. code:: bash
+
+    echo gpio-aggregator > /sys/devices/platform/hat-08-pwm/driver_override 
+
+Then we bind the pin
+
+.. code:: bash
+
+    echo hat-08-pwm > /sys/bus/platform/drivers/gpio-aggregator/bind
+
+.. todo:: Add note about matching PWM channel to Pin
+
+Let's write a script called **fade.sh** that contains the following:
+
+.. code:: bash
+
+    #!/bin/bash
+
+    PWMPIN="/sys/devices/platform/bus@f0000/23000000.pwm/pwm/pwmchip3/pwm1"
+
+
+    echo 1000 > $PWMPIN/period
+    echo 0 > $PWMPIN/duty_cycle
+    echo 0 > $PWMPIN/enable
+    sleep 1
+
+    for i in {1..500};
+    do
+	    echo $i > $PWMPIN/duty_cycle
+	    echo 1 > $PWMPIN/enable
+	    echo $i
+	    sleep 0.0005
+    done
+
+    for i in {500..1};
+    do
+        echo $i > $PWMPIN/duty_cycle
+        echo 1 > $PWMPIN/enable
+        echo $i
+        sleep 0.0005
+    done
+
+Now execute it by typing:
+
+.. code:: console
+
+   bash fade.sh
+
+.. image:: ../images/gpio/pwm.gif
+   :align: center
+
+.. todo:: Add section about driving Servo Motors at 50KHz
+
+Troubleshooting
+*******************
+
+.. todo:: Fill out empty section
+
+Going Further
+*******************
+
+.. todo:: Fill out empty section
\ No newline at end of file
diff --git a/boards/beagley/ai/demos/images/beagley_rtc.png b/boards/beagley/ai/demos/images/beagley_rtc.png
deleted file mode 100644
index 1c3466d774ed54ecf3b29e8222e6a7e9a9bfd2a8..0000000000000000000000000000000000000000
Binary files a/boards/beagley/ai/demos/images/beagley_rtc.png and /dev/null differ
diff --git a/boards/beagley/ai/images/beagley_rtc.png b/boards/beagley/ai/images/beagley_rtc.png
index 1c3466d774ed54ecf3b29e8222e6a7e9a9bfd2a8..126f69bf08eac582cb4e6ebcceb1628c32cda54d 100644
Binary files a/boards/beagley/ai/images/beagley_rtc.png and b/boards/beagley/ai/images/beagley_rtc.png differ
diff --git a/boards/beagley/ai/images/beagley_rtc.svg b/boards/beagley/ai/images/beagley_rtc.svg
new file mode 100644
index 0000000000000000000000000000000000000000..3c1062bfc7a373a49f25b0b72e9741e0e13bd04e
--- /dev/null
+++ b/boards/beagley/ai/images/beagley_rtc.svg
@@ -0,0 +1,1970 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   width="78.40654mm"
+   height="91.22953mm"
+   viewBox="0 0 78.406538 91.229532"
+   version="1.1"
+   id="svg1"
+   xml:space="preserve"
+   inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
+   sodipodi:docname="beagley_rtc.svg"
+   inkscape:export-filename="beagley_rtc.png"
+   inkscape:export-xdpi="247"
+   inkscape:export-ydpi="247"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
+     id="namedview1"
+     pagecolor="#ffffff"
+     bordercolor="#000000"
+     borderopacity="0.25"
+     inkscape:showpageshadow="2"
+     inkscape:pageopacity="0.0"
+     inkscape:pagecheckerboard="0"
+     inkscape:deskcolor="#d1d1d1"
+     inkscape:document-units="mm"
+     inkscape:zoom="1.1194637"
+     inkscape:cx="144.71215"
+     inkscape:cy="199.20253"
+     inkscape:window-width="1600"
+     inkscape:window-height="826"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="layer1" /><defs
+     id="defs1"><inkscape:path-effect
+       effect="offset"
+       id="path-effect34"
+       is_visible="false"
+       lpeversion="1.2"
+       linejoin_type="miter"
+       unit="mm"
+       offset="0"
+       miter_limit="4"
+       attempt_force_join="false"
+       update_on_knot_move="true" /><clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath443"><path
+         d="M 88,98.400002 H 972 V 686.23999 H 88 Z"
+         transform="matrix(0.00113122,0,0,0.00170114,-0.09954756,-0.16739252)"
+         clip-rule="evenodd"
+         id="path443" /></clipPath><clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath29"><g
+         inkscape:label="Clip"
+         id="use29"
+         style="fill:#eeeeee;fill-opacity:1;stroke:#1c1c1c;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"><rect
+           style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1c1c1c;stroke-width:0;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="rect30"
+           width="15.253394"
+           height="20.046131"
+           x="295.30344"
+           y="110.16382" /></g></clipPath><pattern
+       id="EMFhbasepattern"
+       patternUnits="userSpaceOnUse"
+       width="6"
+       height="6"
+       x="0"
+       y="0" /><pattern
+       id="EMFhbasepattern-5"
+       patternUnits="userSpaceOnUse"
+       width="6"
+       height="6"
+       x="0"
+       y="0" /></defs><g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-199.30712,-84.168545)"><rect
+       style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:0.172866;stroke-opacity:1"
+       id="rect1"
+       width="87.265266"
+       height="55.973633"
+       x="84.575851"
+       y="-277.62723"
+       ry="2.9278769"
+       transform="rotate(90)" /><path
+       d="m 266.33514,120.45973 a 0.42461895,0.42461895 0 0 1 0.20524,0.0542 0.38310064,0.38310064 0 0 1 0.15569,0.15428 0.41754197,0.41754197 0 0 1 0,0.4166 0.39112123,0.39112123 0 0 1 -0.15427,0.15428 0.41801376,0.41801376 0 0 1 -0.41519,0 0.39112123,0.39112123 0 0 1 -0.15428,-0.15428 0.41801376,0.41801376 0 0 1 -0.0557,-0.20759 0.42461895,0.42461895 0 0 1 0.0561,-0.20901 0.38687504,0.38687504 0 0 1 0.15617,-0.15428 0.42461895,0.42461895 0 0 1 0.20617,-0.0542 z m 0,0.0694 a 0.35998251,0.35998251 0 0 0 -0.17125,0.0472 0.33025917,0.33025917 0 0 0 -0.13023,0.1288 0.35479271,0.35479271 0 0 0 -0.0472,0.17456 0.34865933,0.34865933 0 0 0 0.0472,0.17268 0.32506939,0.32506939 0 0 0 0.12881,0.1288 0.34724394,0.34724394 0 0 0 0.3463,0 0.32506939,0.32506939 0 0 0 0.1288,-0.1288 0.34771572,0.34771572 0 0 0 0.0472,-0.17268 0.35479271,0.35479271 0 0 0 -0.0472,-0.17456 0.32271039,0.32271039 0 0 0 -0.13022,-0.1288 0.35809532,0.35809532 0 0 0 -0.17221,-0.0472 z m -0.18305,0.5789 v -0.44916 h 0.15428 a 0.36989027,0.36989027 0 0 1 0.11464,0.0127 0.10709833,0.10709833 0 0 1 0.0561,0.0434 0.11323173,0.11323173 0 0 1 0.0212,0.0656 0.1193651,0.1193651 0 0 1 -0.0354,0.0859 0.13823705,0.13823705 0 0 1 -0.0944,0.0406 0.12361129,0.12361129 0 0 1 0.0383,0.0241 0.49114258,0.49114258 0 0 1 0.066,0.0892 l 0.0548,0.0877 h -0.0883 l -0.0396,-0.0708 a 0.36753128,0.36753128 0 0 0 -0.076,-0.10474 0.09435976,0.09435976 0 0 0 -0.058,-0.0151 h -0.0425 v 0.18872 z m 0.0727,-0.25289 h 0.0877 a 0.14153965,0.14153965 0 0 0 0.0859,-0.0189 0.05944665,0.05944665 0 0 0 0.0231,-0.0495 0.06416464,0.06416464 0 0 0 -0.0113,-0.0359 0.06888263,0.06888263 0 0 0 -0.0307,-0.0231 0.22835063,0.22835063 0 0 0 -0.0731,-0.008 h -0.0821 z"
+       fill="#231f20"
+       id="path38"
+       style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0471798;stroke-opacity:1" /><g
+       id="g25"
+       transform="matrix(1.0922172,0,0,1.0922172,-3.3968704,32.568389)"><rect
+         style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.197361;stroke-dasharray:none;stroke-opacity:1"
+         id="rect2"
+         width="12.321858"
+         height="16.242872"
+         x="242.92274"
+         y="114.41153" /><path
+         style="fill:#807d7f;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+         d="m 244.60925,123.61055 c -0.0945,0.0167 -0.1497,0.0827 -0.16234,0.19822 -0.0126,0.1156 0.357,1.9639 0.357,1.9639 0.18461,1.11319 0.66206,3.23627 0.68131,3.30923 0.0192,0.073 0.10105,0.2847 0.15718,0.35963 0.0561,0.0749 0.11986,0.13858 0.20997,0.16591 0.0901,0.0273 0.942,0.0152 0.99971,0.005 0.0577,-0.01 0.20097,-0.0862 0.2669,-0.16244 0.0659,-0.0762 0.15136,-0.29113 0.16685,-0.36151 0.0155,-0.0704 0.21871,-1.4809 0.39717,-2.73668 0.20601,-1.44961 0.29412,-2.33547 0.30726,-2.51042 0.009,-0.11943 -0.0965,-0.2292 -0.16578,-0.23744 -0.0693,-0.008 -0.2056,0.0321 -0.2305,0.1803 -0.0249,0.14832 -0.34986,2.33565 -0.34986,2.33565 0,0 -0.31798,2.32178 -0.42084,2.43361 -0.10285,0.11183 -0.69353,0.0858 -0.833,0.003 -0.13947,-0.0829 -0.66497,-2.74942 -0.66497,-2.74942 0,0 -0.43491,-1.97129 -0.46503,-2.08001 -0.0301,-0.10872 -0.15648,-0.13352 -0.25103,-0.11682 z"
+         id="path2"
+         sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /><path
+         style="fill:#807d7f;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+         d="m 250.3474,123.64362 c -0.0945,0.0167 -0.1497,0.0827 -0.16234,0.19822 -0.0126,0.1156 0.357,1.9639 0.357,1.9639 0.18461,1.11319 0.66206,3.23627 0.68131,3.30923 0.0192,0.073 0.10105,0.2847 0.15718,0.35963 0.0561,0.0749 0.11986,0.13858 0.20997,0.16591 0.0901,0.0273 0.942,0.0152 0.99971,0.005 0.0577,-0.01 0.20097,-0.0862 0.2669,-0.16244 0.0659,-0.0762 0.15136,-0.29113 0.16685,-0.36151 0.0155,-0.0704 0.21871,-1.4809 0.39717,-2.73668 0.20601,-1.44961 0.29412,-2.33547 0.30726,-2.51042 0.009,-0.11943 -0.0965,-0.2292 -0.16578,-0.23744 -0.0693,-0.008 -0.2056,0.0321 -0.2305,0.1803 -0.0249,0.14832 -0.34986,2.33565 -0.34986,2.33565 0,0 -0.31798,2.32178 -0.42084,2.43361 -0.10285,0.11183 -0.69353,0.0858 -0.833,0.003 -0.13947,-0.0829 -0.66497,-2.74942 -0.66497,-2.74942 0,0 -0.43491,-1.97129 -0.46503,-2.08001 -0.0301,-0.10872 -0.15648,-0.13352 -0.25103,-0.11682 z"
+         id="path4"
+         sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /></g><g
+       id="g26"
+       transform="matrix(1.0922172,0,0,1.0922172,-21.35637,32.587309)"><rect
+         style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.197361;stroke-dasharray:none;stroke-opacity:1"
+         id="rect25"
+         width="12.321858"
+         height="16.242872"
+         x="242.92274"
+         y="114.41153" /><path
+         style="fill:#807d7f;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+         d="m 244.60925,123.61055 c -0.0945,0.0167 -0.1497,0.0827 -0.16234,0.19822 -0.0126,0.1156 0.357,1.9639 0.357,1.9639 0.18461,1.11319 0.66206,3.23627 0.68131,3.30923 0.0192,0.073 0.10105,0.2847 0.15718,0.35963 0.0561,0.0749 0.11986,0.13858 0.20997,0.16591 0.0901,0.0273 0.942,0.0152 0.99971,0.005 0.0577,-0.01 0.20097,-0.0862 0.2669,-0.16244 0.0659,-0.0762 0.15136,-0.29113 0.16685,-0.36151 0.0155,-0.0704 0.21871,-1.4809 0.39717,-2.73668 0.20601,-1.44961 0.29412,-2.33547 0.30726,-2.51042 0.009,-0.11943 -0.0965,-0.2292 -0.16578,-0.23744 -0.0693,-0.008 -0.2056,0.0321 -0.2305,0.1803 -0.0249,0.14832 -0.34986,2.33565 -0.34986,2.33565 0,0 -0.31798,2.32178 -0.42084,2.43361 -0.10285,0.11183 -0.69353,0.0858 -0.833,0.003 -0.13947,-0.0829 -0.66497,-2.74942 -0.66497,-2.74942 0,0 -0.43491,-1.97129 -0.46503,-2.08001 -0.0301,-0.10872 -0.15648,-0.13352 -0.25103,-0.11682 z"
+         id="path25"
+         sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /><path
+         style="fill:#807d7f;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+         d="m 250.3474,123.64362 c -0.0945,0.0167 -0.1497,0.0827 -0.16234,0.19822 -0.0126,0.1156 0.357,1.9639 0.357,1.9639 0.18461,1.11319 0.66206,3.23627 0.68131,3.30923 0.0192,0.073 0.10105,0.2847 0.15718,0.35963 0.0561,0.0749 0.11986,0.13858 0.20997,0.16591 0.0901,0.0273 0.942,0.0152 0.99971,0.005 0.0577,-0.01 0.20097,-0.0862 0.2669,-0.16244 0.0659,-0.0762 0.15136,-0.29113 0.16685,-0.36151 0.0155,-0.0704 0.21871,-1.4809 0.39717,-2.73668 0.20601,-1.44961 0.29412,-2.33547 0.30726,-2.51042 0.009,-0.11943 -0.0965,-0.2292 -0.16578,-0.23744 -0.0693,-0.008 -0.2056,0.0321 -0.2305,0.1803 -0.0249,0.14832 -0.34986,2.33565 -0.34986,2.33565 0,0 -0.31798,2.32178 -0.42084,2.43361 -0.10285,0.11183 -0.69353,0.0858 -0.833,0.003 -0.13947,-0.0829 -0.66497,-2.74942 -0.66497,-2.74942 0,0 -0.43491,-1.97129 -0.46503,-2.08001 -0.0301,-0.10872 -0.15648,-0.13352 -0.25103,-0.11682 z"
+         id="path26"
+         sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /></g><g
+       id="g51"
+       transform="matrix(1.0413641,0,0,1.0413641,-60.61419,36.497989)"><rect
+         style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+         id="rect48"
+         width="15.3166"
+         height="20.190588"
+         x="273.14529"
+         y="112.66934" /><g
+         id="g50"
+         transform="translate(-0.58384657)"><rect
+           style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+           id="rect49"
+           width="5.1659946"
+           height="0.39191529"
+           x="275.72333"
+           y="112.66934" /><rect
+           style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+           id="rect50"
+           width="5.1659946"
+           height="0.39191529"
+           x="281.88556"
+           y="112.66934" /></g></g><g
+       id="g53"
+       transform="matrix(1.3668282,0,0,1.3668282,-102.4577,24.821839)"><rect
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke:#000000;stroke-width:0.191735;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect52"
+         width="13.583781"
+         height="13.427604"
+         x="256.38126"
+         y="73.521095"
+         ry="0.78924817" /><rect
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke:#000000;stroke-width:0.15767;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect53"
+         width="11.170449"
+         height="11.042019"
+         x="257.58792"
+         y="74.71389"
+         ry="0.64902818" /><circle
+         style="opacity:1;fill:#3d3d3c;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="path53"
+         cx="267.6095"
+         cy="75.819656"
+         r="0.34726563" /></g><circle
+       style="fill:#d4aa00;fill-opacity:1;stroke:none;stroke-width:0.127324;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="path54"
+       cx="147.72336"
+       cy="-225.08754"
+       r="2.8436224"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.057221;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle54"
+       cx="147.72336"
+       cy="-225.08754"
+       r="1.2779573"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.057221;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle57"
+       cx="147.74657"
+       cy="-268.18076"
+       r="1.2779573"
+       transform="rotate(90)" /><circle
+       style="fill:#d4aa00;fill-opacity:1;stroke:none;stroke-width:0.127324;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle58"
+       cx="147.7612"
+       cy="-274.23486"
+       r="2.8436224"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.057221;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle59"
+       cx="147.7612"
+       cy="-274.23486"
+       r="1.2779573"
+       transform="rotate(90)" /><circle
+       style="fill:#d4aa00;fill-opacity:1;stroke:none;stroke-width:0.127324;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle60"
+       cx="88.347244"
+       cy="-274.23486"
+       r="2.8436224"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.057221;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle61"
+       cx="88.347244"
+       cy="-274.23486"
+       r="1.2779573"
+       transform="rotate(90)" /><circle
+       style="fill:#d4aa00;fill-opacity:1;stroke:none;stroke-width:0.127324;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle62"
+       cx="88.333862"
+       cy="-225.15729"
+       r="2.8436224"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.057221;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle63"
+       cx="88.333862"
+       cy="-225.15729"
+       r="1.2779573"
+       transform="rotate(90)" /><rect
+       style="fill:#f9f9f9;fill-opacity:0.994681;stroke:#000000;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect63"
+       width="13.595861"
+       height="13.2747"
+       x="92.048553"
+       y="-271.2345"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.105065;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect64"
+       width="10.179509"
+       height="14.943415"
+       x="108.9584"
+       y="-265.08359"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.0772575;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect68"
+       width="9.0957441"
+       height="9.0428362"
+       x="106.1391"
+       y="-242.01913"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.0823983;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect69"
+       width="9.7257872"
+       height="9.6199474"
+       x="120.06279"
+       y="-237.67615"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.0589262;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect70"
+       width="6.9438629"
+       height="6.8909554"
+       x="144.34685"
+       y="-244.51611"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.0343353;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect71"
+       width="4.1045213"
+       height="3.9580419"
+       x="92.419998"
+       y="-249.83711"
+       ry="0"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.057221;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle71"
+       cx="88.383316"
+       cy="-231.19452"
+       r="1.2779573"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect72"
+       width="5.1318913"
+       height="5.1236515"
+       x="92.159714"
+       y="-276.73544"
+       ry="0.58014369"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect73"
+       width="5.1318913"
+       height="5.1236515"
+       x="97.355377"
+       y="-276.73544"
+       ry="0.58014369"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect74"
+       width="5.1318913"
+       height="5.1236515"
+       x="102.55104"
+       y="-276.73544"
+       ry="0.58014369"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect75"
+       width="5.1318913"
+       height="5.1236515"
+       x="107.74672"
+       y="-276.73544"
+       ry="0.58014369"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect76"
+       width="5.1318913"
+       height="5.1236515"
+       x="112.94238"
+       y="-276.73544"
+       ry="0.58014369"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect77"
+       width="5.1318913"
+       height="5.1236515"
+       x="118.13805"
+       y="-276.73544"
+       ry="0.58014369"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect78"
+       width="5.1318913"
+       height="5.1236515"
+       x="123.33371"
+       y="-276.73544"
+       ry="0.58014369"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect79"
+       width="5.1318913"
+       height="5.1236515"
+       x="128.52939"
+       y="-276.73544"
+       ry="0.58014369"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect80"
+       width="5.1318913"
+       height="5.1236515"
+       x="133.72505"
+       y="-276.73544"
+       ry="0.58014369"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect81"
+       width="5.1318913"
+       height="5.1236515"
+       x="138.92072"
+       y="-276.73544"
+       ry="0.58014369"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle96"
+       cx="111.53764"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect125"
+       width="5.1318913"
+       height="5.1236515"
+       x="145.19002"
+       y="-233.63643"
+       ry="0.58014369"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.0190948;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle130"
+       cx="162.8958"
+       cy="-259.76868"
+       r="0.42645705"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.0190948;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle131"
+       cx="170.66356"
+       cy="-260.73471"
+       r="0.42645705"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.0190948;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle132"
+       cx="170.6768"
+       cy="-258.77621"
+       r="0.42645705"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.0190948;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle133"
+       cx="162.87706"
+       cy="-241.84975"
+       r="0.42645705"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.0190948;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle134"
+       cx="170.64485"
+       cy="-242.81577"
+       r="0.42645705"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.0190948;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle135"
+       cx="170.65807"
+       cy="-240.85727"
+       r="0.42645705"
+       transform="rotate(90)" /><g
+       id="g166"
+       transform="matrix(0,0.57221012,-0.57221012,0,329.81983,69.540449)"><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect141"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="162.80792"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect142"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="165.46861"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect143"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="167.202"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect144"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="168.90266"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect145"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="170.73416"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect146"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="172.36943"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect147"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="174.20093"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect148"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="175.96788"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect149"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="177.70126"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect150"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="179.40193"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect151"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="181.23343"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect152"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="182.8687"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect153"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="184.7002"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect154"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="164.68233"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect155"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="166.41571"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect156"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="168.11638"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect157"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="169.94788"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect158"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="171.58315"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect159"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="173.41464"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect160"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="175.18159"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect161"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="176.91498"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect162"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="178.61565"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect163"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="180.44714"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect164"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="182.08241"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect165"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="184.72333"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect166"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="162.80792"
+         ry="0.24861264" /><g
+         id="g139"
+         transform="matrix(0,1.3594399,-1.3594399,0,236.9793,-166.42095)"><g
+           id="g138"
+           transform="translate(-0.38973521,-2.2201081)"><rect
+             style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.364153;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+             id="rect137"
+             width="20.465067"
+             height="2.0277274"
+             x="240.78256"
+             y="91.110252" /><rect
+             style="opacity:1;fill:#c5c2c2;fill-opacity:1;stroke:none;stroke-width:0.237964;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+             id="rect138"
+             width="15.423572"
+             height="1.1489341"
+             x="243.30331"
+             y="91.989044" /></g><path
+           id="rect135"
+           style="opacity:1;fill:#5b5a5c;fill-opacity:1;stroke:#444544;stroke-width:0.180048;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           d="m 239.97072,89.398918 v 2.16576 h 21.30929 v -2.16576 h -3.47214 v 0.995805 h -14.31954 v -0.995805 z" /></g></g><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect167"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-236.6595"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect168"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-235.13702"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect169"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-234.14516"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect170"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-233.17203"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect171"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-232.12402"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect172"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-231.18831"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect173"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-230.1403"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect174"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-229.12923"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect175"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-228.13737"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect176"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-227.16423"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect177"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-226.11623"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect178"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-225.18051"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect179"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-224.13251"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect180"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-235.58694"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect181"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-234.59508"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect182"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-233.62195"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect183"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-232.57394"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect184"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-231.63823"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect185"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-230.59023"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect186"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-229.57915"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect187"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-228.5873"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect188"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-227.61415"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect189"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-226.56615"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect190"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-225.63043"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.134436;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect191"
+       width="1.2234684"
+       height="0.61533463"
+       x="139.22343"
+       y="-224.11928"
+       ry="0.14225867"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.121886;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect192"
+       width="1.0057082"
+       height="0.61533463"
+       x="142.10596"
+       y="-236.6595"
+       ry="0.14225867"
+       transform="rotate(90)" /><g
+       id="g195"
+       transform="matrix(-0.77788527,0,0,-0.77788527,425.04759,211.46783)"><g
+         id="g194"
+         transform="translate(-0.38973521,-2.2201081)"><rect
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.364153;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="rect193"
+           width="20.465067"
+           height="2.0277274"
+           x="240.78256"
+           y="91.110252" /><rect
+           style="opacity:1;fill:#c5c2c2;fill-opacity:1;stroke:none;stroke-width:0.237964;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="rect194"
+           width="15.423572"
+           height="1.1489341"
+           x="243.30331"
+           y="91.989044" /></g><path
+         id="path194"
+         style="opacity:1;fill:#5b5a5c;fill-opacity:1;stroke:#444544;stroke-width:0.180048;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         d="m 239.97072,89.398918 v 2.16576 h 21.30929 v -2.16576 h -3.47214 v 0.995805 h -14.31954 v -0.995805 z" /></g><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect196"
+       width="1.1717975"
+       height="0.56854892"
+       x="88.464813"
+       y="-256.74933"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect197"
+       width="1.1717975"
+       height="0.56854892"
+       x="88.464813"
+       y="-255.21552"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect198"
+       width="1.1717975"
+       height="0.56854892"
+       x="88.464813"
+       y="-254.25612"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect199"
+       width="1.1717975"
+       height="0.56854892"
+       x="88.464813"
+       y="-253.17763"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect200"
+       width="1.1717975"
+       height="0.56854892"
+       x="88.464813"
+       y="-252.18515"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect201"
+       width="1.1717975"
+       height="0.56854892"
+       x="88.464813"
+       y="-251.21913"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect202"
+       width="1.1717975"
+       height="0.56854892"
+       x="88.464813"
+       y="-250.24651"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect203"
+       width="1.1717975"
+       height="0.56854892"
+       x="88.464813"
+       y="-249.16801"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect204"
+       width="1.1717975"
+       height="0.56854892"
+       x="88.464813"
+       y="-248.19539"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect205"
+       width="1.1717975"
+       height="0.56854892"
+       x="88.464813"
+       y="-247.12352"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect206"
+       width="1.1717975"
+       height="0.56854892"
+       x="85.922943"
+       y="-247.10368"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect207"
+       width="1.1717975"
+       height="0.56854892"
+       x="85.88324"
+       y="-248.73796"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect208"
+       width="1.1717975"
+       height="0.56854892"
+       x="85.88324"
+       y="-249.72382"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect209"
+       width="1.1717975"
+       height="0.56854892"
+       x="85.88324"
+       y="-250.69644"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect210"
+       width="1.1717975"
+       height="0.56854892"
+       x="85.88324"
+       y="-251.67569"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect211"
+       width="1.1717975"
+       height="0.56854892"
+       x="85.88324"
+       y="-252.73433"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect212"
+       width="1.1717975"
+       height="0.56854892"
+       x="85.88324"
+       y="-253.71358"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect213"
+       width="1.1717975"
+       height="0.56854892"
+       x="85.88324"
+       y="-254.66635"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect214"
+       width="1.1717975"
+       height="0.56854892"
+       x="85.88324"
+       y="-255.66544"
+       ry="0.13144232"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.126466;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect215"
+       width="1.1717975"
+       height="0.56854892"
+       x="85.88324"
+       y="-256.73068"
+       ry="0.13144232"
+       transform="rotate(90)" /><g
+       id="g141"
+       transform="matrix(-0.64385872,0,0,-0.64385872,413.1219,145.85461)"><g
+         id="g140"
+         transform="translate(-0.38973521,-2.2201081)"><rect
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.364153;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="rect139"
+           width="20.465067"
+           height="2.0277274"
+           x="240.78256"
+           y="91.110252" /><rect
+           style="opacity:1;fill:#c5c2c2;fill-opacity:1;stroke:none;stroke-width:0.237964;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="rect140"
+           width="15.423572"
+           height="1.1489341"
+           x="243.30331"
+           y="91.989044" /></g><path
+         id="path140"
+         style="opacity:1;fill:#5b5a5c;fill-opacity:1;stroke:#444544;stroke-width:0.180048;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         d="m 239.97072,89.398918 v 2.16576 h 21.30929 v -2.16576 h -3.47214 v 0.995805 h -14.31954 v -0.995805 z" /></g><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.117847;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect310"
+       width="1.1717975"
+       height="0.49369174"
+       x="227.03171"
+       y="92.661484"
+       ry="0.11413615" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.117847;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect311"
+       width="1.1717975"
+       height="0.49369174"
+       x="227.03171"
+       y="93.385391"
+       ry="0.11413615" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.117847;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect312"
+       width="1.1717975"
+       height="0.49369174"
+       x="227.03171"
+       y="99.276993"
+       ry="0.11413615" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.117847;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect313"
+       width="1.1717975"
+       height="0.49369174"
+       x="227.03171"
+       y="98.553085"
+       ry="0.11413615" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.0956546;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect314"
+       width="1.1717975"
+       height="0.32526311"
+       x="227.03171"
+       y="97.99762"
+       ry="0.075197287" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.0956546;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect315"
+       width="1.1717975"
+       height="0.32526311"
+       x="227.03171"
+       y="97.442139"
+       ry="0.075197287" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.0956546;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect316"
+       width="1.1717975"
+       height="0.32526311"
+       x="227.03171"
+       y="96.886658"
+       ry="0.075197287" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.0956546;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect317"
+       width="1.1717975"
+       height="0.32526311"
+       x="227.03171"
+       y="96.331192"
+       ry="0.075197287" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.0956546;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect318"
+       width="1.1717975"
+       height="0.32526311"
+       x="227.03171"
+       y="95.775711"
+       ry="0.075197287" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.0956546;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect319"
+       width="1.1717975"
+       height="0.32526311"
+       x="227.03171"
+       y="95.220245"
+       ry="0.075197287" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.0956546;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect320"
+       width="1.1717975"
+       height="0.32526311"
+       x="227.03171"
+       y="94.664764"
+       ry="0.075197287" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.0956546;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect321"
+       width="1.1717975"
+       height="0.32526311"
+       x="227.03171"
+       y="94.109299"
+       ry="0.075197287" /><g
+       id="g322"
+       transform="matrix(0,0.57221012,-0.57221012,0,329.81983,69.540449)"><g
+         id="g321"><rect
+           style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.206093;stroke-dasharray:none;stroke-opacity:1"
+           id="rect51"
+           width="15.526677"
+           height="14.056115"
+           x="-54.381939"
+           y="-193.01477"
+           transform="scale(-1)"
+           ry="0.6541056" /><g
+           id="g129"
+           transform="translate(-0.53101824)"><path
+             style="fill:#807d7f;fill-opacity:1;stroke:#807d7f;stroke-width:0.0766388;stroke-dasharray:none;stroke-opacity:1"
+             d="m 50.473736,180.92483 c -0.0046,-0.0383 -0.0274,-0.0615 -0.0692,-0.0686 -0.04187,-0.007 -0.721546,0.11136 -0.721546,0.11136 -0.408664,0.0559 -1.190374,0.21306 -1.217287,0.21959 -0.02696,0.007 -0.105496,0.0361 -0.133805,0.0573 -0.02825,0.0212 -0.05265,0.0459 -0.06426,0.082 -0.01143,0.0358 -0.02257,0.37889 -0.01973,0.40229 0.0027,0.0234 0.02773,0.0824 0.05432,0.11001 0.02651,0.0277 0.103238,0.0656 0.128561,0.0732 0.02535,0.008 0.535195,0.11244 0.989164,0.20492 0.524027,0.10694 0.844957,0.15691 0.908411,0.16512 0.04334,0.006 0.08522,-0.0351 0.08948,-0.0628 0.0045,-0.0278 -0.0078,-0.0831 -0.06146,-0.0959 -0.0535,-0.0133 -0.844004,-0.17929 -0.844004,-0.17929 0,0 -0.839545,-0.16624 -0.878376,-0.20961 -0.03883,-0.0432 -0.01859,-0.28055 0.01439,-0.33529 0.03275,-0.0548 1.013165,-0.22228 1.013165,-0.22228 0,0 0.725665,-0.14255 0.765794,-0.15282 0.04017,-0.0105 0.05145,-0.0607 0.04708,-0.0991 z"
+             id="path51"
+             sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /><path
+             style="fill:#807d7f;fill-opacity:1;stroke:#807d7f;stroke-width:0.0766388;stroke-dasharray:none;stroke-opacity:1"
+             d="m 43.825602,182.12859 c 0.0048,0.0383 0.02779,0.0613 0.06963,0.0682 0.04191,0.007 0.720826,-0.11591 0.720826,-0.11591 0.408304,-0.0584 1.189005,-0.22057 1.215876,-0.22727 0.02692,-0.007 0.105265,-0.0367 0.133439,-0.0581 0.02813,-0.0214 0.05239,-0.0464 0.06374,-0.0824 0.01121,-0.0359 0.02018,-0.37901 0.01719,-0.40239 -0.0029,-0.0233 -0.02825,-0.0822 -0.05501,-0.10967 -0.02669,-0.0276 -0.10365,-0.065 -0.12902,-0.0724 -0.0254,-0.008 -0.535898,-0.10896 -0.990439,-0.19867 -0.524691,-0.10362 -0.845929,-0.15157 -0.909435,-0.15937 -0.04338,-0.006 -0.08499,0.0356 -0.08908,0.0634 -0.0043,0.0279 0.0084,0.0831 0.06207,0.0955 0.05358,0.013 0.84512,0.17395 0.84512,0.17395 0,0 0.84058,0.16094 0.879682,0.20406 0.0391,0.043 0.02035,0.28043 -0.01227,0.33537 -0.03241,0.055 -1.011742,0.22867 -1.011742,0.22867 0,0 -0.724749,0.14714 -0.764814,0.15767 -0.0401,0.0107 -0.05107,0.0611 -0.04645,0.0994 z"
+             id="path52"
+             sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /></g><ellipse
+           style="fill:#999999;fill-opacity:1;stroke:#807d7f;stroke-width:0.185179;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="path129"
+           cx="43.380943"
+           cy="183.92206"
+           rx="0.77057284"
+           ry="0.26179805" /></g></g><ellipse
+       style="fill:#999999;fill-opacity:1;stroke:#807d7f;stroke-width:0.105961;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="ellipse129"
+       cx="98.06871"
+       cy="-224.57777"
+       rx="0.44092959"
+       ry="0.14980349"
+       transform="rotate(90)" /><rect
+       style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect323"
+       width="4.3604302"
+       height="3.3124297"
+       x="102.0175"
+       y="-227.91597"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.0938133;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect324"
+       width="3.5744298"
+       height="2.7153394"
+       x="102.41049"
+       y="-227.61743"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.125222;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect325"
+       width="5.2205753"
+       height="3.3124297"
+       x="115.26723"
+       y="-227.01768"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.105963;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect326"
+       width="4.5602417"
+       height="2.7153394"
+       x="115.59738"
+       y="-226.71915"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:0.0715909;stroke-dasharray:none;stroke-opacity:1"
+       id="rect13"
+       width="2.4073725"
+       height="3.9877434"
+       x="104.49796"
+       y="-257.19522"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect330"
+       width="5.1172037"
+       height="2.3662026"
+       x="101.73235"
+       y="-224.3981"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.137011;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect331"
+       width="6.2498612"
+       height="3.3124297"
+       x="270.57437"
+       y="151.43916"
+       ry="0" /><rect
+       style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.11742;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect332"
+       width="5.5996647"
+       height="2.7153394"
+       x="270.89948"
+       y="151.73769"
+       ry="0" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21698;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect336"
+       width="2.0451758"
+       height="0.95892251"
+       x="85.554306"
+       y="-270.96021"
+       ry="0.22169244"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21698;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect337"
+       width="2.0451758"
+       height="0.95892251"
+       x="85.554306"
+       y="-267.96954"
+       ry="0.22169244"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21698;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect338"
+       width="2.0451758"
+       height="0.95892251"
+       x="86.630386"
+       y="-269.46487"
+       ry="0.22169244"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21698;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect339"
+       width="2.0451758"
+       height="0.95892251"
+       x="85.494415"
+       y="-262.85703"
+       ry="0.22169244"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21698;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect340"
+       width="2.0451758"
+       height="0.95892251"
+       x="85.494415"
+       y="-259.86636"
+       ry="0.22169244"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21698;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect341"
+       width="2.0451758"
+       height="0.95892251"
+       x="86.57048"
+       y="-261.36169"
+       ry="0.22169244"
+       transform="rotate(90)" /><rect
+       style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.0791641;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect342"
+       width="2.6761439"
+       height="2.5825722"
+       x="85.178925"
+       y="-262.17349"
+       ry="0.33685726"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:#d4aa00;stroke-width:0.31851;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle342"
+       cx="86.516998"
+       cy="-260.8822"
+       r="0.58141965"
+       transform="rotate(90)" /><path
+       d="m 251.03855,121.01557 c 0,-0.10274 0.064,-0.17135 0.15418,-0.17135 0.0902,0 0.15417,0.0686 0.15417,0.17135 v 0.41974 a 0.4461938,0.4461938 0 0 1 0.29341,-0.1067 c 0.33192,0 0.49677,0.31048 0.49677,0.61029 0,0.29128 -0.19696,0.58042 -0.50755,0.58042 -0.10488,0 -0.2248,-0.0472 -0.28263,-0.14137 -0.0192,0.0814 -0.0685,0.12803 -0.15417,0.12803 -0.09,0 -0.15418,-0.0685 -0.15418,-0.17135 z m 0.55033,1.22058 c 0.16057,0 0.23985,-0.16697 0.23985,-0.31048 0,-0.14563 -0.0793,-0.31474 -0.23985,-0.31474 -0.16484,0 -0.24198,0.15417 -0.24198,0.30407 0,0.14991 0.0729,0.32115 0.24198,0.32115 z"
+       fill="#a97f2c"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path1"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 252.48404,122.02629 c 0.0213,0.15203 0.14777,0.22277 0.29128,0.22277 0.15844,0 0.26769,-0.12419 0.3491,-0.12419 0.0664,0 0.12633,0.0664 0.12633,0.13273 0,0.13272 -0.2741,0.26129 -0.50328,0.26129 -0.34686,0 -0.57817,-0.25276 -0.57817,-0.59322 0,-0.31261 0.22704,-0.59748 0.55245,-0.59748 0.33407,0 0.55481,0.30407 0.55481,0.5611 0,0.0921 -0.0407,0.137 -0.13496,0.137 z m 0.48396,-0.20496 c -0.0171,-0.13497 -0.10274,-0.23558 -0.24625,-0.23558 -0.13699,0 -0.22907,0.10488 -0.24411,0.23558 z"
+       fill="#a97f2c"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path2-3"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 254.41787,122.30465 c 0,0.0793 0,0.20133 -0.14777,0.20133 -0.0899,0 -0.12633,-0.0493 -0.14778,-0.13059 -0.0793,0.0942 -0.17561,0.1435 -0.2934,0.1435 -0.28903,0 -0.50957,-0.24636 -0.50957,-0.59322 0,-0.33832 0.22694,-0.59748 0.50957,-0.59748 0.11352,0 0.22491,0.045 0.2934,0.14137 a 0.1462773,0.1462773 0 0 1 0.14778,-0.12804 c 0.14777,0 0.14777,0.12206 0.14777,0.20123 z m -0.54606,-0.0685 c 0.16057,0 0.23771,-0.16271 0.23771,-0.31048 0,-0.14777 -0.0747,-0.31474 -0.23771,-0.31474 -0.16922,0 -0.24412,0.16697 -0.24412,0.31474 0,0.14777 0.077,0.31048 0.24412,0.31048 z"
+       fill="#a97f2c"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path3"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 255.58296,122.40323 c 0,0.37045 -0.24198,0.55673 -0.5931,0.55673 -0.12644,0 -0.48621,-0.0621 -0.48621,-0.23131 0,-0.0577 0.064,-0.13486 0.1243,-0.13486 0.0985,0 0.20762,0.096 0.38538,0.096 0.1499,0 0.26129,-0.0878 0.26129,-0.24411 v -0.0728 h -0.004 c -0.064,0.0942 -0.16922,0.14564 -0.31048,0.14564 -0.32339,0 -0.47543,-0.28487 -0.47543,-0.59108 0,-0.31048 0.19696,-0.59962 0.50754,-0.59962 0.10488,0 0.22481,0.0472 0.28264,0.14137 0.0193,-0.0814 0.0685,-0.12804 0.15417,-0.12804 0.0899,0 0.15417,0.0685 0.15417,0.17071 z m -0.55011,-0.7923 c -0.16057,0 -0.23984,0.16697 -0.23984,0.31048 0,0.16484 0.0793,0.31474 0.23984,0.31474 0.16485,0 0.24199,-0.15417 0.24199,-0.30408 0,-0.1499 -0.073,-0.32114 -0.24199,-0.32114 z"
+       fill="#a97f2c"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path4-8"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 255.67963,121.01557 c 0,-0.10274 0.064,-0.17135 0.15417,-0.17135 0.0902,0 0.15418,0.0686 0.15418,0.17135 v 1.31906 c 0,0.10285 -0.064,0.17135 -0.15418,0.17135 -0.0901,0 -0.15417,-0.0685 -0.15417,-0.17135 z"
+       fill="#a97f2c"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path5"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 256.38627,122.02629 c 0.0213,0.15203 0.14777,0.22277 0.29127,0.22277 0.15844,0 0.26769,-0.12419 0.349,-0.12419 0.0665,0 0.12643,0.0664 0.12643,0.13273 0,0.13272 -0.27421,0.26129 -0.50328,0.26129 -0.34696,0 -0.57817,-0.25276 -0.57817,-0.59322 0,-0.31261 0.22694,-0.59748 0.55246,-0.59748 0.33406,0 0.5548,0.30407 0.5548,0.5611 0,0.0921 -0.0406,0.137 -0.13485,0.137 z m 0.48396,-0.20496 c -0.017,-0.13497 -0.10275,-0.23558 -0.24625,-0.23558 -0.137,0 -0.22918,0.10488 -0.24412,0.23558 z"
+       fill="#a97f2c"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path6"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 257.2985,121.01557 c 0,-0.10274 0.064,-0.17135 0.15417,-0.17135 0.0901,0 0.15417,0.0686 0.15417,0.17135 v 0.41974 a 0.4461938,0.4461938 0 0 1 0.29341,-0.1067 c 0.33182,0 0.49676,0.31048 0.49676,0.61029 0,0.29128 -0.19705,0.58042 -0.50753,0.58042 -0.10489,0 -0.22481,-0.0472 -0.28264,-0.14137 -0.0193,0.0814 -0.0685,0.12803 -0.15417,0.12803 -0.0899,0 -0.15417,-0.0685 -0.15417,-0.17135 z m 0.55032,1.22058 c 0.16058,0 0.23985,-0.16697 0.23985,-0.31048 0,-0.14563 -0.0793,-0.31474 -0.23985,-0.31474 -0.16495,0 -0.24198,0.15417 -0.24198,0.30407 0,0.14991 0.0728,0.32115 0.24198,0.32115 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path7"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 259.56627,121.92567 c 0,0.32126 -0.22053,0.59322 -0.55245,0.59322 -0.33193,0 -0.55247,-0.27196 -0.55247,-0.59322 0,-0.31261 0.22694,-0.59748 0.55247,-0.59748 0.32552,0 0.55245,0.28487 0.55245,0.59748 z m -0.79657,0 c 0,0.14777 0.077,0.31048 0.24412,0.31048 0.16708,0 0.24411,-0.16271 0.24411,-0.31048 0,-0.14777 -0.0747,-0.31474 -0.24411,-0.31474 -0.16943,0 -0.24412,0.16697 -0.24412,0.31474 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path8"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 260.72913,122.30465 c 0,0.0793 0,0.20133 -0.14777,0.20133 -0.0899,0 -0.12632,-0.0493 -0.14777,-0.13059 -0.0792,0.0942 -0.17551,0.1435 -0.2933,0.1435 -0.28914,0 -0.50968,-0.24636 -0.50968,-0.59322 0,-0.33832 0.22694,-0.59748 0.50968,-0.59748 0.11341,0 0.2248,0.045 0.2933,0.14137 a 0.14649069,0.14649069 0 0 1 0.14734,-0.12836 c 0.14778,0 0.14778,0.12206 0.14778,0.20123 z m -0.54606,-0.0685 c 0.16004,0 0.23772,-0.16271 0.23772,-0.31048 0,-0.14777 -0.0747,-0.31474 -0.23772,-0.31474 -0.16921,0 -0.24411,0.16697 -0.24411,0.31474 0,0.14777 0.0771,0.31048 0.24411,0.31048 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path9"
+       style="opacity:0.8;fill:none;stroke:#f6f4f5;stroke-opacity:1" /><path
+       d="m 260.81566,121.49527 c 0,-0.10285 0.0813,-0.15417 0.15844,-0.15417 0.0813,0 0.14938,0.03 0.14938,0.12803 h 0.004 c 0.0578,-0.0854 0.11992,-0.12803 0.21627,-0.12803 0.0747,0 0.14937,0.0533 0.14937,0.16484 0,0.10061 -0.0921,0.10669 -0.18416,0.1499 -0.0921,0.0432 -0.18628,0.0836 -0.18628,0.2056 v 0.47319 c 0,0.10285 -0.064,0.17135 -0.15418,0.17135 -0.0901,0 -0.1531,-0.0685 -0.1531,-0.17135 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path10"
+       style="opacity:0.8;fill:none;stroke:#f6f4f5;stroke-opacity:1" /><path
+       d="m 262.56886,122.33463 c 0,0.10285 -0.064,0.17135 -0.15418,0.17135 -0.0854,0 -0.13497,-0.047 -0.15417,-0.12803 -0.0578,0.0942 -0.17775,0.14137 -0.28274,0.14137 -0.31048,0 -0.50754,-0.28914 -0.50754,-0.58042 0,-0.29981 0.16494,-0.61029 0.49687,-0.61029 a 0.44640718,0.44640718 0 0 1 0.29341,0.1067 v -0.41974 c 0,-0.10274 0.064,-0.17135 0.15417,-0.17135 0.0902,0 0.15418,0.0686 0.15418,0.17135 z m -0.55033,-0.7237 c -0.16069,0 -0.23985,0.16911 -0.23985,0.31474 0,0.14351 0.0792,0.31048 0.23985,0.31048 0.16911,0 0.24198,-0.17071 0.24198,-0.32115 0,-0.15043 -0.0771,-0.30407 -0.24198,-0.30407 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path11"
+       style="opacity:0.8;fill:none;stroke:#f6f4f5;stroke-opacity:1" /><path
+       d="m 262.86888,122.18483 a 0.16708261,0.16708261 0 1 1 -0.16708,0.16698 0.16718931,0.16718931 0 0 1 0.16708,-0.16698 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path12"
+       style="opacity:0.8;fill:none;stroke:#f6f4f5;stroke-opacity:1" /><path
+       d="m 264.17556,121.92567 c 0,0.32126 -0.22054,0.59322 -0.55246,0.59322 -0.33193,0 -0.55257,-0.27196 -0.55257,-0.59322 0,-0.31261 0.22704,-0.59748 0.55257,-0.59748 0.32552,0 0.55246,0.28487 0.55246,0.59748 z m -0.79658,0 c 0,0.14777 0.077,0.31048 0.24412,0.31048 0.16708,0 0.24411,-0.16271 0.24411,-0.31048 0,-0.14777 -0.0747,-0.31474 -0.24411,-0.31474 -0.16944,0 -0.24412,0.16697 -0.24412,0.31474 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path13"
+       style="opacity:0.8;fill:none;stroke:#f6f4f5;stroke-opacity:1" /><path
+       d="m 264.24854,121.49527 c 0,-0.10285 0.0814,-0.15417 0.15844,-0.15417 0.0814,0 0.1499,0.03 0.1499,0.12803 h 0.004 c 0.0578,-0.0854 0.11993,-0.12803 0.21639,-0.12803 0.0747,0 0.14937,0.0533 0.14937,0.16484 0,0.10061 -0.0921,0.10669 -0.18416,0.1499 -0.0921,0.0432 -0.18629,0.0836 -0.18629,0.2056 v 0.47319 c 0,0.10285 -0.064,0.17135 -0.15417,0.17135 -0.0902,0 -0.15417,-0.0685 -0.15417,-0.17135 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path14"
+       style="opacity:0.8;fill:none;stroke:#f6f4f5;stroke-opacity:1" /><path
+       d="m 266.00877,122.40323 c 0,0.37045 -0.24198,0.55673 -0.59311,0.55673 -0.12632,0 -0.4861,-0.0621 -0.4861,-0.23131 0,-0.0577 0.064,-0.13486 0.1242,-0.13486 0.0985,0 0.20773,0.096 0.38538,0.096 0.1499,0 0.26128,-0.0878 0.26128,-0.24411 v -0.0728 h -0.004 c -0.064,0.0942 -0.16922,0.14564 -0.31048,0.14564 -0.32339,0 -0.47543,-0.28487 -0.47543,-0.59108 0,-0.31048 0.19706,-0.59962 0.50755,-0.59962 0.10488,0 0.2248,0.0472 0.28263,0.14137 0.0193,-0.0814 0.0685,-0.12804 0.15417,-0.12804 0.0899,0 0.15417,0.0685 0.15417,0.17071 z m -0.55033,-0.7923 c -0.16057,0 -0.23985,0.16697 -0.23985,0.31048 0,0.16484 0.0793,0.31474 0.23985,0.31474 0.16495,0 0.24198,-0.15417 0.24198,-0.30408 0,-0.1499 -0.0729,-0.32114 -0.24198,-0.32114 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.0746854"
+       id="path15"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 250.54712,121.06039 c 0.0579,-0.31667 -0.21296,-0.56879 -0.6249,-0.71005 -0.11097,-0.39231 -0.36191,-0.62555 -0.72905,-0.62555 -0.21338,0 -0.40265,0.0836 -0.52429,0.21339 -0.27313,0.0171 -0.27505,0.33854 -0.51352,0.79818 -0.1866,0.35998 -0.0398,0.73288 0.41056,0.7907 -0.0703,0.16271 -0.10669,0.35124 -0.11032,0.54169 -0.22843,-0.26172 -0.1658,-0.53208 -0.29383,-0.52483 -0.16005,0.009 0.0447,0.57615 0.32872,0.89239 a 1.4190285,1.4190285 0 0 0 0.0425,0.15321 c -0.0991,0.0343 -0.20272,0.137 -0.20272,0.25607 0,0.1355 0.0928,0.14809 0.21339,0.14937 a 0.22245673,0.22245673 0 0 0 -0.006,0.0476 0.11074824,0.11074824 0 0 0 0.0427,0.0916 c 0.0303,0.0231 0.0733,0.0347 0.13337,0.0369 0.009,0 0.0174,0 0.0258,0 v 0 c 0.12697,0 0.21424,-0.0355 0.26941,-0.0854 a 0.22640439,0.22640439 0 0 0 0.0773,-0.16548 0.16281485,0.16281485 0 0 0 -0.005,-0.0388 0.19002179,0.19002179 0 0 1 -0.004,-0.0213 1.7997122,1.7997122 0 0 1 0.30813,-0.002 c -0.002,0.0107 -0.003,0.0189 -0.004,0.0236 a 0.14937142,0.14937142 0 0 0 -0.004,0.0358 c 0,0.0524 0.0239,0.11597 0.0811,0.16676 0.0572,0.0508 0.14702,0.0871 0.2758,0.0871 v 0 c 0.008,0 0.017,0 0.0258,0 0.0586,-0.002 0.1005,-0.0132 0.13027,-0.0353 a 0.10669388,0.10669388 0 0 0 0.0427,-0.0889 0.20933338,0.20933338 0 0 0 -0.007,-0.052 c 0.12259,-8.6e-4 0.21797,-0.0121 0.21797,-0.14938 0,-0.11907 -0.10381,-0.22181 -0.20272,-0.25606 0.10509,-0.32648 0.096,-0.70642 -0.0184,-1.00804 l -0.007,-0.004 a 1.0648049,1.0648049 0 0 0 0.31934,-0.11545 c 0.0401,0.064 0.0793,0.1275 0.17188,0.11427 0.13944,-0.02 0.19823,-0.22853 0.0787,-0.35123 a 0.50338172,0.50338172 0 0 0 0.0612,-0.16462 z"
+       fill="#ffffff"
+       stroke="#231f20"
+       stroke-width="0.0853554"
+       id="path16"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 250.56846,121.03905 c 0.0579,-0.31667 -0.21296,-0.56879 -0.62491,-0.71005 -0.11096,-0.39231 -0.3619,-0.62555 -0.72903,-0.62555 -0.21339,0 -0.40267,0.0837 -0.5243,0.21339 -0.27313,0.0171 -0.27506,0.33854 -0.51351,0.79818 -0.18661,0.35998 -0.0398,0.73288 0.41055,0.79071 -0.0703,0.1627 -0.10669,0.35123 -0.11032,0.54168 -0.22843,-0.26172 -0.1658,-0.53208 -0.29384,-0.52483 -0.16003,0.009 0.0447,0.57615 0.32873,0.89239 a 1.4190285,1.4190285 0 0 0 0.0425,0.15321 c -0.0991,0.0342 -0.20272,0.137 -0.20272,0.25607 0,0.1355 0.0928,0.14809 0.21339,0.14937 a 0.22245673,0.22245673 0 0 0 -0.006,0.0476 0.11074824,0.11074824 0 0 0 0.0427,0.0917 c 0.0303,0.023 0.0733,0.0347 0.13337,0.0369 0.009,0 0.0174,0 0.0258,0 v 0 c 0.12696,0 0.21424,-0.0355 0.2694,-0.0853 a 0.22640439,0.22640439 0 0 0 0.0774,-0.16548 0.16281485,0.16281485 0 0 0 -0.005,-0.0388 0.19002179,0.19002179 0 0 1 -0.004,-0.0213 1.7997122,1.7997122 0 0 1 0.30813,-0.002 c -0.002,0.0107 -0.003,0.0189 -0.004,0.0236 a 0.14937142,0.14937142 0 0 0 -0.004,0.0359 c 0,0.0524 0.0239,0.11598 0.0811,0.16676 0.0572,0.0508 0.14703,0.0871 0.27581,0.0871 v 0 c 0.008,0 0.017,0 0.0258,0 0.0586,-0.002 0.1005,-0.0132 0.13027,-0.0353 a 0.10669388,0.10669388 0 0 0 0.0427,-0.0889 0.20933338,0.20933338 0 0 0 -0.008,-0.052 c 0.12259,-8.6e-4 0.21797,-0.0121 0.21797,-0.14937 0,-0.11908 -0.10381,-0.22182 -0.20271,-0.25607 0.10509,-0.32648 0.096,-0.70642 -0.0184,-1.00804 l -0.007,-0.004 a 1.0648049,1.0648049 0 0 0 0.31934,-0.11545 c 0.0401,0.064 0.0793,0.1275 0.17188,0.11427 0.13945,-0.0199 0.19824,-0.22853 0.0787,-0.35123 a 0.50338172,0.50338172 0 0 0 0.0614,-0.16463 z"
+       fill="#ffffff"
+       stroke="#231f20"
+       stroke-width="0.0533472"
+       id="path17"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 248.47694,122.0472 c -0.22843,-0.26151 -0.1658,-0.53187 -0.29384,-0.52462 -0.16003,0.009 0.0447,0.57615 0.32873,0.89239 0.0113,0.0518 0.0255,0.10298 0.0425,0.15321 -0.0991,0.0342 -0.20272,0.137 -0.20272,0.25607 0,0.14734 0.10979,0.14937 0.2454,0.14937 0.064,-4.2e-4 0.12504,-0.027 0.169,-0.0735 0.31111,-0.0865 0.65254,-0.0972 0.98489,0 0.0439,0.0465 0.105,0.0731 0.169,0.0735 0.1355,0 0.2454,-0.002 0.2454,-0.14937 0,-0.11907 -0.10381,-0.22182 -0.20272,-0.25607 0.1051,-0.32648 0.096,-0.70642 -0.0184,-1.00804"
+       fill="none"
+       stroke="#231f20"
+       stroke-width="0.0533472"
+       id="path21"
+       sodipodi:nodetypes="ccccsccccscc"
+       style="opacity:0.8;fill:none;stroke:#f6f5f5;stroke-opacity:1" /><path
+       d="m 248.72489,121.91735 c 0,0 -0.0106,0.69351 -0.032,0.81087 -0.0213,0.11737 -0.25606,0.3841 0.0427,0.39477 0.29874,0.0107 0.36275,-0.17071 0.34142,-0.25606 -0.0214,-0.0854 -0.0427,-0.72552 -0.0427,-0.72552"
+       fill="#ffffff"
+       id="path22"
+       style="opacity:0.8;fill:none;stroke-width:0.0106694" /><path
+       d="m 248.76042,123.14988 c -0.008,0 -0.017,0 -0.0258,0 v 0 c -0.0601,-0.002 -0.10307,-0.0139 -0.13337,-0.0369 v 0 a 0.11074824,0.11074824 0 0 1 -0.0427,-0.0917 v 0 c 0,-0.0545 0.0263,-0.11118 0.0516,-0.16484 v 0 c 0.0256,-0.0533 0.0518,-0.10414 0.0567,-0.13284 v 0 c 0.005,-0.0259 0.01,-0.0919 0.0136,-0.17273 v 0 c 0.004,-0.0812 0.007,-0.17872 0.01,-0.27271 v 0 c 0.005,-0.18778 0.008,-0.137 0.008,-0.21574 a 0.43147003,0.43147003 0 0 1 0.0265,-0.1451 c 0,0 0.0266,0.0533 0.0266,0.14564 0,0.0674 -0.006,0.24539 -0.018,0.49079 v 0 c -0.004,0.082 -0.009,0.14691 -0.0144,0.17967 v 0 c -0.008,0.0437 -0.0361,0.0937 -0.061,0.14628 v 0 c -0.0252,0.0519 -0.0468,0.10541 -0.0463,0.14179 v 0 a 0.05708122,0.05708122 0 0 0 0.022,0.0494 v 0 c 0.0164,0.0128 0.0486,0.024 0.10275,0.0258 v 0 c 0.008,0 0.0161,0 0.024,0 v 0 c 0.11737,0 0.19035,-0.032 0.23399,-0.0718 v 0 a 0.17348424,0.17348424 0 0 0 0.0596,-0.12601 v 0 a 0.1096813,0.1096813 0 0 0 -0.003,-0.0259 v 0 c -0.006,-0.0262 -0.0106,-0.0811 -0.0164,-0.15396 v 0 c -0.005,-0.0723 -0.01,-0.16004 -0.0137,-0.24539 v 0 c -0.008,-0.17071 -0.006,-0.13124 -0.006,-0.20048 a 0.50711601,0.50711601 0 0 1 0.0191,-0.13177 0.40394303,0.40394303 0 0 1 0.0343,0.14937 c 0,0.076 -0.005,-0.0604 0,0.0565 v 0 c 0.005,0.11736 0.0116,0.26087 0.0191,0.36841 v 0 a 1.2769123,1.2769123 0 0 0 0.0149,0.14468 v 0 a 0.16281485,0.16281485 0 0 1 0.005,0.0388 v 0 a 0.22640439,0.22640439 0 0 1 -0.0769,0.16516 v 0 c -0.0552,0.0502 -0.14244,0.0854 -0.26941,0.0854 v 0 z"
+       fill="#231f20"
+       id="path23"
+       style="opacity:0.8;fill:#666666;fill-opacity:1;stroke:#ffffff;stroke-width:0.0106694;stroke-opacity:1" /><path
+       d="m 249.78117,121.91735 c 0,0 0.0107,0.69351 0.032,0.81087 0.0213,0.11737 0.26674,0.3841 -0.032,0.39477 -0.29874,0.0107 -0.37343,-0.17071 -0.3521,-0.25606 0.0213,-0.0854 0.0427,-0.72552 0.0427,-0.72552"
+       fill="#ffffff"
+       id="path24"
+       style="opacity:0.8;fill:none;stroke-width:0.0106694" /><path
+       d="m 249.48008,123.06282 c -0.0572,-0.0508 -0.0811,-0.11438 -0.0811,-0.16677 v 0 a 0.14937142,0.14937142 0 0 1 0.004,-0.0359 v 0 a 1.2769123,1.2769123 0 0 0 0.0149,-0.14467 v 0 c 0.005,-0.0717 0.01,-0.16004 0.0137,-0.24486 v 0 c 0.008,-0.17071 0.0133,-0.14361 0.0133,-0.20635 0,-0.0627 0.0327,-0.12398 0.0327,-0.12398 a 0.41055804,0.41055804 0 0 1 0.0206,0.12579 c 0,0.0689 -0.012,0.23612 -0.027,0.45303 v 0 c -0.005,0.0729 -0.01,0.12803 -0.0164,0.15406 v 0 a 0.09517094,0.09517094 0 0 0 -0.003,0.0228 v 0 a 0.17561811,0.17561811 0 0 0 0.0633,0.12686 v 0 c 0.046,0.0406 0.12141,0.0735 0.2407,0.0736 v 0 c 0.008,0 0.0158,0 0.0239,0 v 0 c 0.0528,-0.002 0.0843,-0.0125 0.10029,-0.0246 v 0 a 0.05206661,0.05206661 0 0 0 0.0213,-0.0462 v 0 c 5.8e-4,-0.0358 -0.0225,-0.0904 -0.0496,-0.14319 v 0 c -0.0267,-0.0533 -0.0562,-0.10445 -0.065,-0.14937 v 0 c -0.006,-0.0328 -0.0107,-0.0976 -0.0144,-0.17967 v 0 c -0.004,-0.0818 -0.007,-0.17967 -0.01,-0.27388 v 0 c -0.005,-0.18821 -0.008,-0.20891 -0.008,-0.27559 a 1.0279955,1.0279955 0 0 1 0.0101,-0.1338 c 0,0 0.0432,0.076 0.0432,0.1338 0,0.0578 0.002,0.0107 0.005,0.1387 v 0 c 0.003,0.12803 0.007,0.28647 0.0134,0.40831 v 0 c 0.004,0.081 0.009,0.14682 0.0136,0.17274 v 0 c 0.005,0.0288 0.0327,0.081 0.0602,0.13486 v 0 c 0.0271,0.0546 0.0548,0.11192 0.0553,0.16719 v 0 a 0.10669388,0.10669388 0 0 1 -0.0427,0.0889 v 0 c -0.0298,0.0221 -0.0717,0.0331 -0.13027,0.0353 v 0 c -0.009,0 -0.0174,0 -0.0258,0 v 0 c -0.12878,0 -0.21851,-0.0363 -0.2758,-0.0871 z"
+       fill="#231f20"
+       id="path25-5"
+       style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:0.0106694;stroke-opacity:1" /><path
+       d="m 249.38874,121.55534 c 0.57957,0.10669 1.1076,-0.12494 1.1793,-0.51629 0.0584,-0.31667 -0.21254,-0.56879 -0.62449,-0.71005 -0.11096,-0.39231 -0.3619,-0.62555 -0.72903,-0.62555 -0.36714,0 -0.6646,0.24796 -0.6646,0.55385"
+       fill="none"
+       stroke="#231f20"
+       stroke-width="0.09323"
+       id="path26-8"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:0.0532155;stroke-dasharray:none;stroke-opacity:1" /><path
+       d="m 250.59855,120.74137 c 0.0177,0.10413 -0.0733,0.20667 -0.20347,0.22886 -0.13016,0.0222 -0.25009,-0.0443 -0.2678,-0.14841 -0.0177,-0.10414 0.0733,-0.20613 0.20347,-0.22886 0.13016,-0.0227 0.24998,0.0441 0.2678,0.14841 z"
+       fill="#231f20"
+       stroke="#231f20"
+       stroke-width="0.0426774"
+       id="path27"
+       style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 249.13268,120.70926 c 0.23323,0.61797 -0.12355,0.80458 -0.41973,0.80458 -0.54809,0 -0.7395,-0.40715 -0.53635,-0.79882 0.2454,-0.47223 0.24006,-0.79871 0.53635,-0.79871 0.29629,0 0.26428,0.38015 0.41973,0.79295 z"
+       fill="none"
+       stroke="#000000"
+       stroke-width="0.0533472"
+       id="path29"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><ellipse
+       cx="249.25047"
+       cy="120.29123"
+       rx="0.12504523"
+       ry="0.085141711"
+       fill="#231f20"
+       stroke="#231f20"
+       stroke-width="0.0426774"
+       id="ellipse30"
+       style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 249.91742,120.20545 c 0,0.05 -0.0285,0.0905 -0.097,0.0905 -0.0685,0 -0.12387,-0.0404 -0.12387,-0.0905 0,-0.05 0.0555,-0.0905 0.12387,-0.0905 0.0684,0 0.097,0.0405 0.097,0.0905 z"
+       fill="#231f20"
+       id="path31"
+       style="opacity:0.8;fill:#fefefe;fill-opacity:1;stroke:none;stroke-width:0.0106694" /><path
+       d="m 249.24225,120.25346 c 0,0.0176 -0.0177,0.032 -0.0395,0.032 -0.0217,0 -0.0396,-0.0143 -0.0396,-0.032 0,-0.0177 0.0177,-0.032 0.0396,-0.032 0.0219,0 0.0395,0.0144 0.0395,0.032 z"
+       fill="#ffffff"
+       id="path32"
+       style="opacity:0.8;stroke-width:0.0106694" /><path
+       d="m 249.80314,120.18272 a 0.03392865,0.03392865 0 1 1 -0.0335,-0.0289 0.03200816,0.03200816 0 0 1 0.0335,0.0289 z"
+       fill="#ffffff"
+       id="path33"
+       style="opacity:0.8;stroke-width:0.0106694" /><path
+       d="m 249.75705,121.45857 c 0.35284,0.10915 0.79199,-10e-4 0.80736,-0.44534 0,0 0.009,-0.0953 -0.0151,-0.0495 -0.1067,0.20624 -0.35594,0.29938 -0.75177,0.34953 -0.0558,0.007 -0.17487,0.008 -0.18223,0.0605 -0.004,0.0284 0.0323,0.0513 0.14169,0.0848 z"
+       fill="#231f20"
+       id="path34"
+       style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:0.0106694;stroke-opacity:1" /><path
+       style="font-size:2.36271px;font-family:Sans;-inkscape-font-specification:Sans;fill:#ffffff;fill-opacity:0.8;stroke-width:0.0851632"
+       d="m 251.2417,123.62954 q 0.18116,0 0.2731,0.0541 0.0933,0.0527 0.0933,0.18522 0,0.0852 -0.0473,0.14195 -0.0473,0.0554 -0.13655,0.0717 v 0.007 q 0.0608,0.009 0.10951,0.0352 0.05,0.0257 0.0784,0.073 0.0284,0.0473 0.0284,0.12303 0,0.13114 -0.0906,0.2028 -0.0892,0.0717 -0.2447,0.0717 h -0.33935 v -0.9653 z m 0.0243,0.41099 q 0.12438,0 0.17034,-0.0392 0.046,-0.0406 0.046,-0.11898 0,-0.0798 -0.0568,-0.11356 -0.0555,-0.0351 -0.17846,-0.0351 h -0.15953 v 0.30689 z m -0.17846,0.1014 v 0.35016 h 0.1947 q 0.12844,0 0.17846,-0.05 0.05,-0.05 0.05,-0.13114 0,-0.0757 -0.0528,-0.12168 -0.0514,-0.0473 -0.18522,-0.0473 z m 1.02073,-0.28526 q 0.0933,0 0.15954,0.0406 0.0676,0.0405 0.10274,0.11491 0.0365,0.073 0.0365,0.1717 v 0.0717 h -0.49618 q 0.003,0.12303 0.0622,0.18792 0.0608,0.0635 0.16899,0.0635 0.069,0 0.12168,-0.0122 0.0541,-0.0135 0.11086,-0.0379 v 0.1041 q -0.0554,0.0243 -0.10951,0.0352 -0.0541,0.0122 -0.12844,0.0122 -0.10275,0 -0.18251,-0.0419 -0.0784,-0.0419 -0.12303,-0.12438 -0.0433,-0.0838 -0.0433,-0.20415 0,-0.11897 0.0392,-0.20415 0.0406,-0.0852 0.11222,-0.13114 0.073,-0.046 0.169,-0.046 z m -0.001,0.0973 q -0.0852,0 -0.1352,0.0554 -0.0486,0.0541 -0.0581,0.15142 h 0.36909 q -0.001,-0.0919 -0.0433,-0.14872 -0.0419,-0.0581 -0.1325,-0.0581 z m 0.75845,-0.096 q 0.1325,0 0.19604,0.0581 0.0635,0.0581 0.0635,0.18522 v 0.49347 h -0.0865 l -0.023,-0.10275 h -0.005 q -0.0473,0.0595 -0.10004,0.0879 -0.0514,0.0284 -0.14331,0.0284 -0.0987,0 -0.16359,-0.0514 -0.0649,-0.0527 -0.0649,-0.16359 0,-0.10816 0.0852,-0.16629 0.0852,-0.0595 0.26228,-0.0649 l 0.12303,-0.004 v -0.0433 q 0,-0.0906 -0.0392,-0.12574 -0.0392,-0.0351 -0.11086,-0.0351 -0.0568,0 -0.10816,0.0176 -0.0514,0.0162 -0.096,0.0379 l -0.0365,-0.0892 q 0.0473,-0.0257 0.11221,-0.0433 0.0649,-0.0189 0.1352,-0.0189 z m 0.0351,0.38666 q -0.1352,0.005 -0.18792,0.0433 -0.0514,0.0379 -0.0514,0.1068 0,0.0608 0.0365,0.0892 0.0378,0.0284 0.096,0.0284 0.0919,0 0.15277,-0.05 0.0608,-0.0514 0.0608,-0.15683 v -0.0649 z m 0.70573,-0.38801 q 0.0716,0 0.12843,0.027 0.0581,0.027 0.0987,0.0825 h 0.007 l 0.0163,-0.096 h 0.0946 v 0.73683 q 0,0.15547 -0.0798,0.23389 -0.0784,0.0784 -0.24471,0.0784 -0.15953,0 -0.26093,-0.046 v -0.10951 q 0.10681,0.0568 0.26769,0.0568 0.0933,0 0.14602,-0.0554 0.0541,-0.0541 0.0541,-0.14872 v -0.0284 q 0,-0.0162 0.001,-0.046 0.001,-0.0311 0.003,-0.0433 h -0.005 q -0.073,0.10951 -0.22443,0.10951 -0.1406,0 -0.22037,-0.0987 -0.0784,-0.0987 -0.0784,-0.2758 0,-0.17305 0.0784,-0.27445 0.0798,-0.10275 0.21902,-0.10275 z m 0.0162,0.10004 q -0.0906,0 -0.14061,0.073 -0.05,0.0717 -0.05,0.2055 0,0.13384 0.0487,0.2055 0.05,0.0703 0.14466,0.0703 0.10951,0 0.15953,-0.0581 0.05,-0.0595 0.05,-0.19062 v -0.0284 q 0,-0.14871 -0.0514,-0.21225 -0.0514,-0.0649 -0.16089,-0.0649 z m 0.67733,0.63813 h -0.11897 v -1.02749 h 0.11897 z m 0.50969,-0.73817 q 0.0933,0 0.15954,0.0406 0.0676,0.0405 0.10275,0.11491 0.0365,0.073 0.0365,0.1717 v 0.0717 h -0.49617 q 0.003,0.12303 0.0622,0.18792 0.0608,0.0635 0.169,0.0635 0.069,0 0.12167,-0.0122 0.0541,-0.0135 0.11086,-0.0379 v 0.1041 q -0.0554,0.0243 -0.10951,0.0352 -0.0541,0.0122 -0.12843,0.0122 -0.10275,0 -0.18252,-0.0419 -0.0784,-0.0419 -0.12303,-0.12438 -0.0433,-0.0838 -0.0433,-0.20415 0,-0.11897 0.0392,-0.20415 0.0406,-0.0852 0.11221,-0.13114 0.073,-0.046 0.169,-0.046 z m -10e-4,0.0973 q -0.0852,0 -0.1352,0.0554 -0.0487,0.0541 -0.0581,0.15142 h 0.36908 q -0.001,-0.0919 -0.0433,-0.14872 -0.0419,-0.0581 -0.13249,-0.0581 z m 0.75169,0.15007 0.25147,-0.47454 h 0.13114 l -0.32177,0.59081 v 0.37449 h -0.12168 v -0.36909 l -0.32177,-0.59621 h 0.1325 z m 1.47094,0.49076 -0.11627,-0.29878 h -0.38261 l -0.11491,0.29878 h -0.12303 l 0.3772,-0.96936 h 0.10951 l 0.37584,0.96936 z m -0.26093,-0.69897 q -0.004,-0.0108 -0.0135,-0.0392 -0.009,-0.0284 -0.0189,-0.0581 -0.008,-0.0311 -0.0135,-0.0473 -0.009,0.0419 -0.0216,0.0825 -0.0122,0.0392 -0.0203,0.0622 l -0.10951,0.29203 h 0.30554 z m 0.7909,0.69897 h -0.34881 v -0.0703 l 0.11357,-0.0257 v -0.77197 l -0.11357,-0.027 v -0.0703 h 0.34881 v 0.0703 l -0.11357,0.027 v 0.77197 l 0.11357,0.0257 z"
+       id="text342"
+       aria-label="BeagleY AI" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.0264629;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect343"
+       width="3.7661793"
+       height="2.5623422"
+       x="90.469772"
+       y="-237.93877"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.016975;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect345"
+       width="1.9042381"
+       height="2.0852587"
+       x="84.177032"
+       y="-241.0688"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.0299469;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect344"
+       width="2.7895522"
+       height="4.4302878"
+       x="84.932083"
+       y="-242.24132"
+       ry="0"
+       transform="rotate(90)" /><circle
+       style="fill:#f7e5e5;fill-opacity:1;stroke:none;stroke-width:0.114442;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="path346"
+       cx="85.91629"
+       cy="-234.89725"
+       r="0.9660092"
+       transform="rotate(90)" /><rect
+       style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.015802;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect346"
+       width="1.0849649"
+       height="3.1715379"
+       x="85.843796"
+       y="-236.48302"
+       ry="0"
+       transform="rotate(90)" /><g
+       id="g22"
+       transform="matrix(0,0.57221012,-0.57221012,0,328.73316,69.993439)"><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect3"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="68.117287"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect4"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="68.944687"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect5"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="69.772087"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect6"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="70.599495"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect7"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="71.426895"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect8"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="72.254295"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect9"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="73.081696"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect10"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="73.909103"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect11"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="74.736504"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect12"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="75.563904"
+         ry="0.10468297"
+         transform="rotate(-90)" /></g><g
+       id="g23"
+       transform="matrix(0,0.57221012,-0.57221012,0,329.81983,69.540449)"><rect
+         style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.173909;stroke-dasharray:none;stroke-opacity:1"
+         id="rect65"
+         width="11.271784"
+         height="13.787045"
+         x="-78.494537"
+         y="-191.9084"
+         transform="scale(-1)"
+         ry="0.76857412" /><g
+         id="g20"
+         transform="translate(0.08477883)"><path
+           style="fill:#807d7f;fill-opacity:1;stroke:#807d7f;stroke-width:0.231286;stroke-dasharray:none;stroke-opacity:1"
+           d="m 69.430684,185.80162 c -0.04218,0.0114 -0.0667,0.0565 -0.0725,0.13538 -0.0054,0.0791 0.159465,1.34243 0.159465,1.34243 0.08233,0.76092 0.295536,2.2122 0.30412,2.26206 0.0094,0.0498 0.04514,0.19458 0.07021,0.24583 0.02493,0.0512 0.0535,0.0948 0.09392,0.11339 0.04016,0.019 0.420505,0.01 0.446269,0.002 0.02574,-0.008 0.08974,-0.059 0.118985,-0.11111 0.02938,-0.0519 0.06751,-0.199 0.07452,-0.24709 0.0081,-0.0481 0.09756,-1.0123 0.177212,-1.8707 0.09217,-0.99089 0.131247,-1.59641 0.13719,-1.716 0.0054,-0.0817 -0.04312,-0.15662 -0.07398,-0.16231 -0.03099,-0.006 -0.09163,0.0218 -0.10295,0.12324 -0.01213,0.10145 -0.156109,1.59655 -0.156109,1.59655 0,0 -0.141892,1.58708 -0.18795,1.66352 -0.04582,0.0764 -0.309604,0.0585 -0.371846,9.9e-4 -0.06239,-0.0567 -0.29687,-1.87939 -0.29687,-1.87939 0,0 -0.194176,-1.34749 -0.207571,-1.42182 -0.01361,-0.0743 -0.06994,-0.0912 -0.112112,-0.0798 z"
+           id="path67"
+           sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /><path
+           style="fill:#807d7f;fill-opacity:1;stroke:#807d7f;stroke-width:0.231286;stroke-dasharray:none;stroke-opacity:1"
+           d="m 74.680315,185.80162 c -0.04218,0.0114 -0.0667,0.0565 -0.0725,0.13538 -0.0054,0.0791 0.159465,1.34243 0.159465,1.34243 0.08233,0.76092 0.295536,2.2122 0.30412,2.26206 0.0094,0.0498 0.04514,0.19458 0.07021,0.24583 0.02493,0.0512 0.0535,0.0948 0.09392,0.11339 0.04016,0.019 0.420505,0.01 0.446269,0.002 0.02574,-0.008 0.08974,-0.059 0.118985,-0.11111 0.02938,-0.0519 0.06751,-0.199 0.07452,-0.24709 0.0081,-0.0481 0.09756,-1.0123 0.177212,-1.8707 0.09217,-0.99089 0.131247,-1.59641 0.13719,-1.716 0.0054,-0.0817 -0.04312,-0.15662 -0.07398,-0.16231 -0.03099,-0.006 -0.09163,0.0218 -0.10295,0.12324 -0.01213,0.10145 -0.156109,1.59655 -0.156109,1.59655 0,0 -0.141892,1.58708 -0.18795,1.66352 -0.04582,0.0764 -0.309604,0.0585 -0.371846,9.9e-4 -0.06239,-0.0567 -0.29687,-1.87939 -0.29687,-1.87939 0,0 -0.194176,-1.34749 -0.207571,-1.42182 -0.01361,-0.0743 -0.06994,-0.0912 -0.112112,-0.0798 z"
+           id="path18"
+           sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /></g><g
+         id="g19"
+         transform="matrix(1.1208781,0,0,1.9725396,-8.5935373,-174.32717)"><ellipse
+           style="fill:#999999;fill-opacity:1;stroke:#807d7f;stroke-width:0.158677;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="ellipse18"
+           cx="69.855537"
+           cy="179.94838"
+           rx="0.53853434"
+           ry="0.27504915" /><ellipse
+           style="fill:#999999;fill-opacity:1;stroke:#807d7f;stroke-width:0.158677;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="ellipse19"
+           cx="75.480843"
+           cy="179.94838"
+           rx="0.53853434"
+           ry="0.27504915" /></g></g><path
+       style="font-size:1.76389px;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.252345"
+       d="m 256.0221,107.30301 h 0.0976 l -0.241,0.72051 h -0.0922 l -0.24,-0.72051 h 0.0971 l 0.14539,0.45685 q 0.0143,0.0448 0.0247,0.0867 0.0104,0.0414 0.0187,0.0779 0.007,-0.0365 0.0187,-0.0779 0.0113,-0.0419 0.0266,-0.0897 z m 0.62737,0.21093 q 0,0.0449 -0.0138,0.0862 -0.0133,0.0414 -0.0443,0.0734 -0.0311,0.0315 -0.0823,0.0508 -0.0508,0.0187 -0.12567,0.0187 h -0.0739 v 0.28042 h -0.0917 v -0.72051 h 0.1784 q 0.066,0 0.11384,0.0143 0.0478,0.0138 0.0789,0.0409 0.0311,0.0266 0.0458,0.066 0.0148,0.0394 0.0148,0.0897 z m -0.34006,0.1513 h 0.0636 q 0.0458,0 0.0798,-0.008 0.0345,-0.008 0.0567,-0.0251 0.0227,-0.0177 0.034,-0.0453 0.0113,-0.0281 0.0113,-0.068 0,-0.07 -0.0404,-0.10349 -0.0404,-0.034 -0.12616,-0.034 h -0.0789 z m 0.9216,-0.1513 q 0,0.0449 -0.0138,0.0862 -0.0133,0.0414 -0.0443,0.0734 -0.0311,0.0315 -0.0823,0.0508 -0.0508,0.0187 -0.12567,0.0187 h -0.0739 v 0.28042 h -0.0917 v -0.72051 h 0.17841 q 0.066,0 0.11384,0.0143 0.0478,0.0138 0.0789,0.0409 0.0311,0.0266 0.0458,0.066 0.0148,0.0394 0.0148,0.0897 z m -0.34005,0.1513 h 0.0636 q 0.0458,0 0.0798,-0.008 0.0345,-0.008 0.0567,-0.0251 0.0227,-0.0177 0.034,-0.0453 0.0113,-0.0281 0.0113,-0.068 0,-0.07 -0.0404,-0.10349 -0.0404,-0.034 -0.12617,-0.034 h -0.0789 z"
+       id="text16"
+       aria-label="VPP" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle105"
+       cx="93.307953"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle125"
+       cx="93.307953"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle104"
+       cx="95.912186"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle124"
+       cx="95.912186"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle103"
+       cx="98.516434"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle123"
+       cx="98.516434"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle102"
+       cx="101.12067"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle122"
+       cx="101.12067"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle101"
+       cx="103.72491"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle121"
+       cx="103.72491"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle100"
+       cx="106.32915"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle120"
+       cx="106.32915"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle97"
+       cx="108.9334"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle119"
+       cx="108.9334"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle118"
+       cx="111.53764"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle93"
+       cx="114.14188"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle117"
+       cx="114.14188"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle92"
+       cx="116.74612"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle116"
+       cx="116.74612"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle91"
+       cx="119.35036"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle115"
+       cx="119.35036"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle90"
+       cx="121.95461"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle114"
+       cx="121.95461"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle89"
+       cx="124.55885"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle113"
+       cx="124.55885"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle112"
+       cx="127.16309"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle87"
+       cx="129.76733"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle111"
+       cx="129.76733"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle88"
+       cx="127.16309"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle86"
+       cx="132.37157"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle110"
+       cx="132.37157"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle85"
+       cx="134.97581"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle109"
+       cx="134.97581"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle84"
+       cx="137.58005"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle108"
+       cx="137.58005"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle83"
+       cx="140.1843"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle107"
+       cx="140.1843"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle81"
+       cx="142.78854"
+       cy="-275.50702"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle106"
+       cx="142.78854"
+       cy="-272.8869"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.0807841;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle334"
+       cx="275.35803"
+       cy="153.09538"
+       r="0.41781291" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.0807841;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle333"
+       cx="274.25223"
+       cy="153.09538"
+       r="0.41781291" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.0807841;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle332"
+       cx="273.14639"
+       cy="153.09538"
+       r="0.41781291" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.0807841;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle335"
+       cx="272.04059"
+       cy="153.09538"
+       r="0.41781291" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle126"
+       cx="149.05782"
+       cy="-232.40802"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle127"
+       cx="146.45358"
+       cy="-232.40802"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle129"
+       cx="146.45358"
+       cy="-229.78789"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.111716;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle128"
+       cx="149.05782"
+       cy="-229.78789"
+       r="0.57779336"
+       transform="rotate(90)" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.0807841;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle328"
+       cx="119.02159"
+       cy="-225.36147"
+       r="0.41781291"
+       transform="rotate(90)" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.0807841;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle327"
+       cx="117.87752"
+       cy="-225.36147"
+       r="0.41781291"
+       transform="rotate(90)" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.0807841;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle326"
+       cx="116.73343"
+       cy="-225.36147"
+       r="0.41781291"
+       transform="rotate(90)" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.0807841;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle325"
+       cx="104.72704"
+       cy="-226.25975"
+       r="0.41781291"
+       transform="rotate(90)" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.0807841;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle329"
+       cx="103.6684"
+       cy="-226.25975"
+       r="0.41781291"
+       transform="rotate(90)" /><circle
+       style="fill:#ffffff;fill-opacity:1;stroke:#d4aa00;stroke-width:0.339481;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle14-9"
+       cx="223.20624"
+       cy="105.73674"
+       r="0.56208581" /><circle
+       style="fill:#ffffff;fill-opacity:1;stroke:#d4aa00;stroke-width:0.339481;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle16"
+       cx="223.14529"
+       cy="103.00529"
+       r="0.56208581" /><circle
+       style="fill:#ffffff;fill-opacity:1;stroke:#d4aa00;stroke-width:0.339481;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle13"
+       cx="256.12744"
+       cy="105.70164"
+       r="0.56208581" /><circle
+       style="fill:#ffffff;fill-opacity:1;stroke:#d4aa00;stroke-width:0.339481;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle14"
+       cx="254.27525"
+       cy="105.70164"
+       r="0.56208581" /><g
+       id="g123"
+       transform="matrix(0.51008046,0,0,0.51008046,85.608619,103.01737)"><path
+         style="color:#000000;fill:#ff0000;fill-rule:evenodd;-inkscape-stroke:none"
+         d="m 255.59961,0.78710937 -22.68555,0.0488281 -0.0488,18.96093753 1,0.002 0.0469,-17.9667968 21.68945,-0.044922 z"
+         id="path121" /><path
+         style="color:#000000;fill:#000000;fill-rule:evenodd;-inkscape-stroke:none"
+         d="m 237.76953,3.6777344 0.0156,16.4023436 h 1 l -0.0137,-15.4003905 17.18164,0.037109 0.002,-1 z"
+         id="path122" /><path
+         id="path118"
+         style="opacity:1;fill:#cddae2;fill-opacity:1;stroke-width:0.529167"
+         d="m 222.90308,35.625545 a 12.880982,12.880982 0 0 0 12.88087,12.88087 12.880982,12.880982 0 0 0 12.88087,-12.88087 12.880982,12.880982 0 0 0 -6.49935,-11.15436 v -6.301421 c 0,-0.477219 -0.38423,-0.861449 -0.86144,-0.861449 h -11.04016 c -0.47721,0 -0.86144,0.38423 -0.86144,0.861449 v 6.270931 a 12.880982,12.880982 0 0 0 -6.49935,11.18485 z" /><path
+         id="rect118"
+         style="opacity:1;fill:#1a1a1a;stroke-width:0.529167"
+         d="m 255.09868,-1.6655445 c -0.47722,0 -0.86093,0.3842296 -0.86093,0.86144615 V 6.4543733 c 0,0.4772166 0.38371,0.8614461 0.86093,0.8614461 h 0.52296 c 0.47722,0 0.86145,-0.3842295 0.86145,-0.8614461 V 5.623933 h 5.09375 c 0.55129,0 0.99528,-0.4439986 0.99528,-0.995288 V 1.0216301 c 0,-0.55128942 -0.44399,-0.99477132 -0.99528,-0.99477132 h -5.09375 v -0.83095713 c 0,-0.47721655 -0.38423,-0.86144615 -0.86145,-0.86144615 z" /></g><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111px;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
+       x="205.67752"
+       y="120.88123"
+       id="text123"><tspan
+         sodipodi:role="line"
+         id="tspan123"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111px;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+         x="205.67752"
+         y="120.88123">RTC</tspan><tspan
+         sodipodi:role="line"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111px;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';fill:#000000;fill-opacity:1;stroke:none;stroke-width:1"
+         x="205.67752"
+         y="122.64512"
+         id="tspan124">BATTERY</tspan></text><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111px;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';text-align:center;text-anchor:middle;opacity:1;fill:#ff1b1b;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
+       x="227.15408"
+       y="104.16725"
+       id="text125"><tspan
+         sodipodi:role="line"
+         id="tspan125"
+         style="fill:#ff1b1b;fill-opacity:1;stroke-width:1"
+         x="227.15408"
+         y="104.16725">+</tspan></text><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.41111px;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans Bold';text-align:center;text-anchor:middle;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
+       x="227.15408"
+       y="105.10532"
+       id="text126"><tspan
+         sodipodi:role="line"
+         id="tspan126"
+         style="fill:#000000;fill-opacity:1;stroke-width:1"
+         x="227.15408"
+         y="105.10532">-</tspan></text><ellipse
+       style="opacity:1;fill:none;fill-opacity:1;stroke:#ff23fa;stroke-width:0.59891;stroke-dasharray:none;stroke-opacity:1"
+       id="path126"
+       cx="226.46194"
+       cy="103.97649"
+       rx="3.7428269"
+       ry="5.1820621" /></g></svg>
diff --git a/boards/beagley/ai/images/gpio/BlinkyButton.gif b/boards/beagley/ai/images/gpio/BlinkyButton.gif
new file mode 100644
index 0000000000000000000000000000000000000000..8445e81e19e2fd7c50ca41f792c3ee0d92924438
Binary files /dev/null and b/boards/beagley/ai/images/gpio/BlinkyButton.gif differ
diff --git a/boards/beagley/ai/images/gpio/allonoff.gif b/boards/beagley/ai/images/gpio/allonoff.gif
new file mode 100644
index 0000000000000000000000000000000000000000..454ca798617b183ffc5bfa0caa298cd5d6924e1e
Binary files /dev/null and b/boards/beagley/ai/images/gpio/allonoff.gif differ
diff --git a/boards/beagley/ai/images/gpio/beagley-ai-pinout.png b/boards/beagley/ai/images/gpio/beagley-ai-pinout.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd2bca5830032ee346e44145b05f6a225373bf49
Binary files /dev/null and b/boards/beagley/ai/images/gpio/beagley-ai-pinout.png differ
diff --git a/boards/beagley/ai/images/gpio/beagley-ai-pinout.svg b/boards/beagley/ai/images/gpio/beagley-ai-pinout.svg
new file mode 100644
index 0000000000000000000000000000000000000000..28d38aa0bf8193901f45b0b3daf68558da35b422
--- /dev/null
+++ b/boards/beagley/ai/images/gpio/beagley-ai-pinout.svg
@@ -0,0 +1,4657 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   width="9.5in"
+   height="6.3888888in"
+   viewBox="0 0 855 574.99999"
+   id="svg2"
+   version="1.1"
+   inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
+   sodipodi:docname="BeagleY-AI.svg"
+   xml:space="preserve"
+   inkscape:export-filename="BeagleY-AI.png"
+   inkscape:export-xdpi="247"
+   inkscape:export-ydpi="247"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"><defs
+     id="defs4"><inkscape:path-effect
+       effect="offset"
+       id="path-effect34"
+       is_visible="false"
+       lpeversion="1.2"
+       linejoin_type="miter"
+       unit="mm"
+       offset="0"
+       miter_limit="4"
+       attempt_force_join="false"
+       update_on_knot_move="true" /><clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath443"><path
+         d="M 88,98.400002 H 972 V 686.23999 H 88 Z"
+         transform="matrix(0.00113122,0,0,0.00170114,-0.09954756,-0.16739252)"
+         clip-rule="evenodd"
+         id="path443" /></clipPath><clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath29"><g
+         inkscape:label="Clip"
+         id="use29"
+         style="fill:#eeeeee;fill-opacity:1;stroke:#1c1c1c;stroke-width:0;stroke-dasharray:none;stroke-opacity:1"><rect
+           style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke:#1c1c1c;stroke-width:0;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="rect30"
+           width="15.253394"
+           height="20.046131"
+           x="295.30344"
+           y="110.16382" /></g></clipPath></defs><sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.48804564"
+     inkscape:cx="547.07998"
+     inkscape:cy="127.0373"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     units="in"
+     inkscape:window-width="1600"
+     inkscape:window-height="826"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:snap-global="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-nodes="false"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:snap-nodes="false"
+     inkscape:snap-others="false"
+     inkscape:showpageshadow="2"
+     inkscape:pagecheckerboard="false"
+     inkscape:deskcolor="#d1d1d1"><inkscape:grid
+       type="xygrid"
+       id="grid10294"
+       spacingx="9"
+       spacingy="5"
+       originx="-89.999996"
+       originy="-99.99999"
+       units="in"
+       visible="true" /></sodipodi:namedview><metadata
+     id="metadata7"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-89.999992,-387.36218)"><rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.82846"
+       id="rect83"
+       width="855"
+       height="575"
+       x="89.999992"
+       y="387.36218"
+       ry="8.2645826"
+       inkscape:export-filename="./pinout.png"
+       inkscape:export-xdpi="247"
+       inkscape:export-ydpi="247" /><rect
+       style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.39068"
+       id="rect16"
+       width="494.59708"
+       height="575"
+       x="450.40292"
+       y="387.36218"
+       ry="8.2645826"
+       inkscape:export-filename="./pinout.png"
+       inkscape:export-xdpi="247"
+       inkscape:export-ydpi="247" /><path
+       inkscape:connector-curvature="0"
+       id="path60244"
+       d="m 632.79897,466.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><rect
+       style="fill:#333333;fill-opacity:1;stroke:none;stroke-width:1.66744"
+       id="rect60306"
+       width="40.522457"
+       height="307.04507"
+       x="648.63019"
+       y="456.35779"
+       ry="2.7168527" /><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect14"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="460.60617"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="469.85492"
+       id="text60724"><tspan
+         sodipodi:role="line"
+         id="tspan60722"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="469.85492">01</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect15"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="460.60617"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="469.85492"
+       id="text15"><tspan
+         sodipodi:role="line"
+         id="tspan15"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="469.85492">02</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect22"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="475.60614"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="484.85489"
+       id="text22"><tspan
+         sodipodi:role="line"
+         id="tspan22"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="484.85489">03</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect23"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="475.60614"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="484.85489"
+       id="text23"><tspan
+         sodipodi:role="line"
+         id="tspan23"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="484.85489">04</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect24"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="490.60632"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="499.85507"
+       id="text24"><tspan
+         sodipodi:role="line"
+         id="tspan24"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="499.85507">05</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect26"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="490.60632"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="499.85507"
+       id="text26"><tspan
+         sodipodi:role="line"
+         id="tspan26"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="499.85507">06</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect43"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="505.60602"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="514.8548"
+       id="text43"><tspan
+         sodipodi:role="line"
+         id="tspan43"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="514.8548">07</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect44"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="505.60602"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="514.8548"
+       id="text44"><tspan
+         sodipodi:role="line"
+         id="tspan44"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="514.8548">08</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect45"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="520.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="529.85492"
+       id="text45"><tspan
+         sodipodi:role="line"
+         id="tspan45"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="529.85492">09</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect46"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="520.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="529.85492"
+       id="text64"><tspan
+         sodipodi:role="line"
+         id="tspan64"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="529.85492">10</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect66"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="535.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="544.85492"
+       id="text66"><tspan
+         sodipodi:role="line"
+         id="tspan66"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="544.85492">11</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect67"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="535.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="544.85492"
+       id="text67"><tspan
+         sodipodi:role="line"
+         id="tspan67"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="544.85492">12</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect82"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="550.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="559.85492"
+       id="text87"><tspan
+         sodipodi:role="line"
+         id="tspan87"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="559.85492">13</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect87"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="550.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="559.85492"
+       id="text88"><tspan
+         sodipodi:role="line"
+         id="tspan88"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="559.85492">14</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect88"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="595.63104"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="604.87982"
+       id="text89"><tspan
+         sodipodi:role="line"
+         id="tspan89"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="604.87982">19</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect89"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="595.63104"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="604.87982"
+       id="text90"><tspan
+         sodipodi:role="line"
+         id="tspan90"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="604.87982">20</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect90"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="610.63104"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="619.87982"
+       id="text91"><tspan
+         sodipodi:role="line"
+         id="tspan91"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="619.87982">21</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect91"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="610.63104"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="619.87982"
+       id="text92"><tspan
+         sodipodi:role="line"
+         id="tspan92"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="619.87982">22</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect92"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="625.60358"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="634.85229"
+       id="text93"><tspan
+         sodipodi:role="line"
+         id="tspan93"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="634.85229">23</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect93"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="625.60358"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="634.85229"
+       id="text94"><tspan
+         sodipodi:role="line"
+         id="tspan94"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="634.85229">24</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect94"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="640.60358"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="649.85229"
+       id="text95"><tspan
+         sodipodi:role="line"
+         id="tspan95"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="649.85229">25</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect95"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="640.60358"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="649.85229"
+       id="text96"><tspan
+         sodipodi:role="line"
+         id="tspan96"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="649.85229">26</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect96"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="655.60608"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="664.8548"
+       id="text97"><tspan
+         sodipodi:role="line"
+         id="tspan97"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="664.8548">27</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect97"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="655.60608"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="664.8548"
+       id="text98"><tspan
+         sodipodi:role="line"
+         id="tspan98"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="664.8548">28</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect98"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="670.60608"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="679.8548"
+       id="text99"><tspan
+         sodipodi:role="line"
+         id="tspan99"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="679.8548">29</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect99"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="670.60608"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="679.8548"
+       id="text100"><tspan
+         sodipodi:role="line"
+         id="tspan100"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="679.8548">30</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect100"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="685.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="694.85492"
+       id="text101"><tspan
+         sodipodi:role="line"
+         id="tspan101"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="694.85492">31</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect101"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="685.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="694.85492"
+       id="text102"><tspan
+         sodipodi:role="line"
+         id="tspan102"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="694.85492">32</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect102"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="700.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="709.85492"
+       id="text103"><tspan
+         sodipodi:role="line"
+         id="tspan103"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="709.85492">33</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect103"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="700.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="709.85492"
+       id="text104"><tspan
+         sodipodi:role="line"
+         id="tspan104"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="709.85492">34</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect104"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="565.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="574.85498"
+       id="text105"><tspan
+         sodipodi:role="line"
+         id="tspan105"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="574.85498">15</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect105"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="565.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="574.85498"
+       id="text106"><tspan
+         sodipodi:role="line"
+         id="tspan106"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="574.85498">16</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect106"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="580.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="589.85498"
+       id="text107"><tspan
+         sodipodi:role="line"
+         id="tspan107"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="589.85498">17</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect107"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="580.6062"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="589.85498"
+       id="text108"><tspan
+         sodipodi:role="line"
+         id="tspan108"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="589.85498">18</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect108"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="715.63104"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="724.87982"
+       id="text109"><tspan
+         sodipodi:role="line"
+         id="tspan109"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="724.87982">35</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect109"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="715.63104"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="724.87982"
+       id="text110"><tspan
+         sodipodi:role="line"
+         id="tspan110"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="724.87982">36</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect110"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="730.63104"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="739.87982"
+       id="text111"><tspan
+         sodipodi:role="line"
+         id="tspan111"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="739.87982">37</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect111"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="730.63104"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="739.87982"
+       id="text112"><tspan
+         sodipodi:role="line"
+         id="tspan112"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="739.87982">38</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect112"
+       width="12.24989"
+       height="12.250003"
+       x="653.76111"
+       y="745.63104"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="659.97357"
+       y="754.87982"
+       id="text113"><tspan
+         sodipodi:role="line"
+         id="tspan113"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="659.97357"
+         y="754.87982">39</tspan></text><rect
+       style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.46875;stroke-dasharray:none;stroke-opacity:1"
+       id="rect113"
+       width="12.24989"
+       height="12.250003"
+       x="671.77185"
+       y="745.63104"
+       ry="2.3138843" /><text
+       xml:space="preserve"
+       style="font-weight:bold;font-size:8.75px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="677.98431"
+       y="754.87982"
+       id="text114"><tspan
+         sodipodi:role="line"
+         id="tspan114"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8.75px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="677.98431"
+         y="754.87982">40</tspan></text><path
+       id="path2"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6.23905;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 625.85138,843.29488 c -1.2811,10e-4 -2.43215,0.78549 -2.9011,1.97776 l -13.29011,33.76118 c -0.80326,2.04526 0.70414,4.25856 2.90145,4.26106 h 86.62818 41.26862 22.67658 63.9452 c 1.28535,7e-4 2.43997,-0.78691 2.90786,-1.98416 l 13.15972,-33.76794 c 0.79152,-2.04383 -0.71622,-4.24648 -2.90785,-4.2479 h -63.9516 -22.54014 -41.40507 z" /><path
+       id="path1"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:6.23905;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 702.71055,843.29488 c -1.2811,10e-4 -2.43215,0.78549 -2.9011,1.97776 l -13.29011,33.76118 c -0.80326,2.04526 0.70414,4.25856 2.90144,4.26106 h 86.62818 41.26863 22.67658 63.9452 c 1.28534,7e-4 2.43996,-0.78691 2.90786,-1.98416 l 13.15971,-33.76794 c 0.79153,-2.04383 -0.71621,-4.24648 -2.90784,-4.2479 h -63.9516 -22.54014 -41.40507 z" /><path
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:0.747079;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="M 723.6858,661.40457 H 705.9635"
+       id="path17354"
+       inkscape:connector-curvature="0"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path17340"
+       d="m 740.79897,661.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><g
+       id="g116"><path
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c44949;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="m 586.7739,461.1013 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+         id="path66142"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccc" /><text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         x="597.07678"
+         y="470.40753"
+         id="text66146"><tspan
+           sodipodi:role="line"
+           id="tspan66144"
+           x="597.07678"
+           y="470.40753"
+           style="font-size:10.2979px;line-height:1.25">3V3</tspan></text></g><rect
+       style="fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:0.994797;stroke-opacity:1"
+       id="rect1"
+       width="502.18674"
+       height="322.1123"
+       x="414.70618"
+       y="-449.90552"
+       ry="16.849098"
+       transform="rotate(90)" /><path
+       d="m 384.92268,621.20767 a 2.4435611,2.4435611 0 0 1 1.18107,0.31223 2.2046351,2.2046351 0 0 1 0.89596,0.88783 2.4028351,2.4028351 0 0 1 0,2.39741 2.2507913,2.2507913 0 0 1 -0.8878,0.88782 2.4055501,2.4055501 0 0 1 -2.38926,0 2.2507913,2.2507913 0 0 1 -0.88784,-0.88782 2.4055501,2.4055501 0 0 1 -0.3204,-1.19464 2.4435611,2.4435611 0 0 1 0.32271,-1.20277 2.2263557,2.2263557 0 0 1 0.8987,-0.88783 2.4435611,2.4435611 0 0 1 1.18643,-0.31223 z m 0,0.39913 a 2.0715968,2.0715968 0 0 0 -0.98553,0.27151 1.9005475,1.9005475 0 0 0 -0.7494,0.7412 2.041731,2.041731 0 0 0 -0.27134,1.00458 2.0064351,2.0064351 0 0 0 0.27134,0.99371 1.8706818,1.8706818 0 0 0 0.74126,0.74123 1.99829,1.99829 0 0 0 1.99287,0 1.8706818,1.8706818 0 0 0 0.74117,-0.74123 2.001005,2.001005 0 0 0 0.27166,-0.99371 2.041731,2.041731 0 0 0 -0.27166,-1.00458 1.8571064,1.8571064 0 0 0 -0.74937,-0.7412 2.0607366,2.0607366 0 0 0 -0.991,-0.27151 z m -1.05343,3.33141 v -2.58475 h 0.88786 a 2.1286132,2.1286132 0 0 1 0.65974,0.0733 0.6163204,0.6163204 0 0 1 0.3227,0.24976 0.65161634,0.65161634 0 0 1 0.12217,0.37738 0.68691217,0.68691217 0 0 1 -0.20383,0.49417 0.79551486,0.79551486 0 0 1 -0.543,0.2335 0.71134778,0.71134778 0 0 1 0.22029,0.1385 2.8263857,2.8263857 0 0 1 0.37997,0.51314 l 0.31513,0.50502 h -0.50793 l -0.22787,-0.40727 a 2.1150378,2.1150378 0 0 0 -0.43713,-0.60277 0.54301355,0.54301355 0 0 0 -0.33387,-0.0869 h -0.24433 v 1.08603 z m 0.41833,-1.45528 h 0.50467 a 0.81452039,0.81452039 0 0 0 0.4943,-0.1086 0.34209855,0.34209855 0 0 0 0.13303,-0.28507 0.36924922,0.36924922 0 0 0 -0.0649,-0.20637 0.39639993,0.39639993 0 0 0 -0.17683,-0.13303 1.3140929,1.3140929 0 0 0 -0.4209,-0.0461 h -0.4722 z"
+       fill="#231f20"
+       id="path38"
+       style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.271506;stroke-opacity:1" /><g
+       id="g25-6"
+       transform="matrix(6.2853988,0,0,6.2853988,-1167.3083,115.41804)"><rect
+         style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.197361;stroke-dasharray:none;stroke-opacity:1"
+         id="rect2"
+         width="12.321858"
+         height="16.242872"
+         x="242.92274"
+         y="114.41153" /><path
+         style="fill:#807d7f;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+         d="m 244.60925,123.61055 c -0.0945,0.0167 -0.1497,0.0827 -0.16234,0.19822 -0.0126,0.1156 0.357,1.9639 0.357,1.9639 0.18461,1.11319 0.66206,3.23627 0.68131,3.30923 0.0192,0.073 0.10105,0.2847 0.15718,0.35963 0.0561,0.0749 0.11986,0.13858 0.20997,0.16591 0.0901,0.0273 0.942,0.0152 0.99971,0.005 0.0577,-0.01 0.20097,-0.0862 0.2669,-0.16244 0.0659,-0.0762 0.15136,-0.29113 0.16685,-0.36151 0.0155,-0.0704 0.21871,-1.4809 0.39717,-2.73668 0.20601,-1.44961 0.29412,-2.33547 0.30726,-2.51042 0.009,-0.11943 -0.0965,-0.2292 -0.16578,-0.23744 -0.0693,-0.008 -0.2056,0.0321 -0.2305,0.1803 -0.0249,0.14832 -0.34986,2.33565 -0.34986,2.33565 0,0 -0.31798,2.32178 -0.42084,2.43361 -0.10285,0.11183 -0.69353,0.0858 -0.833,0.003 -0.13947,-0.0829 -0.66497,-2.74942 -0.66497,-2.74942 0,0 -0.43491,-1.97129 -0.46503,-2.08001 -0.0301,-0.10872 -0.15648,-0.13352 -0.25103,-0.11682 z"
+         id="path2-7"
+         sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /><path
+         style="fill:#807d7f;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+         d="m 250.3474,123.64362 c -0.0945,0.0167 -0.1497,0.0827 -0.16234,0.19822 -0.0126,0.1156 0.357,1.9639 0.357,1.9639 0.18461,1.11319 0.66206,3.23627 0.68131,3.30923 0.0192,0.073 0.10105,0.2847 0.15718,0.35963 0.0561,0.0749 0.11986,0.13858 0.20997,0.16591 0.0901,0.0273 0.942,0.0152 0.99971,0.005 0.0577,-0.01 0.20097,-0.0862 0.2669,-0.16244 0.0659,-0.0762 0.15136,-0.29113 0.16685,-0.36151 0.0155,-0.0704 0.21871,-1.4809 0.39717,-2.73668 0.20601,-1.44961 0.29412,-2.33547 0.30726,-2.51042 0.009,-0.11943 -0.0965,-0.2292 -0.16578,-0.23744 -0.0693,-0.008 -0.2056,0.0321 -0.2305,0.1803 -0.0249,0.14832 -0.34986,2.33565 -0.34986,2.33565 0,0 -0.31798,2.32178 -0.42084,2.43361 -0.10285,0.11183 -0.69353,0.0858 -0.833,0.003 -0.13947,-0.0829 -0.66497,-2.74942 -0.66497,-2.74942 0,0 -0.43491,-1.97129 -0.46503,-2.08001 -0.0301,-0.10872 -0.15648,-0.13352 -0.25103,-0.11682 z"
+         id="path4"
+         sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /></g><g
+       id="g26-5"
+       transform="matrix(6.2853988,0,0,6.2853988,-1270.6601,115.52694)"><rect
+         style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.197361;stroke-dasharray:none;stroke-opacity:1"
+         id="rect25"
+         width="12.321858"
+         height="16.242872"
+         x="242.92274"
+         y="114.41153" /><path
+         style="fill:#807d7f;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+         d="m 244.60925,123.61055 c -0.0945,0.0167 -0.1497,0.0827 -0.16234,0.19822 -0.0126,0.1156 0.357,1.9639 0.357,1.9639 0.18461,1.11319 0.66206,3.23627 0.68131,3.30923 0.0192,0.073 0.10105,0.2847 0.15718,0.35963 0.0561,0.0749 0.11986,0.13858 0.20997,0.16591 0.0901,0.0273 0.942,0.0152 0.99971,0.005 0.0577,-0.01 0.20097,-0.0862 0.2669,-0.16244 0.0659,-0.0762 0.15136,-0.29113 0.16685,-0.36151 0.0155,-0.0704 0.21871,-1.4809 0.39717,-2.73668 0.20601,-1.44961 0.29412,-2.33547 0.30726,-2.51042 0.009,-0.11943 -0.0965,-0.2292 -0.16578,-0.23744 -0.0693,-0.008 -0.2056,0.0321 -0.2305,0.1803 -0.0249,0.14832 -0.34986,2.33565 -0.34986,2.33565 0,0 -0.31798,2.32178 -0.42084,2.43361 -0.10285,0.11183 -0.69353,0.0858 -0.833,0.003 -0.13947,-0.0829 -0.66497,-2.74942 -0.66497,-2.74942 0,0 -0.43491,-1.97129 -0.46503,-2.08001 -0.0301,-0.10872 -0.15648,-0.13352 -0.25103,-0.11682 z"
+         id="path25"
+         sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /><path
+         style="fill:#807d7f;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+         d="m 250.3474,123.64362 c -0.0945,0.0167 -0.1497,0.0827 -0.16234,0.19822 -0.0126,0.1156 0.357,1.9639 0.357,1.9639 0.18461,1.11319 0.66206,3.23627 0.68131,3.30923 0.0192,0.073 0.10105,0.2847 0.15718,0.35963 0.0561,0.0749 0.11986,0.13858 0.20997,0.16591 0.0901,0.0273 0.942,0.0152 0.99971,0.005 0.0577,-0.01 0.20097,-0.0862 0.2669,-0.16244 0.0659,-0.0762 0.15136,-0.29113 0.16685,-0.36151 0.0155,-0.0704 0.21871,-1.4809 0.39717,-2.73668 0.20601,-1.44961 0.29412,-2.33547 0.30726,-2.51042 0.009,-0.11943 -0.0965,-0.2292 -0.16578,-0.23744 -0.0693,-0.008 -0.2056,0.0321 -0.2305,0.1803 -0.0249,0.14832 -0.34986,2.33565 -0.34986,2.33565 0,0 -0.31798,2.32178 -0.42084,2.43361 -0.10285,0.11183 -0.69353,0.0858 -0.833,0.003 -0.13947,-0.0829 -0.66497,-2.74942 -0.66497,-2.74942 0,0 -0.43491,-1.97129 -0.46503,-2.08001 -0.0301,-0.10872 -0.15648,-0.13352 -0.25103,-0.11682 z"
+         id="path26"
+         sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /></g><g
+       id="g51-3"
+       transform="matrix(5.9927536,0,0,5.9927536,-1496.5776,138.0318)"><rect
+         style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+         id="rect48"
+         width="15.3166"
+         height="20.190588"
+         x="273.14529"
+         y="112.66934" /><g
+         id="g50-5"
+         transform="translate(-0.58384657)"><rect
+           style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+           id="rect49"
+           width="5.1659946"
+           height="0.39191529"
+           x="275.72333"
+           y="112.66934" /><rect
+           style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1"
+           id="rect50"
+           width="5.1659946"
+           height="0.39191529"
+           x="281.88556"
+           y="112.66934" /></g></g><g
+       id="g53-6"
+       transform="matrix(7.865707,0,0,7.865707,-1737.3751,70.838857)"><rect
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke:#000000;stroke-width:0.191735;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect52"
+         width="13.583781"
+         height="13.427604"
+         x="256.38126"
+         y="73.521095"
+         ry="0.78924817" /><rect
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke:#000000;stroke-width:0.15767;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect53"
+         width="11.170449"
+         height="11.042019"
+         x="257.58792"
+         y="74.71389"
+         ry="0.64902818" /><circle
+         style="opacity:1;fill:#3d3d3c;fill-opacity:1;stroke:none;stroke-width:0.2;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="path53-2"
+         cx="267.6095"
+         cy="75.819656"
+         r="0.34726563" /></g><circle
+       style="fill:#d4aa00;fill-opacity:1;stroke:none;stroke-width:0.732714;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="path54-9"
+       cx="778.10205"
+       cy="-147.55446"
+       r="16.364239"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.329291;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle54"
+       cx="778.10205"
+       cy="-147.55446"
+       r="7.3542809"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.329291;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle57"
+       cx="778.23566"
+       cy="-395.5437"
+       r="7.3542809"
+       transform="rotate(90)" /><circle
+       style="fill:#d4aa00;fill-opacity:1;stroke:none;stroke-width:0.732714;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle58"
+       cx="778.31989"
+       cy="-430.38339"
+       r="16.364239"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.329291;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle59"
+       cx="778.31989"
+       cy="-430.38339"
+       r="7.3542809"
+       transform="rotate(90)" /><circle
+       style="fill:#d4aa00;fill-opacity:1;stroke:none;stroke-width:0.732714;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle60"
+       cx="436.40942"
+       cy="-430.38339"
+       r="16.364239"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.329291;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle61"
+       cx="436.40942"
+       cy="-430.38339"
+       r="7.3542809"
+       transform="rotate(90)" /><circle
+       style="fill:#d4aa00;fill-opacity:1;stroke:none;stroke-width:0.732714;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle62"
+       cx="436.33243"
+       cy="-147.95587"
+       r="16.364239"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.329291;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle63"
+       cx="436.33243"
+       cy="-147.95587"
+       r="7.3542809"
+       transform="rotate(90)" /><rect
+       style="fill:#f9f9f9;fill-opacity:0.994681;stroke:#000000;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect63"
+       width="78.240311"
+       height="76.39212"
+       x="457.70947"
+       y="-413.11719"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.60462;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect64"
+       width="58.580177"
+       height="85.995094"
+       x="555.02081"
+       y="-377.72046"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.444595;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect68"
+       width="52.343418"
+       height="52.038944"
+       x="538.79657"
+       y="-244.99104"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.474178;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect69"
+       width="55.969139"
+       height="55.360058"
+       x="618.9234"
+       y="-219.99829"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.339103;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect70"
+       width="39.959953"
+       height="39.655487"
+       x="758.67126"
+       y="-259.36032"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.19759;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect71"
+       width="23.620352"
+       height="22.777405"
+       x="459.84698"
+       y="-289.98123"
+       ry="0"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.329291;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle71"
+       cx="436.617"
+       cy="-182.69839"
+       r="7.3542809"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect72"
+       width="29.532572"
+       height="29.485155"
+       x="458.34912"
+       y="-444.77344"
+       ry="3.3385615"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect73"
+       width="29.532572"
+       height="29.485155"
+       x="488.24872"
+       y="-444.77344"
+       ry="3.3385615"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect74"
+       width="29.532572"
+       height="29.485155"
+       x="518.14832"
+       y="-444.77344"
+       ry="3.3385615"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect75"
+       width="29.532572"
+       height="29.485155"
+       x="548.04785"
+       y="-444.77344"
+       ry="3.3385615"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect76"
+       width="29.532572"
+       height="29.485155"
+       x="577.94745"
+       y="-444.77344"
+       ry="3.3385615"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect77"
+       width="29.532572"
+       height="29.485155"
+       x="607.84705"
+       y="-444.77344"
+       ry="3.3385615"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect78"
+       width="29.532572"
+       height="29.485155"
+       x="637.74664"
+       y="-444.77344"
+       ry="3.3385615"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect79"
+       width="29.532572"
+       height="29.485155"
+       x="667.64624"
+       y="-444.77344"
+       ry="3.3385615"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect80"
+       width="29.532572"
+       height="29.485155"
+       x="697.54584"
+       y="-444.77344"
+       ry="3.3385615"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect81"
+       width="29.532572"
+       height="29.485155"
+       x="727.44543"
+       y="-444.77344"
+       ry="3.3385615"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle96"
+       cx="569.86359"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><rect
+       style="fill:#323232;fill-opacity:1;stroke:#323232;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect125"
+       width="29.532572"
+       height="29.485155"
+       x="763.52344"
+       y="-196.75089"
+       ry="3.3385615"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.109885;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle130"
+       cx="865.4151"
+       cy="-347.13458"
+       r="2.4541388"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.109885;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle131"
+       cx="910.11639"
+       cy="-352.69373"
+       r="2.4541388"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.109885;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle132"
+       cx="910.19257"
+       cy="-341.42322"
+       r="2.4541388"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.109885;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle133"
+       cx="865.30743"
+       cy="-244.01622"
+       r="2.4541388"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.109885;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle134"
+       cx="910.00873"
+       cy="-249.57536"
+       r="2.4541388"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.109885;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle135"
+       cx="910.0849"
+       cy="-238.30489"
+       r="2.4541388"
+       transform="rotate(90)" /><g
+       id="g166"
+       transform="matrix(0,3.2929063,-3.2929063,0,750.25901,328.18172)"><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect141"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="162.80792"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect142"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="165.46861"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect143"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="167.202"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect144"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="168.90266"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect145"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="170.73416"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect146"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="172.36943"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect147"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="174.20093"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect148"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="175.96788"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect149"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="177.70126"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect150"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="179.40193"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect151"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="181.23343"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect152"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="182.8687"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect153"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="184.7002"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect154"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="164.68233"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect155"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="166.41571"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect156"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="168.11638"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect157"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="169.94788"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect158"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="171.58315"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect159"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="173.41464"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect160"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="175.18159"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect161"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="176.91498"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect162"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="178.61565"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect163"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="180.44714"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect164"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="182.08241"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.234942;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect165"
+         width="2.1381454"
+         height="1.0753648"
+         x="110.72427"
+         y="184.72333"
+         ry="0.24861264" /><rect
+         style="opacity:1;fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.21301;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect166"
+         width="1.7575855"
+         height="1.0753648"
+         x="115.7618"
+         y="162.80792"
+         ry="0.24861264" /><g
+         id="g139"
+         transform="matrix(0,1.3594399,-1.3594399,0,236.9793,-166.42095)"><g
+           id="g138"
+           transform="translate(-0.38973521,-2.2201081)"><rect
+             style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.364153;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+             id="rect137"
+             width="20.465067"
+             height="2.0277274"
+             x="240.78256"
+             y="91.110252" /><rect
+             style="opacity:1;fill:#c5c2c2;fill-opacity:1;stroke:none;stroke-width:0.237964;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+             id="rect138"
+             width="15.423572"
+             height="1.1489341"
+             x="243.30331"
+             y="91.989044" /></g><path
+           id="rect135"
+           style="opacity:1;fill:#5b5a5c;fill-opacity:1;stroke:#444544;stroke-width:0.180048;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           d="m 239.97072,89.398918 v 2.16576 h 21.30929 v -2.16576 h -3.47214 v 0.995805 h -14.31954 v -0.995805 z" /></g></g><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect167"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-214.14778"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect168"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-205.38637"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect169"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-199.6785"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect170"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-194.07837"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect171"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-188.04741"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect172"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-182.66263"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect173"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-176.63168"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect174"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-170.81326"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect175"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-165.10541"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect176"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-159.50526"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect177"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-153.4743"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect178"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-148.08952"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect179"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-142.05858"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect180"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-207.97554"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect181"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-202.26767"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect182"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-196.66753"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect183"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-190.63658"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect184"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-185.25179"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect185"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-179.22084"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect186"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-173.40244"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect187"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-167.69456"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect188"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-162.09442"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect189"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-156.06348"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect190"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-150.67868"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.773642;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect191"
+       width="7.0407128"
+       height="3.5410757"
+       x="729.18744"
+       y="-141.98241"
+       ry="0.81865811"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.701422;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect192"
+       width="5.7875643"
+       height="3.5410757"
+       x="745.77551"
+       y="-214.14778"
+       ry="0.81865811"
+       transform="rotate(90)" /><g
+       id="g195"
+       transform="matrix(-4.4765082,0,0,-4.4765082,1298.2676,1144.9334)"><g
+         id="g194"
+         transform="translate(-0.38973521,-2.2201081)"><rect
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.364153;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="rect193"
+           width="20.465067"
+           height="2.0277274"
+           x="240.78256"
+           y="91.110252" /><rect
+           style="opacity:1;fill:#c5c2c2;fill-opacity:1;stroke:none;stroke-width:0.237964;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="rect194"
+           width="15.423572"
+           height="1.1489341"
+           x="243.30331"
+           y="91.989044" /></g><path
+         id="path194"
+         style="opacity:1;fill:#5b5a5c;fill-opacity:1;stroke:#444544;stroke-width:0.180048;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         d="m 239.97072,89.398918 v 2.16576 h 21.30929 v -2.16576 h -3.47214 v 0.995805 h -14.31954 v -0.995805 z" /></g><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect196"
+       width="6.7433615"
+       height="3.271837"
+       x="437.08603"
+       y="-329.75912"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect197"
+       width="6.7433615"
+       height="3.271837"
+       x="437.08603"
+       y="-320.93237"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect198"
+       width="6.7433615"
+       height="3.271837"
+       x="437.08603"
+       y="-315.41132"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect199"
+       width="6.7433615"
+       height="3.271837"
+       x="437.08603"
+       y="-309.20493"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect200"
+       width="6.7433615"
+       height="3.271837"
+       x="437.08603"
+       y="-303.4935"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect201"
+       width="6.7433615"
+       height="3.271837"
+       x="437.08603"
+       y="-297.93439"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect202"
+       width="6.7433615"
+       height="3.271837"
+       x="437.08603"
+       y="-292.33722"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect203"
+       width="6.7433615"
+       height="3.271837"
+       x="437.08603"
+       y="-286.1308"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect204"
+       width="6.7433615"
+       height="3.271837"
+       x="437.08603"
+       y="-280.53363"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect205"
+       width="6.7433615"
+       height="3.271837"
+       x="437.08603"
+       y="-274.36533"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect206"
+       width="6.7433615"
+       height="3.271837"
+       x="422.45825"
+       y="-274.2511"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect207"
+       width="6.7433615"
+       height="3.271837"
+       x="422.2298"
+       y="-283.65591"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect208"
+       width="6.7433615"
+       height="3.271837"
+       x="422.2298"
+       y="-289.32925"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect209"
+       width="6.7433615"
+       height="3.271837"
+       x="422.2298"
+       y="-294.92642"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect210"
+       width="6.7433615"
+       height="3.271837"
+       x="422.2298"
+       y="-300.56171"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect211"
+       width="6.7433615"
+       height="3.271837"
+       x="422.2298"
+       y="-306.6539"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect212"
+       width="6.7433615"
+       height="3.271837"
+       x="422.2298"
+       y="-312.28915"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect213"
+       width="6.7433615"
+       height="3.271837"
+       x="422.2298"
+       y="-317.77213"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect214"
+       width="6.7433615"
+       height="3.271837"
+       x="422.2298"
+       y="-323.52161"
+       ry="0.7564131"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.727775;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect215"
+       width="6.7433615"
+       height="3.271837"
+       x="422.2298"
+       y="-329.65182"
+       ry="0.7564131"
+       transform="rotate(90)" /><g
+       id="g141"
+       transform="matrix(-3.7052236,0,0,-3.7052236,1229.6387,767.34797)"><g
+         id="g140"
+         transform="translate(-0.38973521,-2.2201081)"><rect
+           style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.364153;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="rect139"
+           width="20.465067"
+           height="2.0277274"
+           x="240.78256"
+           y="91.110252" /><rect
+           style="opacity:1;fill:#c5c2c2;fill-opacity:1;stroke:none;stroke-width:0.237964;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="rect140"
+           width="15.423572"
+           height="1.1489341"
+           x="243.30331"
+           y="91.989044" /></g><path
+         id="path140"
+         style="opacity:1;fill:#5b5a5c;fill-opacity:1;stroke:#444544;stroke-width:0.180048;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         d="m 239.97072,89.398918 v 2.16576 h 21.30929 v -2.16576 h -3.47214 v 0.995805 h -14.31954 v -0.995805 z" /></g><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.678174;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect310"
+       width="6.7433615"
+       height="2.8410554"
+       x="158.74263"
+       y="461.23669"
+       ry="0.65682107" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.678174;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect311"
+       width="6.7433615"
+       height="2.8410554"
+       x="158.74263"
+       y="465.40256"
+       ry="0.65682107" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.678174;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect312"
+       width="6.7433615"
+       height="2.8410554"
+       x="158.74263"
+       y="499.30704"
+       ry="0.65682107" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.678174;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect313"
+       width="6.7433615"
+       height="2.8410554"
+       x="158.74263"
+       y="495.1412"
+       ry="0.65682107" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.550465;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect314"
+       width="6.7433615"
+       height="1.8717966"
+       x="158.74263"
+       y="491.94458"
+       ry="0.43273899" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.550465;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect315"
+       width="6.7433615"
+       height="1.8717966"
+       x="158.74263"
+       y="488.74799"
+       ry="0.43273899" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.550465;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect316"
+       width="6.7433615"
+       height="1.8717966"
+       x="158.74263"
+       y="485.55139"
+       ry="0.43273899" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.550465;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect317"
+       width="6.7433615"
+       height="1.8717966"
+       x="158.74263"
+       y="482.3548"
+       ry="0.43273899" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.550465;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect318"
+       width="6.7433615"
+       height="1.8717966"
+       x="158.74263"
+       y="479.1582"
+       ry="0.43273899" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.550465;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect319"
+       width="6.7433615"
+       height="1.8717966"
+       x="158.74263"
+       y="475.96161"
+       ry="0.43273899" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.550465;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect320"
+       width="6.7433615"
+       height="1.8717966"
+       x="158.74263"
+       y="472.76501"
+       ry="0.43273899" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.550465;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect321"
+       width="6.7433615"
+       height="1.8717966"
+       x="158.74263"
+       y="469.56842"
+       ry="0.43273899" /><g
+       id="g322"
+       transform="matrix(0,3.2929063,-3.2929063,0,750.25901,328.18172)"><g
+         id="g321"><rect
+           style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.206093;stroke-dasharray:none;stroke-opacity:1"
+           id="rect51"
+           width="15.526677"
+           height="14.056115"
+           x="-54.381939"
+           y="-193.01477"
+           transform="scale(-1)"
+           ry="0.6541056" /><g
+           id="g129"
+           transform="translate(-0.53101824)"><path
+             style="fill:#807d7f;fill-opacity:1;stroke:#807d7f;stroke-width:0.0766388;stroke-dasharray:none;stroke-opacity:1"
+             d="m 50.473736,180.92483 c -0.0046,-0.0383 -0.0274,-0.0615 -0.0692,-0.0686 -0.04187,-0.007 -0.721546,0.11136 -0.721546,0.11136 -0.408664,0.0559 -1.190374,0.21306 -1.217287,0.21959 -0.02696,0.007 -0.105496,0.0361 -0.133805,0.0573 -0.02825,0.0212 -0.05265,0.0459 -0.06426,0.082 -0.01143,0.0358 -0.02257,0.37889 -0.01973,0.40229 0.0027,0.0234 0.02773,0.0824 0.05432,0.11001 0.02651,0.0277 0.103238,0.0656 0.128561,0.0732 0.02535,0.008 0.535195,0.11244 0.989164,0.20492 0.524027,0.10694 0.844957,0.15691 0.908411,0.16512 0.04334,0.006 0.08522,-0.0351 0.08948,-0.0628 0.0045,-0.0278 -0.0078,-0.0831 -0.06146,-0.0959 -0.0535,-0.0133 -0.844004,-0.17929 -0.844004,-0.17929 0,0 -0.839545,-0.16624 -0.878376,-0.20961 -0.03883,-0.0432 -0.01859,-0.28055 0.01439,-0.33529 0.03275,-0.0548 1.013165,-0.22228 1.013165,-0.22228 0,0 0.725665,-0.14255 0.765794,-0.15282 0.04017,-0.0105 0.05145,-0.0607 0.04708,-0.0991 z"
+             id="path51-1"
+             sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /><path
+             style="fill:#807d7f;fill-opacity:1;stroke:#807d7f;stroke-width:0.0766388;stroke-dasharray:none;stroke-opacity:1"
+             d="m 43.825602,182.12859 c 0.0048,0.0383 0.02779,0.0613 0.06963,0.0682 0.04191,0.007 0.720826,-0.11591 0.720826,-0.11591 0.408304,-0.0584 1.189005,-0.22057 1.215876,-0.22727 0.02692,-0.007 0.105265,-0.0367 0.133439,-0.0581 0.02813,-0.0214 0.05239,-0.0464 0.06374,-0.0824 0.01121,-0.0359 0.02018,-0.37901 0.01719,-0.40239 -0.0029,-0.0233 -0.02825,-0.0822 -0.05501,-0.10967 -0.02669,-0.0276 -0.10365,-0.065 -0.12902,-0.0724 -0.0254,-0.008 -0.535898,-0.10896 -0.990439,-0.19867 -0.524691,-0.10362 -0.845929,-0.15157 -0.909435,-0.15937 -0.04338,-0.006 -0.08499,0.0356 -0.08908,0.0634 -0.0043,0.0279 0.0084,0.0831 0.06207,0.0955 0.05358,0.013 0.84512,0.17395 0.84512,0.17395 0,0 0.84058,0.16094 0.879682,0.20406 0.0391,0.043 0.02035,0.28043 -0.01227,0.33537 -0.03241,0.055 -1.011742,0.22867 -1.011742,0.22867 0,0 -0.724749,0.14714 -0.764814,0.15767 -0.0401,0.0107 -0.05107,0.0611 -0.04645,0.0994 z"
+             id="path52-2"
+             sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /></g><ellipse
+           style="fill:#999999;fill-opacity:1;stroke:#807d7f;stroke-width:0.185179;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="path129"
+           cx="43.380943"
+           cy="183.92206"
+           rx="0.77057284"
+           ry="0.26179805" /></g></g><ellipse
+       style="fill:#999999;fill-opacity:1;stroke:#807d7f;stroke-width:0.609777;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="ellipse129"
+       cx="492.3537"
+       cy="-144.62091"
+       rx="2.5374241"
+       ry="0.86207646"
+       transform="rotate(90)" /><rect
+       style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect323"
+       width="25.093033"
+       height="19.06209"
+       x="515.07788"
+       y="-163.83131"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.539869;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect324"
+       width="20.569826"
+       height="15.626005"
+       x="517.33948"
+       y="-162.11327"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.720616;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect325"
+       width="30.042925"
+       height="19.06209"
+       x="591.32629"
+       y="-158.66193"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.609787;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect326"
+       width="26.242893"
+       height="15.626005"
+       x="593.22626"
+       y="-156.94388"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:0.411985;stroke-dasharray:none;stroke-opacity:1"
+       id="rect13"
+       width="13.853743"
+       height="22.948328"
+       x="529.35223"
+       y="-332.32498"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect330"
+       width="29.44805"
+       height="13.616821"
+       x="513.43695"
+       y="-143.58694"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.78846;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect331"
+       width="35.966171"
+       height="19.06209"
+       x="409.3183"
+       y="799.48541"
+       ry="0" /><rect
+       style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.675718;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect332"
+       width="32.224476"
+       height="15.626005"
+       x="411.18915"
+       y="801.20349"
+       ry="0" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:1.24866;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect336"
+       width="11.769404"
+       height="5.5183263"
+       x="420.33694"
+       y="-411.53857"
+       ry="1.2757769"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:1.24866;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect337"
+       width="11.769404"
+       height="5.5183263"
+       x="420.33694"
+       y="-394.32822"
+       ry="1.2757769"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:1.24866;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect338"
+       width="11.769404"
+       height="5.5183263"
+       x="426.52945"
+       y="-402.93338"
+       ry="1.2757769"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:1.24866;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect339"
+       width="11.769404"
+       height="5.5183263"
+       x="419.99222"
+       y="-364.90704"
+       ry="1.2757769"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:1.24866;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect340"
+       width="11.769404"
+       height="5.5183263"
+       x="419.99222"
+       y="-347.69666"
+       ry="1.2757769"
+       transform="rotate(90)" /><rect
+       style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:1.24866;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect341"
+       width="11.769404"
+       height="5.5183263"
+       x="426.18469"
+       y="-356.30185"
+       ry="1.2757769"
+       transform="rotate(90)" /><rect
+       style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:0.455567;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect342"
+       width="15.400446"
+       height="14.861968"
+       x="418.1767"
+       y="-360.97366"
+       ry="1.9385177"
+       transform="rotate(90)" /><circle
+       style="fill:#f9f9f9;fill-opacity:1;stroke:#d4aa00;stroke-width:1.83293;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle342"
+       cx="425.87692"
+       cy="-353.54269"
+       r="3.3459046"
+       transform="rotate(90)" /><path
+       d="m 296.89516,624.4064 c 0,-0.59127 0.36841,-0.98607 0.88724,-0.98607 0.51883,0 0.88721,0.3948 0.88721,0.98607 v 2.41545 a 2.5677183,2.5677183 0 0 1 1.68847,-0.61399 c 1.91015,0 2.85877,1.78672 2.85877,3.51204 0,1.6762 -1.13345,3.34012 -2.92078,3.34012 -0.60355,0 -1.29368,-0.27137 -1.62646,-0.81354 -0.11064,0.46847 -0.39416,0.73679 -0.88721,0.73679 -0.51761,0 -0.88724,-0.39418 -0.88724,-0.98607 z m 3.16699,7.02408 c 0.92405,0 1.38025,-0.9609 1.38025,-1.78672 0,-0.8381 -0.4562,-1.81128 -1.38025,-1.81128 -0.94862,0 -1.39254,0.88722 -1.39254,1.74988 0,0.86266 0.41935,1.84812 1.39254,1.84812 z"
+       fill="#a97f2c"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path1-7"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 305.21354,630.22276 c 0.12282,0.87494 0.85039,1.28201 1.67622,1.28201 0.91177,0 1.54048,-0.71468 2.00897,-0.71468 0.38191,0 0.72697,0.3819 0.72697,0.7638 0,0.76381 -1.57737,1.50367 -2.89618,1.50367 -1.99612,0 -3.32725,-1.45455 -3.32725,-3.4138 0,-1.799 1.30656,-3.43836 3.17924,-3.43836 1.92243,0 3.19277,1.74988 3.19277,3.22899 0,0.52988 -0.23446,0.78837 -0.7767,0.78837 z m 2.78507,-1.17948 c -0.0981,-0.7767 -0.59124,-1.3557 -1.4171,-1.3557 -0.78836,0 -1.31825,0.60355 -1.40479,1.3557 z"
+       fill="#a97f2c"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path2-3"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 316.34218,631.82466 c 0,0.4562 0,1.15861 -0.8504,1.15861 -0.51758,0 -0.72697,-0.28365 -0.85039,-0.75153 -0.45617,0.54216 -1.01063,0.82582 -1.68844,0.82582 -1.66331,0 -2.93246,-1.41771 -2.93246,-3.4138 0,-1.94697 1.30596,-3.43836 2.93246,-3.43836 0.65328,0 1.29428,0.25912 1.68844,0.81354 a 0.84178421,0.84178421 0 0 1 0.85039,-0.73679 c 0.8504,0 0.8504,0.70241 0.8504,1.15799 z m -3.14242,-0.39418 c 0.92405,0 1.36797,-0.93634 1.36797,-1.78672 0,-0.85038 -0.42979,-1.81128 -1.36797,-1.81128 -0.97382,0 -1.40482,0.9609 -1.40482,1.81128 0,0.85038 0.44329,1.78672 1.40482,1.78672 z"
+       fill="#a97f2c"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path3"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 323.04696,632.39199 c 0,2.13179 -1.39254,3.20382 -3.41316,3.20382 -0.7276,0 -2.79798,-0.35734 -2.79798,-1.33114 0,-0.33217 0.36841,-0.77608 0.71528,-0.77608 0.56674,0 1.19483,0.55259 2.21777,0.55259 0.86265,0 1.50364,-0.50532 1.50364,-1.40482 v -0.41874 h -0.0231 c -0.36841,0.54216 -0.97381,0.8381 -1.78673,0.8381 -1.86102,0 -2.73594,-1.63936 -2.73594,-3.40152 0,-1.78672 1.13342,-3.45064 2.92074,-3.45064 0.60356,0 1.29368,0.27137 1.6265,0.81354 0.11097,-0.46848 0.39416,-0.73679 0.88721,-0.73679 0.51758,0 0.8872,0.39418 0.8872,0.98239 z m -3.16573,-4.55951 c -0.92406,0 -1.38026,0.9609 -1.38026,1.78672 0,0.94862 0.4562,1.81128 1.38026,1.81128 0.94862,0 1.39253,-0.88722 1.39253,-1.74988 0,-0.86266 -0.41997,-1.84812 -1.39253,-1.84812 z"
+       fill="#a97f2c"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path4-8"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 323.60327,624.4064 c 0,-0.59127 0.36837,-0.98607 0.8872,-0.98607 0.5188,0 0.88721,0.3948 0.88721,0.98607 v 7.5908 c 0,0.59189 -0.36841,0.98607 -0.88721,0.98607 -0.51883,0 -0.8872,-0.39418 -0.8872,-0.98607 z"
+       fill="#a97f2c"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path5"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 327.66974,630.22276 c 0.12283,0.87494 0.85036,1.28201 1.67619,1.28201 0.91177,0 1.54049,-0.71468 2.00838,-0.71468 0.3825,0 0.72756,0.3819 0.72756,0.7638 0,0.76381 -1.57796,1.50367 -2.89621,1.50367 -1.99668,0 -3.32721,-1.45455 -3.32721,-3.4138 0,-1.799 1.30596,-3.43836 3.17926,-3.43836 1.9224,0 3.19274,1.74988 3.19274,3.22899 0,0.52988 -0.2338,0.78837 -0.77607,0.78837 z m 2.78508,-1.17948 c -0.0981,-0.7767 -0.59131,-1.3557 -1.41711,-1.3557 -0.78838,0 -1.31887,0.60355 -1.40482,1.3557 z"
+       fill="#a97f2c"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path6"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 332.91936,624.4064 c 0,-0.59127 0.36838,-0.98607 0.88721,-0.98607 0.51883,0 0.88724,0.3948 0.88724,0.98607 v 2.41545 a 2.5677183,2.5677183 0 0 1 1.68847,-0.61399 c 1.90952,0 2.85873,1.78672 2.85873,3.51204 0,1.6762 -1.13401,3.34012 -2.92074,3.34012 -0.60355,0 -1.29368,-0.27137 -1.62646,-0.81354 -0.11097,0.46847 -0.3942,0.73679 -0.88724,0.73679 -0.51758,0 -0.88721,-0.39418 -0.88721,-0.98607 z m 3.16695,7.02408 c 0.92409,0 1.38029,-0.9609 1.38029,-1.78672 0,-0.8381 -0.4562,-1.81128 -1.38029,-1.81128 -0.94921,0 -1.3925,0.88722 -1.3925,1.74988 0,0.86266 0.41872,1.84812 1.3925,1.84812 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path7"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 345.96977,629.64376 c 0,1.84873 -1.26912,3.4138 -3.17923,3.4138 -1.91015,0 -3.17927,-1.56507 -3.17927,-3.4138 0,-1.799 1.30597,-3.43836 3.17927,-3.43836 1.87327,0 3.17923,1.63936 3.17923,3.43836 z m -4.58405,0 c 0,0.85038 0.44329,1.78672 1.40482,1.78672 0.96153,0 1.40482,-0.93634 1.40482,-1.78672 0,-0.85038 -0.42983,-1.81128 -1.40482,-1.81128 -0.97503,0 -1.40482,0.9609 -1.40482,1.81128 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path8"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 352.66168,631.82466 c 0,0.4562 0,1.15861 -0.85036,1.15861 -0.51761,0 -0.72697,-0.28365 -0.85039,-0.75153 -0.45557,0.54216 -1.01003,0.82582 -1.68788,0.82582 -1.6639,0 -2.93302,-1.41771 -2.93302,-3.4138 0,-1.94697 1.30596,-3.43836 2.93302,-3.43836 0.65269,0 1.29368,0.25912 1.68788,0.81354 a 0.8430122,0.8430122 0 0 1 0.84792,-0.73863 c 0.8504,0 0.8504,0.7024 0.8504,1.15799 z m -3.14242,-0.39418 c 0.92099,0 1.36801,-0.93634 1.36801,-1.78672 0,-0.85038 -0.42983,-1.81128 -1.36801,-1.81128 -0.97378,0 -1.40479,0.9609 -1.40479,1.81128 0,0.85038 0.44392,1.78672 1.40479,1.78672 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path9"
+       style="opacity:0.8;fill:none;stroke:#f6f4f5;stroke-opacity:1" /><path
+       d="m 353.15964,627.16691 c 0,-0.59188 0.46785,-0.88721 0.91177,-0.88721 0.46789,0 0.85961,0.17254 0.85961,0.73679 h 0.0231 c 0.33278,-0.4912 0.69013,-0.73679 1.24456,-0.73679 0.42979,0 0.85958,0.30699 0.85958,0.94862 0,0.57899 -0.52987,0.61399 -1.05976,0.86265 -0.52986,0.24868 -1.07201,0.48076 -1.07201,1.18317 v 2.72306 c 0,0.59189 -0.36841,0.98607 -0.88724,0.98607 -0.51879,0 -0.88108,-0.39418 -0.88108,-0.98607 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path10"
+       style="opacity:0.8;fill:none;stroke:#f6f4f5;stroke-opacity:1" /><path
+       d="m 363.24877,631.9972 c 0,0.59189 -0.36841,0.98607 -0.88721,0.98607 -0.4912,0 -0.77673,-0.27078 -0.88724,-0.73679 -0.33278,0.54215 -1.02291,0.81354 -1.62709,0.81354 -1.7867,0 -2.92074,-1.66392 -2.92074,-3.34012 0,-1.72532 0.94921,-3.51204 2.85936,-3.51204 a 2.5689462,2.5689462 0 0 1 1.68847,0.61399 v -2.41545 c 0,-0.59127 0.36841,-0.98607 0.88724,-0.98607 0.5188,0 0.88721,0.3948 0.88721,0.98607 z m -3.16698,-4.16472 c -0.92469,0 -1.38026,0.97318 -1.38026,1.81128 0,0.82582 0.45557,1.78672 1.38026,1.78672 0.97318,0 1.39253,-0.98239 1.39253,-1.84812 0,-0.86573 -0.44391,-1.74988 -1.39253,-1.74988 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path11"
+       style="opacity:0.8;fill:none;stroke:#f6f4f5;stroke-opacity:1" /><path
+       d="m 364.97531,631.13515 a 0.96151287,0.96151287 0 1 1 -0.9615,0.9609 0.96212686,0.96212686 0 0 1 0.9615,-0.9609 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path12"
+       style="opacity:0.8;fill:none;stroke:#f6f4f5;stroke-opacity:1" /><path
+       d="m 372.49489,629.64376 c 0,1.84873 -1.26912,3.4138 -3.17927,3.4138 -1.91011,0 -3.17986,-1.56507 -3.17986,-3.4138 0,-1.799 1.30656,-3.43836 3.17986,-3.43836 1.8733,0 3.17927,1.63936 3.17927,3.43836 z m -4.58409,0 c 0,0.85038 0.44333,1.78672 1.40482,1.78672 0.96153,0 1.40482,-0.93634 1.40482,-1.78672 0,-0.85038 -0.42979,-1.81128 -1.40482,-1.81128 -0.97503,0 -1.40482,0.9609 -1.40482,1.81128 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path13"
+       style="opacity:0.8;fill:none;stroke:#f6f4f5;stroke-opacity:1" /><path
+       d="m 372.91487,627.16691 c 0,-0.59188 0.46845,-0.88721 0.91177,-0.88721 0.46848,0 0.86264,0.17254 0.86264,0.73679 h 0.0231 c 0.33282,-0.4912 0.69013,-0.73679 1.24521,-0.73679 0.4298,0 0.85959,0.30699 0.85959,0.94862 0,0.57899 -0.5299,0.61399 -1.05976,0.86265 -0.5299,0.24868 -1.07204,0.48076 -1.07204,1.18317 v 2.72306 c 0,0.59189 -0.36838,0.98607 -0.88721,0.98607 -0.51883,0 -0.88724,-0.39418 -0.88724,-0.98607 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path14"
+       style="opacity:0.8;fill:none;stroke:#f6f4f5;stroke-opacity:1" /><path
+       d="m 383.04451,632.39199 c 0,2.13179 -1.39254,3.20382 -3.41317,3.20382 -0.72697,0 -2.79739,-0.35734 -2.79739,-1.33114 0,-0.33217 0.36841,-0.77608 0.71473,-0.77608 0.56671,0 1.19542,0.55259 2.21774,0.55259 0.86264,0 1.50364,-0.50532 1.50364,-1.40482 v -0.41874 h -0.0231 c -0.36841,0.54216 -0.97378,0.8381 -1.78673,0.8381 -1.86102,0 -2.73595,-1.63936 -2.73595,-3.40152 0,-1.78672 1.13405,-3.45064 2.92078,-3.45064 0.60355,0 1.29368,0.27137 1.62646,0.81354 0.11097,-0.46848 0.3942,-0.73679 0.88721,-0.73679 0.51761,0 0.88721,0.39418 0.88721,0.98239 z m -3.16699,-4.55951 c -0.92406,0 -1.38026,0.9609 -1.38026,1.78672 0,0.94862 0.4562,1.81128 1.38026,1.81128 0.94925,0 1.39254,-0.88722 1.39254,-1.74988 0,-0.86266 -0.41936,-1.84812 -1.39254,-1.84812 z"
+       fill="#f26322"
+       stroke="#231f20"
+       stroke-width="0.429793"
+       id="path15"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 294.06711,624.66428 c 0.33341,-1.82233 -1.22552,-3.2732 -3.59615,-4.08612 -0.63856,-2.25765 -2.08266,-3.59984 -4.19542,-3.59984 -1.22796,0 -2.31719,0.48137 -3.01716,1.22798 -1.5718,0.0982 -1.58287,1.9482 -2.95515,4.59328 -1.07385,2.07161 -0.22886,4.21752 2.36266,4.5503 -0.40464,0.93634 -0.614,2.02127 -0.63488,3.11725 -1.31456,-1.50613 -0.95415,-3.06198 -1.69094,-3.02023 -0.92099,0.0509 0.25718,3.31556 1.89171,5.13543 a 8.166105,8.166105 0 0 0 0.24434,0.88169 c -0.5704,0.19708 -1.16658,0.78837 -1.16658,1.47359 0,0.77977 0.53417,0.85222 1.22799,0.85959 a 1.2801751,1.2801751 0 0 0 -0.0362,0.27384 0.63732459,0.63732459 0 0 0 0.24565,0.52742 c 0.17452,0.13263 0.42182,0.19955 0.76748,0.21245 0.0504,0 0.1001,0 0.14851,0 v 0 c 0.73066,0 1.23289,-0.20445 1.55033,-0.49119 a 1.3028928,1.3028928 0 0 0 0.44513,-0.9523 0.93695309,0.93695309 0 0 0 -0.0263,-0.22349 1.0935213,1.0935213 0 0 1 -0.0231,-0.1228 10.356831,10.356831 0 0 1 1.7732,-0.0112 c -0.01,0.0614 -0.0165,0.1087 -0.0231,0.1357 a 0.85959001,0.85959001 0 0 0 -0.0231,0.2063 c 0,0.30146 0.13764,0.66741 0.46664,0.95967 0.32896,0.29228 0.84607,0.50102 1.58714,0.50102 v 0 c 0.0484,0 0.0981,0 0.14851,0 0.33707,-0.0128 0.57837,-0.0761 0.74967,-0.20324 a 0.61399287,0.61399287 0 0 0 0.24565,-0.51146 1.204654,1.204654 0 0 0 -0.0431,-0.29902 c 0.70547,-0.005 1.25437,-0.0694 1.25437,-0.85959 0,-0.68522 -0.5974,-1.27649 -1.16658,-1.47358 0.60477,-1.87882 0.55258,-4.06525 -0.1057,-5.80101 l -0.0395,-0.025 a 6.1276488,6.1276488 0 0 0 1.83771,-0.66434 c 0.23083,0.3684 0.45616,0.73372 0.98912,0.65759 0.80248,-0.11483 1.14079,-1.31517 0.45314,-2.02127 a 2.8968184,2.8968184 0 0 0 0.3524,-0.94732 z"
+       fill="#ffffff"
+       stroke="#231f20"
+       stroke-width="0.491196"
+       id="path16"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 294.18994,624.54148 c 0.33337,-1.82233 -1.22555,-3.2732 -3.59618,-4.08612 -0.63856,-2.25765 -2.08267,-3.59984 -4.1954,-3.59984 -1.22799,0 -2.31721,0.48137 -3.01719,1.22798 -1.5718,0.0982 -1.58286,1.9482 -2.95512,4.59329 -1.07388,2.07161 -0.22918,4.21751 2.36263,4.55029 -0.40463,0.93635 -0.61396,2.02127 -0.63487,3.11725 -1.31456,-1.50613 -0.95416,-3.06199 -1.69094,-3.02023 -0.92096,0.051 0.25717,3.31556 1.89174,5.13543 a 8.166105,8.166105 0 0 0 0.24433,0.88169 c -0.57043,0.19709 -1.16661,0.78837 -1.16661,1.47359 0,0.77977 0.53418,0.85222 1.22799,0.85959 a 1.2801751,1.2801751 0 0 0 -0.0362,0.27384 0.63732459,0.63732459 0 0 0 0.24565,0.52742 c 0.17453,0.13263 0.42182,0.19955 0.76751,0.21245 0.0504,0 0.10011,0 0.14851,0 v 0 c 0.73066,0 1.2329,-0.20445 1.55034,-0.49119 a 1.3028928,1.3028928 0 0 0 0.44513,-0.9523 0.93695309,0.93695309 0 0 0 -0.0263,-0.22349 1.0935213,1.0935213 0 0 1 -0.0231,-0.1228 10.356831,10.356831 0 0 1 1.77323,-0.0112 c -0.01,0.0614 -0.0165,0.10866 -0.0231,0.13567 a 0.85959001,0.85959001 0 0 0 -0.0231,0.2063 c 0,0.30146 0.13764,0.66741 0.4666,0.95967 0.32896,0.29224 0.84608,0.50102 1.58718,0.50102 v 0 c 0.0484,0 0.0981,0 0.14851,0 0.3371,-0.0128 0.5784,-0.0761 0.7497,-0.20324 a 0.61399287,0.61399287 0 0 0 0.24565,-0.51146 1.204654,1.204654 0 0 0 -0.0431,-0.29899 c 0.70547,-0.005 1.25437,-0.0694 1.25437,-0.85959 0,-0.68522 -0.5974,-1.2765 -1.16658,-1.47359 0.60478,-1.87882 0.55258,-4.06525 -0.1057,-5.801 l -0.0395,-0.025 a 6.1276488,6.1276488 0 0 0 1.83768,-0.66434 c 0.23083,0.36839 0.45623,0.73372 0.98915,0.65758 0.80248,-0.11482 1.1408,-1.31517 0.45314,-2.02126 a 2.8968184,2.8968184 0 0 0 0.35356,-0.94739 z"
+       fill="#ffffff"
+       stroke="#231f20"
+       stroke-width="0.306998"
+       id="path17"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 282.15381,630.3431 c -1.31456,-1.5049 -0.95416,-3.06076 -1.69094,-3.019 -0.92096,0.051 0.25717,3.31556 1.89174,5.13543 0.0649,0.29824 0.14653,0.5926 0.24433,0.88169 -0.57043,0.19709 -1.16661,0.78837 -1.16661,1.47359 0,0.84793 0.63181,0.85959 1.4122,0.85959 0.36831,-0.002 0.7196,-0.15533 0.97256,-0.42304 1.79038,-0.49795 3.75516,-0.55935 5.66778,0 0.2529,0.26771 0.60425,0.42051 0.97256,0.42304 0.77976,0 1.4122,-0.0115 1.4122,-0.85959 0,-0.68522 -0.59744,-1.2765 -1.16661,-1.47359 0.6048,-1.87881 0.55261,-4.06524 -0.10571,-5.801"
+       fill="none"
+       stroke="#231f20"
+       stroke-width="0.306998"
+       id="path21-0"
+       sodipodi:nodetypes="ccccsccccscc"
+       style="opacity:0.8;fill:none;stroke:#f6f5f5;stroke-opacity:1" /><path
+       d="m 283.58072,629.59587 c 0,0 -0.0612,3.99095 -0.18407,4.66634 -0.12283,0.6754 -1.47354,2.21038 0.24565,2.27178 1.71919,0.0614 2.08757,-0.98239 1.96478,-1.47358 -0.12283,-0.4912 -0.24565,-4.17515 -0.24565,-4.17515"
+       fill="#ffffff"
+       id="path22"
+       style="opacity:0.8;fill:none;stroke-width:0.0613992" /><path
+       d="m 283.78518,636.68872 c -0.0484,0 -0.0981,0 -0.14851,0 v 0 c -0.34569,-0.0128 -0.59312,-0.0798 -0.76751,-0.21246 v 0 a 0.63732459,0.63732459 0 0 1 -0.24565,-0.52742 v 0 c 0,-0.31375 0.15114,-0.63978 0.29702,-0.94862 v 0 c 0.14719,-0.307 0.29834,-0.59926 0.326,-0.76442 v 0 c 0.0263,-0.1492 0.0553,-0.52865 0.078,-0.99406 v 0 c 0.0231,-0.46724 0.0425,-1.02843 0.0576,-1.56936 v 0 c 0.0296,-1.08063 0.0461,-0.78837 0.0461,-1.2415 a 2.4829872,2.4829872 0 0 1 0.15247,-0.83503 c 0,0 0.15279,0.307 0.15279,0.8381 0,0.38805 -0.0342,1.41219 -0.10373,2.82437 v 0 c -0.0231,0.47216 -0.0491,0.84547 -0.083,1.03397 v 0 c -0.0477,0.25174 -0.20745,0.53908 -0.35119,0.84178 v 0 c -0.14489,0.2984 -0.26903,0.60662 -0.2664,0.816 v 0 a 0.32848617,0.32848617 0 0 0 0.12645,0.28427 v 0 c 0.0945,0.0737 0.2799,0.13814 0.59128,0.14858 v 0 c 0.0471,0 0.0925,0 0.13797,0 v 0 c 0.67541,0 1.09538,-0.18421 1.3465,-0.41322 v 0 a 0.99835239,0.99835239 0 0 0 0.34322,-0.72512 v 0 a 0.63118464,0.63118464 0 0 0 -0.0165,-0.1492 v 0 c -0.0369,-0.15105 -0.0613,-0.46664 -0.0945,-0.886 v 0 c -0.0296,-0.41628 -0.056,-0.92099 -0.0787,-1.41218 v 0 c -0.0461,-0.98239 -0.0333,-0.75521 -0.0333,-1.15369 a 2.9183082,2.9183082 0 0 1 0.10998,-0.75828 2.3245771,2.3245771 0 0 1 0.19758,0.85959 c 0,0.43716 -0.0263,-0.34753 0,0.3254 v 0 c 0.0296,0.67539 0.0668,1.50122 0.10998,2.12012 v 0 a 7.3482666,7.3482666 0 0 0 0.0859,0.83258 v 0 a 0.93695309,0.93695309 0 0 1 0.0263,0.22348 v 0 a 1.3028928,1.3028928 0 0 1 -0.44267,0.95046 v 0 c -0.31743,0.28859 -0.81967,0.4912 -1.55033,0.4912 v 0 z"
+       fill="#231f20"
+       id="path23"
+       style="opacity:0.8;fill:#666666;fill-opacity:1;stroke:#ffffff;stroke-width:0.0613992;stroke-opacity:1" /><path
+       d="m 289.65926,629.59587 c 0,0 0.0616,3.99095 0.18408,4.66634 0.12282,0.6754 1.53498,2.21038 -0.18408,2.27178 -1.71916,0.0614 -2.14898,-0.98239 -2.02619,-1.47358 0.12283,-0.4912 0.24565,-4.17515 0.24565,-4.17515"
+       fill="#ffffff"
+       id="path24"
+       style="opacity:0.8;fill:none;stroke-width:0.0613992" /><path
+       d="m 287.9266,636.1877 c -0.32929,-0.29225 -0.46667,-0.6582 -0.46667,-0.95967 v 0 a 0.85959001,0.85959001 0 0 1 0.0231,-0.2063 v 0 a 7.3482666,7.3482666 0 0 0 0.086,-0.83258 v 0 c 0.0296,-0.4126 0.0553,-0.92099 0.0787,-1.40911 v 0 c 0.0461,-0.98238 0.0767,-0.82643 0.0767,-1.18746 0,-0.36103 0.18803,-0.71346 0.18803,-0.71346 a 2.3626446,2.3626446 0 0 1 0.11854,0.7239 c 0,0.39664 -0.0688,1.35876 -0.15542,2.60701 v 0 c -0.0296,0.41936 -0.0576,0.73679 -0.0945,0.88661 v 0 a 0.54768164,0.54768164 0 0 0 -0.0165,0.13138 v 0 a 1.0106322,1.0106322 0 0 0 0.3641,0.73004 v 0 c 0.26475,0.23393 0.69872,0.42304 1.3852,0.42366 v 0 c 0.0448,0 0.0909,0 0.13764,0 v 0 c 0.30393,-0.01 0.48504,-0.0718 0.57715,-0.14183 v 0 a 0.29962853,0.29962853 0 0 0 0.12282,-0.26587 v 0 c 0.003,-0.2063 -0.12974,-0.52005 -0.28549,-0.82398 v 0 c -0.15345,-0.30699 -0.3237,-0.6011 -0.37391,-0.85959 v 0 c -0.0333,-0.18848 -0.0616,-0.5618 -0.083,-1.03396 v 0 c -0.0231,-0.47093 -0.0418,-1.03396 -0.057,-1.57612 v 0 c -0.0296,-1.08308 -0.0461,-1.2022 -0.0461,-1.58594 a 5.9158214,5.9158214 0 0 1 0.0583,-0.76995 c 0,0 0.24862,0.43716 0.24862,0.76995 0,0.33278 0.01,0.0614 0.0263,0.79819 v 0 c 0.0165,0.73679 0.0431,1.64857 0.0774,2.34975 v 0 c 0.023,0.46602 0.0504,0.84485 0.078,0.99405 v 0 c 0.0263,0.16577 0.18802,0.46602 0.34624,0.77609 v 0 c 0.15609,0.31437 0.31514,0.64408 0.3181,0.96212 v 0 a 0.61399287,0.61399287 0 0 1 -0.24565,0.51146 v 0 c -0.17123,0.12711 -0.4126,0.19033 -0.7497,0.20324 v 0 c -0.0504,0 -0.1001,0 -0.14851,0 v 0 c -0.7411,0 -1.25746,-0.20877 -1.58718,-0.50102 z"
+       fill="#231f20"
+       id="path25-5"
+       style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:0.0613992;stroke-opacity:1" /><path
+       d="m 287.40099,627.51259 c 3.33522,0.61399 6.37388,-0.71898 6.78648,-2.97111 0.33584,-1.82233 -1.22308,-3.2732 -3.59371,-4.08612 -0.63856,-2.25765 -2.08267,-3.59984 -4.1954,-3.59984 -2.11276,0 -3.82458,1.42692 -3.82458,3.18723"
+       fill="none"
+       stroke="#231f20"
+       stroke-width="0.09323"
+       id="path26-8"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-width:0.30624;stroke-dasharray:none;stroke-opacity:1" /><path
+       d="m 294.36308,622.82844 c 0.10175,0.59926 -0.42182,1.1893 -1.17089,1.31702 -0.74907,0.1277 -1.4392,-0.25481 -1.54115,-0.85407 -0.10175,-0.59926 0.42182,-1.18623 1.17089,-1.31701 0.74908,-0.13077 1.43861,0.25358 1.54115,0.85406 z"
+       fill="#231f20"
+       stroke="#231f20"
+       stroke-width="0.245596"
+       id="path27"
+       style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 285.92741,622.64363 c 1.34219,3.55625 -0.711,4.63012 -2.41544,4.63012 -3.15408,0 -4.25559,-2.343 -3.08654,-4.59696 1.41219,-2.71753 1.38147,-4.59636 3.08654,-4.59636 1.70506,0 1.52086,2.18766 2.41544,4.5632 z"
+       fill="none"
+       stroke="#000000"
+       stroke-width="0.306998"
+       id="path29"
+       style="opacity:0.8;fill:none;stroke:#ffffff;stroke-opacity:1" /><ellipse
+       cx="286.60529"
+       cy="620.23798"
+       rx="0.71959966"
+       ry="0.4899663"
+       fill="#231f20"
+       stroke="#231f20"
+       stroke-width="0.245596"
+       id="ellipse30"
+       style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" /><path
+       d="m 290.44334,619.74435 c 0,0.28797 -0.16399,0.52067 -0.55812,0.52067 -0.39419,0 -0.71285,-0.23271 -0.71285,-0.52067 0,-0.28796 0.31942,-0.52066 0.71285,-0.52066 0.39357,0 0.55812,0.2333 0.55812,0.52066 z"
+       fill="#231f20"
+       id="path31"
+       style="opacity:0.8;fill:#fefefe;fill-opacity:1;stroke:none;stroke-width:0.0613992" /><path
+       d="m 286.55797,620.02065 c 0,0.10132 -0.10208,0.18421 -0.22721,0.18421 -0.12513,0 -0.22787,-0.0823 -0.22787,-0.18421 0,-0.10191 0.10175,-0.1842 0.22787,-0.1842 0.12579,0 0.22721,0.0829 0.22721,0.1842 z"
+       fill="#ffffff"
+       id="path32"
+       style="opacity:0.8;stroke-width:0.0613992" /><path
+       d="m 289.78574,619.61357 a 0.19524972,0.19524972 0 1 1 -0.19263,-0.16639 0.18419787,0.18419787 0 0 1 0.19263,0.16639 z"
+       fill="#ffffff"
+       id="path33"
+       style="opacity:0.8;stroke-width:0.0613992" /><path
+       d="m 289.5205,626.9557 c 2.03047,0.62812 4.55768,-0.008 4.64609,-2.56281 0,0 0.0491,-0.54829 -0.0866,-0.2849 -0.614,1.18685 -2.04832,1.72287 -4.32622,2.01144 -0.32106,0.0405 -1.00631,0.046 -1.04869,0.34814 -0.0231,0.16332 0.18605,0.29534 0.81539,0.48812 z"
+       fill="#231f20"
+       id="path34"
+       style="opacity:0.8;fill:#4d4d4d;fill-opacity:1;stroke:#ffffff;stroke-width:0.0613992;stroke-opacity:1" /><path
+       style="font-size:2.36271px;font-family:Sans;-inkscape-font-specification:Sans;fill:#ffffff;fill-opacity:0.8;stroke-width:0.49009"
+       d="m 298.06421,639.44902 q 1.04253,0 1.5716,0.31121 0.53681,0.30344 0.53681,1.06588 0,0.49016 -0.27232,0.81692 -0.27232,0.31899 -0.78579,0.41235 v 0.0389 q 0.35011,0.0545 0.6302,0.20228 0.2878,0.14782 0.45123,0.42014 0.16333,0.27232 0.16333,0.70799 0,0.75468 -0.52127,1.16703 -0.5135,0.41235 -1.40821,0.41235 h -1.95283 v -5.55505 z m 0.13995,2.36517 q 0.71578,0 0.9803,-0.22563 0.26442,-0.2334 0.26442,-0.68466 0,-0.45903 -0.32666,-0.65353 -0.31908,-0.20229 -1.02699,-0.20229 h -0.91806 v 1.76611 z m -1.02699,0.58351 v 2.01507 h 1.12034 q 0.73913,0 1.02699,-0.28786 0.2878,-0.28787 0.2878,-0.75468 0,-0.43569 -0.3036,-0.70021 -0.29571,-0.27233 -1.06588,-0.27233 z m 5.87405,-1.64161 q 0.53681,0 0.91806,0.2334 0.38899,0.2334 0.59127,0.66131 0.21009,0.42013 0.21009,0.98809 v 0.41234 h -2.85534 q 0.0165,0.708 0.3579,1.08145 0.3501,0.36567 0.9725,0.36567 0.39679,0 0.70023,-0.07 0.31118,-0.0778 0.63797,-0.21786 v 0.59908 q -0.31908,0.14005 -0.6302,0.20228 -0.31118,0.07 -0.73912,0.07 -0.59128,0 -1.05031,-0.24117 -0.45126,-0.24118 -0.70801,-0.71578 -0.24894,-0.48237 -0.24894,-1.17481 0,-0.68465 0.22556,-1.17481 0.23347,-0.49015 0.64578,-0.75468 0.42011,-0.26451 0.97252,-0.26451 z m -0.007,0.56017 q -0.49015,0 -0.77801,0.31898 -0.2799,0.31121 -0.33453,0.87138 h 2.12399 q -0.007,-0.52905 -0.24894,-0.85582 -0.24104,-0.33454 -0.76248,-0.33454 z m 4.36468,-0.55239 q 0.76247,0 1.12815,0.33454 0.36565,0.33455 0.36565,1.06589 v 2.83977 h -0.49792 l -0.13238,-0.5913 h -0.0296 q -0.27232,0.34233 -0.57573,0.50571 -0.2957,0.1634 -0.82471,0.1634 -0.56792,0 -0.94137,-0.29564 -0.37345,-0.30344 -0.37345,-0.9414 0,-0.62242 0.49015,-0.95697 0.49015,-0.34232 1.50934,-0.37344 l 0.708,-0.0234 v -0.24898 q 0,-0.52127 -0.22556,-0.72356 -0.22556,-0.20228 -0.63797,-0.20228 -0.32665,0 -0.62242,0.10116 -0.29571,0.0934 -0.55239,0.21786 l -0.21009,-0.5135 q 0.27233,-0.14782 0.64574,-0.24897 0.37345,-0.10893 0.77802,-0.10893 z m 0.20219,2.22513 q -0.77802,0.0313 -1.08143,0.24898 -0.2957,0.21785 -0.2957,0.61463 0,0.35011 0.21009,0.51349 0.21766,0.1634 0.55238,0.1634 0.52904,0 0.87918,-0.28787 0.3501,-0.29564 0.3501,-0.9025 v -0.37345 z m 4.06127,-2.23291 q 0.41234,0 0.73913,0.15559 0.33452,0.15559 0.56792,0.47459 h 0.0389 l 0.0935,-0.5524 h 0.54461 v 4.2402 q 0,0.89473 -0.45903,1.34598 -0.45126,0.45125 -1.40821,0.45125 -0.91806,0 -1.50157,-0.26452 v -0.6302 q 0.61462,0.32676 1.54046,0.32676 0.53684,0 0.84028,-0.31899 0.31118,-0.31121 0.31118,-0.85582 v -0.16339 q 0,-0.0934 0.007,-0.26452 0.007,-0.17894 0.0165,-0.24898 h -0.0296 q -0.42011,0.6302 -1.29151,0.6302 -0.80914,0 -1.26817,-0.56796 -0.45126,-0.56795 -0.45126,-1.58715 0,-0.99587 0.45126,-1.57938 0.45903,-0.59129 1.26039,-0.59129 z m 0.0935,0.57573 q -0.52127,0 -0.80913,0.42013 -0.2878,0.41235 -0.2878,1.18259 0,0.77023 0.28022,1.18259 0.2878,0.40457 0.83248,0.40457 0.6302,0 0.91806,-0.33455 0.2878,-0.34233 0.2878,-1.09701 v -0.16339 q 0,-0.85582 -0.2957,-1.22149 -0.2957,-0.37345 -0.92583,-0.37345 z m 3.89788,3.67225 h -0.68466 v -5.91294 h 0.68466 z m 2.93312,-4.24798 q 0.53684,0 0.91806,0.2334 0.38899,0.2334 0.59131,0.66131 0.21009,0.42013 0.21009,0.98809 v 0.41234 h -2.85535 q 0.0165,0.708 0.35791,1.08145 0.3501,0.36567 0.97253,0.36567 0.39679,0 0.7002,-0.07 0.31118,-0.0778 0.63797,-0.21786 v 0.59908 q -0.31909,0.14005 -0.6302,0.20228 -0.31118,0.07 -0.73909,0.07 -0.59131,0 -1.05034,-0.24117 -0.45126,-0.24118 -0.70801,-0.71578 -0.24894,-0.48237 -0.24894,-1.17481 0,-0.68465 0.22556,-1.17481 0.23347,-0.49015 0.64574,-0.75468 0.42014,-0.26451 0.97253,-0.26451 z m -0.007,0.56017 q -0.49014,0 -0.77801,0.31898 -0.28023,0.31121 -0.33456,0.87138 h 2.12399 q -0.007,-0.52905 -0.24894,-0.85582 -0.24104,-0.33454 -0.76244,-0.33454 z m 4.32576,0.8636 1.44714,-2.73084 h 0.75467 l -1.8517,3.39993 v 2.15512 h -0.70021 v -2.12399 l -1.8517,-3.43106 h 0.76247 z m 8.46485,2.82421 -0.66909,-1.71942 h -2.2018 l -0.66131,1.71942 h -0.70801 l 2.17068,-5.5784 h 0.6302 l 2.16288,5.5784 z m -1.50157,-4.02236 q -0.0231,-0.0622 -0.0777,-0.22563 -0.0543,-0.16339 -0.109,-0.33455 -0.0468,-0.17894 -0.0777,-0.27232 -0.0543,0.24117 -0.12447,0.47459 -0.0701,0.22563 -0.11657,0.35789 l -0.6302,1.68052 h 1.75832 z m 4.55139,4.02236 H 332.423 v -0.40457 l 0.65355,-0.14782 v -4.44248 l -0.65355,-0.15559 v -0.40457 h 2.00729 v 0.40457 l -0.65354,0.15559 v 4.44248 l 0.65354,0.14782 z"
+       id="text342"
+       aria-label="BeagleY AI" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.152287;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect343"
+       width="21.67329"
+       height="14.74555"
+       x="448.62399"
+       y="-221.50963"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.097686;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect345"
+       width="10.958348"
+       height="12.00007"
+       x="412.41104"
+       y="-239.52209"
+       ry="0"
+       transform="rotate(90)" /><rect
+       style="fill:#333333;fill-opacity:0.994681;stroke:#000000;stroke-width:0.172336;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect344"
+       width="16.053078"
+       height="25.495045"
+       x="416.7562"
+       y="-246.26959"
+       ry="0"
+       transform="rotate(90)" /><circle
+       style="fill:#f7e5e5;fill-opacity:1;stroke:none;stroke-width:0.658581;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="path346"
+       cx="422.42001"
+       cy="-204.00653"
+       r="5.5591078"
+       transform="rotate(90)" /><rect
+       style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.0909359;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="rect346"
+       width="6.2436638"
+       height="18.251297"
+       x="422.00284"
+       y="-213.13216"
+       ry="0"
+       transform="rotate(90)" /><g
+       id="g22-9"
+       transform="matrix(0,3.2929063,-3.2929063,0,744.00553,330.78855)"><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect3"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="68.117287"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect4"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="68.944687"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect5"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="69.772087"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect6"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="70.599495"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect7"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="71.426895"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect8"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="72.254295"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect9"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="73.081696"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect10"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="73.909103"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect11"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="74.736504"
+         ry="0.10468297"
+         transform="rotate(-90)" /><rect
+         style="fill:#c7c7c5;fill-opacity:1;stroke:none;stroke-width:0.149199;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+         id="rect12"
+         width="2.0478449"
+         height="0.45280236"
+         x="-176.99715"
+         y="75.563904"
+         ry="0.10468297"
+         transform="rotate(-90)" /></g><g
+       id="g23-3"
+       transform="matrix(0,3.2929063,-3.2929063,0,750.25901,328.18172)"><rect
+         style="fill:#eeeeee;fill-opacity:1;stroke:#353536;stroke-width:0.173909;stroke-dasharray:none;stroke-opacity:1"
+         id="rect65"
+         width="11.271784"
+         height="13.787045"
+         x="-78.494537"
+         y="-191.9084"
+         transform="scale(-1)"
+         ry="0.76857412" /><g
+         id="g20-6"
+         transform="translate(0.08477883)"><path
+           style="fill:#807d7f;fill-opacity:1;stroke:#807d7f;stroke-width:0.231286;stroke-dasharray:none;stroke-opacity:1"
+           d="m 69.430684,185.80162 c -0.04218,0.0114 -0.0667,0.0565 -0.0725,0.13538 -0.0054,0.0791 0.159465,1.34243 0.159465,1.34243 0.08233,0.76092 0.295536,2.2122 0.30412,2.26206 0.0094,0.0498 0.04514,0.19458 0.07021,0.24583 0.02493,0.0512 0.0535,0.0948 0.09392,0.11339 0.04016,0.019 0.420505,0.01 0.446269,0.002 0.02574,-0.008 0.08974,-0.059 0.118985,-0.11111 0.02938,-0.0519 0.06751,-0.199 0.07452,-0.24709 0.0081,-0.0481 0.09756,-1.0123 0.177212,-1.8707 0.09217,-0.99089 0.131247,-1.59641 0.13719,-1.716 0.0054,-0.0817 -0.04312,-0.15662 -0.07398,-0.16231 -0.03099,-0.006 -0.09163,0.0218 -0.10295,0.12324 -0.01213,0.10145 -0.156109,1.59655 -0.156109,1.59655 0,0 -0.141892,1.58708 -0.18795,1.66352 -0.04582,0.0764 -0.309604,0.0585 -0.371846,9.9e-4 -0.06239,-0.0567 -0.29687,-1.87939 -0.29687,-1.87939 0,0 -0.194176,-1.34749 -0.207571,-1.42182 -0.01361,-0.0743 -0.06994,-0.0912 -0.112112,-0.0798 z"
+           id="path67"
+           sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /><path
+           style="fill:#807d7f;fill-opacity:1;stroke:#807d7f;stroke-width:0.231286;stroke-dasharray:none;stroke-opacity:1"
+           d="m 74.680315,185.80162 c -0.04218,0.0114 -0.0667,0.0565 -0.0725,0.13538 -0.0054,0.0791 0.159465,1.34243 0.159465,1.34243 0.08233,0.76092 0.295536,2.2122 0.30412,2.26206 0.0094,0.0498 0.04514,0.19458 0.07021,0.24583 0.02493,0.0512 0.0535,0.0948 0.09392,0.11339 0.04016,0.019 0.420505,0.01 0.446269,0.002 0.02574,-0.008 0.08974,-0.059 0.118985,-0.11111 0.02938,-0.0519 0.06751,-0.199 0.07452,-0.24709 0.0081,-0.0481 0.09756,-1.0123 0.177212,-1.8707 0.09217,-0.99089 0.131247,-1.59641 0.13719,-1.716 0.0054,-0.0817 -0.04312,-0.15662 -0.07398,-0.16231 -0.03099,-0.006 -0.09163,0.0218 -0.10295,0.12324 -0.01213,0.10145 -0.156109,1.59655 -0.156109,1.59655 0,0 -0.141892,1.58708 -0.18795,1.66352 -0.04582,0.0764 -0.309604,0.0585 -0.371846,9.9e-4 -0.06239,-0.0567 -0.29687,-1.87939 -0.29687,-1.87939 0,0 -0.194176,-1.34749 -0.207571,-1.42182 -0.01361,-0.0743 -0.06994,-0.0912 -0.112112,-0.0798 z"
+           id="path18"
+           sodipodi:nodetypes="zzczzzzzzsszzczzczzz" /></g><g
+         id="g19-0"
+         transform="matrix(1.1208781,0,0,1.9725396,-8.5935373,-174.32717)"><ellipse
+           style="fill:#999999;fill-opacity:1;stroke:#807d7f;stroke-width:0.158677;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="ellipse18"
+           cx="69.855537"
+           cy="179.94838"
+           rx="0.53853434"
+           ry="0.27504915" /><ellipse
+           style="fill:#999999;fill-opacity:1;stroke:#807d7f;stroke-width:0.158677;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+           id="ellipse19"
+           cx="75.480843"
+           cy="179.94838"
+           rx="0.53853434"
+           ry="0.27504915" /></g></g><path
+       style="font-size:1.76389px;font-family:'Droid Sans';-inkscape-font-specification:'Droid Sans';text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:1.45217"
+       d="m 325.57404,545.49448 h 0.56154 l -1.38684,4.14637 h -0.53036 l -1.38118,-4.14637 h 0.55871 l 0.83666,2.62906 q 0.0823,0.25809 0.14193,0.49915 0.0596,0.23824 0.10768,0.4481 0.0425,-0.20985 0.10767,-0.4481 0.0652,-0.24107 0.15312,-0.51617 z m 3.61034,1.21384 q 0,0.2581 -0.0794,0.49632 -0.0767,0.23824 -0.2552,0.42258 -0.1788,0.1815 -0.47362,0.29211 -0.29208,0.10778 -0.72322,0.10778 h -0.42541 v 1.61374 h -0.52749 v -4.14637 h 1.02666 q 0.38004,0 0.65513,0.0823 0.27495,0.0794 0.45376,0.23541 0.1788,0.15316 0.26376,0.38004 0.085,0.22688 0.085,0.51617 z m -1.95691,0.87069 h 0.36588 q 0.26376,0 0.45942,-0.0454 0.19856,-0.0454 0.32633,-0.14466 0.1304,-0.10211 0.1956,-0.26093 0.0652,-0.16164 0.0652,-0.39138 0,-0.40272 -0.23248,-0.59558 -0.23248,-0.1957 -0.72602,-0.1957 h -0.4538 z m 5.30352,-0.87069 q 0,0.2581 -0.0794,0.49632 -0.0764,0.23824 -0.2552,0.42258 -0.1788,0.1815 -0.47361,0.29211 -0.29209,0.10778 -0.72319,0.10778 h -0.42541 v 1.61374 h -0.52753 v -4.14637 h 1.02667 q 0.38003,0 0.65512,0.0823 0.27529,0.0794 0.45379,0.23541 0.17881,0.15316 0.26377,0.38004 0.0849,0.22688 0.0849,0.51617 z m -1.95691,0.87069 h 0.36585 q 0.26376,0 0.45946,-0.0454 0.19856,-0.0454 0.32599,-0.14466 0.1304,-0.10211 0.1956,-0.26093 0.0652,-0.16164 0.0652,-0.39138 0,-0.40272 -0.23248,-0.59558 -0.23248,-0.1957 -0.72605,-0.1957 h -0.45376 z"
+       id="text16"
+       aria-label="VPP" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle105"
+       cx="464.95688"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle125"
+       cx="464.95688"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle104"
+       cx="479.94354"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle124"
+       cx="479.94354"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle103"
+       cx="494.93024"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle123"
+       cx="494.93024"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle102"
+       cx="509.9169"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle122"
+       cx="509.9169"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle101"
+       cx="524.90356"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle121"
+       cx="524.90356"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle100"
+       cx="539.89026"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle120"
+       cx="539.89026"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle97"
+       cx="554.87689"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle119"
+       cx="554.87689"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle118"
+       cx="569.86359"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle93"
+       cx="584.85022"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle117"
+       cx="584.85022"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle92"
+       cx="599.83691"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle116"
+       cx="599.83691"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle91"
+       cx="614.82361"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle115"
+       cx="614.82361"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle90"
+       cx="629.8103"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle114"
+       cx="629.8103"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle89"
+       cx="644.79694"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle113"
+       cx="644.79694"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle112"
+       cx="659.78363"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle87"
+       cx="674.77026"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle111"
+       cx="674.77026"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle88"
+       cx="659.78363"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle86"
+       cx="689.75696"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle110"
+       cx="689.75696"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle85"
+       cx="704.74359"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle109"
+       cx="704.74359"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle84"
+       cx="719.73029"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle108"
+       cx="719.73029"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle83"
+       cx="734.71692"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle107"
+       cx="734.71692"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle81"
+       cx="749.70361"
+       cy="-437.70428"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle106"
+       cx="749.70361"
+       cy="-422.62616"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.464889;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle334"
+       cx="436.84686"
+       cy="809.01648"
+       r="2.4043944" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.464889;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle333"
+       cx="430.48322"
+       cy="809.01648"
+       r="2.4043944" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.464889;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle332"
+       cx="424.11954"
+       cy="809.01648"
+       r="2.4043944" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.464889;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle335"
+       cx="417.75589"
+       cy="809.01648"
+       r="2.4043944" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle126"
+       cx="785.78162"
+       cy="-189.68176"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle127"
+       cx="770.79492"
+       cy="-189.68176"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle129"
+       cx="770.79492"
+       cy="-174.60361"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#cccccc;fill-opacity:1;stroke:#696969;stroke-width:0.642894;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle128"
+       cx="785.78162"
+       cy="-174.60361"
+       r="3.325036"
+       transform="rotate(90)" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.464889;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle328"
+       cx="612.93158"
+       cy="-149.13086"
+       r="2.4043944"
+       transform="rotate(90)" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.464889;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle327"
+       cx="606.34772"
+       cy="-149.13086"
+       r="2.4043944"
+       transform="rotate(90)" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.464889;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle326"
+       cx="599.76385"
+       cy="-149.13086"
+       r="2.4043944"
+       transform="rotate(90)" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.464889;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle325"
+       cx="530.67047"
+       cy="-154.30025"
+       r="2.4043944"
+       transform="rotate(90)" /><circle
+       style="fill:#666666;fill-opacity:1;stroke:#cccccc;stroke-width:0.464889;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle329"
+       cx="524.57831"
+       cy="-154.30025"
+       r="2.4043944"
+       transform="rotate(90)" /><circle
+       style="fill:#ffffff;fill-opacity:1;stroke:#d4aa00;stroke-width:1.95362;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle14-9"
+       cx="136.7281"
+       cy="536.48108"
+       r="3.2346437" /><circle
+       style="fill:#ffffff;fill-opacity:1;stroke:#d4aa00;stroke-width:1.95362;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle16"
+       cx="136.37738"
+       cy="520.76239"
+       r="3.2346437" /><circle
+       style="fill:#ffffff;fill-opacity:1;stroke:#d4aa00;stroke-width:1.95362;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle13"
+       cx="326.1803"
+       cy="536.27905"
+       r="3.2346437" /><circle
+       style="fill:#ffffff;fill-opacity:1;stroke:#d4aa00;stroke-width:1.95362;stroke-dasharray:none;stroke-opacity:1;paint-order:normal"
+       id="circle14"
+       cx="315.52142"
+       cy="536.27905"
+       r="3.2346437" /><path
+       inkscape:connector-curvature="0"
+       id="path57183"
+       d="m 740.79897,751.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57193"
+       d="m 740.79897,736.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57203"
+       d="m 740.79897,721.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57213"
+       d="m 740.79897,706.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57223"
+       d="m 740.79897,691.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57233"
+       d="m 740.79897,676.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57243"
+       d="m 740.79897,646.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57253"
+       d="m 740.79897,631.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57283"
+       d="m 740.79897,616.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57301"
+       d="m 740.79897,601.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57319"
+       d="m 740.79897,586.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57337"
+       d="m 740.79897,571.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57355"
+       d="m 740.79897,556.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57373"
+       d="m 740.79897,541.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57391"
+       d="m 740.79897,526.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57409"
+       d="m 740.79897,511.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57427"
+       d="m 740.79897,496.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57445"
+       d="m 740.79897,481.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path57463"
+       d="m 740.79897,466.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path59330"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,746.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50316 c -0.22612,0.5757 0.19813,1.19866 0.81665,1.19935 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55848 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="755.4079"
+       id="text59334"><tspan
+         sodipodi:role="line"
+         id="tspan59332"
+         x="750.0517"
+         y="755.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO21</tspan></text><path
+       id="path59338"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,731.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50316 c -0.22612,0.5757 0.19813,1.19866 0.81665,1.19935 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55848 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="740.4079"
+       id="text59342"><tspan
+         sodipodi:role="line"
+         id="tspan59340"
+         x="750.0517"
+         y="740.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO20</tspan></text><path
+       id="path59346"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,716.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50316 c -0.22612,0.5757 0.19813,1.19866 0.81665,1.19935 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55848 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="725.4079"
+       id="text59350"><tspan
+         sodipodi:role="line"
+         id="tspan59348"
+         x="750.0517"
+         y="725.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO16</tspan></text><path
+       id="path59362"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,686.10161 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="695.4079"
+       id="text59366"><tspan
+         sodipodi:role="line"
+         id="tspan59364"
+         x="750.0517"
+         y="695.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO12</tspan></text><path
+       id="path59378"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,656.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="665.4079"
+       id="text59382"><tspan
+         sodipodi:role="line"
+         id="tspan59380"
+         x="750.0517"
+         y="665.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO1</tspan></text><path
+       id="path59386"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,641.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="650.4079"
+       id="text59390"><tspan
+         sodipodi:role="line"
+         id="tspan59388"
+         x="750.0517"
+         y="650.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO7</tspan></text><path
+       id="path59394"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,626.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="635.4079"
+       id="text59398"><tspan
+         sodipodi:role="line"
+         id="tspan59396"
+         x="750.0517"
+         y="635.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO8</tspan></text><path
+       id="path59402"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,611.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="620.4079"
+       id="text59406"><tspan
+         sodipodi:role="line"
+         id="tspan59404"
+         x="750.0517"
+         y="620.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO25</tspan></text><path
+       id="path59418"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,581.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="590.4079"
+       id="text59422"><tspan
+         sodipodi:role="line"
+         id="tspan59420"
+         x="750.0517"
+         y="590.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO24</tspan></text><path
+       id="path59426"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,566.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="575.4079"
+       id="text59430"><tspan
+         sodipodi:role="line"
+         id="tspan59428"
+         x="750.0517"
+         y="575.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO23</tspan></text><path
+       id="path59442"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,536.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="545.4079"
+       id="text59446"><tspan
+         sodipodi:role="line"
+         id="tspan59444"
+         x="750.0517"
+         y="545.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO18</tspan></text><path
+       id="path59450"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,521.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="530.4079"
+       id="text59454"><tspan
+         sodipodi:role="line"
+         id="tspan59452"
+         x="750.0517"
+         y="530.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO15</tspan></text><path
+       id="path59458"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77446,506.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="750.0517"
+       y="515.4079"
+       id="text59462"><tspan
+         sodipodi:role="line"
+         id="tspan59460"
+         x="750.0517"
+         y="515.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO14</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path59788"
+       d="m 632.79897,751.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path59812"
+       d="m 632.79897,736.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path59814"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,731.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50316 c -0.22612,0.5757 0.19813,1.19866 0.81665,1.19935 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55848 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="740.4079"
+       id="text59818"><tspan
+         sodipodi:role="line"
+         id="tspan59816"
+         x="588.0517"
+         y="740.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO26</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path59836"
+       d="m 632.79897,721.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path59838"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,716.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50316 c -0.22612,0.5757 0.19813,1.19866 0.81665,1.19935 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55848 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="725.4079"
+       id="text59842"><tspan
+         sodipodi:role="line"
+         id="tspan59840"
+         x="588.0517"
+         y="725.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO19</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path59860"
+       d="m 632.79897,706.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path59862"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,701.10161 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="710.4079"
+       id="text59866"><tspan
+         sodipodi:role="line"
+         id="tspan59864"
+         x="588.0517"
+         y="710.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO13</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path59884"
+       d="m 632.79897,691.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path59886"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,686.10161 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="695.4079"
+       id="text59890"><tspan
+         sodipodi:role="line"
+         id="tspan59888"
+         x="588.0517"
+         y="695.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO6</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path59908"
+       d="m 632.79897,676.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path59910"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,671.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="680.4079"
+       id="text59914"><tspan
+         sodipodi:role="line"
+         id="tspan59912"
+         x="588.0517"
+         y="680.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO5</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path59932"
+       d="m 632.79897,661.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path59934"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,656.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="665.4079"
+       id="text59938"><tspan
+         sodipodi:role="line"
+         id="tspan59936"
+         x="588.0517"
+         y="665.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO0</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path59956"
+       d="m 632.79897,646.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path59980"
+       d="m 632.79897,631.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path59982"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,626.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="635.4079"
+       id="text59986"><tspan
+         sodipodi:role="line"
+         id="tspan59984"
+         x="588.0517"
+         y="635.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO11</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path60004"
+       d="m 632.79897,616.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path60006"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,611.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="620.4079"
+       id="text60010"><tspan
+         sodipodi:role="line"
+         id="tspan60008"
+         x="588.0517"
+         y="620.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO9</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path60028"
+       d="m 632.79897,601.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path60030"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,596.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="605.4079"
+       id="text60034"><tspan
+         sodipodi:role="line"
+         id="tspan60032"
+         x="588.0517"
+         y="605.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO10</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path60052"
+       d="m 632.79897,586.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path60076"
+       d="m 632.79897,571.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path60078"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,566.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="575.4079"
+       id="text60082"><tspan
+         sodipodi:role="line"
+         id="tspan60080"
+         x="588.0517"
+         y="575.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO22</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path60100"
+       d="m 632.79897,556.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path60102"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,551.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="560.4079"
+       id="text60106"><tspan
+         sodipodi:role="line"
+         id="tspan60104"
+         x="588.0517"
+         y="560.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO27</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path60124"
+       d="m 632.79897,541.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path60126"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,536.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="545.4079"
+       id="text60130"><tspan
+         sodipodi:role="line"
+         id="tspan60128"
+         x="588.0517"
+         y="545.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO17</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path60148"
+       d="m 632.79897,526.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       inkscape:connector-curvature="0"
+       id="path60172"
+       d="m 632.79897,511.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path60174"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,506.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="515.4079"
+       id="text60178"><tspan
+         sodipodi:role="line"
+         id="tspan60176"
+         x="588.0517"
+         y="515.4079"
+         style="font-size:10.2979px;line-height:1.25">GPIO4</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path60196"
+       d="m 632.79897,496.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path60198"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,491.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="500.40787"
+       id="text60202"><tspan
+         sodipodi:role="line"
+         id="tspan60200"
+         x="588.0517"
+         y="500.40787"
+         style="font-size:10.2979px;line-height:1.25">GPIO3</tspan></text><path
+       inkscape:connector-curvature="0"
+       id="path60220"
+       d="m 632.79897,481.7312 h -35.4446"
+       style="fill:#4e4c4c;fill-opacity:1;fill-rule:evenodd;stroke:#4e4c4c;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       id="path60222"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 568.77447,476.10162 c -0.36061,3.2e-4 -0.68462,0.22107 -0.81665,0.55664 l -3.74084,9.50317 c -0.22612,0.5757 0.19813,1.19865 0.81665,1.19934 h 18.0011 6.38305 17.99927 c 0.36181,1.6e-4 0.68681,-0.22146 0.81848,-0.55847 l 3.70239,-9.505 c 0.22279,-0.57528 -0.20157,-1.19529 -0.81848,-1.19568 h -17.99927 -6.34643 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="588.0517"
+       y="485.40787"
+       id="text60226"><tspan
+         sodipodi:role="line"
+         id="tspan60224"
+         x="588.0517"
+         y="485.40787"
+         style="font-size:10.2979px;line-height:1.25">GPIO2</tspan></text><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:17.5px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';text-align:center;text-anchor:middle;fill:#e9ba33;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="669.37085"
+       y="452.44791"
+       id="text74404"><tspan
+         sodipodi:role="line"
+         id="tspan74402"
+         style="font-size:17.5px;fill:#333333;stroke-width:0.708661"
+         x="669.37085"
+         y="452.44791">HAT</tspan></text><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:30px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';text-align:center;text-anchor:middle;fill:#f9f9f9;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="764.38086"
+       y="871.25989"
+       id="text76497"><tspan
+         sodipodi:role="line"
+         id="tspan76495"
+         style="font-size:30px;fill:#f9f9f9;fill-opacity:1;stroke-width:0.708661"
+         x="764.38086"
+         y="871.25989">BeagleY-AI</tspan></text><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:17.5px;font-family:Consolas;-inkscape-font-specification:'Consolas Bold';text-align:center;text-anchor:middle;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.708662"
+       x="765.16638"
+       y="903.74988"
+       id="text78306"><tspan
+         sodipodi:role="line"
+         id="tspan78304"
+         style="font-size:17.5px;fill:#4d4d4d;fill-opacity:1;stroke-width:0.708661"
+         x="765.16638"
+         y="903.74988">40-pin HAT header pinout</tspan></text><path
+       id="path47"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 778.6171,506.10161 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="793.72839"
+       y="515.42297"
+       id="text47"><tspan
+         sodipodi:role="line"
+         x="793.72839"
+         y="515.42297"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan47">TXD</tspan></text><path
+       id="path48"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 778.6171,521.10161 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="793.72839"
+       y="530.42297"
+       id="text48"><tspan
+         sodipodi:role="line"
+         x="793.72839"
+         y="530.42297"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan48">RXD</tspan></text><path
+       id="path55"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 778.6171,626.10162 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="793.72839"
+       y="635.42297"
+       id="text55"><tspan
+         sodipodi:role="line"
+         x="793.72839"
+         y="635.42297"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan55">CE0</tspan></text><path
+       id="path56"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 778.6171,641.10162 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="793.72839"
+       y="650.42297"
+       id="text56"><tspan
+         sodipodi:role="line"
+         x="793.72839"
+         y="650.42297"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan56">CE1</tspan></text><path
+       id="path57"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 778.6171,656.10162 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="793.1106"
+       y="664.66608"
+       id="text57"><tspan
+         sodipodi:role="line"
+         x="793.1106"
+         y="664.66608"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan57">SCL</tspan></text><path
+       id="path59"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 778.6171,686.10162 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="793.72839"
+       y="695.42297"
+       id="text59"><tspan
+         sodipodi:role="line"
+         x="793.72839"
+         y="695.42297"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan59">PWM0</tspan></text><path
+       id="path68"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 529.93145,476.10161 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="545.04279"
+       y="485.42297"
+       id="text68"><tspan
+         sodipodi:role="line"
+         x="545.04279"
+         y="485.42297"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan68">SDA</tspan></text><path
+       id="path69"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 529.93145,491.10161 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="545.04279"
+       y="500.42297"
+       id="text69"><tspan
+         sodipodi:role="line"
+         x="545.04279"
+         y="500.42297"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan69">SCL</tspan></text><path
+       id="path76"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 529.93145,596.10161 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="545.04279"
+       y="605.42297"
+       id="text76"><tspan
+         sodipodi:role="line"
+         x="545.04279"
+         y="605.42297"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan76">MOSI</tspan></text><path
+       id="path77"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 529.93145,611.10162 c -0.3606,2.9e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50316 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19935 h 8.99964 15.38269 9.00146 c 0.3618,1.9e-4 0.68678,-0.22147 0.81848,-0.55848 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="545.04279"
+       y="620.42297"
+       id="text77"><tspan
+         sodipodi:role="line"
+         x="545.04279"
+         y="620.42297"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan77">MISO</tspan></text><path
+       id="path78"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 529.93145,626.10162 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="545.04279"
+       y="635.42297"
+       id="text78"><tspan
+         sodipodi:role="line"
+         x="545.04279"
+         y="635.42297"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan78">SCLK</tspan></text><path
+       id="path80"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 529.93145,656.10162 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="545.04279"
+       y="665.42297"
+       id="text80"><tspan
+         sodipodi:role="line"
+         x="545.04279"
+         y="665.42297"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan80">SDA</tspan></text><path
+       id="path83"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 529.93145,701.10162 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="545.04279"
+       y="710.42297"
+       id="text83"><tspan
+         sodipodi:role="line"
+         x="545.04279"
+         y="710.42297"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan83">PWM1</tspan></text><path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 475.69711,851.73228 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+       id="path91"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" /><path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c44949;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 475.69711,866.73228 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+       id="path92-5"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" /><path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#800080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 475.69711,881.73228 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+       id="path93"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="513.47595"
+       y="861.03851"
+       id="text1"><tspan
+         sodipodi:role="line"
+         id="tspan1"
+         x="513.47595"
+         y="861.03851"
+         style="font-size:10.2979px;line-height:1.25;fill:#1a1a1a">GND</tspan></text><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="519.13977"
+       y="876.04883"
+       id="text2"><tspan
+         sodipodi:role="line"
+         id="tspan2"
+         x="519.13977"
+         y="876.04883"
+         style="font-size:10.2979px;line-height:1.25;fill:#1a1a1a">POWER</tspan></text><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="538.19092"
+       y="891.04883"
+       id="text8"><tspan
+         sodipodi:role="line"
+         id="tspan8"
+         x="538.19092"
+         y="891.04883"
+         style="font-size:10.2979px;line-height:1.25;fill:#1a1a1a">GPIO NUMBER</tspan></text><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="540.76495"
+       y="906.04883"
+       id="text9"><tspan
+         sodipodi:role="line"
+         id="tspan9"
+         x="540.76495"
+         y="906.04883"
+         style="font-size:10.2979px;line-height:1.25;fill:#1a1a1a">PIN FUNCTION</tspan></text><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle57437"
+       cx="705.07666"
+       cy="481.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="481.7312"
+       cx="705.07666"
+       id="circle57439"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle57455"
+       cx="705.07666"
+       cy="466.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="466.7312"
+       cx="705.07666"
+       id="circle57457"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle16844"
+       cx="705.07666"
+       cy="751.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="676.7312"
+       cx="705.07666"
+       id="circle15065"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle16508"
+       cx="705.07666"
+       cy="691.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="706.7312"
+       cx="705.07666"
+       id="circle16592"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle16676"
+       cx="705.07666"
+       cy="721.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="736.7312"
+       cx="705.07666"
+       id="circle16760"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle17338"
+       cx="705.07666"
+       cy="661.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="661.7312"
+       cx="705.07666"
+       id="circle17350"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="646.7312"
+       cx="705.07666"
+       id="circle17366"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle17378"
+       cx="705.07666"
+       cy="646.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle17394"
+       cx="705.07666"
+       cy="631.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="631.7312"
+       cx="705.07666"
+       id="circle17406"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle57275"
+       cx="705.07666"
+       cy="616.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="616.7312"
+       cx="705.07666"
+       id="circle57277"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle57293"
+       cx="705.07666"
+       cy="601.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="601.7312"
+       cx="705.07666"
+       id="circle57295"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle57311"
+       cx="705.07666"
+       cy="586.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="586.7312"
+       cx="705.07666"
+       id="circle57313"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle57329"
+       cx="705.07666"
+       cy="571.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="571.7312"
+       cx="705.07666"
+       id="circle57331"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle57347"
+       cx="705.07666"
+       cy="556.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="556.7312"
+       cx="705.07666"
+       id="circle57349"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle57365"
+       cx="705.07666"
+       cy="541.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="541.7312"
+       cx="705.07666"
+       id="circle57367"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle57383"
+       cx="705.07666"
+       cy="526.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="526.7312"
+       cx="705.07666"
+       id="circle57385"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle57401"
+       cx="705.07666"
+       cy="511.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="511.7312"
+       cx="705.07666"
+       id="circle57403"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle57419"
+       cx="705.07666"
+       cy="496.7312"
+       r="5.2591066"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="496.7312"
+       cx="705.07666"
+       id="circle57421"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="751.7312"
+       cx="705.07666"
+       id="circle16846"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle16762"
+       cx="705.07666"
+       cy="736.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="721.7312"
+       cx="705.07666"
+       id="circle16678"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle16594"
+       cx="705.07666"
+       cy="706.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="2.8944414"
+       cy="691.7312"
+       cx="705.07666"
+       id="circle16510"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle15067"
+       cx="705.07666"
+       cy="676.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="751.7312"
+       cx="633.07666"
+       id="circle59780"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle59782"
+       cx="633.07666"
+       cy="751.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="736.7312"
+       cx="633.07666"
+       id="circle59804"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle59806"
+       cx="633.07666"
+       cy="736.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="721.7312"
+       cx="633.07666"
+       id="circle59828"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle59830"
+       cx="633.07666"
+       cy="721.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="706.7312"
+       cx="633.07666"
+       id="circle59852"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle59854"
+       cx="633.07666"
+       cy="706.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="691.7312"
+       cx="633.07666"
+       id="circle59876"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle59878"
+       cx="633.07666"
+       cy="691.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="676.7312"
+       cx="633.07666"
+       id="circle59900"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle59902"
+       cx="633.07666"
+       cy="676.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="661.7312"
+       cx="633.07666"
+       id="circle59924"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle59926"
+       cx="633.07666"
+       cy="661.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="646.7312"
+       cx="633.07666"
+       id="circle59948"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle59950"
+       cx="633.07666"
+       cy="646.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="631.7312"
+       cx="633.07666"
+       id="circle59972"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle59974"
+       cx="633.07666"
+       cy="631.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="616.7312"
+       cx="633.07666"
+       id="circle59996"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle59998"
+       cx="633.07666"
+       cy="616.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="601.7312"
+       cx="633.07666"
+       id="circle60020"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle60022"
+       cx="633.07666"
+       cy="601.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="586.7312"
+       cx="633.07666"
+       id="circle60044"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle60046"
+       cx="633.07666"
+       cy="586.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="571.7312"
+       cx="633.07666"
+       id="circle60068"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle60070"
+       cx="633.07666"
+       cy="571.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="556.7312"
+       cx="633.07666"
+       id="circle60092"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle60094"
+       cx="633.07666"
+       cy="556.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="541.7312"
+       cx="633.07666"
+       id="circle60116"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle60118"
+       cx="633.07666"
+       cy="541.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="526.7312"
+       cx="633.07666"
+       id="circle60140"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle60142"
+       cx="633.07666"
+       cy="526.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="511.7312"
+       cx="633.07666"
+       id="circle60164"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle60166"
+       cx="633.07666"
+       cy="511.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="496.7312"
+       cx="633.07666"
+       id="circle60188"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle60190"
+       cx="633.07666"
+       cy="496.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="481.7312"
+       cx="633.07666"
+       id="circle60212"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle60214"
+       cx="633.07666"
+       cy="481.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       r="5.2591066"
+       cy="466.7312"
+       cx="633.07666"
+       id="circle60236"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><circle
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#f9f9f9;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.728;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       id="circle60238"
+       cx="633.07666"
+       cy="466.7312"
+       r="2.8944414"
+       inkscape:export-xdpi="146.3"
+       inkscape:export-ydpi="146.3"
+       inkscape:export-filename="C:\Users\billb\Pictures\Feather M4 Test1.png" /><path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 586.7739,521.1013 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+       id="path115"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="597.07678"
+       y="530.40753"
+       id="text116"><tspan
+         sodipodi:role="line"
+         id="tspan116"
+         x="597.07678"
+         y="530.40753"
+         style="font-size:10.2979px;line-height:1.25">GND</tspan></text><g
+       id="g117"
+       transform="translate(0.00199947,120.00109)"><path
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c44949;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="m 586.7739,461.1013 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+         id="path116"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccc" /><text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         x="597.07678"
+         y="470.40753"
+         id="text117"><tspan
+           sodipodi:role="line"
+           id="tspan117"
+           x="597.07678"
+           y="470.40753"
+           style="font-size:10.2979px;line-height:1.25">3V3</tspan></text></g><path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 586.7739,521.1013 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+       id="path117"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="597.07678"
+       y="530.40753"
+       id="text118"><tspan
+         sodipodi:role="line"
+         id="tspan118"
+         x="597.07678"
+         y="530.40753"
+         style="font-size:10.2979px;line-height:1.25">GND</tspan></text><path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 586.7759,641.10239 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+       id="path118"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="597.0788"
+       y="650.40863"
+       id="text119"><tspan
+         sodipodi:role="line"
+         id="tspan119"
+         x="597.0788"
+         y="650.40863"
+         style="font-size:10.2979px;line-height:1.25">GND</tspan></text><path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 586.7739,746.1013 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+       id="path120"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="597.07678"
+       y="755.40753"
+       id="text121"><tspan
+         sodipodi:role="line"
+         id="tspan121"
+         x="597.07678"
+         y="755.40753"
+         style="font-size:10.2979px;line-height:1.25">GND</tspan></text><path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77368,701.1013 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+       id="path123"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="741.0766"
+       y="710.40753"
+       id="text123"><tspan
+         sodipodi:role="line"
+         id="tspan123"
+         x="741.0766"
+         y="710.40753"
+         style="font-size:10.2979px;line-height:1.25">GND</tspan></text><path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77368,671.1013 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+       id="path124"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="741.0766"
+       y="680.40753"
+       id="text124"><tspan
+         sodipodi:role="line"
+         id="tspan124"
+         x="741.0766"
+         y="680.40753"
+         style="font-size:10.2979px;line-height:1.25">GND</tspan></text><path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77368,596.1013 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+       id="path126"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="741.0766"
+       y="605.40753"
+       id="text126"><tspan
+         sodipodi:role="line"
+         id="tspan126"
+         x="741.0766"
+         y="605.40753"
+         style="font-size:10.2979px;line-height:1.25">GND</tspan></text><path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77368,551.1013 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+       id="path127"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="741.0766"
+       y="560.40753"
+       id="text127"><tspan
+         sodipodi:role="line"
+         id="tspan127"
+         x="741.0766"
+         y="560.40753"
+         style="font-size:10.2979px;line-height:1.25">GND</tspan></text><path
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 730.77368,491.1013 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+       id="path57011"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccc" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="741.0766"
+       y="500.40756"
+       id="text57015"><tspan
+         sodipodi:role="line"
+         id="tspan57013"
+         x="741.0766"
+         y="500.40756"
+         style="font-size:10.2979px;line-height:1.25">GND</tspan></text><g
+       id="g131"
+       transform="translate(143.99978,15)"><path
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c44949;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="m 586.7739,461.1013 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+         id="path130"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccc" /><text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         x="597.07678"
+         y="470.40753"
+         id="text130"><tspan
+           sodipodi:role="line"
+           id="tspan130"
+           x="597.07678"
+           y="470.40753"
+           style="font-size:10.2979px;line-height:1.25">5V</tspan></text></g><g
+       id="g132"
+       transform="translate(143.99978)"><path
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#c44949;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="m 586.7739,461.1013 c -0.3606,3e-4 -0.6844,0.2211 -0.8164,0.5567 l -3.7403,9.5039 c -0.2261,0.5757 0.1979,1.1985 0.8164,1.1992 h 24.3828 c 0.3618,2e-4 0.6867,-0.2216 0.8184,-0.5586 l 3.7031,-9.5059 c 0.2228,-0.5752 -0.2014,-1.1949 -0.8183,-1.1953 z"
+         id="path131"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccc" /><text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         x="597.07678"
+         y="470.40753"
+         id="text131"><tspan
+           sodipodi:role="line"
+           id="tspan131"
+           x="597.07678"
+           y="470.40753"
+           style="font-size:10.2979px;line-height:1.25">5V</tspan></text></g><path
+       id="path19"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 498.66733,476.08616 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="513.77869"
+       y="485.40753"
+       id="text19"><tspan
+         sodipodi:role="line"
+         x="513.77869"
+         y="485.40753"
+         style="font-size:10.2979px;line-height:1.25;fill:#000000"
+         id="tspan19">I2C1</tspan></text><path
+       id="path20"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 498.66733,491.10162 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="513.77869"
+       y="500.42297"
+       id="text20"><tspan
+         sodipodi:role="line"
+         x="513.77869"
+         y="500.42297"
+         style="font-size:10.2979px;line-height:1.25;fill:#000000"
+         id="tspan20">I2C1</tspan></text><path
+       id="path21"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 496.08108,596.09131 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="511.19247"
+       y="605.41266"
+       id="text21"><tspan
+         sodipodi:role="line"
+         x="511.19247"
+         y="605.41266"
+         style="font-size:10.2979px;line-height:1.25;fill:#000000"
+         id="tspan21">SPI0</tspan></text><path
+       id="path28"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 496.08108,611.10162 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="511.19247"
+       y="620.42297"
+       id="text28"><tspan
+         sodipodi:role="line"
+         x="511.19247"
+         y="620.42297"
+         style="font-size:10.2979px;line-height:1.25;fill:#000000"
+         id="tspan28">SPI0</tspan></text><path
+       id="path30"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 496.08108,626.10162 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="511.19247"
+       y="635.42297"
+       id="text30"><tspan
+         sodipodi:role="line"
+         x="511.19247"
+         y="635.42297"
+         style="font-size:10.2979px;line-height:1.25;fill:#000000"
+         id="tspan30">SPI0</tspan></text><g
+       id="g36"
+       transform="translate(-5.47128,5.62958)"><path
+         id="path35"
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="m 488.84705,650.47204 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><path
+         id="path36"
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="m 501.55236,650.47717 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /></g><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="504.29913"
+       y="665.42041"
+       id="text35"><tspan
+         sodipodi:role="line"
+         x="504.29913"
+         y="665.42041"
+         style="font-size:10.2979px;line-height:1.25;fill:#000000"
+         id="tspan35">EEPROM</tspan></text><g
+       id="g39"
+       transform="translate(322.50355,5.6270132)"><path
+         id="path37"
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="m 488.84705,650.47204 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><path
+         id="path39"
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="m 501.55236,650.47717 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /></g><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="832.27393"
+       y="665.41785"
+       id="text39"><tspan
+         sodipodi:role="line"
+         x="832.27393"
+         y="665.41785"
+         style="font-size:10.2979px;line-height:1.25;fill:#000000"
+         id="tspan39">EEPROM</tspan></text><path
+       id="path40"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 811.3506,641.10034 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="826.46198"
+       y="650.42169"
+       id="text40"><tspan
+         sodipodi:role="line"
+         x="826.46198"
+         y="650.42169"
+         style="font-size:10.2979px;line-height:1.25;fill:#000000"
+         id="tspan40">SPI0</tspan></text><path
+       id="path41"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 811.08679,626.0862 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="826.19818"
+       y="635.40753"
+       id="text41"><tspan
+         sodipodi:role="line"
+         x="826.19818"
+         y="635.40753"
+         style="font-size:10.2979px;line-height:1.25;fill:#000000"
+         id="tspan41">SPI0</tspan></text><path
+       id="path43"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 529.93145,716.07625 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="545.04279"
+       y="725.39758"
+       id="text46"><tspan
+         sodipodi:role="line"
+         x="545.04279"
+         y="725.39758"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan46">FS</tspan></text><path
+       id="path42"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 497.56469,716.07625 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="512.67609"
+       y="725.39764"
+       id="text42"><tspan
+         sodipodi:role="line"
+         x="512.67609"
+         y="725.39764"
+         style="font-size:10.2979px;line-height:1.25;fill:#000000"
+         id="tspan42">PCM</tspan></text><path
+       id="path49"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 778.61709,731.10161 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="793.23926"
+       y="740.40753"
+       id="text50"><tspan
+         sodipodi:role="line"
+         x="793.23926"
+         y="740.40753"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan50">DIN</tspan></text><path
+       id="path50"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 778.61709,746.10162 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="793.23926"
+       y="755.40753"
+       id="text51"><tspan
+         sodipodi:role="line"
+         x="793.23926"
+         y="755.40753"
+         style="font-size:10.2979px;line-height:1.25"
+         id="tspan51">DOUT</tspan></text><path
+       id="path46"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 811.83509,731.10161 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="826.40576"
+       y="740.40753"
+       id="text49"><tspan
+         sodipodi:role="line"
+         x="826.40576"
+         y="740.40753"
+         style="font-size:10.2979px;line-height:1.25;fill:#000000"
+         id="tspan49">PCM</tspan></text><path
+       id="path51"
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 811.83509,746.10162 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+       xml:space="preserve"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       x="826.40576"
+       y="755.40753"
+       id="text52"><tspan
+         sodipodi:role="line"
+         x="826.40576"
+         y="755.40753"
+         style="font-size:10.2979px;line-height:1.25;fill:#000000"
+         id="tspan52">PCM</tspan></text><g
+       id="g53"
+       transform="translate(-4.9295156,-0.10303)"><path
+         id="path52"
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="m 816.76462,521.20464 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         x="831.43829"
+         y="530.47455"
+         id="text53"><tspan
+           sodipodi:role="line"
+           x="831.43829"
+           y="530.47455"
+           style="font-size:10.2979px;line-height:1.25;fill:#000000"
+           id="tspan53">UART</tspan></text></g><g
+       id="g54"
+       transform="translate(-4.9295156,-15.10303)"><path
+         id="path53"
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="m 816.76462,521.20464 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         x="831.43829"
+         y="530.47455"
+         id="text54"><tspan
+           sodipodi:role="line"
+           x="831.43829"
+           y="530.47455"
+           style="font-size:10.2979px;line-height:1.25;fill:#000000"
+           id="tspan54">UART</tspan></text></g><g
+       id="g60"
+       transform="translate(-4.6838975,-3.67637)"><path
+         id="path58"
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="m 783.30099,539.77799 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         x="798.021"
+         y="549.08392"
+         id="text60"><tspan
+           sodipodi:role="line"
+           x="798.021"
+           y="549.08392"
+           style="font-size:10.2979px;line-height:1.25"
+           id="tspan60">CLK</tspan></text></g><g
+       id="g61"
+       transform="translate(-19.362503,-16.26057)"><path
+         id="path54"
+         style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+         d="m 831.1976,552.36219 c -0.3606,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.74085,9.50317 c -0.2261,0.5757 0.19815,1.19864 0.81665,1.19934 h 8.99964 15.38269 9.00146 c 0.3618,2e-4 0.68678,-0.22147 0.81848,-0.55847 l 3.7024,-9.50683 c 0.2228,-0.5752 -0.20159,-1.19345 -0.81849,-1.19385 h -8.99963 -15.34607 z" /><text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Consolas;-inkscape-font-specification:'Consolas, Normal';text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         x="845.76831"
+         y="561.66809"
+         id="text58"><tspan
+           sodipodi:role="line"
+           x="845.76831"
+           y="561.66809"
+           style="font-size:10.2979px;line-height:1.25;fill:#000000"
+           id="tspan58">PCM</tspan></text></g><path
+       id="path62"
+       style="baseline-shift:baseline;display:inline;overflow:visible;fill:#ffcc00;fill-opacity:1;fill-rule:evenodd;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;enable-background:accumulate"
+       d="m 475.69665,896.73169 c -0.36059,3e-4 -0.68465,0.22104 -0.81665,0.55664 l -3.73901,9.50501 c -0.2261,0.5757 0.19632,1.19864 0.81482,1.19934 H 486 v -11.26099 z" /><path
+       id="path63"
+       style="baseline-shift:baseline;display:inline;overflow:visible;fill:#3771c8;fill-opacity:1;fill-rule:evenodd;stroke-width:1.75617;stroke-linecap:round;stroke-linejoin:round;enable-background:accumulate"
+       d="m 496.30335,907.99268 c 0.36059,-3e-4 0.68465,-0.22104 0.81665,-0.55664 l 3.73901,-9.50501 c 0.2261,-0.5757 -0.19632,-1.19864 -0.81482,-1.19934 H 486 v 11.26099 z" /></g></svg>
diff --git a/boards/beagley/ai/images/gpio/blinky.gif b/boards/beagley/ai/images/gpio/blinky.gif
new file mode 100644
index 0000000000000000000000000000000000000000..69bf6984f62991841e9587eeb3e1680f3f58bbcd
Binary files /dev/null and b/boards/beagley/ai/images/gpio/blinky.gif differ
diff --git a/boards/beagley/ai/images/gpio/buttonpressed.png b/boards/beagley/ai/images/gpio/buttonpressed.png
new file mode 100644
index 0000000000000000000000000000000000000000..7a7bdc5b8d89216b5f1911861c72fcd03db49d41
Binary files /dev/null and b/boards/beagley/ai/images/gpio/buttonpressed.png differ
diff --git a/boards/beagley/ai/images/gpio/off.png b/boards/beagley/ai/images/gpio/off.png
new file mode 100644
index 0000000000000000000000000000000000000000..43361d39f7a84a21126fabd0d289e4b14e4bb0b3
Binary files /dev/null and b/boards/beagley/ai/images/gpio/off.png differ
diff --git a/boards/beagley/ai/images/gpio/on.png b/boards/beagley/ai/images/gpio/on.png
new file mode 100644
index 0000000000000000000000000000000000000000..081e44169b80665e0dfbad2e20ee5b0cc6bcb0d2
Binary files /dev/null and b/boards/beagley/ai/images/gpio/on.png differ
diff --git a/boards/beagley/ai/images/gpio/pinout.png b/boards/beagley/ai/images/gpio/pinout.png
new file mode 100644
index 0000000000000000000000000000000000000000..162a67743f499849b69519143d9d0621951d825d
Binary files /dev/null and b/boards/beagley/ai/images/gpio/pinout.png differ
diff --git a/boards/beagley/ai/images/gpio/pwm.gif b/boards/beagley/ai/images/gpio/pwm.gif
new file mode 100644
index 0000000000000000000000000000000000000000..b479a11d1fbd96cd877359203c5da7942a2e8dcd
Binary files /dev/null and b/boards/beagley/ai/images/gpio/pwm.gif differ
diff --git a/boards/beagley/ai/images/gpio/pwm.jpg b/boards/beagley/ai/images/gpio/pwm.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..4afa6dd00e336938d7c11958003f5a0945716c81
Binary files /dev/null and b/boards/beagley/ai/images/gpio/pwm.jpg differ