Skip to content

2.2 Sketch file format

failiz edited this page Jan 19, 2021 · 6 revisions

Authors: Jonathan Cohen

Introduction

A Fritzing "sketch" is a diagram with three views: breadboard, schematic, and pcb. In each view there are a number of parts, some of which are connected by wires or traces. There may be multiple instances of a given part. Most parts are visible in all three views, but some are not. Parts have a specific location, and wires have a pair of endpoint locations. A given individual part instance, or wire, may have an individual set of properties (such as color or resistance). All this information is stored in the sketch file.

Fritzing saves sketch files with an .fzz extension. This is simply a renamed .zip file. Inside the fzz/zip you will find a sketch (.fz) file. This file is in an XML format, and this format is subject of this document. The .fz file is required inside the fzz/zip; the fzz/zip may optionally contain custom part files (.fzp and .svg), and code files (such as .ino or .bas).

Throughout most of this document, I use the blink.fz file from the blink.fzz example. You can find the entire .fz file listed in the appendix at the end. Note that the indentation level is not preserved in individual xml chunks outside of the appendix.

File Structure Overview

A Fritzing sketch (.fz) file always starts with the top-level <module> element and includes a fritzingVersion attribute. The icon attribute is not used. This sketch was created in Fritzing version 0.8.7b.

<module fritzingVersion="0.8.7b.01.24.1bf5" icon=".png">

I will describe the top level children of the <module> element next: <boards>, <programs>, <views> and <instances>.

The boards and programs elements are optional. The <boards> element lists each PCB in the sketch and gives its size. The <programs> element lists any program files (.bas or .ino) that might be associated with the sketch. Program files can be stored in the .fzz file, and they can also be stored externally. The text inside the <program> element is the full path to the file. The pid is a unique number assigned to Fritzing running on one computer. If the pid of the current running Fritzing matches the <programs> pid, then the full path is used to find the program file. Otherwise, the program file is loaded from the fzz.

<boards>
    <board moduleId="pcb-arduino-r3-shield" title="Arduino Shield PCB" instance="PCB1" width="6.88566cm" height="5.36311cm"/>
</boards>
<programs pid="">
    <program language="Arduino" programmer="">.../Blink.ino</program>
</programs>

The views element contains a <view> element for each of breadboard view, schematic view, and pcb view. Individual view property settings are saved with each <view>. Most of these seem self-explanatory, but GPG_Keepout is for ground fill/copper fill.

<views>
    <view name="breadboardView" backgroundColor="#ffffff"
        gridSize="0.1in" showGrid="1" alignToGrid="1" viewFromBelow="0"/>
    <view name="schematicView" backgroundColor="#ffffff"
        gridSize="0.1in" showGrid="1" alignToGrid="1" viewFromBelow="0"/>
    <view name="pcbView" backgroundColor="#333333" gridSize="0.05in"
        showGrid="1" alignToGrid="1" viewFromBelow="0" GPG_Keepout=""
        autorouteViaHoleSize="0.4mm" autorouteTraceWidth="24"
        autorouteViaRingThickness="0.3mm" DRC_Keepout="0.01in"/>
</views>

Individual part and wire elements are known as instances, and there is one instance per individual part. For example, if there are three resistors in the sketch, then there will be three <instance> elements, even though each instance references the same part. If there is one wire connecting a connector on one resistor to a connector on another resister, that will add a single wire instance. If a wire has a bendpoint, it will appear as two instances (each additional bendpoint adds another instance). The structure of each instance is fairly complicated, since there is a lot of information to be stored, but overall the <instances> structure is simply a list of <instance> elements:

<instances>
    <instance>
    ...
</instances>

After that the sketch file simply closes:

</module>

Part instance

A part instance has the following structure. The substructures are the same for all three views, but for clarity I only show the breadboard view. There can be multiple <property> elements, multiple <connector> elements and multiple <connects> elements.

<instance>
    <property/>
    <title/>
    <views>
        <breadboardView layer="breadboard">
            <connectors>
                <connector>
                    <connects/>
                </connector>
            </connectors>
        </breadboardView>
        <schematicView layer="schematic" />
        <pcbView layer="copper1trace" />
    </views>
</instance>

Here is a little more detail on the <instance>, <title> and <property> elements describing the sketch's red LED:

<instance moduleIdRef="5mmColorLEDModuleID" modelIndex="2017"
        path="C:/Users/jonathan/fritzing/fritzing/fritzing/pdb/core/LED-generic-5mm.fzp">
    <property name="color" value="Red (633nm)"/>
    <title>LED</title>

The moduleIdRef attribute is a reference to a part, in this case, a Red LED. Note that this is a reference: parts are stored in their own separate files, and not kept as part of a sketch. This makes sketch file sizes much smaller, and it means that if a part file is updated, the sketch will automatically be updated. This works nicely for core parts, since it's unlikely that anyone will be running Fritzing without access to the core parts. However, that makes sketches with custom parts a little tricky. For that we use .fzz files (which are really .zip files) to keep the custom part files with the sketch.

The modelIndex attribute is an internal reference; for example, other parts connected to this red LED will refer to it using the modelIndex = 129028. Each instance is given a unique modelIndex number, so that any internal reference can only refer to one particular instance. The path attribute is only a hint, and no code relies on it.

<property> elements always have a name and value attribute. The color example above is quite clear, but in some cases the value can be quite complex.  For example (and this is not part of the blink sketch):

<property name="shape" value="&lt;?xml version='1.0' encoding='utf-8'?&gt;&#10;&lt;svg
xmlns=&quot;http://www.w3.org/2000/svg&quot; width=&quot;2.3in&quot; xml:space=&quot;preserve&quot;
xmlns:xml=&quot;http://www.w3.org/XML/1998/namespace&quot; x=&quot;0px&quot; version=&quot;1.2&quot;
y=&quot;0px&quot; height=&quot;2.187in&quot; viewBox=&quot;0 0 165.566 157.462&quot;
baseProfile=&quot;tiny&quot; id=&quot;Layer_1&quot;&gt;&#10; &lt;g
id=&quot;board&quot;&gt;&#10; &lt;polygon  fill=&quot;#338040&quot;
points=&quot;82.783,1.13 108.033,52.29 164.492,60.495
123.639,100.317 133.283,156.548 82.783,130.001 32.284,156.548
41.93,100.317 1.074,60.495 57.533,52.29&quot;
fill-opacity=&quot;0.5&quot; id=&quot;boardoutline&quot;/&gt;&#10;
&lt;circle  fill=&quot;none&quot; cx=&quot;82.783&quot; cy=&quot;78.731&quot;
stroke=&quot;red&quot; r=&quot;30&quot; id=&quot;&quot;
stroke-width=&quot;1&quot;/&gt;&#10; &lt;/g&gt;&#10; &lt;g
id=&quot;silkscreen&quot;&gt;&#10; &lt;polygon  fill=&quot;none&quot;
points=&quot;82.783,1.13 108.033,52.29 164.492,60.495
123.639,100.317 133.283,156.548 82.783,130.001 32.284,156.548
41.93,100.317 1.074,60.495 57.533,52.29 &quot;
stroke=&quot;#FFFFFF&quot; stroke-width=&quot;0.576&quot;/&gt;&#10;
&lt;/g&gt;&#10;&lt;/svg&gt;&#10;"/>

This is the shape property for a custom PCB shape. The value of the property is actually the SVG of the custom board--the SVG text is escaped so that the overall XML structure of the sketch file XML is not compromised. In unescaped form, the SVG would look like:

    <?xml version='1.0' encoding='utf-8'?>
    <svg xmlns="http://www.w3.org/2000/svg"  width="2.3in"
            xml:space="preserve" xmlns:xml="http://www.w3.org/XML/1998/namespace"
            x="0px" version="1.2" y="0px" height="2.187in" viewBox="0 0 165.566
            157.462" baseProfile="tiny" id="Layer_1">
        <g  id="board">
            <polygon
                fill="#338040" points="82.783,1.13 108.033,52.29 164.492,60.495
                123.639,100.317 133.283,156.548 82.783,130.001 32.284,156.548
                41.93,100.317 1.074,60.495 57.533,52.29" fill-opacity="0.5"
                id="boardoutline"/>
            <circle  fill="none" cx="82.783" cy="78.731" stroke="red" r="30" id="" stroke-width="1"/>
        </g>
        <g  id="silkscreen">
            <polygon
                fill="none" points="82.783,1.13 108.033,52.29 164.492,60.495
                123.639,100.317 133.283,156.548 82.783,130.001 32.284,156.548
                41.93,100.317 1.074,60.495 57.533,52.29 " stroke="#FFFFFF"
                stroke-width="0.576"/>
        </g>
    </svg>

The instance's <title> appears in the Inspector window when the part is selected, or if the instance's part label is visible.

After the <title>, the instance is split into view-dependent portions by the views element. Most instances will have three view elements--one each for breadboard, schematic, and pcb views--even if the instance isn't visible in a particular view.

