Skip to content

Instantly share code, notes, and snippets.

@waveform80
Last active October 13, 2016 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save waveform80/96d3ab45805d1afa19166a6b032cfd4f to your computer and use it in GitHub Desktop.
Save waveform80/96d3ab45805d1afa19166a6b032cfd4f to your computer and use it in GitHub Desktop.
Delay demo

Delay

The demo script (delay.py) produces a "delayed" preview, with recording facilities. The pot (connected to the MCP3008) is used to control the amount by which the preview is delayed (can vary between 0 and 60 seconds), whilst one button is used to toggle recording (GPIO22), and the other to terminate the script (GPIO17).

Recording is written to "output.h264" in the current directory. This file is wiped when the script starts, and all recording is written to it (i.e. stopping the recording, then starting it again continues the recording from where it left off).

The recording is not delayed like the preview (this would require a lot more work). The display and recording currently run at VGA (640x480) resolution. You may attempt higher resolutions by adjusting the main block at the end of the script but be aware that the script is quite CPU intensive. Higher resolutions may fail to perform well, or may crash outright.

Requirements

  • A reasonably fast Pi (2B or 3B)
  • A Pi camera module (V1 or V2)
  • MCP3008 analog-to-digital converter
  • 3-pin potentiometer
  • 2 push buttons
  • The following packages to be installed:
    • python3-picamera
    • python3-gpiozero
    • python3-pil
    • python3-spidev
    • fonts-freefont-ttf

Setup

Wire the components as shown in the breadboard diagram (a circuit schematic is also provided for reference with the same wiring colors as the breadboard diagram). Ensure all required packages are installed, then execute the script with Python 3:

$ python3 delay.py

Dial the pot up and down to increase the delay (this will result in buffering until enough seconds of video have been recorded) or decrease the delay (this will skip forward in the buffered frames, if enough have been recorded). Press the record button on GPIO22 to start and pause recording. Recording will be indicated by a red circle in the upper-right corner.

The current delay factor will be displayed at all times at the top left. Finally, press the quit button on GPIO17 to terminate the script.