Starting around Fritzing 0.7, instances should always have three view elements, but with earlier versions of Fritzing, you can find instances which contain only a single view element. The LED in blink.fz appears in all three views and has three view elements. The view element is always one of breadboardView, schematicView or pcbView. Let's look at the first part of the <pcbView> element:

<pcbView layer="copper0">
    <geometry z="5.50006" x="-157.433" y="232.016">
        <transform m11="0" m12="-1" m13="0" m21="1" m22="0" m23="0" m31="0" m32="21.969" m33="1"/>
    </geometry>
    <titleGeometry
            visible="true" x="-137.242" y="250.793" z="12.5" xOffset="20.1912"
            yOffset="18.7778" textColor="#000000" fontSize="5">
        <displayKey key=""/>
    </titleGeometry>

Even though the layer attribute has a value in every view, it is only used in PCB View to determine which side of the board the part belongs on.

The <geometry> element for a part instance holds the part's position on the plane of the sketch, as well as its position in the z-order. Parts with higher z are above parts with lower z. The <geometry> element may include a <transform> if the part is flipped or rotated. The elements m11, m12 etc. of the <transform> element simply define an SVG transform matrix (3x3). <titleGeometry> is for the part label. There can be multiple <displayKey> elements--you can choose the set of properties to be displayed in an individual part label, and each displayKey lists one. The example above means display the default, which is the part instance title plus any properties in the part's .fzp file (i.e. the part definition file, not the sketch file) where showInLabel="yes"--for example, the part label for a resistor will display both the instance title (like "R6", and also the part's resistance value). <titleGeometry> can also contain a <transform> element.

Part Connectors

The next element after geometry is <connectors>. Since connectors are already included in the definition of a part (and therefore can already found in a given part's .fzp file), the only connectors that are listed in the sketch file are the ones that are either connected to something, or have sketch-dependent properties.

Right now, the only sketch-dependent properties have to do with bendable legs. In other words, the <connectors> element in the sketch tells which parts (or wires) are connected to which other parts (or wires); or how any bendable legs have been positioned.

Remember that the <connectors> element is a child of a view element. that is, connections are specified in all three views. Here is the xml for the <connectors> element in breadboard view:

<connectors>
    <connector connectorId="connector0" layer="breadboard">
        <geometry x="5.6583" y="36.5085"/>
        <leg>
            <point x="0" y="0"/>
            <bezier/>
            <point x="0" y="30.7701"/>
            <bezier/>
        </leg>
        <connects>
            <connect connectorId="connector0" modelIndex="2066" layer="breadboardWire"/>
            <connect connectorId="connector1" modelIndex="1717691" layer="breadboardWire"/>
            <connect connectorId="connector57" modelIndex="1846086" layer="breadboardbreadboard"/>
        </connects>
    </connector>
    <connector connectorId="connector1" layer="breadboard">
        <geometry x="14.661" y="36.5085"/>
        <leg>
            <point x="0" y="0"/>
            <bezier/>
            <point x="0" y="30.7701"/>
            <bezier/>
        </leg>
        <connects>
            <connect connectorId="connector1" modelIndex="1717694" layer="breadboardWire"/>
            <connect connectorId="connector56" modelIndex="1846086" layer="breadboardbreadboard"/>
            <connect connectorId="connector1" modelIndex="1846091" layer="breadboardWire"/>
        </connects>
    </connector>
</connectors>

Each <connector> element is from the point of view of the part. So the first line:

<connector connectorId="connector0" layer="breadboard">

means that we're talking about the connector with the id connector0 on the red LED which is in the breadboard layer. This connector is connected to three connectors on other parts. You might expect to find a connection to the Arduino, and that would be the one with modelIndex 1846086. That connector has id connector57 and is in the breadboardbreadboard layer. This is a special layer reserved for breadboards and certain other parts--it keeps them underneath any parts that might be attached. The second red LED connector is connected to connector56 on the same part.

Even though it's redundant, the Arduino with modelIndex 1846086 also has a <connectors> element, but from its own point of view:

<connectors>
    <connector connectorId="connector56" layer="breadboardbreadboard">
        <geometry x="0" y="0"/>
        <connects>
            <connect connectorId="connector1" modelIndex="2017" layer="breadboard"/>
            <connect connectorId="connector0" modelIndex="1717665" layer="breadboardWire"/>
            <connect connectorId="connector0" modelIndex="1846092" layer="breadboardWire"/>
        </connects>
    </connector>
    <connector connectorId="connector57" layer="breadboardbreadboard">
        <geometry x="0" y="0"/>
        <connects>
            <connect connectorId="connector0" modelIndex="2017" layer="breadboard"/>
            <connect connectorId="connector1" modelIndex="2065" layer="breadboardWire"/>
            <connect connectorId="connector0" modelIndex="1717677" layer="breadboardWire"/>
        </connects>
    </connector>
</connectors>

(Remember the modelIndex of the Red LED is 2017).

But why does each connector on both the LED and the Arduino make three connections, when in breadboard view the LED is directly connected to the Arduino, and there are no wires to be seen?  The other connections are wires--traces--which are only visible in either PCB or schematic view. Since Fritzing 0.7, all parts and wires exist in all three views--even though they may not be visible in every view--and the sketch file reflects this. In earlier versions of Fritzing, some parts (and wires) only existed in a single view. Note that ratsnest wires are never saved in a sketch file (though there are ratsnests found in sketch files before 0.7).

Before further considering wires, let's have a look at legs. Certain parts, like the LED have bendable legs (AKA rubber-band legs). Legs can be curvy or straight, and they can even have bendpoints. So the <leg> element records the state of the leg when the sketch file is saved. In the case of the red LED, the legs are straight (the <bezier> elements are empty) and there are no bendpoints (because the leg has only two points). Compare this leg:

<leg>
    <point x="0" y="0"/>
    <bezier>
        <cp0 x="36.7759" y="-3.47586"/>
        <cp1 x="117.823" y="-55.1914"/>
    </bezier>
    <point x="90.8108" y="-7.21611"/>
    <bezier>
        <cp0 x="108.401" y="23.9726"/>
        <cp1 x="0" y="30.7701"/>
    </bezier>
    <point x="-0.00274711" y="48.7701"/>
    <bezier/>
</leg>

In this case the leg has a bendpoint with a bezier curve on each side. The <cp0> and <cp1> elements are the control points for their respective beziers.

Wire instances

We've had a pretty thorough look at a part instance. For contrast, let's look at a wire instance (note, only the schematic view is fully expanded, see the appendix for all three views).

<instance moduleIdRef="WireModuleID" modelIndex="2066" path=":/resources/parts/core/wire.fzp">
    <title>Wire49</title>
    <views>
        <breadboardView layer="breadboardWire" >
        ...
        </breadboardView>
        <pcbView layer="copper1trace">
        ...
        </pcbView>
        <schematicView layer="schematicTrace">
            <geometry z="5.50006" x="-271.349" y="135.002" x1="0" y1="0" x2="-88.4022" y2="-0.0954902" wireFlags="128"/>
            <wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
            <connectors>
                <connector connectorId="connector0" layer="schematicTrace">
                    <geometry x="0" y="0"/>
                    <connects>
                        <connect connectorId="connector0" modelIndex="2017" layer="schematic"/>
                    </connects>
                </connector>
                <connector connectorId="connector1" layer="schematicTrace">
                    <geometry x="0" y="0"/>
                    <connects>
                        <connect connectorId="connector0" modelIndex="2065" layer="schematicTrace"/>
                    </connects>
                </connector>
            </connectors>
        </schematicView>
    </views>
</instance>

The <connectors> element functions the same way it does in a part instance (though with a wire, there will always be two connectors with ids connector0 and connector1). However, the <geometry> element is different between parts and wires, since parts need only a single location, whereas wires need two. Here are two such elements to compare, the first from the red LED, the second from the wire above:

<geometry z="2.50004" x="-283.724" y="107.732">
<geometry z="5.50006" x="-271.349" y="135.002" x1="0" y1="0" x2="-88.4022" y2="-0.0954902" wireFlags="128"/>

The z, x, and y attributes are the same for a wire as they are for a part, but why do wires have two more pairs of coordinates and not just one? This is for historical reasons. First note that the x1,x2,y1, and y2 coordinates are offset from the x and y coordinates.

At one time the position of the wire (given by x and y) was independent of where the wire's two endpoints were. Nowadays, x1 and y1 will always be zero.

Since Fritzing 0.7, WireFlags are as follows:

  • PCB Trace = 4
  • Autoroutable = 32
  • Breadboard wire = 64
  • Schematic Trace = 128

A given wire must have one view flag set and the autoroutable flag is optional. In other words, a wire is visible in only one view, and the wireflag tells which one. If the autoroutable flag is set, the autorouter may potentially remove that wire in favor of some other routing. If the autorouter flag is not set, the autorouter will incorporate that wire into its routing attempts.

The <wireExtras> element holds a few wire-instance-specific properties. Mils refers to the wire's thickness in 1/1000 inch units.

Color and opacity should be self-explanatory. The banded flag is only used in breadboard view where there is an option to display wires with bands of alternating color and white.

Parts bin files

Parts Bin files (.fzb) actually use the same structure as sketch files. However, there are no connections, and the <views> element is ignored. So really, bin files are just lists of simplified instances whose only important value is the moduleIDRef. For example, here is the first part of the core bin:

<module fritzingVersion="0.4.3b.0.0">
    <title>Core</title>
    <instances>
        <instance moduleIdRef="ResistorModuleID" modelIndex="3" path=":/resources/parts/core/resistor.fzp">
            <views>
                <iconView layer="icon">
                    <geometry z="-1" x="-1" y="-1"></geometry>
                </iconView>
            </views>
        </instance>
        ...
    </instances>
</module>

The order of the icons in the bin is the same as the order of the instances in the bin file. There is a specialized instance used in Parts Bin files to introject a segment title:

<instance moduleIdRef="__spacer__" modelIndex="3" path="Basic">
...
<instance>

You can see a number of these in the Core Parts Bin.

Conclusion

There are a number of example files that ship with Fritzing. You can find them in the sketches/core folder in the Fritzing installation folder. Unzipping the example .fzz files (renamed to .zip), and looking at the extracted .fz file in a text or xml editor is a great way to learn the file format.

Appendix: blink.fz (unabridged)

<?xml version="1.0" encoding="UTF-8"?>
<module fritzingVersion="0.8.7b.01.24.1bf5" icon=".png">
<boards>
    <board moduleId="pcb-arduino-r3-shield" title="Arduino Shield PCB" instance="PCB1" width="6.88566cm" height="5.36311cm"/>
</boards>
<programs pid="a9e2680f12bccb40e3bf614322c0dea8">
    <program language="Arduino" programmer="">C:/Users/jonathan/AppData/Roaming/Fritzing/fzz/bcb27305c7b0dc36d81c1eab2e788812/Blink.ino</program>
</programs>
<views>
    <view name="breadboardView" backgroundColor="#ffffff" gridSize="0.1in" showGrid="1" alignToGrid="1" viewFromBelow="0"/>
    <view name="schematicView" backgroundColor="#ffffff" gridSize="0.1in" showGrid="1" alignToGrid="1" viewFromBelow="0"/>
    <view name="pcbView" backgroundColor="#333333" gridSize="0.05in" showGrid="1" alignToGrid="1" viewFromBelow="0" GPG_Keepout="" autorouteViaHoleSize="0.4mm" autorouteTraceWidth="24" autorouteViaRingThickness="0.3mm" DRC_Keepout="0.01in"/>
</views>
<instances>
    <instance moduleIdRef="5mmColorLEDModuleID" modelIndex="2017" path="C:/Users/jonathan/fritzing/fritzing/fritzing/pdb/core/LED-generic-5mm.fzp">
        <property name="color" value="Red (633nm)"/>
        <title>LED</title>
        <views>
            <breadboardView layer="breadboard">
                <geometry z="2.50006" x="327.339" y="-58.2786"/>
                <connectors>
                    <connector connectorId="connector0" layer="breadboard">
                        <geometry x="5.6583" y="36.5085"/>
                        <leg>
                            <point x="0" y="0"/>
                            <bezier/>
                            <point x="0" y="30.7701"/>
                            <bezier/>
                        </leg>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2066" layer="breadboardWire"/>
                            <connect connectorId="connector1" modelIndex="1717691" layer="breadboardWire"/>
                            <connect connectorId="connector57" modelIndex="1846086" layer="breadboardbreadboard"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="breadboard">
                        <geometry x="14.661" y="36.5085"/>
                        <leg>
                            <point x="0" y="0"/>
                            <bezier/>
                            <point x="0" y="30.7701"/>
                            <bezier/>
                        </leg>
                        <connects>
                            <connect connectorId="connector1" modelIndex="1717694" layer="breadboardWire"/>
                            <connect connectorId="connector56" modelIndex="1846086" layer="breadboardbreadboard"/>
                            <connect connectorId="connector1" modelIndex="1846091" layer="breadboardWire"/>
                        </connects>
                    </connector>
                </connectors>
            </breadboardView>
            <pcbView layer="copper0">
                <geometry z="5.50006" x="-157.433" y="232.016">
                    <transform m11="0" m12="-1" m13="0" m21="1" m22="0" m23="0" m31="0" m32="21.969" m33="1"/>
                </geometry>
                <titleGeometry visible="true" x="-137.242" y="250.793" z="12.5" xOffset="20.1912" yOffset="18.7778" textColor="#000000" fontSize="5">
                    <displayKey key=""/>
                </titleGeometry>
                <connectors>
                    <connector connectorId="connector0" layer="copper0">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2066" layer="copper0trace"/>
                            <connect connectorId="connector1" modelIndex="1717691" layer="copper0trace"/>
                            <connect connectorId="connector57" modelIndex="1846086" layer="copper0"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="copper0">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="1717694" layer="copper0trace"/>
                            <connect connectorId="connector56" modelIndex="1846086" layer="copper0"/>
                        </connects>
                    </connector>
                </connectors>
            </pcbView>
            <schematicView layer="schematic">
                <geometry z="2.50004" x="-282.376" y="107.729">
                    <transform m11="1" m12="-2.77556e-16" m13="0" m21="2.77556e-16" m22="1" m23="0" m31="-7.10543e-15" m32="4e-05" m33="1"/>
                </geometry>
                <titleGeometry visible="true" x="-304.183" y="119.068" z="5.5" xOffset="-21.8075" yOffset="11.3387" textColor="#000000" fontSize="5">
                    <displayKey key=""/>
                    <displayKey key="part number"/>
                </titleGeometry>
                <connectors>
                    <connector connectorId="connector0" layer="schematic">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2066" layer="schematicTrace"/>
                            <connect connectorId="connector1" modelIndex="1717691" layer="schematicTrace"/>
                            <connect connectorId="connector57" modelIndex="1846086" layer="schematic"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="schematic">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="1717694" layer="schematicTrace"/>
                            <connect connectorId="connector56" modelIndex="1846086" layer="schematic"/>
                            <connect connectorId="connector1" modelIndex="1846091" layer="schematicTrace"/>
                        </connects>
                    </connector>
                </connectors>
            </schematicView>
        </views>
    </instance>
    <instance moduleIdRef="WireModuleID" modelIndex="2065" path=":/resources/parts/core/wire.fzp">
        <title>Wire20</title>
        <views>
            <breadboardView layer="breadboardWire">
                <geometry z="3.50004" x="26.5748" y="396.813" x1="0" y1="0" x2="-211.23" y2="0" wireFlags="128"/>
                <wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="2066" layer="breadboardWire"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector57" modelIndex="1846086" layer="breadboardbreadboard"/>
                        </connects>
                    </connector>
                </connectors>
            </breadboardView>
            <pcbView layer="copper0trace" bottom="true">
                <geometry z="6.50007" x="26.5748" y="396.813" x1="0" y1="0" x2="-211.23" y2="0" wireFlags="128"/>
                <wireExtras mils="11.1111" color="#f28a00" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="copper0trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="2066" layer="copper0trace"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="copper0trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector57" modelIndex="1846086" layer="copper0"/>
                        </connects>
                    </connector>
                </connectors>
            </pcbView>
            <schematicView layer="schematicTrace">
                <geometry z="5.50005" x="-359.751" y="134.907" x1="0" y1="0" x2="-0.249099" y2="-44.9071" wireFlags="128"/>
                <wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="2066" layer="schematicTrace"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector57" modelIndex="1846086" layer="schematic"/>
                        </connects>
                    </connector>
                </connectors>
            </schematicView>
        </views>
    </instance>
    <instance moduleIdRef="WireModuleID" modelIndex="2066" path=":/resources/parts/core/wire.fzp">
        <title>Wire21</title>
        <views>
            <breadboardView layer="breadboardWire">
                <geometry z="3.50005" x="26.5748" y="159.449" x1="0" y1="0" x2="0" y2="237.364" wireFlags="128"/>
                <wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2017" layer="breadboard"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2065" layer="breadboardWire"/>
                        </connects>
                    </connector>
                </connectors>
            </breadboardView>
            <pcbView layer="copper0trace" bottom="true">
                <geometry z="6.50008" x="26.5748" y="159.449" x1="0" y1="0" x2="0" y2="237.364" wireFlags="128"/>
                <wireExtras mils="11.1111" color="#f28a00" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="copper0trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2017" layer="copper0"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="copper0trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2065" layer="copper0trace"/>
                        </connects>
                    </connector>
                </connectors>
            </pcbView>
            <schematicView layer="schematicTrace">
                <geometry z="5.50006" x="-270" y="135" x1="0" y1="0" x2="-89.751" y2="-0.093" wireFlags="128"/>
                <wireExtras mils="9.7222" color="#404040" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2017" layer="schematic"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2065" layer="schematicTrace"/>
                        </connects>
                    </connector>
                </connectors>
            </schematicView>
        </views>
    </instance>
    <instance moduleIdRef="WireModuleID" modelIndex="1717665" path=":/resources/parts/core/wire.fzp">
        <title>Wire40</title>
        <views>
            <breadboardView layer="breadboardWire">
                <geometry z="3.50007" x="-145.8" y="198" x1="0" y1="0" x2="1.65897" y2="36" wireFlags="36"/>
                <wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector56" modelIndex="1846086" layer="breadboardbreadboard"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="1717694" layer="breadboardWire"/>
                        </connects>
                    </connector>
                </connectors>
            </breadboardView>
            <pcbView layer="copper0trace" bottom="true">
                <geometry z="6.5001" x="-144" y="202.5" x1="0" y1="0" x2="-0.000380475" y2="31.431" wireFlags="4"/>
                <wireExtras mils="24" color="#f28a00" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="copper0trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector56" modelIndex="1846086" layer="copper0"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="copper0trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="1717694" layer="copper0trace"/>
                        </connects>
                    </connector>
                </connectors>
            </pcbView>
            <schematicView layer="schematicTrace">
                <geometry z="5.50007" x="-145.8" y="198" x1="0" y1="0" x2="1.65897" y2="36" wireFlags="36"/>
                <wireExtras mils="33.3333" color="#404040" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector56" modelIndex="1846086" layer="schematic"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="1717694" layer="schematicTrace"/>
                        </connects>
                    </connector>
                </connectors>
            </schematicView>
        </views>
    </instance>
    <instance moduleIdRef="WireModuleID" modelIndex="1717677" path=":/resources/parts/core/wire.fzp">
        <title>Wire41</title>
        <views>
            <breadboardView layer="breadboardWire">
                <geometry z="3.50008" x="-154.8" y="198" x1="0" y1="0" x2="1.79997" y2="36" wireFlags="36"/>
                <wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector57" modelIndex="1846086" layer="breadboardbreadboard"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="1717691" layer="breadboardWire"/>
                        </connects>
                    </connector>
                </connectors>
            </breadboardView>
            <pcbView layer="copper0trace" bottom="true">
                <geometry z="6.50012" x="-153" y="202.5" x1="0" y1="0" x2="-0.00023145" y2="31.431" wireFlags="4"/>
                <wireExtras mils="24" color="#f28a00" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="copper0trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector57" modelIndex="1846086" layer="copper0"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="copper0trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="1717691" layer="copper0trace"/>
                        </connects>
                    </connector>
                </connectors>
            </pcbView>
            <schematicView layer="schematicTrace">
                <geometry z="5.50008" x="-154.8" y="198" x1="0" y1="0" x2="1.79997" y2="36" wireFlags="36"/>
                <wireExtras mils="33.3333" color="#404040" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector57" modelIndex="1846086" layer="schematic"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="1717691" layer="schematicTrace"/>
                        </connects>
                    </connector>
                </connectors>
            </schematicView>
        </views>
    </instance>
    <instance moduleIdRef="WireModuleID" modelIndex="1717691" path=":/resources/parts/core/wire.fzp">
        <title>Wire42</title>
        <views>
            <breadboardView layer="breadboardWire">
                <geometry z="3.50009" x="-154.8" y="234" x1="0" y1="0" x2="1.79997" y2="0" wireFlags="4"/>
                <wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="1717677" layer="breadboardWire"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2017" layer="breadboard"/>
                        </connects>
                    </connector>
                </connectors>
            </breadboardView>
            <pcbView layer="copper0trace" bottom="true">
                <geometry z="6.50011" x="-153" y="233.931" x1="0" y1="0" x2="0.000115725" y2="9.069" wireFlags="4"/>
                <wireExtras mils="24" color="#f28a00" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="copper0trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="1717677" layer="copper0trace"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="copper0trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2017" layer="copper0"/>
                        </connects>
                    </connector>
                </connectors>
            </pcbView>
            <schematicView layer="schematicTrace">
                <geometry z="5.50009" x="-154.8" y="234" x1="0" y1="0" x2="1.79997" y2="0" wireFlags="4"/>
                <wireExtras mils="33.3333" color="#404040" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="1717677" layer="schematicTrace"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2017" layer="schematic"/>
                        </connects>
                    </connector>
                </connectors>
            </schematicView>
        </views>
    </instance>
    <instance moduleIdRef="WireModuleID" modelIndex="1717694" path=":/resources/parts/core/wire.fzp">
        <title>Wire43</title>
        <views>
            <breadboardView layer="breadboardWire">
                <geometry z="3.5001" x="-144.141" y="198" x1="0" y1="0" x2="0" y2="36" wireFlags="4"/>
                <wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="1717665" layer="breadboardWire"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="2017" layer="breadboard"/>
                        </connects>
                    </connector>
                </connectors>
            </breadboardView>
            <pcbView layer="copper0trace" bottom="true">
                <geometry z="6.50009" x="-144" y="233.931" x1="0" y1="0" x2="-0.140746" y2="9.0695" wireFlags="4"/>
                <wireExtras mils="24" color="#f28a00" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="copper0trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="1717665" layer="copper0trace"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="copper0trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="2017" layer="copper0"/>
                        </connects>
                    </connector>
                </connectors>
            </pcbView>
            <schematicView layer="schematicTrace">
                <geometry z="5.5001" x="-144.141" y="198" x1="0" y1="0" x2="0" y2="36" wireFlags="4"/>
                <wireExtras mils="33.3333" color="#404040" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="1717665" layer="schematicTrace"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="2017" layer="schematic"/>
                        </connects>
                    </connector>
                </connectors>
            </schematicView>
        </views>
    </instance>
    <instance moduleIdRef="pcb-arduino-r3-shield" modelIndex="1804012" path="C:/Users/jonathan/fritzing/fritzing/fritzing/pdb/core/arduino-shield_r3_two_layer.fzp">
        <property name="layers" value="2"/>
        <title>PCB1</title>
        <views>
            <pcbView layer="board">
                <geometry z="1.50004" x="-247.628" y="192.966"/>
            </pcbView>
        </views>
    </instance>
    <instance moduleIdRef="newLogoImageModuleID" modelIndex="1816517" path=":/resources/parts/core/newlogoimage.fzp">
        <property name="width" value="14.1128183942857"/>
        <property name="height" value="6.30925998803362"/>
        <property name="shape" value="&lt;?xml version='1.0' encoding='utf-8'?&gt;&#10;&lt;!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'&gt;&#10;&lt;!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  --&gt;&#10;&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; width=&quot;0.555623in&quot; x=&quot;0px&quot; version=&quot;1.1&quot; y=&quot;0px&quot;  height=&quot;0.248396in&quot; viewBox=&quot;0 0 85 38&quot; xmlns:xml=&quot;http://www.w3.org/XML/1998/namespace&quot; id=&quot;Layer_1&quot; enable-background=&quot;new 0 0 85 38&quot; xml:space=&quot;preserve&quot;&gt;&#10; &lt;g id=&quot;silkscreen&quot;&gt;&#10;  &lt;g id=&quot;silkscreen0&quot;&gt;&#10;   &lt;g&gt;&#10;    &lt;g&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M48.063,27.241c-0.831,0-1.559,0.449-1.959,1.114h-3.852l5.457-5.61c0.203-0.201,0.4-0.444,0.589-0.72c0.207-0.306,0.314-0.66,0.314-1.058c0-0.385-0.134-0.714-0.396-0.977c-0.263-0.264-0.613-0.396-1.039-0.396h-6.39c-0.419,0-0.764,0.079-1.023,0.233c-0.301,0.18-0.454,0.507-0.454,0.974c0,0.454,0.153,0.775,0.454,0.954c0.26,0.154,0.604,0.232,1.023,0.232h4.342l-5.479,5.632c-0.199,0.202-0.397,0.436-0.585,0.694c-0.212,0.292-0.318,0.648-0.318,1.061c0,0.387,0.134,0.716,0.396,0.979s0.611,0.396,1.041,0.396h5.946c0.406,0.641,1.12,1.067,1.932,1.067c1.263,0,2.288-1.024,2.288-2.288C50.352,28.269,49.326,27.241,48.063,27.241z M48.063,30.568c-0.572,0-1.038-0.465-1.038-1.039c0-0.573,0.466-1.039,1.038-1.039c0.574,0,1.042,0.466,1.042,1.039C49.105,30.104,48.638,30.568,48.063,30.568z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M24.713,13.401c-1.26,0-2.288,1.026-2.288,2.288c0,1.263,1.027,2.288,2.288,2.288c1.262,0,2.288-1.025,2.288-2.288C27.001,14.428,25.975,13.401,24.713,13.401z M24.713,16.729c-0.574,0-1.039-0.465-1.039-1.039s0.465-1.039,1.039-1.039s1.041,0.465,1.041,1.039S25.287,16.729,24.713,16.729z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M36.457,19.825c-0.266-0.151-0.606-0.23-1.009-0.23h-2.02V16.12c0-0.403-0.077-0.743-0.229-1.009c-0.124-0.215-0.391-0.47-0.956-0.47c-0.469,0-0.797,0.158-0.977,0.47c-0.152,0.266-0.23,0.604-0.23,1.009v3.475h-0.664c-0.405,0-0.744,0.079-1.009,0.23c-0.312,0.181-0.47,0.508-0.47,0.977c0,0.566,0.255,0.832,0.47,0.955c0.266,0.153,0.604,0.23,1.009,0.23h0.664v6.014c0,0.379,0.037,0.733,0.111,1.055c0.076,0.341,0.216,0.64,0.41,0.89c0.199,0.254,0.474,0.456,0.82,0.597c0.333,0.137,0.766,0.206,1.28,0.206h1.236c0.401,0,0.741-0.077,1.008-0.229c0.213-0.123,0.468-0.389,0.468-0.957c0-0.467-0.157-0.797-0.468-0.975c-0.267-0.154-0.606-0.231-1.008-0.231h-1.132c-0.189,0-0.265-0.026-0.286-0.038c-0.02-0.046-0.048-0.139-0.048-0.317v-6.013h2.02c0.405,0,0.744-0.078,1.009-0.231c0.213-0.122,0.469-0.388,0.469-0.955C36.926,20.333,36.768,20.006,36.457,19.825z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M24.806,19.595h-1.645c-0.402,0-0.743,0.079-1.008,0.23c-0.311,0.181-0.469,0.508-0.469,0.977c0,0.566,0.256,0.832,0.469,0.954c0.265,0.154,0.605,0.231,1.008,0.231h0.749v7.388c0,0.405,0.079,0.744,0.231,1.01c0.18,0.311,0.508,0.469,0.976,0.469c0.567,0,0.833-0.256,0.956-0.469c0.153-0.267,0.23-0.605,0.23-1.01v-8.282c0-0.531-0.115-0.905-0.353-1.145C25.711,19.711,25.337,19.595,24.806,19.595z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M19.517,19.825c-0.266-0.151-0.607-0.23-1.009-0.23h-0.832c-0.344,0-0.686,0.086-1.012,0.257c-0.312,0.164-0.597,0.374-0.849,0.625l-0.887,0.831v-0.34c0-0.403-0.078-0.742-0.231-1.009c-0.18-0.311-0.509-0.468-0.977-0.468c-0.566,0-0.832,0.254-0.955,0.468c-0.153,0.267-0.23,0.605-0.23,1.009v6.615c-0.653,0.403-1.091,1.124-1.091,1.946c0,1.263,1.027,2.288,2.287,2.288c1.262,0,2.288-1.024,2.288-2.288c0-0.822-0.438-1.543-1.091-1.946v-3.048l2.394-2.154c0.139-0.125,0.275-0.226,0.41-0.299c0.116-0.063,0.24-0.095,0.379-0.095h0.396c0.404,0,0.743-0.077,1.009-0.231c0.213-0.122,0.469-0.388,0.469-0.954C19.986,20.333,19.828,20.006,19.517,19.825z M13.731,30.568c-0.573,0-1.039-0.465-1.039-1.039c0-0.573,0.466-1.039,1.039-1.039c0.574,0,1.041,0.466,1.041,1.039C14.772,30.104,14.305,30.568,13.731,30.568z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M10.262,14.978c-0.267-0.153-0.606-0.231-1.008-0.231H8.442c-0.276,0-0.538,0.008-0.775,0.021c-0.242,0.014-0.477,0.049-0.698,0.1c-0.231,0.055-0.461,0.147-0.684,0.278c-0.217,0.127-0.438,0.303-0.661,0.523c-0.461,0.433-0.763,0.904-0.899,1.403c-0.13,0.479-0.195,1.012-0.195,1.585v0.938H3.863c-0.402,0-0.742,0.079-1.007,0.23c-0.311,0.181-0.47,0.508-0.47,0.977c0,0.566,0.256,0.832,0.47,0.955c0.265,0.153,0.605,0.23,1.007,0.23H4.53v7.388c0,0.405,0.077,0.744,0.23,1.01c0.179,0.311,0.506,0.469,0.976,0.469c0.566,0,0.833-0.256,0.955-0.469c0.152-0.267,0.231-0.605,0.231-1.01v-7.388h1.269c0.404,0,0.744-0.077,1.01-0.231c0.213-0.122,0.468-0.388,0.468-0.954c0-0.469-0.158-0.797-0.468-0.977c-0.266-0.151-0.606-0.23-1.01-0.23H6.922v-0.938c0-0.298,0.026-0.563,0.077-0.787c0.045-0.193,0.143-0.357,0.301-0.506l0.002-0.004l0.004-0.003c0.112-0.111,0.242-0.173,0.399-0.188c0.206-0.021,0.468-0.029,0.777-0.029h0.771c0.402,0,0.743-0.079,1.008-0.231c0.213-0.122,0.469-0.39,0.469-0.956C10.73,15.485,10.572,15.156,10.262,14.978z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M81.923,19.959c-0.123-0.214-0.39-0.468-0.955-0.468c-0.469,0-0.798,0.157-0.975,0.468c-0.107,0.185-0.179,0.405-0.211,0.658l-0.028-0.029c-0.298-0.325-0.644-0.578-1.028-0.743c-0.385-0.166-0.778-0.25-1.172-0.25h-0.976c-0.343,0-0.64,0.019-0.882,0.056c-0.249,0.038-0.484,0.102-0.703,0.192c-0.217,0.09-0.429,0.206-0.631,0.349c-0.192,0.136-0.419,0.312-0.671,0.522c-0.259,0.216-0.473,0.415-0.639,0.597c-0.177,0.191-0.318,0.403-0.419,0.628c-0.099,0.222-0.169,0.464-0.206,0.722c-0.037,0.245-0.054,0.537-0.054,0.868v3.288c0,0.331,0.017,0.622,0.054,0.869c0.037,0.257,0.107,0.499,0.206,0.721c0.101,0.226,0.242,0.437,0.419,0.629c0.165,0.18,0.38,0.38,0.639,0.595c0.255,0.213,0.481,0.388,0.671,0.522c0.201,0.143,0.412,0.259,0.631,0.35c0.219,0.09,0.456,0.155,0.703,0.192c0.239,0.036,0.536,0.056,0.882,0.056h0.976c0.41,0,0.814-0.093,1.201-0.273c0.338-0.16,0.676-0.402,1.006-0.725v1.976c0,0.248-0.034,0.463-0.1,0.644c-0.06,0.163-0.219,0.352-0.474,0.557c-0.212,0.176-0.423,0.297-0.628,0.363c-0.21,0.066-0.471,0.103-0.775,0.103h-3.038c-0.404,0-0.743,0.077-1.01,0.231c-0.213,0.122-0.469,0.388-0.469,0.953c0,0.469,0.157,0.797,0.469,0.978c0.267,0.152,0.605,0.229,1.01,0.229h3.204c0.343,0,0.639-0.019,0.879-0.055c0.248-0.038,0.485-0.102,0.707-0.192c0.215-0.091,0.426-0.208,0.629-0.35c0.194-0.138,0.42-0.312,0.672-0.522c0.255-0.213,0.47-0.412,0.637-0.593c0.177-0.194,0.317-0.406,0.418-0.629c0.099-0.223,0.17-0.466,0.207-0.723c0.035-0.249,0.055-0.541,0.055-0.869V20.968C82.153,20.564,82.077,20.226,81.923,19.959z M79.762,26.108c0,0.26-0.085,0.481-0.261,0.677c-0.208,0.235-0.541,0.554-0.985,0.945l-0.004,0.003l-0.003,0.004c-0.19,0.177-0.401,0.328-0.626,0.451c-0.203,0.11-0.447,0.167-0.725,0.167h-0.414c-0.307,0-0.566-0.033-0.777-0.102c-0.204-0.066-0.415-0.188-0.626-0.361c-0.318-0.258-0.434-0.447-0.475-0.56c-0.067-0.18-0.1-0.394-0.1-0.642v-3.039c0-0.247,0.032-0.464,0.1-0.643c0.041-0.112,0.156-0.301,0.474-0.558c0.212-0.175,0.422-0.296,0.627-0.362c0.211-0.068,0.471-0.103,0.777-0.103h0.414c0.292,0,0.534,0.053,0.725,0.157c0.21,0.115,0.424,0.266,0.633,0.447c0.441,0.403,0.776,0.729,0.985,0.967c0.176,0.197,0.261,0.419,0.261,0.678V26.108L79.762,26.108z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M54.386,13.401c-1.261,0-2.288,1.026-2.288,2.288c0,1.263,1.027,2.288,2.288,2.288c1.262,0,2.288-1.025,2.288-2.288C56.674,14.428,55.647,13.401,54.386,13.401z M54.386,16.729c-0.573,0-1.039-0.465-1.039-1.039s0.466-1.039,1.039-1.039s1.041,0.465,1.041,1.039S54.959,16.729,54.386,16.729z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M69.115,27.556l-0.149-4.713c-0.014-0.244-0.029-0.467-0.043-0.675c-0.014-0.225-0.053-0.443-0.112-0.655c-0.062-0.216-0.155-0.424-0.276-0.624c-0.126-0.204-0.295-0.397-0.509-0.579c-0.31-0.267-0.611-0.46-0.892-0.572c-0.285-0.117-0.635-0.175-1.04-0.175h-1.393c-0.357,0-0.69,0.075-0.986,0.224c-0.271,0.136-0.536,0.282-0.789,0.437l-0.005,0.003l-0.002,0.003l-1.153,0.763v-0.055c0-0.403-0.077-0.743-0.231-1.011c-0.179-0.312-0.508-0.468-0.975-0.468c-0.567,0-0.833,0.256-0.957,0.468c-0.151,0.267-0.229,0.605-0.229,1.011v8.407c0,0.403,0.078,0.742,0.229,1.009c0.124,0.214,0.39,0.469,0.957,0.469c0.467,0,0.796-0.158,0.975-0.469c0.154-0.268,0.231-0.607,0.231-1.009V23.78l2.692-1.675c0.055-0.033,0.112-0.064,0.166-0.088c0.044-0.02,0.098-0.034,0.158-0.045c0.07-0.012,0.162-0.019,0.271-0.019h0.5c0.26,0,0.462,0.028,0.598,0.079c0.113,0.042,0.194,0.106,0.248,0.197c0.066,0.107,0.11,0.248,0.134,0.415c0.026,0.192,0.047,0.427,0.061,0.695l0.132,4.269c-0.629,0.408-1.049,1.115-1.049,1.92c0,1.263,1.028,2.288,2.288,2.288c1.263,0,2.287-1.024,2.287-2.288C70.253,28.688,69.794,27.952,69.115,27.556z M67.965,30.568c-0.573,0-1.038-0.465-1.038-1.039c0-0.573,0.465-1.039,1.038-1.039c0.574,0,1.041,0.466,1.041,1.039C69.006,30.104,68.539,30.568,67.965,30.568z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M54.472,19.595h-1.645c-0.403,0-0.742,0.079-1.01,0.23c-0.31,0.181-0.469,0.508-0.469,0.977c0,0.566,0.257,0.832,0.469,0.954c0.266,0.154,0.606,0.231,1.01,0.231h0.749v7.388c0,0.405,0.077,0.744,0.231,1.01c0.178,0.311,0.507,0.469,0.976,0.469c0.566,0,0.832-0.256,0.954-0.469c0.154-0.267,0.232-0.605,0.232-1.01v-8.282c0-0.531-0.115-0.904-0.354-1.145C55.378,19.711,55.004,19.595,54.472,19.595z&quot;/&gt;&#10;    &lt;/g&gt;&#10;    &lt;g&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M39.863,2.691c0-0.153,0.035-0.271,0.106-0.352c0.07-0.083,0.164-0.124,0.282-0.124c0.123,0,0.221,0.037,0.295,0.11c0.073,0.073,0.133,0.142,0.18,0.207l1.594,2.245l1.594-2.245c0.041-0.059,0.1-0.126,0.176-0.203c0.075-0.077,0.176-0.115,0.299-0.115c0.118,0,0.211,0.042,0.282,0.124c0.07,0.082,0.106,0.199,0.106,0.352v5.625c0,0.165-0.028,0.297-0.085,0.396c-0.055,0.1-0.168,0.15-0.338,0.15c-0.165,0-0.275-0.05-0.33-0.15c-0.057-0.1-0.084-0.231-0.084-0.396V3.941l-1.153,1.62c-0.071,0.1-0.142,0.184-0.212,0.251c-0.07,0.067-0.155,0.1-0.255,0.1s-0.184-0.033-0.25-0.1c-0.068-0.068-0.141-0.151-0.217-0.251L40.7,3.941v4.375c0,0.165-0.027,0.297-0.083,0.396c-0.056,0.1-0.166,0.15-0.33,0.15c-0.171,0-0.283-0.05-0.339-0.15c-0.057-0.1-0.084-0.231-0.084-0.396L39.863,2.691L39.863,2.691z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M47.416,8.818c-0.182,0-0.342-0.018-0.479-0.053c-0.139-0.035-0.283-0.111-0.436-0.229c-0.171-0.141-0.282-0.29-0.335-0.445c-0.053-0.156-0.079-0.336-0.079-0.541V7.277c0-0.193,0.026-0.357,0.079-0.493s0.156-0.27,0.309-0.405c0.141-0.124,0.289-0.204,0.444-0.242s0.32-0.057,0.497-0.057h1.734l-0.009-0.264c-0.006-0.146-0.018-0.267-0.035-0.361c-0.018-0.094-0.049-0.166-0.092-0.216c-0.045-0.05-0.105-0.083-0.181-0.102c-0.077-0.017-0.174-0.025-0.291-0.025h-1.382c-0.153,0-0.278-0.028-0.375-0.084s-0.146-0.16-0.146-0.313c0-0.158,0.049-0.265,0.146-0.321c0.097-0.055,0.222-0.083,0.375-0.083h1.373c0.17,0,0.35,0.021,0.536,0.062c0.188,0.042,0.362,0.141,0.521,0.299c0.153,0.153,0.246,0.302,0.281,0.449c0.035,0.147,0.057,0.32,0.062,0.521c0.023,0.639,0.041,1.138,0.053,1.496s0.021,0.625,0.027,0.802c0.005,0.175,0.009,0.287,0.009,0.334c0,0.046,0,0.076,0,0.088c0,0.152-0.029,0.274-0.089,0.365c-0.059,0.091-0.165,0.136-0.316,0.136c-0.146,0-0.248-0.048-0.304-0.145s-0.087-0.222-0.093-0.375l-0.546,0.344c-0.105,0.064-0.196,0.102-0.272,0.114c-0.077,0.012-0.183,0.019-0.317,0.019L47.416,8.818L47.416,8.818L47.416,8.818z M48.111,8.017c0.059,0,0.12-0.012,0.185-0.034c0.065-0.023,0.127-0.054,0.186-0.089l0.713-0.405l-0.017-0.607h-1.753c-0.053,0-0.111,0.004-0.176,0.013c-0.063,0.01-0.123,0.028-0.176,0.058c-0.053,0.029-0.098,0.073-0.132,0.132c-0.036,0.059-0.053,0.137-0.053,0.237v0.273c0,0.1,0.017,0.177,0.053,0.233c0.034,0.056,0.079,0.097,0.132,0.123c0.053,0.026,0.109,0.044,0.172,0.053c0.062,0.008,0.115,0.013,0.163,0.013H48.111L48.111,8.017z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M52.935,8.818c-0.142,0-0.26-0.007-0.356-0.022c-0.097-0.014-0.188-0.04-0.273-0.075c-0.085-0.035-0.167-0.081-0.247-0.136c-0.077-0.056-0.171-0.128-0.276-0.215c-0.105-0.089-0.192-0.168-0.261-0.243c-0.067-0.073-0.119-0.153-0.157-0.238c-0.039-0.085-0.065-0.177-0.08-0.277c-0.015-0.101-0.021-0.217-0.021-0.352V5.869c0-0.135,0.007-0.252,0.021-0.352s0.041-0.193,0.08-0.278c0.038-0.085,0.09-0.164,0.157-0.237c0.068-0.073,0.155-0.154,0.261-0.242c0.104-0.088,0.199-0.159,0.276-0.215c0.08-0.056,0.162-0.101,0.247-0.137c0.086-0.035,0.177-0.061,0.273-0.075c0.097-0.014,0.215-0.021,0.356-0.021h0.413c0.159,0,0.313,0.034,0.463,0.106c0.15,0.069,0.298,0.182,0.444,0.333l0.132,0.141V2.735c0-0.153,0.028-0.277,0.083-0.375c0.057-0.097,0.163-0.145,0.322-0.145c0.152,0,0.257,0.048,0.313,0.145c0.056,0.097,0.084,0.222,0.084,0.375v5.608c0,0.153-0.028,0.278-0.084,0.374c-0.056,0.097-0.16,0.146-0.313,0.146c-0.159,0-0.266-0.049-0.322-0.146c-0.055-0.096-0.083-0.221-0.083-0.374V8.237l-0.185,0.194c-0.118,0.129-0.252,0.226-0.4,0.29c-0.149,0.064-0.302,0.097-0.454,0.097H52.935L52.935,8.818z M53.182,8.017c0.14,0,0.259-0.026,0.356-0.079c0.096-0.053,0.191-0.121,0.286-0.203c0.193-0.176,0.335-0.315,0.427-0.418c0.091-0.103,0.137-0.222,0.137-0.357V6.168c0-0.136-0.046-0.254-0.137-0.357c-0.092-0.102-0.233-0.239-0.427-0.409c-0.089-0.082-0.184-0.151-0.286-0.207c-0.104-0.055-0.223-0.083-0.356-0.083h-0.177c-0.141,0-0.261,0.016-0.36,0.048c-0.1,0.033-0.199,0.089-0.299,0.172c-0.124,0.101-0.202,0.193-0.234,0.282c-0.031,0.088-0.048,0.191-0.048,0.308v1.286c0,0.118,0.017,0.22,0.048,0.309c0.032,0.087,0.11,0.182,0.234,0.281c0.1,0.082,0.199,0.14,0.299,0.172c0.1,0.033,0.22,0.049,0.36,0.049L53.182,8.017L53.182,8.017z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M58.218,8.818c-0.141,0-0.26-0.007-0.356-0.022c-0.097-0.014-0.188-0.04-0.273-0.075c-0.085-0.035-0.167-0.081-0.246-0.136c-0.079-0.056-0.173-0.128-0.278-0.215c-0.104-0.089-0.191-0.168-0.26-0.243c-0.066-0.073-0.12-0.153-0.158-0.238s-0.064-0.177-0.078-0.277c-0.015-0.101-0.022-0.217-0.022-0.352V5.869c0-0.135,0.008-0.252,0.022-0.352c0.014-0.1,0.04-0.193,0.078-0.278s0.092-0.164,0.158-0.237c0.068-0.073,0.155-0.154,0.26-0.242c0.105-0.088,0.199-0.159,0.278-0.215s0.161-0.101,0.246-0.137c0.085-0.035,0.177-0.061,0.273-0.075c0.097-0.014,0.216-0.021,0.356-0.021h0.581c0.141,0,0.26,0.007,0.356,0.021c0.098,0.015,0.188,0.04,0.273,0.075c0.085,0.036,0.167,0.081,0.246,0.137s0.173,0.127,0.277,0.215c0.105,0.089,0.191,0.169,0.26,0.242c0.067,0.074,0.12,0.152,0.158,0.237c0.039,0.085,0.064,0.178,0.08,0.278c0.014,0.1,0.021,0.217,0.021,0.352v0.642c0,0.194-0.04,0.331-0.119,0.41c-0.079,0.08-0.216,0.12-0.409,0.12h-2.598v0.167c0,0.118,0.017,0.221,0.049,0.309c0.032,0.088,0.109,0.182,0.232,0.282c0.101,0.082,0.2,0.139,0.301,0.172c0.1,0.032,0.22,0.048,0.36,0.048h1.355c0.153,0,0.278,0.028,0.375,0.083c0.097,0.056,0.146,0.161,0.146,0.313c0,0.159-0.049,0.266-0.146,0.321c-0.097,0.056-0.222,0.083-0.375,0.083H58.218L58.218,8.818z M57.346,6.238h2.325V5.921c0-0.118-0.017-0.22-0.049-0.308c-0.032-0.089-0.109-0.182-0.233-0.282c-0.1-0.083-0.199-0.139-0.3-0.172c-0.1-0.032-0.22-0.048-0.36-0.048h-0.44c-0.141,0-0.261,0.016-0.36,0.048c-0.1,0.033-0.2,0.089-0.301,0.172c-0.123,0.101-0.2,0.193-0.232,0.282c-0.032,0.088-0.049,0.19-0.049,0.308V6.238L57.346,6.238z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M64.258,6.053c-0.03-0.07-0.047-0.14-0.054-0.21c-0.005-0.071-0.009-0.132-0.009-0.186V4.786c0-0.153,0.028-0.278,0.084-0.375c0.056-0.097,0.159-0.145,0.313-0.145c0.159,0,0.266,0.048,0.321,0.145c0.056,0.097,0.084,0.222,0.084,0.375v0.96l0.765,1.866l0.617-0.863V5.763c0-0.153,0.027-0.278,0.083-0.374c0.057-0.098,0.16-0.146,0.313-0.146c0.158,0,0.265,0.048,0.32,0.146c0.056,0.096,0.084,0.221,0.084,0.374v0.986l0.616,0.863l0.767-1.866v-0.96c0-0.153,0.026-0.278,0.084-0.375c0.055-0.097,0.162-0.145,0.321-0.145c0.151,0,0.256,0.048,0.312,0.145c0.056,0.097,0.083,0.222,0.083,0.375v0.871c0,0.053-0.002,0.115-0.009,0.186c-0.005,0.069-0.022,0.14-0.052,0.21l-0.996,2.439c-0.046,0.111-0.098,0.201-0.153,0.268c-0.056,0.068-0.134,0.102-0.232,0.102c-0.101,0-0.183-0.032-0.248-0.097c-0.064-0.064-0.14-0.155-0.229-0.272l-0.66-0.934l-0.669,0.934c-0.082,0.118-0.157,0.208-0.225,0.272c-0.067,0.065-0.151,0.097-0.252,0.097c-0.094,0-0.17-0.034-0.229-0.102c-0.059-0.067-0.111-0.157-0.158-0.268L64.258,6.053z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M71.331,5.112h-0.422c-0.153,0-0.278-0.028-0.375-0.083c-0.096-0.056-0.146-0.16-0.146-0.313c0-0.158,0.049-0.266,0.146-0.321c0.097-0.056,0.222-0.083,0.375-0.083h0.694c0.194,0,0.33,0.04,0.41,0.119c0.079,0.08,0.118,0.216,0.118,0.41v3.504c0,0.153-0.027,0.278-0.083,0.374c-0.056,0.097-0.16,0.146-0.313,0.146c-0.158,0-0.266-0.049-0.321-0.146c-0.056-0.096-0.084-0.221-0.084-0.374V5.112L71.331,5.112z M71.375,3.395c-0.111,0-0.202-0.026-0.272-0.079c-0.07-0.053-0.105-0.153-0.105-0.299V2.637c0-0.146,0.035-0.246,0.105-0.298c0.07-0.053,0.162-0.08,0.272-0.08h0.379c0.105,0,0.195,0.026,0.269,0.08c0.073,0.052,0.109,0.152,0.109,0.298v0.379c0,0.146-0.036,0.246-0.109,0.299c-0.073,0.052-0.163,0.079-0.269,0.079H71.375z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M75.171,8.818c-0.205,0-0.373-0.026-0.502-0.08c-0.13-0.053-0.229-0.126-0.304-0.22c-0.073-0.094-0.124-0.205-0.154-0.334c-0.03-0.128-0.044-0.27-0.044-0.422v-2.65h-0.388c-0.152,0-0.276-0.028-0.374-0.083c-0.097-0.056-0.145-0.16-0.145-0.313c0-0.158,0.048-0.266,0.145-0.321c0.098-0.056,0.222-0.083,0.374-0.083h0.388V2.735c0-0.153,0.027-0.277,0.084-0.375c0.055-0.097,0.162-0.146,0.321-0.146c0.151,0,0.257,0.049,0.313,0.146c0.056,0.097,0.083,0.222,0.083,0.375V4.31h0.959c0.153,0,0.278,0.028,0.375,0.084c0.097,0.055,0.145,0.163,0.145,0.321c0,0.153-0.048,0.257-0.145,0.312c-0.097,0.056-0.222,0.084-0.375,0.084h-0.959v2.65c0,0.082,0.013,0.146,0.035,0.189c0.023,0.044,0.095,0.066,0.211,0.066h0.713c0.152,0,0.278,0.028,0.375,0.084c0.097,0.055,0.145,0.162,0.145,0.321c0,0.152-0.048,0.257-0.145,0.312c-0.097,0.056-0.223,0.084-0.375,0.084H75.171L75.171,8.818z&quot;/&gt;&#10;     &lt;path fill=&quot;#000000&quot; d=&quot;M78.413,8.342c0,0.153-0.027,0.278-0.083,0.375s-0.163,0.146-0.322,0.146c-0.151,0-0.257-0.049-0.312-0.146c-0.057-0.097-0.084-0.222-0.084-0.375V2.734c0-0.152,0.027-0.277,0.084-0.374c0.055-0.097,0.16-0.146,0.312-0.146c0.159,0,0.267,0.049,0.322,0.146c0.056,0.097,0.083,0.222,0.083,0.374v2.271l0.651-0.432c0.106-0.064,0.215-0.125,0.326-0.18c0.111-0.056,0.235-0.083,0.37-0.083h0.59c0.158,0,0.292,0.021,0.4,0.066c0.108,0.043,0.225,0.119,0.348,0.225c0.083,0.069,0.146,0.144,0.193,0.22s0.082,0.156,0.105,0.238c0.023,0.083,0.038,0.167,0.045,0.255c0.005,0.087,0.011,0.182,0.017,0.281c0.019,0.446,0.031,0.823,0.04,1.132c0.01,0.309,0.016,0.563,0.021,0.765c0.007,0.203,0.012,0.361,0.014,0.476c0.003,0.115,0.006,0.199,0.01,0.255c0.003,0.056,0.004,0.092,0.004,0.106c0,0.015,0,0.025,0,0.031c0,0.153-0.029,0.274-0.089,0.366c-0.059,0.091-0.163,0.136-0.316,0.136c-0.146,0-0.248-0.047-0.304-0.141c-0.057-0.094-0.087-0.214-0.093-0.361l-0.078-2.562c-0.007-0.118-0.016-0.218-0.027-0.304c-0.012-0.085-0.034-0.156-0.07-0.215c-0.034-0.059-0.088-0.101-0.158-0.127s-0.167-0.04-0.291-0.04c-0.088,0-0.158,0-0.211,0s-0.097,0.002-0.132,0.009c-0.035,0.005-0.065,0.015-0.092,0.026c-0.027,0.012-0.056,0.027-0.084,0.044l-1.189,0.739V8.342L78.413,8.342z&quot;/&gt;&#10;    &lt;/g&gt;&#10;   &lt;/g&gt;&#10;  &lt;/g&gt;&#10; &lt;/g&gt;&#10;&lt;/svg&gt;&#10;"/>
        <property name="lastfilename" value="/Users/Nu/Desktop/_Fritzing/Fritzing_what_the_hell/fritzing/fritzing/parts/svg/core/pcb/new Made with Fritzing.svg"/>
        <property name="originalWidth" value="29.986224"/>
        <property name="originalHeight" value="13.4055612"/>
        <title>IMG1</title>
        <views>
            <breadboardView layer="">
                <geometry z="0.50002" x="-277.254" y="-27.0385"/>
            </breadboardView>
            <pcbView layer="silkscreen">
                <geometry z="11.5" x="-243.067" y="350.033"/>
            </pcbView>
            <schematicView layer="">
                <geometry z="0.50002" x="-141.2" y="-27.7269"/>
            </schematicView>
        </views>
    </instance>
    <instance moduleIdRef="LogoTextModuleID" modelIndex="1816643" path=":/resources/parts/core/logotext.fzp">
        <property name="logo" value="BLINK"/>
        <property name="width" value="8.14028969230769"/>
        <property name="height" value="2.11647532"/>
        <property name="shape" value="&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; width=&quot;0.320484in&quot;  height=&quot;0.0833258in&quot; viewBox=&quot;0 0 50 13&quot;&gt;&#10; &lt;g id=&quot;silkscreen&quot;&gt;&#10;  &lt;text x=&quot;25&quot; y=&quot;9&quot; fill=&quot;#000000&quot; font-family=&quot;OCRA&quot; text-anchor=&quot;middle&quot; id=&quot;label&quot; xml:space=&quot;preserve&quot; stroke-width=&quot;0&quot; font-size=&quot;10&quot;&gt;BLINK&lt;/text&gt;&#10; &lt;/g&gt;&#10;&lt;/svg&gt;&#10;"/>
        <property name="lastfilename" value=":/resources/parts/svg/core/pcb/logo.svg"/>
        <title>TXT1</title>
        <views>
            <pcbView layer="silkscreen">
                <geometry z="11.5" x="-218.757" y="373.207"/>
            </pcbView>
        </views>
    </instance>
    <instance moduleIdRef="arduino_Uno_Rev3(fix)" modelIndex="1846086" path="C:/Users/jonathan/fritzing/fritzing/fritzing/pdb/core/arduino_Uno_Rev3(fix).fzp">
        <title>Arduino1</title>
        <views>
            <breadboardView layer="breadboardbreadboard">
                <geometry z="1.50003" x="216.935" y="-7.10543e-15"/>
                <connectors>
                    <connector connectorId="connector56" layer="breadboardbreadboard">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="2017" layer="breadboard"/>
                            <connect connectorId="connector0" modelIndex="1717665" layer="breadboardWire"/>
                            <connect connectorId="connector0" modelIndex="1846092" layer="breadboardWire"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector57" layer="breadboardbreadboard">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2017" layer="breadboard"/>
                            <connect connectorId="connector1" modelIndex="2065" layer="breadboardWire"/>
                            <connect connectorId="connector0" modelIndex="1717677" layer="breadboardWire"/>
                        </connects>
                    </connector>
                </connectors>
            </breadboardView>
            <pcbView layer="copper0">
                <geometry z="5.50005" x="-246.83" y="193.5"/>
                <connectors>
                    <connector connectorId="connector56" layer="copper0">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="2017" layer="copper0"/>
                            <connect connectorId="connector0" modelIndex="1717665" layer="copper0trace"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector57" layer="copper0">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2017" layer="copper0"/>
                            <connect connectorId="connector1" modelIndex="2065" layer="copper0trace"/>
                            <connect connectorId="connector0" modelIndex="1717677" layer="copper0trace"/>
                        </connects>
                    </connector>
                </connectors>
            </pcbView>
            <schematicView layer="schematic">
                <geometry z="2.50003" x="-432" y="-117"/>
                <connectors>
                    <connector connectorId="connector56" layer="schematic">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="2017" layer="schematic"/>
                            <connect connectorId="connector0" modelIndex="1717665" layer="schematicTrace"/>
                            <connect connectorId="connector0" modelIndex="1846092" layer="schematicTrace"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector57" layer="schematic">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="2017" layer="schematic"/>
                            <connect connectorId="connector1" modelIndex="2065" layer="schematicTrace"/>
                            <connect connectorId="connector0" modelIndex="1717677" layer="schematicTrace"/>
                        </connects>
                    </connector>
                </connectors>
            </schematicView>
        </views>
    </instance>
    <instance moduleIdRef="WireModuleID" modelIndex="1846091" path=":/resources/parts/core/wire.fzp">
        <title>Wire49</title>
        <views>
            <breadboardView layer="breadboardWire">
                <geometry z="3.5" x="-269.81" y="35.9458" x1="0" y1="0" x2="1.15858" y2="72.0523" wireFlags="128"/>
                <wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="1846092" layer="breadboardWire"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="2017" layer="breadboard"/>
                        </connects>
                    </connector>
                </connectors>
            </breadboardView>
            <pcbView layer="copper1trace">
                <geometry z="9.50003" x="-269.81" y="35.9458" x1="0" y1="0" x2="1.15858" y2="72.0523" wireFlags="128"/>
                <wireExtras mils="11.1111" color="#f2c600" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="copper1trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="1846092" layer="copper1trace"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="copper1trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="2017" layer="copper1"/>
                        </connects>
                    </connector>
                </connectors>
            </pcbView>
            <schematicView layer="schematicTrace">
                <geometry z="5.5" x="-269.81" y="35.9458" x1="0" y1="0" x2="-0.1901" y2="72.0536" wireFlags="128"/>
                <wireExtras mils="9.7222" color="#ff7300" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="1846092" layer="schematicTrace"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector1" modelIndex="2017" layer="schematic"/>
                        </connects>
                    </connector>
                </connectors>
            </schematicView>
        </views>
    </instance>
    <instance moduleIdRef="WireModuleID" modelIndex="1846092" path=":/resources/parts/core/wire.fzp">
        <title>Wire50</title>
        <views>
            <breadboardView layer="breadboardWire">
                <geometry z="3.50001" x="-297" y="35.9999" x1="0" y1="0" x2="27.1899" y2="-0.0540785" wireFlags="128"/>
                <wireExtras mils="22.2222" color="#418dd9" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector56" modelIndex="1846086" layer="breadboardbreadboard"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="breadboardWire">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="1846091" layer="breadboardWire"/>
                        </connects>
                    </connector>
                </connectors>
            </breadboardView>
            <pcbView layer="copper1trace">
                <geometry z="9.5" x="-297" y="35.9999" x1="0" y1="0" x2="27.1899" y2="-0.0540785" wireFlags="128"/>
                <wireExtras mils="11.1111" color="#f2c600" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="copper1trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector56" modelIndex="1846086" layer="copper1"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="copper1trace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="1846091" layer="copper1trace"/>
                        </connects>
                    </connector>
                </connectors>
            </pcbView>
            <schematicView layer="schematicTrace">
                <geometry z="5.50001" x="-297" y="35.9999" x1="0" y1="0" x2="27.1902" y2="-0.0541016" wireFlags="128"/>
                <wireExtras mils="9.7222" color="#ff7300" opacity="1" banded="0"/>
                <connectors>
                    <connector connectorId="connector0" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector56" modelIndex="1846086" layer="schematic"/>
                        </connects>
                    </connector>
                    <connector connectorId="connector1" layer="schematicTrace">
                        <geometry x="0" y="0"/>
                        <connects>
                            <connect connectorId="connector0" modelIndex="1846091" layer="schematicTrace"/>
                        </connects>
                    </connector>
                </connectors>
            </schematicView>
        </views>
    </instance>
</instances>
</module>

Authors: Jonathan Cohen