import io
from time import sleep
from threading import Thread
from collections import deque
from picamera import PiCamera
from gpiozero import MCP3008, Button
from PIL import Image, ImageDraw, ImageFont
class DelayedRenderer(object):
def __init__(self, camera, pot):
self.recording = False
self.resolution = camera.resolution
self.framerate = camera.framerate
self.pot = pot
self.font = ImageFont.truetype("/usr/share/fonts/truetype/freefont/FreeSans.ttf", 24)
img = Image.new('RGB', self.resolution)
self.renderer = camera.add_overlay(img.tobytes())
# Hack the renderer so it's go a few more buffers than usual (this is
# only necessary for smooth catch-up)
self.renderer.renderer.inputs[0].disable()
self.renderer.renderer.inputs[0]._port[0].buffer_num = 5
self.renderer.renderer.inputs[0].enable(callback=lambda port, buf: True)
self.delay_buffer = deque()
self.img_buffer = io.BytesIO()
self.stopped = False
self.delay_thread = Thread(target=self.delay_run)
self.delay_thread.start()
def write(self, buf):
if buf.startswith(b'\xff\xd8'):
# Start of new frame, write old one to delay-buffer
if self.img_buffer.tell():
self.img_buffer.seek(0)
self.delay_buffer.append(self.img_buffer)
self.img_buffer = io.BytesIO(buf)
self.img_buffer.seek(0, io.SEEK_END)
else:
self.img_buffer.write(buf)
def flush(self):
self.stopped = True
self.delay_thread.join()
def delay_run(self):
while not self.stopped:
delay_frames = int(60 * self.pot.value * self.framerate)
# If the delay buffer's just been increased, just render blank
# frames with a message until we fill the buffer
if len(self.delay_buffer) < delay_frames - 3:
img = Image.new('RGB', self.resolution)
draw = ImageDraw.Draw(img)
draw.text(
xy=(10, 10),
text='Current delay: ~%.1fs' % (delay_frames / self.framerate),
font=self.font,
fill=(255, 255, 255))
draw.text(
xy=(10, 50),
text='Buffering %.1fs' % ((delay_frames - len(self.delay_buffer)) / self.framerate),
font=self.font,
fill=(255, 0, 0))
if self.recording:
draw.ellipse(
xy=[(self.resolution[0] - 30, 10), (self.resolution[0] - 10, 30)],
fill=(255, 0, 0))
self.renderer.update(img.tobytes())
# Sleep for full frame-delay while we're catching up
sleep(1 / self.framerate)
else:
while len(self.delay_buffer) > delay_frames + 3:
# We're lagging way behind where we should be, drop frames
# until we're only three behind
self.delay_buffer.popleft()
# Render up to 4 frames from the start of the delay-buffer
num = 0
while num < 4 and len(self.delay_buffer) > delay_frames:
img = Image.open(self.delay_buffer.popleft())
draw = ImageDraw.Draw(img)
draw.text(
xy=(10, 10),
text='Current delay: ~%.1f seconds' % (delay_frames / self.framerate),
font=self.font,
fill=(255, 255, 255))
if self.recording:
draw.ellipse(
xy=[(self.resolution[0] - 30, 10), (self.resolution[0] - 10, 30)],
fill=(255, 0, 0))
self.renderer.update(img.tobytes())
num += 1
# Sleep for a shorter time than the frame-delay to allow
# catch-up in the event we fall a little behind
sleep(1 / (self.framerate * 3))
class DelayedApp(object):
def __init__(self, resolution, framerate):
self.stopped = False
self.pot = MCP3008(channel=1)
self.rec_button = Button(22)
self.quit_button = Button(17)
self.rec_button.when_pressed = self.start_rec
self.quit_button.when_pressed = self.quit
self.camera = PiCamera(resolution=resolution, framerate=framerate)
self.delay_output = DelayedRenderer(self.camera, self.pot)
self.rec_output = io.open('output.h264', 'wb')
def quit(self):
self.stopped = True
def start_rec(self):
self.camera.start_recording(
self.rec_output, splitter_port=2,
format='h264', quality=20, bitrate=1000000)
self.delay_output.recording = True
self.rec_button.when_pressed = self.stop_rec
def stop_rec(self):
self.camera.stop_recording(splitter_port=2)
self.delay_output.recording = False
self.rec_button.when_pressed = self.start_rec
def run(self):
self.camera.start_recording(self.delay_output, format='mjpeg')
try:
while not self.stopped:
self.camera.wait_recording(0.5)
finally:
self.camera.stop_recording()
if self.camera.recording:
self.camera.stop_recording(splitter_port=2)
self.rec_output.close()
self.camera.close()
self.quit_button.close()
self.rec_button.close()
self.pot.close()
if __name__ == '__main__':
app = DelayedApp(resolution=(640, 480), framerate=30)
app.run()
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Fritzing (http://www.fritzing.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.2"
x="0in"
y="0in"
width="4.37182in"
height="2.83165in"
viewBox="0 0 314.771 203.879"
id="svg2"
inkscape:version="0.91 r13725"
sodipodi:docname="delay_schem.svg">
<metadata
id="metadata1687">
<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>
<defs
id="defs1685" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1056"
id="namedview1683"
showgrid="false"
inkscape:zoom="6.0590072"
inkscape:cx="118.64569"
inkscape:cy="159.57081"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<g
partID="854101990"
id="g4"
transform="matrix(0.07192597,0,0,0.07192597,37.093602,47.854838)">
<g
transform="translate(40.0376,51.5636)"
id="g6">
<desc
id="desc8">Fritzing schematic generated by brd2svg</desc>
<g
id="schematic">
<rect
width="693.75"
height="887.5"
x="200"
y="6.25"
id="rect11"
style="fill:none;stroke:#000000;stroke-width:12.5;stroke-linecap:round;stroke-linejoin:round" />
<text
id="label"
font-size="48.6111"
x="550"
y="351.38901"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:middle;fill:#000000;stroke:none">MCP3008</text>
<line
y2="100"
x2="200"
y1="100"
x1="4.8611002"
id="line14"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector0pin"
width="200"
connectorName="CH0"
height="9.7222004"
x="0"
y="95.138901"
style="fill:none;stroke-width:0" />
<rect
id="connector0terminal"
width="0"
height="9.7222004"
x="0"
y="95.138901"
style="fill:none;stroke-width:0" />
<text
id="label0"
font-size="48.6111"
x="219.444"
y="109.722"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:start;fill:#8c8c8c;stroke:none">CH0</text>
<text
class="text"
font-size="34.7222"
x="100"
y="85.416702"
id="text19"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">1</text>
<line
y2="200"
x2="200"
y1="200"
x1="4.8611002"
id="line21"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector1pin"
width="200"
connectorName="CH1"
height="9.7222004"
x="0"
y="195.13901"
style="fill:none;stroke-width:0" />
<rect
id="connector1terminal"
width="0"
height="9.7222004"
x="0"
y="195.13901"
style="fill:none;stroke-width:0" />
<text
id="label1"
font-size="48.6111"
x="219.444"
y="209.722"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:start;fill:#8c8c8c;stroke:none">CH1</text>
<text
class="text"
font-size="34.7222"
x="100"
y="185.41701"
id="text26"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">2</text>
<line
y2="300"
x2="200"
y1="300"
x1="4.8611002"
id="line28"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector2pin"
width="200"
connectorName="CH2"
height="9.7222004"
x="0"
y="295.13901"
style="fill:none;stroke-width:0" />
<rect
id="connector2terminal"
width="0"
height="9.7222004"
x="0"
y="295.13901"
style="fill:none;stroke-width:0" />
<text
id="label2"
font-size="48.6111"
x="219.444"
y="309.72198"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:start;fill:#8c8c8c;stroke:none">CH2</text>
<text
class="text"
font-size="34.7222"
x="100"
y="285.41699"
id="text33"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">3</text>
<line
y2="400"
x2="200"
y1="400"
x1="4.8611002"
id="line35"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector3pin"
width="200"
connectorName="CH3"
height="9.7222004"
x="0"
y="395.13901"
style="fill:none;stroke-width:0" />
<rect
id="connector3terminal"
width="0"
height="9.7222004"
x="0"
y="395.13901"
style="fill:none;stroke-width:0" />
<text
id="label3"
font-size="48.6111"
x="219.444"
y="409.72198"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:start;fill:#8c8c8c;stroke:none">CH3</text>
<text
class="text"
font-size="34.7222"
x="100"
y="385.41699"
id="text40"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">4</text>
<line
y2="500"
x2="200"
y1="500"
x1="4.8611002"
id="line42"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector4pin"
width="200"
connectorName="CH4"
height="9.7222004"
x="0"
y="495.13901"
style="fill:none;stroke-width:0" />
<rect
id="connector4terminal"
width="0"
height="9.7222004"
x="0"
y="495.13901"
style="fill:none;stroke-width:0" />
<text
id="label4"
font-size="48.6111"
x="219.444"
y="509.72198"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:start;fill:#8c8c8c;stroke:none">CH4</text>
<text
class="text"
font-size="34.7222"
x="100"
y="485.41699"
id="text47"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">5</text>
<line
y2="600"
x2="200"
y1="600"
x1="4.8611002"
id="line49"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector5pin"
width="200"
connectorName="CH5"
height="9.7222004"
x="0"
y="595.13898"
style="fill:none;stroke-width:0" />
<rect
id="connector5terminal"
width="0"
height="9.7222004"
x="0"
y="595.13898"
style="fill:none;stroke-width:0" />
<text
id="label5"
font-size="48.6111"
x="219.444"
y="609.72198"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:start;fill:#8c8c8c;stroke:none">CH5</text>
<text
class="text"
font-size="34.7222"
x="100"
y="585.41699"
id="text54"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">6</text>
<line
y2="700"
x2="200"
y1="700"
x1="4.8611002"
id="line56"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector6pin"
width="200"
connectorName="CH6"
height="9.7222004"
x="0"
y="695.13898"
style="fill:none;stroke-width:0" />
<rect
id="connector6terminal"
width="0"
height="9.7222004"
x="0"
y="695.13898"
style="fill:none;stroke-width:0" />
<text
id="label6"
font-size="48.6111"
x="219.444"
y="709.72198"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:start;fill:#8c8c8c;stroke:none">CH6</text>
<text
class="text"
font-size="34.7222"
x="100"
y="685.41699"
id="text61"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">7</text>
<line
y2="800"
x2="200"
y1="800"
x1="4.8611002"
id="line63"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector7pin"
width="200"
connectorName="CH7"
height="9.7222004"
x="0"
y="795.13898"
style="fill:none;stroke-width:0" />
<rect
id="connector7terminal"
width="0"
height="9.7222004"
x="0"
y="795.13898"
style="fill:none;stroke-width:0" />
<text
id="label7"
font-size="48.6111"
x="219.444"
y="809.72198"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:start;fill:#8c8c8c;stroke:none">CH7</text>
<text
class="text"
font-size="34.7222"
x="100"
y="785.41699"
id="text68"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">8</text>
<line
y2="100"
x2="1095.14"
y1="100"
x1="895.13898"
id="line70"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector15pin"
width="200"
connectorname="Vdd"
height="9.7222004"
x="900"
y="95.138901"
style="fill:none;stroke-width:0" />
<rect
id="connector15terminal"
width="0"
height="9.7222004"
x="1100"
y="95.138901"
style="fill:none;stroke-width:0" />
<text
id="label15"
font-size="48.6111"
x="880.55603"
y="109.722"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:end;fill:#8c8c8c;stroke:none">Vdd</text>
<text
class="text"
font-size="34.7222"
x="1000"
y="85.416702"
id="text75"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">16</text>
<line
y2="200"
x2="1095.14"
y1="200"
x1="895.13898"
id="line77"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector14pin"
width="200"
connectorname="Vref"
height="9.7222004"
x="900"
y="195.13901"
style="fill:none;stroke-width:0" />
<rect
id="connector14terminal"
width="0"
height="9.7222004"
x="1100"
y="195.13901"
style="fill:none;stroke-width:0" />
<text
id="label14"
font-size="48.6111"
x="880.55603"
y="209.722"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:end;fill:#8c8c8c;stroke:none">Vref</text>
<text
class="text"
font-size="34.7222"
x="1000"
y="185.41701"
id="text82"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">15</text>
<line
y2="300"
x2="1095.14"
y1="300"
x1="895.13898"
id="line84"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector13pin"
width="200"
connectorname="AGND"
height="9.7222004"
x="900"
y="295.13901"
style="fill:none;stroke-width:0" />
<rect
id="connector13terminal"
width="0"
height="9.7222004"
x="1100"
y="295.13901"
style="fill:none;stroke-width:0" />
<text
id="label13"
font-size="48.6111"
x="880.55603"
y="309.72198"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:end;fill:#8c8c8c;stroke:none">AGND</text>
<text
class="text"
font-size="34.7222"
x="1000"
y="285.41699"
id="text89"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">14</text>
<line
y2="400"
x2="1095.14"
y1="400"
x1="895.13898"
id="line91"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector12pin"
width="200"
connectorname="CLK"
height="9.7222004"
x="900"
y="395.13901"
style="fill:none;stroke-width:0" />
<rect
id="connector12terminal"
width="0"
height="9.7222004"
x="1100"
y="395.13901"
style="fill:none;stroke-width:0" />
<text
id="label12"
font-size="48.6111"
x="880.55603"
y="409.72198"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:end;fill:#8c8c8c;stroke:none">CLK</text>
<text
class="text"
font-size="34.7222"
x="1000"
y="385.41699"
id="text96"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">13</text>
<line
y2="500"
x2="1095.14"
y1="500"
x1="895.13898"
id="line98"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector11pin"
width="200"
connectorname="Dout"
height="9.7222004"
x="900"
y="495.13901"
style="fill:none;stroke-width:0" />
<rect
id="connector11terminal"
width="0"
height="9.7222004"
x="1100"
y="495.13901"
style="fill:none;stroke-width:0" />
<text
id="label11"
font-size="48.6111"
x="880.55603"
y="509.72198"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:end;fill:#8c8c8c;stroke:none">Dout</text>
<text
class="text"
font-size="34.7222"
x="1000"
y="485.41699"
id="text103"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">12</text>
<line
y2="600"
x2="1095.14"
y1="600"
x1="895.13898"
id="line105"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector10pin"
width="200"
connectorname="Din"
height="9.7222004"
x="900"
y="595.13898"
style="fill:none;stroke-width:0" />
<rect
id="connector10terminal"
width="0"
height="9.7222004"
x="1100"
y="595.13898"
style="fill:none;stroke-width:0" />
<text
id="label10"
font-size="48.6111"
x="880.55603"
y="609.72198"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:end;fill:#8c8c8c;stroke:none">Din</text>
<text
class="text"
font-size="34.7222"
x="1000"
y="585.41699"
id="text110"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">11</text>
<line
y2="700"
x2="1095.14"
y1="700"
x1="895.13898"
id="line112"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector9pin"
width="200"
connectorname="CS/SHDN"
height="9.7222004"
x="900"
y="695.13898"
style="fill:none;stroke-width:0" />
<rect
id="connector9terminal"
width="0"
height="9.7222004"
x="1100"
y="695.13898"
style="fill:none;stroke-width:0" />
<text
id="label9"
font-size="48.6111"
x="880.55603"
y="709.72198"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:end;fill:#8c8c8c;stroke:none">CS/SHDN</text>
<text
class="text"
font-size="34.7222"
x="1000"
y="685.41699"
id="text117"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">10</text>
<line
y2="800"
x2="1095.14"
y1="800"
x1="895.13898"
id="line119"
style="fill:none;stroke:#787878;stroke-width:9.72220039;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="connector8pin"
width="200"
connectorname="DGND"
height="9.7222004"
x="900"
y="795.13898"
style="fill:none;stroke-width:0" />
<rect
id="connector8terminal"
width="0"
height="9.7222004"
x="1100"
y="795.13898"
style="fill:none;stroke-width:0" />
<text
id="label8"
font-size="48.6111"
x="880.55603"
y="809.72198"
style="font-size:48.61109924px;font-family:'Droid Sans';text-anchor:end;fill:#8c8c8c;stroke:none">DGND</text>
<text
class="text"
font-size="34.7222"
x="1000"
y="785.41699"
id="text124"
style="font-size:34.72219849px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0">9</text>
</g>
</g>
</g>
<g
partID="854101880"
id="g126">
<g
transform="translate(190.857,23.29)"
id="g128">
<g
id="g130">
<rect
stroke="#000000"
stroke-width="0.9"
width="78.301"
fill="#FFFFFF"
stroke-linecap="round"
height="135.899"
x="14.717"
y="14.673"
id="rect132" />
<line
id="connector39pin"
stroke="#787878"
stroke-width="0.75"
y2="14.569"
fill="none"
stroke-linecap="round"
x2="65.423"
y1="0.169"
x1="65.423" />
<g
id="connector39terminal"
width="0.764"
fill="none"
height="1.021"
x="65.041"
y="-0.35" />
<line
id="connector38pin"
stroke="#787878"
stroke-width="0.75"
y2="14.569"
fill="none"
stroke-linecap="round"
x2="65.423"
y1="0.169"
x1="65.423" />
<g
id="connector38terminal"
width="0.763"
fill="none"
height="1.021"
x="65.042"
y="-0.35" />
<line
id="line138"
stroke="#787878"
stroke-width="0.75"
y2="14.569"
fill="none"
stroke-linecap="round"
x2="43.824"
y1="0.169"
x1="43.824" />
<g
id="g140"
width="0.763"
fill="none"
height="1.038"
x="43.442"
y="-0.35" />
<line
id="line142"
stroke="#787878"
stroke-width="0.75"
y2="14.569"
fill="none"
stroke-linecap="round"
x2="43.824"
y1="0.169"
x1="43.824" />
<g
id="g144"
width="0.763"
fill="none"
height="1.038"
x="43.442"
y="-0.35" />
<line
id="connector25pin"
stroke="#787878"
stroke-width="0.75"
y2="165.073"
fill="none"
stroke-linecap="round"
x2="50.781"
y1="150.673"
x1="50.781" />
<line
id="connector23pin"
stroke="#787878"
stroke-width="0.75"
y2="165.073"
fill="none"
stroke-linecap="round"
x2="50.781"
y1="150.673"
x1="50.781" />
<line
id="connector19pin"
stroke="#787878"
stroke-width="0.75"
y2="165.073"
fill="none"
stroke-linecap="round"
x2="50.781"
y1="150.673"
x1="50.781" />
<line
id="line149"
stroke="#787878"
stroke-width="0.75"
y2="165.073"
fill="none"
stroke-linecap="round"
x2="50.781"
y1="150.673"
x1="50.781" />
<line
id="line151"
stroke="#787878"
stroke-width="0.75"
y2="165.073"
fill="none"
stroke-linecap="round"
x2="50.781"
y1="150.673"
x1="50.781" />
<g
id="g153"
width="0.762"
fill="none"
height="0.979"
x="50.4"
y="164.584" />
<g
id="g155"
width="0.762"
fill="none"
height="0.979"
x="50.4"
y="164.584" />
<line
id="connector30pin"
stroke="#787878"
stroke-width="0.75"
y2="165.073"
fill="none"
stroke-linecap="round"
x2="50.781"
y1="150.673"
x1="50.781" />
<line
id="connector33pin"
stroke="#787878"
stroke-width="0.75"
y2="165.073"
fill="none"
stroke-linecap="round"
x2="50.781"
y1="150.673"
x1="50.781" />
<line
id="connector37pin"
stroke="#787878"
stroke-width="0.75"
y2="165.073"
fill="none"
stroke-linecap="round"
x2="50.781"
y1="150.673"
x1="50.781" />
<g
id="connector30terminal"
width="0.762"
fill="none"
height="0.979"
x="50.4"
y="164.584" />
<g
id="connector33terminal"
width="0.762"
fill="none"
height="0.979"
x="50.4"
y="164.584" />
<g
id="connector37terminal"
width="0.762"
fill="none"
height="0.979"
x="50.4"
y="164.584" />
<g
id="connector25terminal"
width="0.762"
fill="none"
height="0.979"
x="50.4"
y="164.584" />
<g
id="connector23terminal"
width="0.762"
fill="none"
height="0.979"
x="50.4"
y="164.584" />
<g
id="connector19terminal"
width="0.762"
fill="none"
height="0.979"
x="50.4"
y="164.584" />
<g
id="connector87terminal" />
<g
id="g167">
<g
id="g169">
<g
id="g171">
<g
transform="matrix(1, 0, 0, 1, 58.6055, 115.987)"
id="g173">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text175">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 61.0195, 115.987)"
id="g177">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text179">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 63.0371, 115.987)"
id="g181">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text183">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 64.1875, 115.987)"
id="g185">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text187">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 66.7852, 115.987)"
id="g189">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text191">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 68.7129, 115.987)"
id="g193">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text195">4</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 70.6406, 115.987)"
id="g197">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text199" />
</g>
<g
transform="matrix(1, 0, 0, 1, 71.5508, 115.987)"
id="g201">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text203">U</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 73.9609, 115.987)"
id="g205">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text207">A</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 76.0879, 115.987)"
id="g209">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text211">R</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 78.1182, 115.987)"
id="g213">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text215">T</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 79.9355, 115.987)"
id="g217">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text219">0</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 81.8633, 115.987)"
id="g221">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text223">_</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 83.3008, 115.987)"
id="g225">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text227">T</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 85.1182, 115.987)"
id="g229">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text231">X</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 87.0322, 115.987)"
id="g233">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text235">D</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 89.4258, 115.987)"
id="g237">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text239" />
</g>
</g>
<g
id="g241">
<g
transform="matrix(1, 0, 0, 1, 59.2656, 108.787)"
id="g243">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text245">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 61.6816, 108.787)"
id="g247">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text249">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 63.6973, 108.787)"
id="g251">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text253">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 64.8496, 108.787)"
id="g255">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text257">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 67.4473, 108.787)"
id="g259">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text261">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 69.375, 108.787)"
id="g263">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text265">5</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 71.3027, 108.787)"
id="g267">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text269" />
</g>
<g
transform="matrix(1, 0, 0, 1, 72.2109, 108.787)"
id="g271">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text273">U</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 74.6211, 108.787)"
id="g275">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text277">A</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 76.749, 108.787)"
id="g279">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text281">R</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 78.7793, 108.787)"
id="g283">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text285">T</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 80.5957, 108.787)"
id="g287">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text289">0</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 82.5234, 108.787)"
id="g291">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text293">_</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 83.9629, 108.787)"
id="g295">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text297">R</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 86.0273, 108.787)"
id="g299">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text301">X</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 87.9414, 108.787)"
id="g303">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text305">D</text>
</g>
</g>
<g
id="g307">
<g
transform="matrix(1, 0, 0, 1, 62.9551, 101.587)"
id="g309">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text311">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 65.3711, 101.587)"
id="g313">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text315">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 67.3867, 101.587)"
id="g317">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text319">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 68.5391, 101.587)"
id="g321">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text323">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 71.1367, 101.587)"
id="g325">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text327">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 73.0645, 101.587)"
id="g329">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text331">8</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 74.9922, 101.587)"
id="g333">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text335" />
</g>
<g
transform="matrix(1, 0, 0, 1, 75.9004, 101.587)"
id="g337">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text339">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 77.8828, 101.587)"
id="g341">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text343">C</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 79.9941, 101.587)"
id="g345">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text347">M</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 83.0391, 101.587)"
id="g349">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text351">_</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 84.4785, 101.587)"
id="g353">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text355">C</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 86.5898, 101.587)"
id="g357">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text359">L</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 88.3086, 101.587)"
id="g361">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text363">K</text>
</g>
</g>
<g
id="g365">
<g
transform="matrix(1, 0, 0, 1, 78.2988, 94.387)"
id="g367">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text369">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 80.7148, 94.387)"
id="g371">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text373">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 82.7305, 94.387)"
id="g375">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text377">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 83.8828, 94.387)"
id="g379">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text381">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 86.4805, 94.387)"
id="g383">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text385">2</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 88.4082, 94.387)"
id="g387">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text389">3</text>
</g>
</g>
<g
id="g391">
<g
transform="matrix(1, 0, 0, 1, 78.2988, 87.1868)"
id="g393">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text395">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 80.7148, 87.1868)"
id="g397">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text399">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 82.7305, 87.1868)"
id="g401">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text403">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 83.8828, 87.1868)"
id="g405">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text407">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 86.4805, 87.1868)"
id="g409">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text411">2</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 88.4082, 87.1868)"
id="g413">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text415">4</text>
</g>
</g>
<g
id="g417">
<g
transform="matrix(1, 0, 0, 1, 78.2988, 79.9866)"
id="g419">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text421">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 80.7148, 79.9866)"
id="g423">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text425">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 82.7305, 79.9866)"
id="g427">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text429">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 83.8828, 79.9866)"
id="g431">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text433">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 86.4805, 79.9866)"
id="g435">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text437">2</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 88.4082, 79.9866)"
id="g439">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text441">5</text>
</g>
</g>
<g
id="g443">
<g
transform="matrix(1, 0, 0, 1, 61.0547, 72.7864)"
id="g445">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text447">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 63.4707, 72.7864)"
id="g449">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text451">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 65.4863, 72.7864)"
id="g453">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text455">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 66.6387, 72.7864)"
id="g457">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text459">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 69.2363, 72.7864)"
id="g461">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text463">8</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 71.1641, 72.7864)"
id="g465">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text467" />
</g>
<g
transform="matrix(1, 0, 0, 1, 72.0723, 72.7864)"
id="g469">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text471">S</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 73.8896, 72.7864)"
id="g473">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text475">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 75.9063, 72.7864)"
id="g477">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text479">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 77.0918, 72.7864)"
id="g481">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text483">0</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 79.0195, 72.7864)"
id="g485">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text487">_</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 80.459, 72.7864)"
id="g489">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text491">C</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 82.5703, 72.7864)"
id="g493">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text495">E</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 84.417, 72.7864)"
id="g497">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text499">0</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 86.3447, 72.7864)"
id="g501">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text503">_</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 87.7832, 72.7864)"
id="g505">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text507">N</text>
</g>
</g>
<g
id="g509">
<g
transform="matrix(1, 0, 0, 1, 61.0547, 65.5862)"
id="g511">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text513">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 63.4707, 65.5862)"
id="g515">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text517">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 65.4863, 65.5862)"
id="g519">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text521">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 66.6387, 65.5862)"
id="g523">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text525">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 69.2363, 65.5862)"
id="g527">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text529">7</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 71.1641, 65.5862)"
id="g531">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text533" />
</g>
<g
transform="matrix(1, 0, 0, 1, 72.0723, 65.5862)"
id="g535">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text537">S</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 73.8896, 65.5862)"
id="g539">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text541">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 75.9063, 65.5862)"
id="g543">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text545">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 77.0918, 65.5862)"
id="g547">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text549">0</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 79.0195, 65.5862)"
id="g551">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text553">_</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 80.459, 65.5862)"
id="g555">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text557">C</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 82.5703, 65.5862)"
id="g559">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text561">E</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 84.417, 65.5862)"
id="g563">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text565">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 86.3447, 65.5862)"
id="g567">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text569">_</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 87.7832, 65.5862)"
id="g571">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text573">N</text>
</g>
</g>
<g
id="g575">
<g
transform="matrix(1, 0, 0, 1, 55.5293, 58.386)"
id="g577">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text579">ID_SC I2C ID EEPROM </text>
</g>
</g>
<g
id="g581">
<g
transform="matrix(1, 0, 0, 1, 78.2988, 51.1858)"
id="g583">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text585">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 80.7148, 51.1858)"
id="g587">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text589">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 82.7305, 51.1858)"
id="g591">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text593">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 83.8828, 51.1858)"
id="g595">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text597">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 86.4805, 51.1858)"
id="g599">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text601">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 88.4082, 51.1858)"
id="g603">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text605">2</text>
</g>
</g>
<g
id="g607">
<g
transform="matrix(1, 0, 0, 1, 78.2988, 43.9856)"
id="g609">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text611">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 80.7148, 43.9856)"
id="g613">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text615">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 82.7305, 43.9856)"
id="g617">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text619">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 83.8828, 43.9856)"
id="g621">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text623">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 86.4805, 43.9856)"
id="g625">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text627">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 88.4082, 43.9856)"
id="g629">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text631">6</text>
</g>
</g>
<g
id="g633">
<g
transform="matrix(1, 0, 0, 1, 78.2988, 36.7854)"
id="g635">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text637">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 80.7148, 36.7854)"
id="g639">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text641">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 82.7305, 36.7854)"
id="g643">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text645">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 83.8828, 36.7854)"
id="g647">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text649">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 86.4805, 36.7854)"
id="g651">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text653">2</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 88.4082, 36.7854)"
id="g655">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text657">0</text>
</g>
</g>
<g
id="g659">
<g
transform="matrix(1, 0, 0, 1, 78.2988, 29.5852)"
id="g661">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text663">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 80.7148, 29.5852)"
id="g665">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text667">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 82.7305, 29.5852)"
id="g669">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text671">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 83.8828, 29.5852)"
id="g673">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text675">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 86.4805, 29.5852)"
id="g677">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text679">2</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 88.4082, 29.5852)"
id="g681">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text683">1</text>
</g>
</g>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 29.5852)"
id="g685">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text687">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 29.5852)"
id="g689">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text691">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 29.5852)"
id="g693">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text695">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 29.5852)"
id="g697">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text699">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 29.5852)"
id="g701">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text703">2</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 26.0376, 29.5852)"
id="g705">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text707" />
</g>
<g
transform="matrix(1, 0, 0, 1, 26.9468, 29.5852)"
id="g709">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text711">S</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 28.7637, 29.5852)"
id="g713">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text715">D</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 31.1235, 29.5852)"
id="g717">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text719">A</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 33.2515, 29.5852)"
id="g721">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text723">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 35.1792, 29.5852)"
id="g725">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text727" />
</g>
<g
transform="matrix(1, 0, 0, 1, 36.0884, 29.5852)"
id="g729">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text731">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 37.2744, 29.5852)"
id="g733">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text735">2</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 39.2021, 29.5852)"
id="g737">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text739">C</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 36.7864)"
id="g741">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text743">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 36.7864)"
id="g745">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text747">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 36.7864)"
id="g749">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text751">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 36.7864)"
id="g753">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text755">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 36.7864)"
id="g757">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text759">3</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 26.0376, 36.7864)"
id="g761">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text763" />
</g>
<g
transform="matrix(1, 0, 0, 1, 26.9468, 36.7864)"
id="g765">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text767">S</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 28.7637, 36.7864)"
id="g769">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text771">C</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 30.8745, 36.7864)"
id="g773">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text775">L</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 32.5933, 36.7864)"
id="g777">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text779">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 34.521, 36.7864)"
id="g781">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text783" />
</g>
<g
transform="matrix(1, 0, 0, 1, 35.4302, 36.7864)"
id="g785">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text787">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 36.6167, 36.7864)"
id="g789">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text791">2</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 38.5444, 36.7864)"
id="g793">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text795">C</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 43.9856)"
id="g797">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text799">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 43.9856)"
id="g801">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text803">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 43.9856)"
id="g805">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text807">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 43.9856)"
id="g809">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text811">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 43.9856)"
id="g813">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text815">4</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 51.1848)"
id="g817">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text819">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 51.1848)"
id="g821">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text823">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 51.1848)"
id="g825">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text827">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 51.1848)"
id="g829">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text831">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 51.1848)"
id="g833">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text835">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 26.0376, 51.1848)"
id="g837">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text839">7</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 58.385)"
id="g841">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text843">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 58.385)"
id="g845">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text847">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 58.385)"
id="g849">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text851">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 58.385)"
id="g853">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text855">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 58.385)"
id="g857">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text859">2</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 26.0376, 58.385)"
id="g861">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text863">7</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 65.5852)"
id="g865">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text867">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 65.5852)"
id="g869">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text871">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 65.5852)"
id="g873">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text875">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 65.5852)"
id="g877">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text879">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 65.5852)"
id="g881">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text883">2</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 26.0376, 65.5852)"
id="g885">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text887">2</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 72.7864)"
id="g889">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text891">GIPO10 SPI0_MOSI </text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 79.9856)"
id="g893">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text895">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 79.9856)"
id="g897">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text899">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 79.9856)"
id="g901">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text903">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 79.9856)"
id="g905">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text907">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 79.9856)"
id="g909">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text911">9</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 26.0376, 79.9856)"
id="g913">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text915" />
</g>
<g
transform="matrix(1, 0, 0, 1, 26.9468, 79.9856)"
id="g917">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text919">S</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 28.7637, 79.9856)"
id="g921">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text923">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 30.7803, 79.9856)"
id="g925">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text927">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 31.9663, 79.9856)"
id="g929">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text931">0</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 33.894, 79.9856)"
id="g933">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text935">_</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 35.333, 79.9856)"
id="g937">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text939">M</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 38.3784, 79.9856)"
id="g941">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text943">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 39.5645, 79.9856)"
id="g945">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text947">S</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 41.3813, 79.9856)"
id="g949">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text951">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 87.1848)"
id="g953">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text955">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 87.1848)"
id="g957">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text959">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 87.1848)"
id="g961">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text963">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 87.1848)"
id="g965">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text967">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 87.1848)"
id="g969">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text971">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 26.0376, 87.1848)"
id="g973">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text975">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 27.9653, 87.1848)"
id="g977">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text979" />
</g>
<g
transform="matrix(1, 0, 0, 1, 28.8745, 87.1848)"
id="g981">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text983">S</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 30.6914, 87.1848)"
id="g985">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text987">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 32.708, 87.1848)"
id="g989">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text991">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 33.894, 87.1848)"
id="g993">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text995">0</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 35.8218, 87.1848)"
id="g997">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text999">_</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 37.2607, 87.1848)"
id="g1001">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1003">S</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 39.0776, 87.1848)"
id="g1005">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1007">C</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 41.188, 87.1848)"
id="g1009">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1011">L</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 42.9072, 87.1848)"
id="g1013">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1015">K</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 94.386)"
id="g1017">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1019">ID_SD I2C ID EEPROM</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 101.585)"
id="g1021">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1023">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 101.585)"
id="g1025">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1027">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 101.585)"
id="g1029">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1031">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 101.585)"
id="g1033">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1035">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 101.585)"
id="g1037">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1039">5</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 108.785)"
id="g1041">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1043">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 108.785)"
id="g1045">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1047">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 108.785)"
id="g1049">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1051">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 108.785)"
id="g1053">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1055">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 108.785)"
id="g1057">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1059">5</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 108.785)"
id="g1061">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1063">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 108.785)"
id="g1065">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1067">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 108.785)"
id="g1069">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1071">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 108.785)"
id="g1073">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1075">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 108.785)"
id="g1077">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1079">6</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 115.986)"
id="g1081">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1083">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 115.986)"
id="g1085">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1087">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 115.986)"
id="g1089">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1091">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 115.986)"
id="g1093">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1095">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 115.986)"
id="g1097">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1099">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 26.0376, 115.986)"
id="g1101">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1103">3</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 123.186)"
id="g1105">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1107">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 123.186)"
id="g1109">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1111">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 123.186)"
id="g1113">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1115">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 123.186)"
id="g1117">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1119">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 123.186)"
id="g1121">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1123">1</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 26.0376, 123.186)"
id="g1125">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1127">9</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 15.9292, 130.386)"
id="g1129">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1131">G</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 18.3442, 130.386)"
id="g1133">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1135">P</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 20.3608, 130.386)"
id="g1137">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1139">I</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 21.5122, 130.386)"
id="g1141">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1143">O</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 24.1099, 130.386)"
id="g1145">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1147">2</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 26.0376, 130.386)"
id="g1149">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1151">6</text>
</g>
<g
transform="matrix(-1.83697e-16, -1, 1, -1.83697e-16, 52.0796, 149.536)"
id="g1153">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1155">GND</text>
</g>
<g
transform="matrix(-1.83697e-16, -1, 1, -1.83697e-16, 43.6802, 22.0793)"
id="g1157">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1159">3V3</text>
</g>
<g
transform="matrix(-1.83697e-16, -1, 1, -1.83697e-16, 65.2813, 20.1516)"
id="g1161">
<text
fill="#8C8C8C"
font-size="3.5"
font-family="'DroidSans'"
id="text1163">5V</text>
</g>
<g
id="g1165">
<g
transform="matrix(1, 0, 0, 1, 42.5239, 43.4075)"
id="g1167">
<text
id="label_3_"
font-size="4.25"
font-family="'DroidSans'">RaspberryPi</text>
</g>
<g
transform="matrix(1, 0, 0, 1, 42.9077, 49.9407)"
id="g1170">
<text
id="label_1_"
font-size="4.25"
font-family="'DroidSans'">Model 2 v1.1</text>
</g>
</g>
</g>
<g
id="g1173">
<line
id="line1175"
stroke="#787878"
stroke-width="1.0665"
y2="28.895"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="28.895"
x1="0.329" />
<g
id="g1177"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.208"
x="-0.294"
y="28.8" />
</g>
<g
id="g1179">
<line
id="line1181"
stroke="#787878"
stroke-width="1.0665"
y2="36.095"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="36.095"
x1="0.329" />
<g
id="g1183"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.208"
x="-0.294"
y="35.999" />
</g>
<g
id="g1185">
<line
id="line1187"
stroke="#787878"
stroke-width="1.0665"
y2="43.296"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="43.296"
x1="0.329" />
<g
id="g1189"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.208"
x="-0.294"
y="43.199" />
</g>
<g
id="g1191">
<line
id="line1193"
stroke="#787878"
stroke-width="1.0665"
y2="50.496"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="50.496"
x1="0.329" />
<g
id="g1195"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.208"
x="-0.294"
y="50.4" />
</g>
<g
id="g1197">
<line
id="line1199"
stroke="#787878"
stroke-width="1.0665"
y2="57.696"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="57.696"
x1="0.329" />
<g
id="g1201"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.208"
x="-0.294"
y="57.6" />
</g>
<g
id="g1203">
<line
id="line1205"
stroke="#787878"
stroke-width="1.0665"
y2="64.896"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="64.896"
x1="0.329" />
<g
id="g1207"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.208"
x="-0.294"
y="64.8" />
</g>
<g
id="g1209">
<line
id="line1211"
stroke="#787878"
stroke-width="1.0665"
y2="72.095"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="72.095"
x1="0.329" />
<g
id="g1213"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.208"
x="-0.294"
y="72" />
</g>
<g
id="g1215">
<line
id="line1217"
stroke="#787878"
stroke-width="1.0665"
y2="79.296"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="79.296"
x1="0.329" />
<g
id="g1219"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.208"
x="-0.294"
y="79.199" />
</g>
<g
id="g1221">
<line
id="line1223"
stroke="#787878"
stroke-width="1.0665"
y2="86.495"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="86.495"
x1="0.329" />
<g
id="g1225"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.208"
x="-0.294"
y="86.4" />
</g>
<g
id="g1227">
<line
id="line1229"
stroke="#787878"
stroke-width="1.0665"
y2="93.696"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="93.696"
x1="0.329" />
<g
id="g1231"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.208"
x="-0.294"
y="93.6" />
</g>
<g
id="g1233">
<line
id="line1235"
stroke="#787878"
stroke-width="1.0665"
y2="100.896"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="100.896"
x1="0.329" />
<g
id="g1237"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.208"
x="-0.294"
y="100.8" />
</g>
<g
id="g1239">
<line
id="line1241"
stroke="#787878"
stroke-width="1.0665"
y2="108.096"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="108.096"
x1="0.329" />
<g
id="g1243"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.208"
x="-0.294"
y="107.999" />
</g>
<g
id="g1245">
<line
id="connector16pin"
stroke="#787878"
stroke-width="1.0665"
y2="115.294"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="115.294"
x1="0.329" />
<g
id="connector16terminal"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.209"
x="-0.294"
y="115.198" />
</g>
<g
id="g1249">
<line
id="connector17pin"
stroke="#787878"
stroke-width="1.0665"
y2="122.495"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="122.495"
x1="0.329" />
<g
id="connector17terminal"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.207"
x="-0.294"
y="122.4" />
</g>
<g
id="g1253">
<line
id="connector18pin"
stroke="#787878"
stroke-width="1.0665"
y2="129.695"
fill="none"
stroke-linecap="round"
x2="14.729"
y1="129.695"
x1="0.329" />
<g
id="connector18terminal"
stroke="#787878"
stroke-width="0.75"
width="0.546"
fill="none"
stroke-linecap="round"
height="0.209"
x="-0.294"
y="129.599" />
</g>
<g
id="g1257">
<line
id="connector20pin"
stroke="#787878"
stroke-width="1.0665"
y2="28.888"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="28.888"
x1="93.018" />
<g
id="connector20terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.208"
x="107.59"
y="28.792" />
</g>
<g
id="g1261">
<line
id="connector21pin"
stroke="#787878"
stroke-width="1.0665"
y2="36.088"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="36.088"
x1="93.018" />
<g
id="connector21terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.208"
x="107.59"
y="35.992" />
</g>
<g
id="g1265">
<line
id="connector22pin"
stroke="#787878"
stroke-width="1.0665"
y2="43.288"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="43.288"
x1="93.018" />
<g
id="connector22terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.207"
x="107.59"
y="43.193" />
</g>
<g
id="g1269">
<line
id="connector24pin"
stroke="#787878"
stroke-width="1.0665"
y2="50.488"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="50.488"
x1="93.018" />
<g
id="connector24terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.207"
x="107.59"
y="50.392" />
</g>
<g
id="g1273">
<line
id="connector26pin"
stroke="#787878"
stroke-width="1.0665"
y2="57.689"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="57.689"
x1="93.018" />
<g
id="connector26terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.207"
x="107.59"
y="57.593" />
</g>
<g
id="g1277">
<line
id="connector27pin"
stroke="#787878"
stroke-width="1.0665"
y2="64.887"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="64.887"
x1="93.018" />
<g
id="connector27terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.207"
x="107.59"
y="64.792" />
</g>
<g
id="g1281">
<line
id="connector28pin"
stroke="#787878"
stroke-width="1.0665"
y2="72.088"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="72.088"
x1="93.018" />
<g
id="connector28terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.209"
x="107.59"
y="71.99" />
</g>
<g
id="g1285">
<line
id="connector29pin"
stroke="#787878"
stroke-width="1.0665"
y2="79.287"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="79.287"
x1="93.018" />
<g
id="connector29terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.207"
x="107.59"
y="79.192" />
</g>
<g
id="g1289">
<line
id="connector31pin"
stroke="#787878"
stroke-width="1.0665"
y2="86.49"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="86.49"
x1="93.018" />
<g
id="connector31terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.207"
x="107.59"
y="86.393" />
</g>
<g
id="g1293">
<line
id="connector32pin"
stroke="#787878"
stroke-width="1.0665"
y2="93.688"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="93.688"
x1="93.018" />
<g
id="connector32terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.207"
x="107.59"
y="93.592" />
</g>
<g
id="g1297">
<line
id="connector34pin"
stroke="#787878"
stroke-width="1.0665"
y2="100.888"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="100.888"
x1="93.018" />
<g
id="connector34terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.207"
x="107.59"
y="100.792" />
</g>
<g
id="g1301">
<line
id="connector35pin"
stroke="#787878"
stroke-width="1.0665"
y2="108.087"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="108.087"
x1="93.018" />
<g
id="connector35terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.209"
x="107.59"
y="107.991" />
</g>
<g
id="g1305">
<line
id="connector36pin"
stroke="#787878"
stroke-width="1.0665"
y2="115.288"
fill="none"
stroke-linecap="round"
x2="107.418"
y1="115.288"
x1="93.018" />
<g
id="connector36terminal"
stroke="#787878"
stroke-width="0.75"
width="0.547"
fill="none"
stroke-linecap="round"
height="0.207"
x="107.59"
y="115.193" />
</g>
</g>
</g>
</g>
<g
id="g1353"
width="0.000283465"
class="terminal"
height="0.000283465"
x="3.24"
y="43.5502"
style="fill:none;stroke:none;stroke-width:0"
transform="matrix(1,0,0,-1,7.99744,87.9139)" />
<g
id="g1367"
width="0.000283465"
class="terminal"
height="0.000283465"
x="3.24"
y="0.35"
style="fill:none;stroke:none;stroke-width:0"
transform="matrix(1,0,0,-1,7.99744,87.9139)" />
<line
id="line1379"
y2="65.963898"
class="pin"
x2="18.437439"
connectorname="S"
y1="65.963898"
x1="25.63744"
style="stroke:#787878;stroke-width:0.69999897;stroke-linecap:round" />
<g
id="g1381"
width="0.000283465"
class="terminal"
height="0.000283465"
x="17.64"
y="21.95"
style="fill:none;stroke:none;stroke-width:0"
transform="matrix(1,0,0,-1,7.99744,87.9139)" />
<g
id="g5385">
<line
style="stroke:#000000;stroke-width:0.43200001;stroke-linecap:round"
id="line1317"
x1="11.23744"
y1="51.563698"
x2="11.23744"
class="other"
y2="53.0037" />
<line
style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:round"
id="line1319"
x1="11.23744"
y1="53.0037"
x2="8.35744"
class="other"
y2="55.1637" />
<line
style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:round"
id="line1321"
x1="8.35744"
y1="55.1637"
x2="14.83744"
class="other"
y2="58.763699" />
<line
style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:round"
id="line1323"
x1="14.83744"
y1="58.763699"
x2="8.35744"
class="other"
y2="62.3638" />
<line
style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:round"
id="line1325"
x1="8.35744"
y1="62.3638"
x2="14.83744"
class="other"
y2="65.963898" />
<line
style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:round"
id="line1327"
x1="14.83744"
y1="65.963898"
x2="8.35744"
class="other"
y2="69.563896" />
<line
style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:round"
id="line1329"
x1="8.35744"
y1="69.563896"
x2="14.83744"
class="other"
y2="73.163902" />
<line
style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:round"
id="line1331"
x1="14.83744"
y1="73.163902"
x2="8.35744"
class="other"
y2="76.763901" />
<line
style="stroke:#000000;stroke-width:0.72000003;stroke-linecap:round"
id="line1333"
x1="8.35744"
y1="76.763901"
x2="11.23744"
class="other"
y2="78.923882" />
<line
style="stroke:#000000;stroke-width:0.43200001;stroke-linecap:round"
id="line1335"
x1="11.23744"
y1="78.923882"
x2="11.23744"
class="other"
y2="80.363892" />
<line
style="stroke:#000000;stroke-width:0.57599998;stroke-linecap:round"
id="line1337"
x1="14.83744"
y1="65.963898"
x2="18.437439"
class="other"
y2="69.563896" />
<line
style="stroke:#000000;stroke-width:0.57599998;stroke-linecap:round"
id="line1339"
x1="18.437439"
y1="62.3638"
x2="14.83744"
class="other"
y2="65.963898" />
<line
style="stroke:#000000;stroke-width:0.57599998;stroke-linecap:round"
id="line1341"
x1="18.437439"
y1="69.563896"
x2="18.437439"
class="other"
y2="62.3638" />
<line
style="stroke:#000000;stroke-width:0.43200001;stroke-linecap:round"
id="line1343"
x1="16.99744"
y1="52.6437"
x2="16.99744"
class="other"
y2="59.8438" />
<line
style="stroke:#000000;stroke-width:0.43200001;stroke-linecap:round"
id="line1345"
x1="16.99744"
y1="59.8438"
x2="18.79744"
class="other"
y2="56.243698" />
<line
style="stroke:#000000;stroke-width:0.43200001;stroke-linecap:round"
id="line1347"
x1="18.79744"
y1="56.243698"
x2="15.19744"
class="other"
y2="56.243698" />
<line
style="stroke:#000000;stroke-width:0.43200001;stroke-linecap:round"
id="line1349"
x1="15.19744"
y1="56.243698"
x2="16.99744"
class="other"
y2="59.8438" />
<line
style="stroke:#787878;stroke-width:0.69999897;stroke-linecap:round"
x1="11.23744"
y1="44.363697"
connectorname="A"
x2="11.23744"
class="pin"
y2="51.563698"
id="line1351" />
<g
id="g1355"
transform="translate(10.18744,47.952714)">
<g
id="g1357">
<g
id="g1359"
transform="matrix(0,-1,1,0,0,0)">
<g
id="g1361">
<text
style="font-size:2.5px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0"
id="text1363"
y="0"
x="0"
font-size="2.5"
class="text">3</text>
</g>
</g>
</g>
</g>
<line
style="stroke:#787878;stroke-width:0.69999897;stroke-linecap:round"
x1="11.23744"
y1="87.563904"
connectorname="E"
x2="11.23744"
class="pin"
y2="80.363892"
id="line1365" />
<g
id="g1369"
transform="translate(10.18744,84.006625)">
<g
id="g1371">
<g
id="g1373"
transform="matrix(0,-1,1,0,0,0)">
<g
id="g1375">
<text
style="font-size:2.5px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0"
id="text1377"
y="0"
x="0"
font-size="2.5"
class="text">1</text>
</g>
</g>
</g>
</g>
<text
style="font-size:2.5px;font-family:'Droid Sans';text-anchor:middle;fill:#8c8c8c;stroke:none;stroke-width:0"
id="text1383"
y="68.86927"
x="22.037439"
font-size="2.5"
class="text">2</text>
</g>
<g
id="g1425"
points="0.822,4.281,0.837,3.64,0,3.64,0,4.281"
style="fill:none"
transform="matrix(-1,0,0,1,170.056,54.8031)" />
<g
id="g1427"
points="0.822,18.694,0.837,18.053,0,18.053,0,18.694"
style="fill:none"
transform="matrix(-1,0,0,1,170.056,54.8031)" />
<g
id="g1431"
width="0.994"
height="0.672"
x="27.806"
y="18.006"
style="fill:none"
transform="matrix(-1,0,0,1,170.056,54.8031)" />
<g
id="g1433"
width="1.088"
height="0.719"
x="27.712"
y="3.6"
style="fill:none"
transform="matrix(-1,0,0,1,170.056,54.8031)" />
<g
id="g5109">
<line
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round"
id="line1393"
x1="150.256"
y1="65.962097"
x2="148.45599"
y2="65.962097" />
<line
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round"
id="line1395"
x1="162.856"
y1="65.962097"
x2="150.256"
y2="62.362099" />
<circle
transform="scale(-1,1)"
style="fill:none;stroke:#000000;stroke-width:0.69999999"
id="circle1397"
cx="-162.856"
cy="65.962097"
r="0.36000001" />
<circle
transform="scale(-1,1)"
style="fill:none;stroke:#000000;stroke-width:0.69999999"
id="circle1399"
cx="-148.45599"
cy="65.962097"
r="0.36000001" />
<g
id="g1401"
transform="translate(165.98718,57.5211)">
<text
style="font-size:2px;font-family:DroidSans;fill:#787878"
id="text1403"
font-size="2">1</text>
</g>
<g
id="g1405"
transform="translate(144.23325,57.5211)">
<text
style="font-size:2px;font-family:DroidSans;fill:#787878"
id="text1407"
font-size="2">2</text>
</g>
<g
id="g1409"
transform="translate(165.98718,71.6461)">
<text
style="font-size:2px;font-family:DroidSans;fill:#787878"
id="text1411"
font-size="2">1</text>
</g>
<g
id="g1413"
transform="translate(144.23325,71.6461)">
<text
style="font-size:2px;font-family:DroidSans;fill:#787878"
id="text1415"
font-size="2">2</text>
</g>
<line
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round"
id="line1417"
x1="148.45599"
y1="58.7631"
x2="148.45599"
y2="73.162102" />
<line
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round"
id="line1419"
x1="162.856"
y1="58.7631"
x2="162.856"
y2="73.162102" />
<line
style="fill:none;stroke:#555555;stroke-width:0.69999999;stroke-linecap:round"
x1="169.73399"
y1="73.162102"
x2="162.856"
y2="73.162102"
id="line1421" />
<line
style="fill:none;stroke:#555555;stroke-width:0.69999999;stroke-linecap:round"
x1="169.73399"
y1="58.7631"
x2="162.856"
y2="58.7631"
id="line1423" />
<line
style="fill:none;stroke:#555555;stroke-width:0.69999999;stroke-linecap:round"
x1="141.605"
y1="73.162102"
x2="148.45599"
y2="73.162102"
id="line1429" />
<line
style="fill:none;stroke:#555555;stroke-width:0.69999999;stroke-linecap:round"
x1="141.605"
y1="58.7631"
x2="148.45599"
y2="58.7631"
id="line1435" />
</g>
<g
id="g1477"
points="0.822,4.281,0.837,3.64,0,3.64,0,4.281"
style="fill:none"
transform="matrix(-1,0,0,1,170.056,18.8031)" />
<g
id="g1479"
points="0.822,18.694,0.837,18.053,0,18.053,0,18.694"
style="fill:none"
transform="matrix(-1,0,0,1,170.056,18.8031)" />
<g
id="g1483"
width="0.994"
height="0.672"
x="27.806"
y="18.006"
style="fill:none"
transform="matrix(-1,0,0,1,170.056,18.8031)" />
<g
id="g1485"
width="1.088"
height="0.719"
x="27.712"
y="3.6"
style="fill:none"
transform="matrix(-1,0,0,1,170.056,18.8031)" />
<g
id="g5223">
<line
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round"
id="line1445"
x1="150.256"
y1="29.962101"
x2="148.45599"
y2="29.962101" />
<line
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round"
id="line1447"
x1="162.856"
y1="29.962101"
x2="150.256"
y2="26.362101" />
<circle
transform="scale(-1,1)"
style="fill:none;stroke:#000000;stroke-width:0.69999999"
id="circle1449"
cx="-162.856"
cy="29.962101"
r="0.36000001" />
<circle
transform="scale(-1,1)"
style="fill:none;stroke:#000000;stroke-width:0.69999999"
id="circle1451"
cx="-148.45599"
cy="29.962101"
r="0.36000001" />
<g
id="g1453"
transform="translate(165.98718,21.5211)">
<text
style="font-size:2px;font-family:DroidSans;fill:#787878"
id="text1455"
font-size="2">1</text>
</g>
<g
id="g1457"
transform="translate(144.23325,21.5211)">
<text
style="font-size:2px;font-family:DroidSans;fill:#787878"
id="text1459"
font-size="2">2</text>
</g>
<g
id="g1461"
transform="translate(165.98718,35.6461)">
<text
style="font-size:2px;font-family:DroidSans;fill:#787878"
id="text1463"
font-size="2">1</text>
</g>
<g
id="g1465"
transform="translate(144.23325,35.6461)">
<text
style="font-size:2px;font-family:DroidSans;fill:#787878"
id="text1467"
font-size="2">2</text>
</g>
<line
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round"
id="line1469"
x1="148.45599"
y1="22.7631"
x2="148.45599"
y2="37.162098" />
<line
style="fill:none;stroke:#000000;stroke-width:0.69999999;stroke-linecap:round"
id="line1471"
x1="162.856"
y1="22.7631"
x2="162.856"
y2="37.162098" />
<line
style="fill:none;stroke:#555555;stroke-width:0.69999999;stroke-linecap:round"
x1="169.73399"
y1="37.162098"
x2="162.856"
y2="37.162098"
id="line1473" />
<line
style="fill:none;stroke:#555555;stroke-width:0.69999999;stroke-linecap:round"
x1="169.73399"
y1="22.7631"
x2="162.856"
y2="22.7631"
id="line1475" />
<line
style="fill:none;stroke:#555555;stroke-width:0.69999999;stroke-linecap:round"
x1="141.605"
y1="37.162098"
x2="148.45599"
y2="37.162098"
id="line1481" />
<line
style="fill:none;stroke:#555555;stroke-width:0.69999999;stroke-linecap:round"
x1="141.605"
y1="22.7631"
x2="148.45599"
y2="22.7631"
id="line1487" />
</g>
<g
partID="854110500"
id="g1489">
<line
stroke-linecap="round"
stroke="#404040"
x1="11.2606"
y1="202.824"
x2="11.2376"
y2="87.5638"
stroke-width="0.699998"
id="line1491" />
</g>
<g
partID="854126840"
id="g1493">
<line
stroke-linecap="round"
stroke="#404040"
x1="241.512"
y1="202.824"
x2="11.2606"
y2="202.824"
stroke-width="0.699998"
id="line1495" />
</g>
<g
partID="854110290"
id="g1497">
<line
stroke-linecap="round"
stroke="#404040"
x1="241.638"
y1="188.363"
x2="241.512"
y2="202.824"
stroke-width="0.699998"
id="line1499" />
</g>
<circle
fill="black"
cx="241.638"
cy="188.363"
r="1.44"
stroke-width="0"
stroke="none"
id="circle1501" />
<g
partID="854110730"
id="g1503">
<line
stroke-linecap="round"
stroke="#cc1414"
x1="11.2606"
y1="1.05741"
x2="234.39"
y2="1.05741"
stroke-width="0.699998"
id="line1505" />
</g>
<g
partID="854123080"
id="g1507">
<line
stroke-linecap="round"
stroke="#cc1414"
x1="234.39"
y1="1.05741"
x2="234.68"
y2="23.459"
stroke-width="0.699998"
id="line1509" />
</g>
<g
partID="854110740"
id="g1511">
<line
stroke-linecap="round"
stroke="#cc1414"
x1="11.2376"
y1="44.3636"
x2="11.2606"
y2="1.05741"
stroke-width="0.699998"
id="line1513" />
</g>
<g
partID="854111310"
id="g1515">
<line
stroke-linecap="round"
stroke="#418dd9"
x1="40.0376"
y1="65.9636"
x2="25.6376"
y2="65.9637"
stroke-width="0.699998"
id="line1517" />
</g>
<g
partID="854123170"
id="g1519">
<line
stroke-linecap="round"
stroke="#cc1414"
x1="234.39"
y1="1.05741"
x2="234.68"
y2="23.459"
stroke-width="0.699998"
id="line1521" />
</g>
<g
partID="854118290"
id="g1523">
<line
stroke-linecap="round"
stroke="#cc1414"
x1="119.265"
y1="1.05741"
x2="234.39"
y2="1.05741"
stroke-width="0.699998"
id="line1525" />
</g>
<g
partID="854113050"
id="g1527">
<line
stroke-linecap="round"
stroke="#cc1414"
x1="119.238"
y1="58.7636"
x2="119.265"
y2="1.05741"
stroke-width="0.699998"
id="line1529" />
</g>
<circle
fill="black"
cx="119.238"
cy="58.7636"
r="1.44"
stroke-width="0"
stroke="none"
id="circle1531" />
<g
partID="854115530"
id="g1533">
<line
stroke-linecap="round"
stroke="#33ffc5"
x1="155.091"
y1="109.807"
x2="190.835"
y2="109.794"
stroke-width="0.699998"
id="line1535" />
</g>
<g
partID="854115260"
id="g1537">
<line
stroke-linecap="round"
stroke="#33ffc5"
x1="155.233"
y1="80.4204"
x2="155.091"
y2="109.807"
stroke-width="0.699998"
id="line1539" />
</g>
<g
partID="854115270"
id="g1541">
<line
stroke-linecap="round"
stroke="#33ffc5"
x1="119.238"
y1="80.3636"
x2="155.233"
y2="80.4204"
stroke-width="0.699998"
id="line1543" />
</g>
<g
partID="854115480"
id="g1545">
<line
stroke-linecap="round"
stroke="#fff800"
x1="148.11"
y1="102.129"
x2="190.836"
y2="102.593"
stroke-width="0.699998"
id="line1547" />
</g>
<g
partID="854115340"
id="g1549">
<line
stroke-linecap="round"
stroke="#fff800"
x1="148.11"
y1="87.5436"
x2="148.11"
y2="102.129"
stroke-width="0.699998"
id="line1551" />
</g>
<g
partID="854115350"
id="g1553">
<line
stroke-linecap="round"
stroke="#fff800"
x1="119.238"
y1="87.5636"
x2="148.11"
y2="87.5437"
stroke-width="0.699998"
id="line1555" />
</g>
<g
partID="854115420"
id="g1557">
<line
stroke-linecap="round"
stroke="#ff7300"
x1="119.238"
y1="94.7636"
x2="190.836"
y2="95.3941"
stroke-width="0.699998"
id="line1559" />
</g>
<g
partID="854116260"
id="g1561">
<line
stroke-linecap="round"
stroke="#418dd9"
x1="176.828"
y1="73.1592"
x2="190.836"
y2="73.794"
stroke-width="0.699998"
id="line1563" />
</g>
<g
partID="854127910"
id="g1565">
<line
stroke-linecap="round"
stroke="#418dd9"
x1="176.828"
y1="37.2567"
x2="176.828"
y2="73.1592"
stroke-width="0.699998"
id="line1567" />
</g>
<g
partID="854116270"
id="g1569">
<line
stroke-linecap="round"
stroke="#418dd9"
x1="169.638"
y1="37.1766"
x2="176.828"
y2="37.2567"
stroke-width="0.699998"
id="line1571" />
</g>
<g
partID="854116340"
id="g1573">
<line
stroke-linecap="round"
stroke="#418dd9"
x1="169.707"
y1="87.6983"
x2="190.836"
y2="88.194"
stroke-width="0.699998"
id="line1575" />
</g>
<g
partID="854116350"
id="g1577">
<line
stroke-linecap="round"
stroke="#418dd9"
x1="169.638"
y1="73.1766"
x2="169.707"
y2="87.6983"
stroke-width="0.699998"
id="line1579" />
</g>
<g
partID="854117300"
id="g1581">
<line
stroke-linecap="round"
stroke="#418dd9"
x1="140.925"
y1="195.703"
x2="313.613"
y2="195.703"
stroke-width="0.699998"
id="line1583" />
</g>
<g
partID="854117250"
id="g1585">
<line
stroke-linecap="round"
stroke="#418dd9"
x1="313.613"
y1="195.703"
x2="313.719"
y2="95.4332"
stroke-width="0.699998"
id="line1587" />
</g>
<g
partID="854117140"
id="g1589">
<line
stroke-linecap="round"
stroke="#418dd9"
x1="313.719"
y1="95.4332"
x2="298.72"
y2="95.3845"
stroke-width="0.699998"
id="line1591" />
</g>
<g
partID="854117020"
id="g1593">
<line
stroke-linecap="round"
stroke="#418dd9"
x1="140.986"
y1="102.129"
x2="140.925"
y2="195.703"
stroke-width="0.699998"
id="line1595" />
</g>
<g
partID="854117030"
id="g1597">
<line
stroke-linecap="round"
stroke="#418dd9"
x1="119.238"
y1="101.964"
x2="140.986"
y2="102.129"
stroke-width="0.699998"
id="line1599" />
</g>
<g
partID="854118440"
id="g1601">
<line
stroke-linecap="round"
stroke="#cc1414"
x1="119.388"
y1="65.8356"
x2="119.238"
y2="58.7638"
stroke-width="0.699998"
id="line1603" />
</g>
<circle
fill="black"
cx="119.238"
cy="58.7638"
r="1.44"
stroke-width="0"
stroke="none"
id="circle1605" />
<g
partID="854118450"
id="g1607">
<line
stroke-linecap="round"
stroke="#cc1414"
x1="119.238"
y1="65.9636"
x2="119.388"
y2="65.8353"
stroke-width="0.699998"
id="line1609" />
</g>
<g
partID="854125780"
id="g1611">
<line
stroke-linecap="round"
stroke="#404040"
x1="133.507"
y1="109.062"
x2="133.507"
y2="73.1592"
stroke-width="0.699998"
id="line1613" />
</g>
<g
partID="854127250"
id="g1615">
<line
stroke-linecap="round"
stroke="#404040"
x1="133.507"
y1="73.1592"
x2="141.753"
y2="73.1451"
stroke-width="0.699998"
id="line1617" />
</g>
<circle
fill="black"
cx="133.507"
cy="73.1592"
r="1.44"
stroke-width="0"
stroke="none"
id="circle1619" />
<g
partID="854126540"
id="g1621">
<line
stroke-linecap="round"
stroke="#404040"
x1="133.507"
y1="202.824"
x2="133.507"
y2="109.062"
stroke-width="0.699998"
id="line1623" />
</g>
<circle
fill="black"
cx="133.507"
cy="109.062"
r="1.44"
stroke-width="0"
stroke="none"
id="circle1625" />
<g
partID="854126690"
id="g1627">
<line
stroke-linecap="round"
stroke="#404040"
x1="241.512"
y1="202.824"
x2="133.507"
y2="202.824"
stroke-width="0.699998"
id="line1629" />
</g>
<g
partID="854126390"
id="g1631">
<line
stroke-linecap="round"
stroke="#404040"
x1="133.507"
y1="109.062"
x2="119.238"
y2="109.164"
stroke-width="0.699998"
id="line1633" />
</g>
<g
partID="854126100"
id="g1635">
<line
stroke-linecap="round"
stroke="#404040"
x1="241.638"
y1="188.363"
x2="241.512"
y2="202.824"
stroke-width="0.699998"
id="line1637" />
</g>
<circle
fill="black"
cx="241.638"
cy="188.363"
r="1.44"
stroke-width="0"
stroke="none"
id="circle1639" />
<g
partID="854127400"
id="g1641">
<line
stroke-linecap="round"
stroke="#404040"
x1="133.507"
y1="73.1592"
x2="119.238"
y2="73.1636"
stroke-width="0.699998"
id="line1643" />
</g>
<circle
fill="black"
cx="133.507"
cy="73.1592"
r="1.44"
stroke-width="0"
stroke="none"
id="circle1645" />
<g
partID="854127650"
id="g1647">
<line
stroke-linecap="round"
stroke="#404040"
x1="133.507"
y1="73.1592"
x2="133.507"
y2="37.2567"
stroke-width="0.699998"
id="line1649" />
</g>
<g
partID="854127780"
id="g1651">
<line
stroke-linecap="round"
stroke="#404040"
x1="133.507"
y1="37.2567"
x2="141.753"
y2="37.1451"
stroke-width="0.699998"
id="line1653" />
</g>
<g
partID="854103300"
id="partLabel">
<g
transform="translate(0,76.5609)"
id="g1656">
<g
transform="matrix(0,-1,1,0,0,0)"
id="g1658">
<g
font-size="5"
font-style="normal"
font-weight="normal"
fill="#000000"
font-family="'DroidSans'"
id="schematicLabel"
fill-opacity="1"
stroke="none">
<text
x="0"
y="3.75"
id="text1661">delay_pot</text>
</g>
</g>
</g>
</g>
<g
partID="854103320"
id="g1663">
<g
transform="translate(141.487,47.8432)"
id="g1665">
<g
transform="matrix(1,0,0,1,0,0)"
id="g1667">
<g
font-size="5"
font-style="normal"
font-weight="normal"
fill="#000000"
font-family="'DroidSans'"
id="g1669"
fill-opacity="1"
stroke="none">
<text
x="0"
y="3.75"
id="text1671">rec_btn</text>
</g>
</g>
</g>
</g>
<g
partID="854103350"
id="g1673">
<g
transform="translate(141.59,12.1198)"
id="g1675">
<g
transform="matrix(1,0,0,1,0,0)"
id="g1677">
<g
font-size="5"
font-style="normal"
font-weight="normal"
fill="#000000"
font-family="'DroidSans'"
id="g1679"
fill-opacity="1"
stroke="none">
<text
x="0"
y="3.75"
id="text1681">quit_btn</text>
</g>
</g>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment