diff --git a/.gitignore b/.gitignore index 2709dd7..364b277 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ *elf *bin temp/ +.DS_Store diff --git a/README.md b/README.md index 3436d31..73a746e 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ Click any of the links below to access a detailed walkthrough of how they were d | Recipe | What It Can Do | | ------------- | ------------- | +| [SD Card Reader](./sd_card_reader/) | Specialized controller, SD card connector, bundles, custom board shapes, general workflow| | [Battery Charger](./battery_charger_design/) | LiPo battery charger, LDO voltage regulator, USB-C connector, JST battery connector, resistors, capacitors, detailed checks, export to KiCad | | [USB-C Cable Tester](./usb_c_cable_tester/) | Test points, programmatic parts placement, USB-C connectors, LEDs, coin cell battery, circuit introspection | | [BLE-mote Wireless IOT Sensor Board](./ble_mote_esp32_iot_board/) | Microcontroller, pin assignment (supports/requires), parametric design, design optimization, copper pour, net-classes, stackup | diff --git a/sd_card_reader/README.md b/sd_card_reader/README.md new file mode 100644 index 0000000..eec7dac --- /dev/null +++ b/sd_card_reader/README.md @@ -0,0 +1,197 @@ +# SD Card Reader Cookbook Recipe +This tutorial guides you on creating an SD Card Reader using JITX while highlighting different features that can be used to aid users on their designs. + +## The Project +This is an SD card reader built in a small form factor, designed to fit in the framework laptop (untested). +![:3](imgs/irl-card-reader.jpg) + +## Getting Started +#### Prerequisites +To start, we'll need to setup JITX. We can follow this tutorial to get setup: https://docs-testing.jitx.com/faq/installationinstructions.html + +Then, we need to create a new project. So let's run VSCode, select the JITX extension, and click "New Project". + +Now we're ready to start designing the board. + +> NOTE: The code below is not the entire design. Refer to the [Github repo](https://github.com/JITx-Inc/jitx-cookbook/tree/main/sd_card_reader) for a full working design. Below, we describe the design flow and thought process behind designing this board. + +#### Intended Functionality +We want our design to be able to: + +* Read and write from an SD Card +* Interface with a computer using a USB-C male connector +* Show the status of data transfer with an LED +* Enable USB device customization using an EEPROM +#### Implementation Plan +To accomplish this, we will use: + +* A controller: Microchip USB2240-AEZG-06 +* A power regulator: ROHM Semicon BD433M5FP-CE2 +* An EEPROM: ST Microelectronics M24C04-WMN6TP +* A USB C male connector: HRO Electronics TYPE-C-31-G-03 +* An SD card connector: XUNPU SD-101 +* Miscellaneous generic components + +## Components +Most of our main components (like our controller) don't exist in the OCDB so we will define these ourselves. Fortunately, we don't have to build the landpattern definitions and pin definitions as our parts exist in the parts database. + +We can look for parts using the component search. Since, we want to manufacture this board from JLCPCB, we should look for components that have the property `vendor_part_numbers.lcsc`. + +![:3](imgs/compsearch.png) + +We want to define each of our main components in their own separate modules so we can reuse them later on for different projects. Thus, each component is put into a `pcb-module`. + +#### Microcontroller +For this project, we're going to use a Microchip USB2240. For each module we're going to follow a workflow: + +* See what inputs and outputs we want and define them as pins and ports. + * We want to use bundles (ports) for pins that are commonly connected together. We can look for bundles in the OCDB by opening `ocdb/utils/bundles.stanza` +``` +port power : power +port i2c : i2c +port usb-in : usb-2 +port sd-card-conn : sd-card-uhs-1-connector +pin LED +``` +* We can also create our own bundles if they don't exist in the OCDB. `sd-card-uhs-1-connector` is an example +``` +public pcb-bundle sd-card-uhs-1-connector: + pin CMD ; Command/Response + port power : power ; 3.3v and 2 ground pins + pin CLK ; Clock + port DAT : pin[4] ; Data pins (last pin also used as card detect) + pin CD ; Card detect + pin WP ; Write protect +``` + +* Instantiate the exact part we want using a database part query + * An alternative to making a query could be searching for this part in the component search and clicking "Create component" after selecting a suitable component. +``` +inst usb2240 : database-part(["manufacturer" => "Microchip", "mpn" => "USB2240-AEZG-06"]) +``` + +* Go through the pins using the design explorer (you can find this by opening the sidebar and clicking "Explorer" under the "Views" section) +* Define each pin's properties with the help of the part's datasheet and the [JITX documentation](https://docs.jitx.com/reference/utilities/properties.html) +* Create and connect components that would be consistent for every use case for this design (pull-up resistors and decoupling capacitors etc.) + * For this design, we always need a 24MHz crystal so we define it with the same workflow + * `bypass-cap-strap` creates a capacitor which uses `short-trace`. The `short-trace` is a hint to the layout that we want our PCB trace to be as short as possible between both pads + * It's best to define pins we're not using as a `no-connect` to avoid ERC errors in the design flow + * The parameter `"_exist" => ["vendor_part_numbers.lcsc"]` allows us to specify that we require the part to have an LCSC number + +#### USB C male connector +Our application uses USB2 so we want to use the USB2 protocol over the USB-C connection. One key aspect of the backwards compatibility is to indicate device type using resistors on the CC1, CC2 pins. In this case, we need a pull-down resistor on the CC1 pin. + +## Bundles +Bundles allow us to define a set of pins which are commonly used together and allow us to view the design at a higher level. Bundles also make connecting pins easy and foolproof. For example, we can create a bundle called `sd-card-uhs-1-connector` and define every pin required for an SD card. Now we can use this to connect our controller to the SD Card connector within a single `net` statement. + +We can create bundles within bundles too to further simplify our code. + +## Main Design + +We want to define a custom shape for our board with 5mm x 2mm notches so we create the board using a Polygon shape: +``` +val board-shape = Polygon([Point(-15.0,-15.0), Point(10.0,-15.0), Point(10.0,-13.0), Point(15.0,-13.0), Point(15.0, 13.0), Point(10.0, 13.0), Point(10.0, 15.0), Point(-15.0,15.0)]) +``` + +We also can to use this same shape for our ground copper ground planes which extend from edge to edge. +``` +geom(gnd) : + copper-pour(LayerIndex(0), isolate = 0.1, rank = 1, orphans = true) = board-shape + copper-pour(LayerIndex(1), isolate = 0.1, rank = 1, orphans = true) = board-shape +``` + +Now that all our components and the board are defined, we can move on to placing and connecting our modules together. We use the `dims` function to get the dimensions of our custom board shape and use it for placement. +``` +val d = dims(board-shape) +``` + +Now we instantiate all our modules and also create testpoints which would allow us to update information on our EEPROM. +``` +inst logo : ocdb/artwork/jitx-logo/logo(5.0) + +; Call all our modules +inst usb : usb-2-on-usb-c-male +place(usb) at loc(x(d) / 2.0 + 1.1, 0.0, -270.0) on Bottom + +inst reg : voltage-regulator + +inst eeprom : eeprom + +val testpoints = add-testpoint([eeprom.power.vdd eeprom.power.gnd eeprom.i2c.sda eeprom.i2c.scl], Testpoint-SMDPad) + +inst media-controller : media-controller +place(media-controller) at loc(0.0, 0.0, 0.0) on Top + +inst sd-connector : sd-connector +place(sd-connector) at loc(-5.0, 0.0, 270.0) on Bottom +``` + +We're reusing the LED circuit generator used in the [USB C cable tester](https://github.com/JITx-Inc/jitx-cookbook/tree/main/usb_c_cable_tester) to create our status LED. +``` +inst status-led : components/LED-maker-ROYGB/module(components/LED-maker-ROYGB/RED, property(vdd33.voltage)) +``` + +Connecting our ports is easy now since we can net whole bundles together. +``` +net (usb.usb-2.vbus reg.power-in) +net (usb.usb-2 media-controller.usb-in) + +net (reg.power-out media-controller.power eeprom.power) + +net (media-controller.i2c eeprom.i2c) +net (media-controller.sd-card-conn sd-connector.conn) + +net (media-controller.LED status-led.in) +net (status-led.out gnd) +``` + +`check-design` allows us to use checks already made in the OCDB and use it for our board. + +## Layout + Order + +#### Layout + +With all our components and connections defined, now we can place our components where we want on the board. Then we can select single pads (`click`), extend the selection of pads (`shift+click`) or select all pads connected to the pad we first selected (press `a`) and then press `q` to route traces through those pads. + +![:3](imgs/jitx-layout-and-route.png) + +#### Export to KiCad + +Now that we're happy with the layout, we can export the design straight into KiCad. + +First, let's go into `helpers.stanza`, set KiCad as our CAD tool, and add a mapping so that the custom LCSC field gets exported as a component property: +``` +val export-field-mapping = [ + "LCSC" => "LCSC" + "lcsc" => "LCSC" + "vendor_part_numbers.lcsc" => "LCSC" +] +defn export-to-cad () : + set-paper(ANSI-A4) + set-export-backend(`kicad) + export-cad(export-field-mapping) +``` +Then we build the project with `Ctrl + Enter`, and export with `export-design()` in our REPL (terminal), and a KiCad project is generated in the "CAD" directory. + +#### Finishing touches in KiCad + +Let's open up KiCad, open the project, and open the schematic + board viewers. The first thing to do is to click the "Update PCB with changes made to schematic" button in the board view to ensure everything has synced. + +Then we need to change the reference texts' silkscreen location as necessary. + +![:3](imgs/kicad-done.png) + +#### Export from Kicad, order from JLCPCB + +Install [this](https://github.com/Bouni/kicad-jlcpcb-tools) plugin in Kicad to manage your components from LCSC and generate your Gerbers, BOM, and CPL. + +Upload your design to JLCPCB and order it: +![:3](imgs/jlcpcb.png) + + + +## Conclusion + +We've now successfully designed a PCB using JITX. You can use this as a reference project, copying this workflow to design your own systems. To learn more, check out the other recipes in [the JITX Cookbook Recipes repo](https://github.com/JITx-Inc/jitx-cookbook) and read through the [tutorials](https://docs.jitx.com/tutorials/index.html) in the JITX docs. + +![:3](imgs/irl-card-reader-2.jpg) diff --git a/sd_card_reader/bundles.stanza b/sd_card_reader/bundles.stanza new file mode 100644 index 0000000..97d81d6 --- /dev/null +++ b/sd_card_reader/bundles.stanza @@ -0,0 +1,23 @@ +#use-added-syntax(jitx) + +defpackage bundles: + import core + import collections + import jitx + import jitx/commands + import ocdb/utils/defaults + import ocdb/utils/landpatterns + import ocdb/utils/box-symbol + import ocdb/utils/bundles + import ocdb/utils/property-structs + import ocdb/utils/generic-components + import ocdb/utils/generator-utils + import ocdb/utils/symbols + +public pcb-bundle sd-card-uhs-1-connector: + pin CMD ; Command/Response + port power : power ; 3.3v and 2 ground pins + pin CLK ; Clock + port DAT : pin[4] ; Data pins (last pin also used as card detect) + pin CD ; Card detect + pin WP ; Write protect diff --git a/sd_card_reader/components/LED-maker-ROYGB.stanza b/sd_card_reader/components/LED-maker-ROYGB.stanza new file mode 100644 index 0000000..38446cb --- /dev/null +++ b/sd_card_reader/components/LED-maker-ROYGB.stanza @@ -0,0 +1,138 @@ +; Make LEDs of different colors with the same brightness. +; A module that accepts color and voltage, and creates an LED with tuned ballast resistor for a 50mCd luminous intensity. + +#use-added-syntax(jitx) +defpackage components/LED-maker-ROYGB: + import core + import collections + import jitx + import jitx/commands + import ocdb/utils/defaults + import ocdb/utils/landpatterns + import ocdb/utils/box-symbol + import ocdb/utils/bundles + import ocdb/utils/property-structs + import ocdb/utils/generic-components + import ocdb/utils/generator-utils + import ocdb/utils/symbols + +pcb-landpattern lp-led-maker : + make-ipc-two-pin-landpattern("0603") + +public pcb-enum components/LED-maker-ROYGB/LED-COLORS : + RED + ORANGE + YELLOW + GREEN + BLUE + +public pcb-component led-component (color:LED-COLORS) : + name = "LED-maker-ROYGBIV" + description = "Everlight Elec 0603 various color SMD LEDs" + manufacturer = "Everlight Elec" + reference-prefix = "LED" + property(self.package) = "0603" + + ; properties shared by all LEDs + property(self.max-current) = 25.0e-3 + property(self.rated-temperature) = 85.0 + + ; properties different among LEDs + switch(color) : + RED: + mpn = "19-21/R6C-FP1Q2L/3T" + property(self.LCSC) = "C93128" + property(self.datasheet) = "https://datasheet.lcsc.com/lcsc/1810010118_Everlight-Elec-19-21-R6C-FP1Q2L-3T_C93128.pdf" + property(self.li) = min-max(45.0e-3, 112.0e-3) + property(self.vf) = min-max(1.7, 2.3) + ORANGE: + mpn = "19-217UYOC/S3077/TR8" + property(self.LCSC) = "C264474" + property(self.datasheet) = "https://datasheet.LCSC.com/lcsc/1912111437_Everlight-Elec-19-217UYOC-S3077-TR8_C264474.pdf" + property(self.li) = min-max(28.0e-3, 72.0e-3) + property(self.vf) = min-max(1.7, 2.4) + YELLOW: + mpn = "19-21/Y2C-CN1P2B/3T" + property(self.LCSC) = "C131265" + property(self.datasheet) = "https://datasheet.LCSC.com/lcsc/1811141628_Everlight-Elec-19-21-Y2C-CN1P2B-3T_C131265.pdf" + property(self.li) = min-max(28.5e-3, 72.0e-3) + property(self.vf) = min-max(1.75, 2.35) + GREEN: + mpn = "19-217/GHC-YN1P2B18X/3T" + property(self.LCSC) = "C2980184" + property(self.datasheet) = "https://datasheet.LCSC.com/lcsc/2202101201_Everlight-Elec-19-21-GHC-YR1S2-3T_C2973113.pdf" + property(self.li) = min-max(28.5e-3, 72.0e-3) + property(self.vf) = min-max(2.7, 3.7) + BLUE: + mpn = "19-213/BHC-AP2Q2E/3T" + property(self.LCSC) = "C474027" + property(self.datasheet) = "https://datasheet.LCSC.com/lcsc/1912251011_Everlight-Elec-19-213-BHC-AP2Q2E-3T_C474027.pdf" + property(self.li) = min-max(57.0e-3, 112.0e-3) + property(self.vf) = min-max(2.75, 3.65) + + pin-properties : + [pin:Ref | pads:Int ... | side:Dir ] + [a | 1 | Up ] + [c | 2 | Down ] + + assign-symbol(diode-sym(DiodeLED)) + assign-landpattern(lp-led-maker) + +defn percent-to-li (percent:Double, min-li:Double, max-li:Double) -> Double : + ((percent * (min-li - max-li)) + min-li) + +defn compute-ballast-resistor (led:JITXObject, voltage:Toleranced, brightness:Double) -> Double : ; led is an led-component, brightness is in candellas + ; nominal luminous intensity of this LED + val nli = center-value(property(led.li)) + val vf = center-value(property(led.vf)) + + ; map luminous intensity to current + ; Datasheet gives data in tables, so use piecewise linear model to find value + val my-pwl = PWL([ + [0.02 * nli, 1.0e-3] + [0.06 * nli, 2.0e-3] + [0.5 * nli, 10.0e-3] + [1.0 * nli, 20.0e-3] + ]) + val computed-current = my-pwl[brightness] + + ; get the required resistance, given the input voltage and the desired current + val computed-resistance = (voltage - typ(vf)) / typ(computed-current) + ; turn the resistor into the closest standard value resistor by passing in a the resistance that we computed + val standard-computed-resistance = closest-std-val(typ-value(computed-resistance), 5.0) + + standard-computed-resistance + +; the LED and ballast resistor module +public pcb-module module (color:LED-COLORS, voltage-in:Toleranced) : + pin in + pin out + + ; using the component definition from above: + inst led : components/LED-maker-ROYGB/led-component(color) + + ; create ballast resistor + val brightness = 50.0e-3 ; candella + val ballast-resistance = compute-ballast-resistor(led, voltage-in, brightness); + inst ballast-res : database-part(["category" => "resistor", "resistance" => ballast-resistance, "case" => ["0402"], "_exist" => ["vendor_part_numbers.lcsc", "rated-temperature"]]) + view-design-explorer $ instance-definition(ballast-res) + + ; hook up LEDs, resistors to input and output + net (in ballast-res.p[1]) ; input power + net (ballast-res.p[2] led.a) ; connect one terminal of the resistor to anode of LED + net (led.c out) ; connect led to output + + ; specify our input voltage range + property(in.power-pin) = PowerPin(voltage-in) + ; property(in.voltage) = voltage-in + + ; place the LED and resistor relative to each other + val res-to-led-distance = 3.2 + place(led) at loc(0.0, 0.0, 270.0) on Top + place(ballast-res) at loc(res-to-led-distance, 0.0, 180.0) on Top + + ref-label(led) = Text(">REF", 1.0, W, loc(0.0, -6.5, 90.0)) + ref-label(ballast-res) = Text(">REF", 1.0, W, loc(-1.5, 0.0, 180.0)) + + ; run a check on the module power pins + ocdb/utils/pin-checks/all/check-pins(self) \ No newline at end of file diff --git a/sd_card_reader/components/Microchip/USB2240-AEZG-06.stanza b/sd_card_reader/components/Microchip/USB2240-AEZG-06.stanza new file mode 100644 index 0000000..c1b32c9 --- /dev/null +++ b/sd_card_reader/components/Microchip/USB2240-AEZG-06.stanza @@ -0,0 +1,554 @@ +; This file is generated based on the parts database query below:") +; database-part(["manufacturer" => "Microchip", "mpn" => "USB2240-AEZG-06"]) +#use-added-syntax(jitx) +defpackage components/Microchip/USB2240-AEZG-06 : + import core + import jitx + import jitx/commands + + +pcb-pad rectangle-smd-pad : + name = "rectangle-smd-pad" + type = SMD + shape = Rectangle(4.1, 4.1) + layer(SolderMask(Top)) = Rectangle(4.2, 4.2) + +pcb-pad rectangle-smd-pad-1 : + name = "rectangle-smd-pad-1" + type = SMD + shape = Rectangle(0.28, 0.89) + layer(SolderMask(Top)) = Rectangle(0.38, 0.99) + +pcb-landpattern lp : + pad p[1] : rectangle-smd-pad-1 at loc(-2.80999999999995, 2.0, 90.0) on Top + pad p[2] : rectangle-smd-pad-1 at loc(-2.80999999999995, 1.5, 90.0) on Top + pad p[3] : rectangle-smd-pad-1 at loc(-2.80999999999995, 1.0, 90.0) on Top + pad p[4] : rectangle-smd-pad-1 at loc(-2.80999999999995, 0.5, 90.0) on Top + pad p[5] : rectangle-smd-pad-1 at loc(-2.80999999999995, 0.0, 90.0) on Top + pad p[6] : rectangle-smd-pad-1 at loc(-2.80999999999995, -0.5, 90.0) on Top + pad p[7] : rectangle-smd-pad-1 at loc(-2.80999999999995, -1.0, 90.0) on Top + pad p[8] : rectangle-smd-pad-1 at loc(-2.80999999999995, -1.5, 90.0) on Top + pad p[9] : rectangle-smd-pad-1 at loc(-2.80999999999995, -2.0, 90.0) on Top + pad p[10] : rectangle-smd-pad-1 at loc(-2.0, -2.80900000000008, 180.0) on Top + pad p[11] : rectangle-smd-pad-1 at loc(-1.5, -2.80900000000008, 180.0) on Top + pad p[12] : rectangle-smd-pad-1 at loc(-1.0, -2.80900000000008, 180.0) on Top + pad p[13] : rectangle-smd-pad-1 at loc(-0.5, -2.80900000000008, 180.0) on Top + pad p[14] : rectangle-smd-pad-1 at loc(0.0, -2.80900000000008, 180.0) on Top + pad p[15] : rectangle-smd-pad-1 at loc(0.5, -2.80900000000008, 180.0) on Top + pad p[16] : rectangle-smd-pad-1 at loc(1.0, -2.80900000000008, 180.0) on Top + pad p[17] : rectangle-smd-pad-1 at loc(1.5, -2.80900000000008, 180.0) on Top + pad p[18] : rectangle-smd-pad-1 at loc(2.0, -2.80900000000008, 180.0) on Top + pad p[19] : rectangle-smd-pad-1 at loc(2.81000000000006, -2.0, 90.0) on Top + pad p[20] : rectangle-smd-pad-1 at loc(2.81000000000006, -1.5, 90.0) on Top + pad p[21] : rectangle-smd-pad-1 at loc(2.81000000000006, -1.0, 90.0) on Top + pad p[22] : rectangle-smd-pad-1 at loc(2.81000000000006, -0.5, 90.0) on Top + pad p[23] : rectangle-smd-pad-1 at loc(2.81000000000006, 0.0, 90.0) on Top + pad p[24] : rectangle-smd-pad-1 at loc(2.81000000000006, 0.5, 90.0) on Top + pad p[25] : rectangle-smd-pad-1 at loc(2.81000000000006, 1.0, 90.0) on Top + pad p[26] : rectangle-smd-pad-1 at loc(2.81000000000006, 1.5, 90.0) on Top + pad p[27] : rectangle-smd-pad-1 at loc(2.81000000000006, 2.0, 90.0) on Top + pad p[28] : rectangle-smd-pad-1 at loc(2.0, 2.80999999999995, 180.0) on Top + pad p[29] : rectangle-smd-pad-1 at loc(1.5, 2.80999999999995, 180.0) on Top + pad p[30] : rectangle-smd-pad-1 at loc(1.0, 2.80999999999995, 180.0) on Top + pad p[31] : rectangle-smd-pad-1 at loc(0.5, 2.80999999999995, 180.0) on Top + pad p[32] : rectangle-smd-pad-1 at loc(0.0, 2.80999999999995, 180.0) on Top + pad p[33] : rectangle-smd-pad-1 at loc(-0.5, 2.80999999999995, 180.0) on Top + pad p[34] : rectangle-smd-pad-1 at loc(-1.0, 2.80999999999995, 180.0) on Top + pad p[35] : rectangle-smd-pad-1 at loc(-1.5, 2.80999999999995, 180.0) on Top + pad p[36] : rectangle-smd-pad-1 at loc(-2.0, 2.80999999999995, 180.0) on Top + pad p[37] : rectangle-smd-pad at loc(0.0, 0.0) on Top + + layer(Silkscreen("F-SilkS", Top)) = Text(">REF", 1.0, W, loc(-1.5, 4.7056), "", TrueTypeFont, false, false) + layer(Finish(Top)) = Text(">VALUE", 1.0, W, loc(-1.5, 3.7056), "", TrueTypeFont, false, false) + layer(Silkscreen("F-SilkS", Top)) = Line(0.15, [Point(2.40000000000009, -3.0), Point(3.0, -3.0)]) + layer(Silkscreen("F-SilkS", Top)) = Line(0.15, [Point(3.0, -3.0), Point(3.0, -2.40000000000009)]) + layer(Silkscreen("F-SilkS", Top)) = Line(0.15, [Point(-3.0, -3.0), Point(-2.39999999999998, -3.0)]) + layer(Silkscreen("F-SilkS", Top)) = Line(0.15, [Point(-3.0, -2.40000000000009), Point(-3.0, -3.0)]) + layer(Silkscreen("F-SilkS", Top)) = Line(0.15, [Point(3.0, 2.39999999999998), Point(3.0, 3.0)]) + layer(Silkscreen("F-SilkS", Top)) = Line(0.15, [Point(3.0, 3.0), Point(2.40000000000009, 3.0)]) + layer(Silkscreen("F-SilkS", Top)) = Line(0.15, [Point(-2.39999999999998, 3.0), Point(-3.0, 3.0)]) + layer(Silkscreen("F-SilkS", Top)) = Line(0.15, [Point(-3.0, 3.0), Point(-3.0, 2.39999999999998)]) + layer(Finish(Top)) = Polyline(0.06, [Arc(-3.0, 3.00099999999998, 0.03, 0.0, -360.0)]) + layer(Finish(Top)) = Polyline(0.3, [Arc(-3.17499999999995, 2.15899999999999, 0.15, 0.0, -360.0)]) + layer(Silkscreen("F-SilkS", Top)) = Polyline(0.3, [Arc(-3.68299999999999, 2.53999999999996, 0.15, 0.0, -360.0)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(2.1400000000001, 2.36500000000001), + Point(2.1400000000001, 3.255), + Point(1.86000000000001, 3.255), + Point(1.86000000000001, 2.36500000000001), + Point(2.1400000000001, 2.36500000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-0.139999999999986, 3.255), + Point(-0.139999999999986, 2.36500000000001), + Point(0.1400000000001, 2.36500000000001), + Point(0.1400000000001, 3.255), + Point(-0.139999999999986, 3.255)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-0.639999999999986, 3.255), + Point(-0.639999999999986, 2.36500000000001), + Point(-0.3599999999999, 2.36500000000001), + Point(-0.3599999999999, 3.255), + Point(-0.639999999999986, 3.255)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-1.13999999999999, 3.255), + Point(-1.13999999999999, 2.36500000000001), + Point(-0.8599999999999, 2.36500000000001), + Point(-0.8599999999999, 3.255), + Point(-1.13999999999999, 3.255)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(1.6400000000001, 2.36500000000001), + Point(1.6400000000001, 3.255), + Point(1.36000000000001, 3.255), + Point(1.36000000000001, 2.36500000000001), + Point(1.6400000000001, 2.36500000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-1.63999999999999, 3.255), + Point(-1.63999999999999, 2.36500000000001), + Point(-1.3599999999999, 2.36500000000001), + Point(-1.3599999999999, 3.255), + Point(-1.63999999999999, 3.255)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-2.13999999999999, 3.255), + Point(-2.13999999999999, 2.36500000000001), + Point(-1.8599999999999, 2.36500000000001), + Point(-1.8599999999999, 3.255), + Point(-2.13999999999999, 3.255)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(0.360000000000014, 3.255), + Point(0.360000000000014, 2.36500000000001), + Point(0.6400000000001, 2.36500000000001), + Point(0.6400000000001, 3.255), + Point(0.360000000000014, 3.255)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(1.1400000000001, 2.36500000000001), + Point(1.1400000000001, 3.255), + Point(0.860000000000014, 3.255), + Point(0.860000000000014, 2.36500000000001), + Point(1.1400000000001, 2.36500000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-2.36500000000001, 1.8599999999999), + Point(-2.36500000000001, 2.13999999999999), + Point(-3.255, 2.13999999999999), + Point(-3.255, 1.8599999999999), + Point(-2.36500000000001, 1.8599999999999)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(3.255, 1.8599999999999), + Point(3.255, 2.13999999999999), + Point(2.36500000000001, 2.13999999999999), + Point(2.36500000000001, 1.8599999999999), + Point(3.255, 1.8599999999999)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-3.255, 1.63999999999999), + Point(-3.255, 1.3599999999999), + Point(-2.36500000000001, 1.3599999999999), + Point(-2.36500000000001, 1.63999999999999), + Point(-3.255, 1.63999999999999)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(3.255, 1.3599999999999), + Point(3.255, 1.63999999999999), + Point(2.36500000000001, 1.63999999999999), + Point(2.36500000000001, 1.3599999999999), + Point(3.255, 1.3599999999999)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(3.255, 0.8599999999999), + Point(3.255, 1.13999999999999), + Point(2.36500000000001, 1.13999999999999), + Point(2.36500000000001, 0.8599999999999), + Point(3.255, 0.8599999999999)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-3.255, 1.13999999999999), + Point(-3.255, 0.8599999999999), + Point(-2.36500000000001, 0.8599999999999), + Point(-2.36500000000001, 1.13999999999999), + Point(-3.255, 1.13999999999999)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(3.255, 0.3599999999999), + Point(3.255, 0.639999999999986), + Point(2.36500000000001, 0.639999999999986), + Point(2.36500000000001, 0.3599999999999), + Point(3.255, 0.3599999999999)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-3.255, 0.639999999999986), + Point(-3.255, 0.3599999999999), + Point(-2.36500000000001, 0.3599999999999), + Point(-2.36500000000001, 0.639999999999986), + Point(-3.255, 0.639999999999986)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(3.255, -0.1400000000001), + Point(3.255, 0.139999999999986), + Point(2.36500000000001, 0.139999999999986), + Point(2.36500000000001, -0.1400000000001), + Point(3.255, -0.1400000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-3.255, 0.139999999999986), + Point(-3.255, -0.1400000000001), + Point(-2.36500000000001, -0.1400000000001), + Point(-2.36500000000001, 0.139999999999986), + Point(-3.255, 0.139999999999986)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(2.36500000000001, -0.360000000000014), + Point(2.36500000000001, -0.6400000000001), + Point(3.255, -0.6400000000001), + Point(3.255, -0.360000000000014), + Point(2.36500000000001, -0.360000000000014)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-2.36500000000001, -0.6400000000001), + Point(-2.36500000000001, -0.360000000000014), + Point(-3.255, -0.360000000000014), + Point(-3.255, -0.6400000000001), + Point(-2.36500000000001, -0.6400000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(2.36500000000001, -0.860000000000014), + Point(2.36500000000001, -1.1400000000001), + Point(3.255, -1.1400000000001), + Point(3.255, -0.860000000000014), + Point(2.36500000000001, -0.860000000000014)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-2.36500000000001, -1.1400000000001), + Point(-2.36500000000001, -0.860000000000014), + Point(-3.255, -0.860000000000014), + Point(-3.255, -1.1400000000001), + Point(-2.36500000000001, -1.1400000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(2.36500000000001, -1.36000000000001), + Point(2.36500000000001, -1.6400000000001), + Point(3.255, -1.6400000000001), + Point(3.255, -1.36000000000001), + Point(2.36500000000001, -1.36000000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-2.36500000000001, -1.6400000000001), + Point(-2.36500000000001, -1.36000000000001), + Point(-3.255, -1.36000000000001), + Point(-3.255, -1.6400000000001), + Point(-2.36500000000001, -1.6400000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(2.36500000000001, -1.86000000000001), + Point(2.36500000000001, -2.1400000000001), + Point(3.255, -2.1400000000001), + Point(3.255, -1.86000000000001), + Point(2.36500000000001, -1.86000000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-2.36500000000001, -2.1400000000001), + Point(-2.36500000000001, -1.86000000000001), + Point(-3.255, -1.86000000000001), + Point(-3.255, -2.1400000000001), + Point(-2.36500000000001, -2.1400000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(0.1400000000001, -3.255), + Point(0.1400000000001, -2.36500000000001), + Point(-0.139999999999986, -2.36500000000001), + Point(-0.139999999999986, -3.255), + Point(0.1400000000001, -3.255)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-0.639999999999986, -2.36500000000001), + Point(-0.639999999999986, -3.255), + Point(-0.3599999999999, -3.255), + Point(-0.3599999999999, -2.36500000000001), + Point(-0.639999999999986, -2.36500000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-1.13999999999999, -2.36500000000001), + Point(-1.13999999999999, -3.255), + Point(-0.8599999999999, -3.255), + Point(-0.8599999999999, -2.36500000000001), + Point(-1.13999999999999, -2.36500000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(2.1400000000001, -3.255), + Point(2.1400000000001, -2.36500000000001), + Point(1.86000000000001, -2.36500000000001), + Point(1.86000000000001, -3.255), + Point(2.1400000000001, -3.255)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-1.63999999999999, -2.36500000000001), + Point(-1.63999999999999, -3.255), + Point(-1.3599999999999, -3.255), + Point(-1.3599999999999, -2.36500000000001), + Point(-1.63999999999999, -2.36500000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-2.13999999999999, -2.36500000000001), + Point(-2.13999999999999, -3.255), + Point(-1.8599999999999, -3.255), + Point(-1.8599999999999, -2.36500000000001), + Point(-2.13999999999999, -2.36500000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(0.360000000000014, -2.36500000000001), + Point(0.360000000000014, -3.255), + Point(0.6400000000001, -3.255), + Point(0.6400000000001, -2.36500000000001), + Point(0.360000000000014, -2.36500000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(1.6400000000001, -3.255), + Point(1.6400000000001, -2.36500000000001), + Point(1.36000000000001, -2.36500000000001), + Point(1.36000000000001, -3.255), + Point(1.6400000000001, -3.255)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(0.860000000000014, -2.36500000000001), + Point(0.860000000000014, -3.255), + Point(1.1400000000001, -3.255), + Point(1.1400000000001, -2.36500000000001), + Point(0.860000000000014, -2.36500000000001)]) + layer(Paste(Top)) = PolygonWithArcs([ + Point(-1.63999999999999, 1.63999999999999), + Point(1.6400000000001, 1.63999999999999), + Point(1.6400000000001, -1.6400000000001), + Point(-1.63999999999999, -1.6400000000001), + Point(-1.63999999999999, 1.63999999999999)]) + layer(Courtyard(Top)) = Rectangle(6.0, 6.0) + +pcb-symbol sym-USB2240-AEZG-06 : + pin LED at Point(-36.8300736601473, 20.3200406400813) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin USB+ at Point(-36.8300736601473, 17.7800355600711) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin USB- at Point(-36.8300736601473, 15.240030480061) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_D3_SD_D1_MS_D5 at Point(-36.8300736601473, 12.7000254000508) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_D2_SD_D0_MS_D4 at Point(-36.8300736601473, 10.1600203200406) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin VDD330 at Point(-36.8300736601473, 7.62001524003048) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_D1_SD_D7_MS_D6 at Point(-36.8300736601473, 5.08001016002032) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_D0_SD_D6_MS_D7 at Point(-36.8300736601473, 2.54000508001016) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_nWP_SD_CLK_MS_BS at Point(-36.8300736601473, 0.0) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_ALE_SD_D5_MS_D1 at Point(-36.8300736601473, -2.54000508001016) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_CLE_SD_CMD_MS_D0 at Point(-36.8300736601473, -5.08001016002032) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_nWE at Point(-36.8300736601473, -7.62001524003048) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin VDD18 at Point(-36.8300736601473, -10.1600203200406) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin VDD331 at Point(-36.8300736601473, -12.7000254000508) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_nCE at Point(-36.8300736601473, -15.240030480061) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_nRE at Point(-36.8300736601473, -17.7800355600711) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_nB_R at Point(-36.8300736601473, -20.3200406400813) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin RESET_N at Point(-36.8300736601473, -22.8600457200914) with : + direction = Left + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_nCD at Point(36.8300736601473, -22.8600457200914) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_D7_SD_D4_MS_D2 at Point(36.8300736601473, -20.3200406400813) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin CRD_PWR at Point(36.8300736601473, -17.7800355600711) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin VDD332 at Point(36.8300736601473, -15.240030480061) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_D6_SD_D3_MS_D3 at Point(36.8300736601473, -12.7000254000508) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin MS_INS at Point(36.8300736601473, -10.1600203200406) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_D5_SD_D2 at Point(36.8300736601473, -7.62001524003048) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin SD_nCD at Point(36.8300736601473, -5.08001016002032) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin RXD_SDA at Point(36.8300736601473, -2.54000508001016) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin TEST at Point(36.8300736601473, 0.0) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin NC at Point(36.8300736601473, 2.54000508001016) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin xD_D4_SD_WP_MS_SCLK at Point(36.8300736601473, 5.08001016002032) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin TXD_SCK_MS_SKT_SEL at Point(36.8300736601473, 7.62001524003048) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin XTAL2 at Point(36.8300736601473, 10.1600203200406) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin XTAL1_CLKIN at Point(36.8300736601473, 12.7000254000508) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin VDD18PLL at Point(36.8300736601473, 15.240030480061) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin RBIAS at Point(36.8300736601473, 17.7800355600711) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin VDDA33 at Point(36.8300736601473, 20.3200406400813) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + pin GND at Point(36.8300736601473, 22.8600457200914) with : + direction = Right + length = 2.54000508001016 + number-size = 1.0 + name-size = 1.0 + + layer("value") = Text(">VALUE", 0.7056, C, loc(0.0, 24.8600457200914), "", TrueTypeFont, false, false) + layer("reference") = Text(">REF", 0.7056, C, loc(0.0, 25.8600457200914), "", TrueTypeFont, false, false) + layer("foreground") = Rectangle(73.6601473202946, 50.8001016002032) + layer("foreground") = Circle(-35.5600711201422, 21.5900431800864, 0.381000762001524) + +public pcb-component component : + name = "C633328" + description = " QFN-36-EP(6x6) Interface - Specialized ROHS" + manufacturer = "Microchip" + mpn = "USB2240-AEZG-06" + datasheet = "https://datasheet.lcsc.com/lcsc/2202140030_Microchip-Tech-USB2240-AEZG-06_C633328.pdf" + pin-properties : + [pin:Ref | pads:Ref ... | side:Dir | electrical-type:String | bank:Int] + [LED | p[1] | Left | "unspecified" | 0] + [USB+ | p[2] | Left | "unspecified" | 0] + [USB- | p[3] | Left | "unspecified" | 0] + [xD_D3_SD_D1_MS_D5 | p[4] | Left | "unspecified" | 0] + [xD_D2_SD_D0_MS_D4 | p[5] | Left | "unspecified" | 0] + [VDD330 | p[6] | Left | "unspecified" | 0] + [xD_D1_SD_D7_MS_D6 | p[7] | Left | "unspecified" | 0] + [xD_D0_SD_D6_MS_D7 | p[8] | Left | "unspecified" | 0] + [xD_nWP_SD_CLK_MS_BS | p[9] | Left | "unspecified" | 0] + [xD_ALE_SD_D5_MS_D1 | p[10] | Left | "unspecified" | 0] + [xD_CLE_SD_CMD_MS_D0 | p[11] | Left | "unspecified" | 0] + [xD_nWE | p[12] | Left | "unspecified" | 0] + [VDD18 | p[13] | Left | "unspecified" | 0] + [VDD331 | p[14] | Left | "unspecified" | 0] + [xD_nCE | p[15] | Left | "unspecified" | 0] + [xD_nRE | p[16] | Left | "unspecified" | 0] + [xD_nB_R | p[17] | Left | "unspecified" | 0] + [RESET_N | p[18] | Left | "unspecified" | 0] + [xD_nCD | p[19] | Right | "unspecified" | 0] + [xD_D7_SD_D4_MS_D2 | p[20] | Right | "unspecified" | 0] + [CRD_PWR | p[21] | Right | "unspecified" | 0] + [VDD332 | p[22] | Right | "unspecified" | 0] + [xD_D6_SD_D3_MS_D3 | p[23] | Right | "unspecified" | 0] + [MS_INS | p[24] | Right | "unspecified" | 0] + [xD_D5_SD_D2 | p[25] | Right | "unspecified" | 0] + [SD_nCD | p[26] | Right | "unspecified" | 0] + [RXD_SDA | p[27] | Right | "unspecified" | 0] + [TEST | p[28] | Right | "unspecified" | 0] + [NC | p[29] | Right | "unspecified" | 0] + [xD_D4_SD_WP_MS_SCLK | p[30] | Right | "unspecified" | 0] + [TXD_SCK_MS_SKT_SEL | p[31] | Right | "unspecified" | 0] + [XTAL2 | p[32] | Right | "unspecified" | 0] + [XTAL1_CLKIN | p[33] | Right | "unspecified" | 0] + [VDD18PLL | p[34] | Right | "unspecified" | 0] + [RBIAS | p[35] | Right | "unspecified" | 0] + [VDDA33 | p[36] | Right | "unspecified" | 0] + [GND | p[37] | Right | "unspecified" | 0] + + assign-landpattern(lp) + assign-symbol(sym-USB2240-AEZG-06) + + property(self.manufacturer) = "Microchip" + property(self.manufacturer_aliases) = ["Microchip" "Microchip Tech"] + property(self.mpn) = "USB2240-AEZG-06" + property(self.mpn_aliases) = ["USB2240-AEZG-06"] + property(self.cofactr_id) = "ICBT2FAK42HB" + property(self.reference_prefix) = "U" + property(self.trust) = "low" + property(self.x) = 6.0 + property(self.y) = 6.0 + property(self.area) = 36.0 + property(self.case) = "QFN-36-EP(6x6)" + property(self.\|vendor_part_numbers.lcsc|) = "C633328" + property(self.minimum_quantity) = 1 + property(self.price) = 1.474647887 + property(self.stock) = 4816 + diff --git a/sd_card_reader/components/bd433.stanza b/sd_card_reader/components/bd433.stanza new file mode 100644 index 0000000..5df9a1c --- /dev/null +++ b/sd_card_reader/components/bd433.stanza @@ -0,0 +1,35 @@ +#use-added-syntax(jitx) + +defpackage components/bd433: + import core + import collections + import jitx + import jitx/commands + import ocdb/utils/defaults + import ocdb/utils/landpatterns + import ocdb/utils/box-symbol + import ocdb/utils/bundles + import ocdb/utils/property-structs + import ocdb/utils/generic-components + import ocdb/utils/generator-utils + import ocdb/utils/symbols + import bundles + import helpers + +public pcb-module voltage-regulator : + port power-in : power + port power-out : power + + inst reg : database-part(["mpn" => "BD433M5FP-CE2", "manufacturer" => "ROHM Semicon"]) + + property(reg.rated-temperature) = min-max(-40.0, 150.0) + property(reg.mounting) = "smd" + property(reg.VCC.power-pin) = PowerPin(min-max(4.0,42.0)) + property(reg.VOUT.power-supply-pin) = PowerSupplyPin(min-max(3.2, 3.37), 500.0e-3) + + net (reg.FIN power-in.gnd power-out.gnd) + net (reg.VCC power-in.vdd) + net (reg.VOUT power-out.vdd) + + bypass-cap-strap(reg.VCC, power-in.gnd, ["capacitance" => 0.1e-6, "_exist" => ["vendor_part_numbers.lcsc"]]) + bypass-cap-strap(reg.VOUT, power-out.gnd, ["capacitance" => 0.1e-6, "_exist" => ["vendor_part_numbers.lcsc"]]) \ No newline at end of file diff --git a/sd_card_reader/components/m24c04.stanza b/sd_card_reader/components/m24c04.stanza new file mode 100644 index 0000000..e793991 --- /dev/null +++ b/sd_card_reader/components/m24c04.stanza @@ -0,0 +1,49 @@ +#use-added-syntax(jitx) + +defpackage components/m24c04: + import core + import collections + import jitx + import jitx/commands + import ocdb/utils/defaults + import ocdb/utils/landpatterns + import ocdb/utils/box-symbol + import ocdb/utils/bundles + import ocdb/utils/property-structs + import ocdb/utils/generic-components + import ocdb/utils/generator-utils + import ocdb/utils/symbols + import bundles + import helpers + +public pcb-module eeprom : + port power : power + port i2c : i2c + + inst eeprom : database-part(["mpn" => "M24C04-WMN6TP", "manufacturer" => "STMicroelectronics"]) + + property(eeprom.rated-temperature) = min-max(-65.0, 130.0) + val vcc = 3.3 + + property(eeprom.SDA) = DigitalIO(OpenCollector(min-max(0.0, 0.4), 1.0e-3), min-max(-0.45,0.3 * vcc), min-max(0.7 * vcc, vcc + 1.0), eeprom.VCC, eeprom.VSS, 2.0e-6) + property(eeprom.SCL) = DigitalInput(min-max(-0.45,0.3 * vcc), min-max(0.7 * vcc, vcc + 1.0), eeprom.VCC, eeprom.VSS, 2.0e-6) + + property(eeprom.WC_NOT) = DigitalInput(min-max(-0.45,0.3 * vcc), min-max(0.7 * vcc, vcc + 1.0), eeprom.VCC, eeprom.VSS, 2.0e-6) + + no-connect(eeprom.NC) + ; We only have one EEPROM chip so we leave these floating + no-connect(eeprom.E1) + no-connect(eeprom.E2) + + net (eeprom.VCC power.vdd) + net (eeprom.VSS power.gnd) + + net (eeprom.SDA i2c.sda) + net (eeprom.SCL i2c.scl) + + ; Put pull up on SDA and SCL + res-strap(eeprom.SDA, power.vdd, ["resistance" => 5.0e3, "_exist" => ["vendor_part_numbers.lcsc"]]) + res-strap(eeprom.SCL, power.vdd, ["resistance" => 5.0e3, "_exist" => ["vendor_part_numbers.lcsc"]]) + + ; We don't want write operations to the EEPROM so we set WC_NOT high + res-strap(eeprom.WC_NOT, power.vdd, ["resistance" => 5.0e3, "_exist" => ["vendor_part_numbers.lcsc"]]) \ No newline at end of file diff --git a/sd_card_reader/components/usb2240.stanza b/sd_card_reader/components/usb2240.stanza new file mode 100644 index 0000000..0b3c91c --- /dev/null +++ b/sd_card_reader/components/usb2240.stanza @@ -0,0 +1,127 @@ +#use-added-syntax(jitx) + +defpackage components/usb2240: + import core + import collections + import jitx + import jitx/commands + import ocdb/utils/defaults + import ocdb/utils/landpatterns + import ocdb/utils/box-symbol + import ocdb/utils/bundles + import ocdb/utils/property-structs + import ocdb/utils/generic-components + import ocdb/utils/generator-utils + import ocdb/utils/symbols + import bundles + import helpers + +public pcb-module media-controller : + port power : power + port i2c : i2c + port usb-in : usb-2 + port sd-card-conn : bundles/sd-card-uhs-1-connector + pin LED + + ; Look for our media controller in the database (query) and add it to our board + inst usb2240 : database-part(["manufacturer" => "Microchip", "mpn" => "USB2240-AEZG-06"]) + + ; Use some commonly used things as variables + val vdd33-rating = min-max(3.0,3.6) + val io12buffer = DigitalIO(CMOSOutput(min-max(0.0,0.4), min-max(min-value(vdd33-rating) - 0.4, max-value(vdd33-rating))), min-max(0.0,0.4), min-max(min-value(vdd33-rating) - 0.4, max-value(vdd33-rating)), usb2240.VDD330, usb2240.GND, 10.0e-6) + + ; Set all properties necessary for tests + property(usb2240.rated-temperature) = min-max(0.0,70.0) + property(usb2240.mounting) = "smd" + ; CRD_PWR provides power to the SD card so we call it a supply pin + property(usb2240.CRD_PWR.supply-pin) = PowerSupplyPin(vdd33-rating, 200.0e-3) + + property(usb2240.LED.digital-output) = DigitalOutput(CMOSOutput(min-max(0.0,0.4), min-max(min-value(vdd33-rating) - 0.4, max-value(vdd33-rating))), false, usb2240.VDD330, usb2240.GND) + + no-connect(usb2240.MS_INS) + no-connect(usb2240.NC) + + property(usb2240.RXD_SDA.digital-io) = DigitalIO(OpenCollector(min-max(0.0,0.4), 12.0e-3), min-max(0.0,0.8), min-max(2.0, max-value(vdd33-rating) - 0.1), usb2240.VDD330, usb2240.GND, 10.0e-6) + property(usb2240.TXD_SCK_MS_SKT_SEL.digital-output) = DigitalOutput(OpenCollector(min-max(0.0,0.4), 12.0e-3), false, usb2240.VDD330, usb2240.GND) + property(usb2240.USB+.digital-io) = DigitalIO(CMOSOutput(min-max(0.0,0.3), min-max(2.8,5.5)), min-max(0.0,0.8), min-max(2.0,5.5), usb-in.vbus.vdd, usb-in.vbus.gnd, 10.0e-6) + property(usb2240.USB-.digital-io) = DigitalIO(CMOSOutput(min-max(0.0,0.3), min-max(2.8,5.5)), min-max(0.0,0.8), min-max(2.0,5.5), usb-in.vbus.gnd, usb-in.vbus.vdd, 10.0e-6) + + property(usb2240.VDD330.power-pin) = PowerPin(vdd33-rating) + property(usb2240.VDD331.power-pin) = PowerPin(vdd33-rating) + property(usb2240.VDD332.power-pin) = PowerPin(vdd33-rating) + property(usb2240.VDDA33.power-pin) = PowerPin(vdd33-rating) + + property(usb2240.XTAL1_CLKIN.digital-input) = DigitalInput(min-max(0.0,0.5), min-max(1.4, max-value(vdd33-rating)), usb2240.VDD330, usb2240.GND, 10.0e-6) + ; XTAL2 (ignore) connected to 24MHz crystal + property(usb2240.xD_CLE_SD_CMD_MS_D0.digital-io) = io12buffer + property(usb2240.xD_D2_SD_D0_MS_D4.digital-io) = io12buffer + property(usb2240.xD_D3_SD_D1_MS_D5.digital-io) = io12buffer + property(usb2240.xD_D5_SD_D2.digital-io) = io12buffer + property(usb2240.xD_D6_SD_D3_MS_D3.digital-io) = io12buffer + + no-connect(usb2240.xD_D7_SD_D4_MS_D2) + no-connect(usb2240.xD_ALE_SD_D5_MS_D1) + no-connect(usb2240.xD_D0_SD_D6_MS_D7) + no-connect(usb2240.xD_D1_SD_D7_MS_D6) + + ; Ignore all xD related things as we're making an SD card reader + no-connect(usb2240.xD_nB_R) + no-connect(usb2240.xD_nCD) + no-connect(usb2240.xD_nRE) + no-connect(usb2240.xD_nWE) + property(usb2240.xD_nWP_SD_CLK_MS_BS.digital-output) = DigitalOutput(CMOSOutput(min-max(0.0,0.4), min-max(min-value(vdd33-rating) - 0.4, max-value(vdd33-rating))), false, usb2240.VDD330, usb2240.GND) + + ; Connect ports that would be used in every SD card related design + net (usb2240.GND power.gnd sd-card-conn.power.gnd usb2240.TEST usb-in.vbus.gnd) + net (usb2240.VDD330 usb2240.VDD331 usb2240.VDD332 usb2240.VDDA33 power.vdd) + + res-strap(usb2240.RBIAS, power.gnd, ["resistance" => 12.0e3, "tolerance" => 0.01, "_exist" => ["vendor_part_numbers.lcsc"]]) + + res-strap(usb2240.RESET_N, power.vdd, ["resistance" => 10.0e3, "_exist" => ["vendor_part_numbers.lcsc"]]) + bypass-cap-strap(usb2240.RESET_N, power.gnd, ["capacitance" => 1.0e-6, "_exist" => ["vendor_part_numbers.lcsc"]]) + + bypass-cap-strap(usb2240.VDD18, power.gnd, ["capacitance" => 1.0e-6, "tolerance" => 0.2, "_exist" => ["vendor_part_numbers.lcsc"]]) + bypass-cap-strap(usb2240.VDD18PLL, power.gnd, ["capacitance" => 1.0e-6, "tolerance" => 0.2, "_exist" => ["vendor_part_numbers.lcsc"]]) + + bypass-cap-strap(usb2240.VDD330, power.gnd, ["capacitance" => 1.0e-6, "mounting" => "smd", "max-case" => "0603", "_exist" => ["vendor_part_numbers.lcsc"]]) + bypass-cap-strap(usb2240.VDD331, power.gnd, ["capacitance" => 1.0e-6, "mounting" => "smd", "max-case" => "0603", "_exist" => ["vendor_part_numbers.lcsc"]]) + bypass-cap-strap(usb2240.VDD332, power.gnd, ["capacitance" => 1.0e-6, "mounting" => "smd", "max-case" => "0603", "_exist" => ["vendor_part_numbers.lcsc"]]) + bypass-cap-strap(usb2240.VDDA33, power.gnd, ["capacitance" => 1.0e-6, "mounting" => "smd", "max-case" => "0603", "_exist" => ["vendor_part_numbers.lcsc"]]) + + bypass-cap-strap(usb2240.CRD_PWR, power.gnd, ["capacitance" => 4.7e-6, "_exist" => ["vendor_part_numbers.lcsc"]]) + + net (usb2240.RXD_SDA i2c.sda) + net (usb2240.TXD_SCK_MS_SKT_SEL i2c.scl) + + net (usb2240.LED LED) + + net (usb2240.USB+ usb-in.data.P) + net (usb2240.USB- usb-in.data.N) + + net (usb2240.SD_nCD sd-card-conn.CD) + net (usb2240.xD_D4_SD_WP_MS_SCLK sd-card-conn.WP) + net (usb2240.xD_CLE_SD_CMD_MS_D0 sd-card-conn.CMD) + net (usb2240.xD_nWP_SD_CLK_MS_BS sd-card-conn.CLK) + net (usb2240.CRD_PWR sd-card-conn.power.vdd) + net (usb2240.xD_D2_SD_D0_MS_D4 sd-card-conn.DAT[0]) + net (usb2240.xD_D3_SD_D1_MS_D5 sd-card-conn.DAT[1]) + net (usb2240.xD_D5_SD_D2 sd-card-conn.DAT[2]) + net (usb2240.xD_D6_SD_D3_MS_D3 sd-card-conn.DAT[3]) + + inst xtal : database-part(["mpn" => "7B024000Q01", "manufacturer" => "HD"]) + property(xtal.rated-temperature) = min-max(-20.0, 70.0) + + property(xtal.crystal-resonator) = ocdb/utils/property-structs/CrystalResonator(18.0e-12, 2.0e-12, 4.41e-15, 25.0, 24.0e6, 240.0, 100.0e-6) ; C_l, C_0, C_m, ESR, F, delta F (F * dF/F), D_L + + ; Automatically add capacitors to the crystal + ; Same function as add-xtal-caps(xtal, power.gnd) but change pad names + val stray-capacitance = 5.0e-12 + val c-load = load-capacitance(property(xtal.crystal-resonator)) + val c-bal = closest-std-val(2.0 * (c-load - stray-capacitance), 5.0) + cap-strap(xtal.IN, power.gnd, ["capacitance" => c-bal "temperature-coefficient.code" => "C0G", "_exist" => ["vendor_part_numbers.lcsc"]]) + cap-strap(xtal.OUT, power.gnd, ["capacitance" => c-bal "temperature-coefficient.code" => "C0G", "_exist" => ["vendor_part_numbers.lcsc"]]) + + net (xtal.IN usb2240.XTAL1_CLKIN) + net (xtal.OUT usb2240.XTAL2) + net (xtal.GND0 xtal.GND1 power.gnd) + res-strap(usb2240.XTAL1_CLKIN, usb2240.XTAL2, ["resistance" => 1.0e6, "_exist" => ["vendor_part_numbers.lcsc"]]) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/cache/interactive-cache.dat b/sd_card_reader/designs/jitx-design/cache/interactive-cache.dat new file mode 100644 index 0000000..59b9304 Binary files /dev/null and b/sd_card_reader/designs/jitx-design/cache/interactive-cache.dat differ diff --git a/sd_card_reader/designs/jitx-design/cache/physical-layout.cache b/sd_card_reader/designs/jitx-design/cache/physical-layout.cache new file mode 100644 index 0000000..5e533f7 Binary files /dev/null and b/sd_card_reader/designs/jitx-design/cache/physical-layout.cache differ diff --git a/sd_card_reader/designs/jitx-design/design-info/physical-layout.design b/sd_card_reader/designs/jitx-design/design-info/physical-layout.design new file mode 100644 index 0000000..79c4798 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/design-info/physical-layout.design @@ -0,0 +1,635 @@ +{ + "operations": [ + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":27.482200040817226,"y":-13.009021},"angle":0,"flipx":false},"side":"top"},{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":27.482200040817226,"y":-9.3026210823974615},"angle":180,"flipx":false},"side":"top"},{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":27.482200040817226,"y":-7.4244205513916022},"angle":180,"flipx":false},"side":"top"},{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":27.482200040817226,"y":-11.180820898147584},"angle":180,"flipx":false},"side":"top"},{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":23.452499999999965,"y":-8.5770213166198737},"angle":270,"flipx":false},"side":"top"},{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":41.988379264358571,"y":-10.049420730205537},"angle":90,"flipx":false},"side":"top"},{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":42.025879168991139,"y":-11.152620927425385},"angle":90,"flipx":false},"side":"top"},{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":36.02557900000005,"y":-9.2744211116752631},"angle":90,"flipx":false},"side":"top"},{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":41.993379378799489,"y":-12.255820886226655},"angle":90,"flipx":false},"side":"top"},{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":36.778779054168751,"y":-11.868320838542939},"angle":180,"flipx":false},"side":"top"},{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":37.1287791972199,"y":-13.359021023841859},"angle":90,"flipx":false},"side":"top"},{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":34.572378957752278,"y":-12.969021038146973},"angle":0,"flipx":false},"side":"top"},{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":40.1501791720429,"y":-12.255820886226655},"angle":270,"flipx":false},"side":"top"},{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":37.868779206756642,"y":-9.2744211116752631},"angle":90,"flipx":false},"side":"top"},{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":36.065578961853078,"y":-10.377621070476533},"angle":90,"flipx":false},"side":"top"},{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":41.240179324630788,"y":-8.5462206760368353},"angle":0,"flipx":false},"side":"top"},{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":43.735779071334889,"y":-3.8584207454643256},"angle":180,"flipx":false},"side":"top"},{"id":"8VvLEdgpKAQe7YfsFDSzgh","pose":{"center":{"x":40.11017921018987,"y":-11.152620927425385},"angle":270,"flipx":false},"side":"top"},{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":44.85957934904485,"y":-9.4596208492240912},"angle":90,"flipx":false},"side":"top"},{"id":"DmR6sNit5G9pTyKT3TBeQc","pose":{"center":{"x":35.675579095367482,"y":-13.009021},"angle":0,"flipx":false},"side":"top"},{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":40.147679591659596,"y":-10.049420730205537},"angle":270,"flipx":false},"side":"top"},{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":37.75157907057195,"y":-4.4980205455741888},"angle":0,"flipx":false},"side":"top"},{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":39.749479556564381,"y":-8.946220771404267},"angle":270,"flipx":false},"side":"top"},{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":38.269479060653737,"y":-12.255820886226655},"angle":90,"flipx":false},"side":"top"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":54.559758071334883,"y":-13.009021},"angle":270,"flipx":false},"side":"top"},{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":54.559758071334883,"y":-10.265821413131714},"angle":0,"flipx":false},"side":"top"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":57.302957658203169,"y":-10.265821413131714},"angle":0,"flipx":false},"side":"top"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":57.302957658203169,"y":-13.009021},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":2.5198374033280082,"y":-6.0953138953649519},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":2.5198374033280073,"y":-6.0953138953649528},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":2.5198374033280073,"y":-6.0953138953649528},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":4.0843920819452411,"y":-8.0914698646352168},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":6.3337367988187552,"y":-1.2100968826531506},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":1.7479730856303135,"y":-1.1460908904646363},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-6.2220703217533284,"y":2.4537481303362378},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.30491757911564,"y":2.0760970010148365},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.0081916917916827,"y":2.2109724043439085},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.0081916917916836,"y":2.2109724043439094},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.0081916917916836,"y":2.2109724043439094},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.0621418531233129,"y":3.1011500663157836},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":3.5471767863193335,"y":5.6446097847720136},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":4.0431076103274712,"y":5.5301642100009047},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":-6.06870142409857,"y":-4.7673522836086306},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.0621418531233129,"y":3.1011500663157836},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.0621418531233129,"y":3.1011500663157836},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-4.2259143524830671,"y":4.50385426093813},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.820161836536245,"y":4.0735098540469288},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-2.9041353998581632,"y":4.3959539382748734},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.469485787880657,"y":4.1544350960443719},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":-5.3133991654557677,"y":-3.6883490569760555},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":5.271863869910689,"y":9.2662233478041891},"angle":0,"flipx":false},"side":"top"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":5.271863869910689,"y":6.523023760935903},"angle":270,"flipx":false},"side":"top"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":8.0150634567789751,"y":9.2662233478041891},"angle":0,"flipx":false},"side":"top"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":8.0150634567789751,"y":6.523023760935903},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":8.0150634567789751,"y":9.2662233478041891},"angle":0,"flipx":true},"side":"bottom"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":8.0150634567789751,"y":6.523023760935903},"angle":90,"flipx":true},"side":"bottom"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":5.271863869910689,"y":9.2662233478041891},"angle":0,"flipx":true},"side":"bottom"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":5.271863869910689,"y":6.523023760935903},"angle":0,"flipx":true},"side":"bottom"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":5.8113654832269752,"y":12.017681575717255},"angle":0,"flipx":true},"side":"bottom"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":8.3927145861003751,"y":11.478179962400967},"angle":0,"flipx":true},"side":"bottom"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":5.271863869910689,"y":11.478179962400967},"angle":0,"flipx":false},"side":"top"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":5.649514999232089,"y":6.523023760935903},"angle":270,"flipx":false},"side":"top"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":7.8532129727840889,"y":12.017681575717255},"angle":0,"flipx":false},"side":"top"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":8.3927145861003751,"y":6.523023760935903},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":8.3927145861003751,"y":11.478179962400967},"angle":0,"flipx":true},"side":"bottom"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":8.0150634567789751,"y":6.523023760935903},"angle":90,"flipx":true},"side":"bottom"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":5.8113654832269752,"y":12.017681575717255},"angle":0,"flipx":true},"side":"bottom"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":5.271863869910689,"y":6.523023760935903},"angle":0,"flipx":true},"side":"bottom"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":5.271863869910689,"y":11.478179962400967},"angle":0,"flipx":false},"side":"top"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":5.649514999232089,"y":6.523023760935903},"angle":270,"flipx":false},"side":"top"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":7.8532129727840889,"y":12.017681575717255},"angle":0,"flipx":false},"side":"top"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":8.3927145861003751,"y":6.523023760935903},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":8.3927145861003751,"y":11.478179962400967},"angle":0,"flipx":true},"side":"bottom"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":8.0150634567789751,"y":6.523023760935903},"angle":90,"flipx":true},"side":"bottom"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":5.8113654832269752,"y":12.017681575717255},"angle":0,"flipx":true},"side":"bottom"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":5.271863869910689,"y":6.523023760935903},"angle":0,"flipx":true},"side":"bottom"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":5.271863869910689,"y":11.478179962400967},"angle":0,"flipx":false},"side":"top"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":5.649514999232089,"y":6.523023760935903},"angle":270,"flipx":false},"side":"top"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":7.8532129727840889,"y":12.017681575717255},"angle":0,"flipx":false},"side":"top"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":8.3927145861003751,"y":6.523023760935903},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":16.431288624513058,"y":8.1954787622163927},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":10.173069910044125,"y":8.5731298915377927},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":9.0940666834115511,"y":7.9257279555582478},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":8.6085152314268925,"y":7.1164755355838167},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-8.2156764629964965,"y":19.085152710160621},"angle":0,"flipx":false},"side":"top"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-7.8380253336750965,"y":14.129996508695555},"angle":270,"flipx":false},"side":"top"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-5.6343273601230965,"y":19.624654323476907},"angle":0,"flipx":false},"side":"top"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":-4.879025101480293,"y":14.723448283343469},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.046137917542138,"y":12.295691023420179},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.046137917542138,"y":12.295691023420179},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.154038240205397,"y":12.025940216762036},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-9.1867793669658138,"y":12.017681575717255},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-6.2277791347710121,"y":11.963731414385627},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":-3.2065701001998024,"y":11.918039894098776},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-11.791627253430217,"y":12.226219972611476},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-8.7862198552669319,"y":12.208424200335768},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":-2.7106392761916638,"y":12.251839487181178},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-5.7413854419938,"y":12.2498453513134},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":-2.7274987016077974,"y":12.265327027514084},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-5.72469546233968,"y":12.271303896582983},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-8.7322696939353026,"y":12.267432189292236},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-11.727462177819607,"y":12.279351977429624},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.314965873835078,"y":4.9413196568703484},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-11.008987401196944,"y":1.4569270294629346},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":-3.6139690835094624,"y":-4.8482775256060737},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.658311352541357,"y":-0.51225385914151444},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.280660223219956,"y":-1.1326807144552449},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.314965873835078,"y":4.9413196568703484},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.314965873835078,"y":4.9413196568703484},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.314965873835078,"y":4.9413196568703484},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.314965873835078,"y":4.9413196568703484},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.7155253855339589,"y":5.4372504808784861},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-5.1100795906849115,"y":8.7494321453699584},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-5.3528553166772408,"y":8.9450014801971136},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.9954354978552,"y":8.9180263995312981},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.9954354978552,"y":8.9180263995312981},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.9954354978552,"y":8.9180263995312981},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.9347415663571184,"y":9.0259267221945549},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-1.5388761062990639,"y":9.1596148139328371},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":41.648228039669739,"y":-11.152620927425385},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.4830039296025674,"y":9.6181911852516784},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.3971697485242358,"y":9.3988371669403854},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.8942789453583968,"y":8.8505886978667618},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.4174010590235966,"y":8.8593355536240974},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.4106572888571431,"y":8.8323604729582836},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-7.2990743029076413,"y":2.837735551600419},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-7.2990743029076413,"y":2.837735551600419},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-7.2990743029076413,"y":2.837735551600419},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-7.3799995449050844,"y":3.019817346094666},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-7.3799995449050844,"y":3.019817346094666},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-9.605443699834769,"y":4.7866851297055071},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-3.6783363051912445,"y":10.275270430579244},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":42.763353129316549,"y":-13.190459746857377},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.266963791135895,"y":5.8053326176341749},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.23903018049117,"y":8.7336966220705534},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.090667236829191,"y":9.2866857757197465},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.225542640158261,"y":8.9292659568977086},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.300682641968162,"y":6.2639089889530188},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.33998821492937,"y":9.28213981244196},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.272071248275386,"y":6.2686775545684821},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.269178628181608,"y":9.2652803870258253},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-12.271258269322139,"y":12.272460944620493},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":-8.7429416900844,"y":12.238351946848271},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-8.7354430609599252,"y":9.2517928466929185},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.25858370794248,"y":9.2898865891396909},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-3.6252531779062238,"y":10.766813905228068},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-3.6252531779062238,"y":10.766813905228068},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-3.6252531779062238,"y":10.766813905228068},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-3.6252531779062238,"y":10.766813905228068},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-2.4922997899420207,"y":10.861226687558418},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":2.0232613666741059,"y":4.2684408557735658},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":34.366693967675445,"y":-12.915070876815346},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":1.8077716040375051,"y":4.3220056686400348},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":1.8077716040375051,"y":4.3220056686400348},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":1.9699028349632426,"y":4.8751592800337269},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-1.5552165792687163,"y":-0.68781115677490412},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-1.5552165792687163,"y":-0.68781115677490412},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-1.5552165792687163,"y":-0.68781115677490412},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-1.5552165792687163,"y":-0.68781115677490412},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-1.8842476067356542,"y":-0.029749101841028414},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.35912737782558679,"y":-2.1016711977939107},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.0626984162508628,"y":-1.1365537592337107},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":-6.3797371404779248,"y":-8.4723873933578524},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.570921055362307,"y":-2.3186605972632042},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.570921055362307,"y":-2.3186605972632042},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.570921055362307,"y":-2.3186605972632042},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.5518467929004554,"y":-2.46171756572709},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.5518467929004554,"y":-2.46171756572709},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.5518467929004554,"y":-2.46171756572709},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.4564754805911981,"y":-2.1279179726446893},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":10.277215300227201,"y":6.8854347477110807},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":9.7431359512953613,"y":-6.9666382523071668},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":11.192779898396072,"y":-7.229519474059007},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":11.192779898396072,"y":-7.229519474059007},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":11.192779898396072,"y":-7.229519474059007},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":11.345373998090883,"y":-7.0387768494404925},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":11.192779898396072,"y":-7.229519474059007},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":11.80315629717532,"y":-6.962479799593086},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"DmR6sNit5G9pTyKT3TBeQc","pose":{"center":{"x":-4.8005294436869832,"y":11.295526679898746},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"DmR6sNit5G9pTyKT3TBeQc","pose":{"center":{"x":-4.8005294436869832,"y":11.295526679898746},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"DmR6sNit5G9pTyKT3TBeQc","pose":{"center":{"x":-4.5442661773617461,"y":10.877412929578623},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.8403287840267675,"y":8.81012607686804},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.9212540260242106,"y":8.8505886978667618},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-12.521170864286468,"y":4.6533905726970808},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":37.546892947540023,"y":-13.251120701178602},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-10.97803075541011,"y":6.3572211096047067},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-9.52108553751512,"y":-7.3155869086071252},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-9.52108553751512,"y":-7.3155869086071252},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-9.52108553751512,"y":-7.3155869086071252},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-9.9693307053686286,"y":-7.3060497773761988},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-9.85488513059752,"y":-7.2679012524524955},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-5.1862896183465,"y":-11.769938471687798},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-5.1862896183465,"y":-11.769938471687798},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-5.5167343565027265,"y":-11.837376173352334},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-21.7694362594099,"y":-7.8629256894982538},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-4.4514344719570786,"y":-1.8205076203558361},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-3.5005628784871221,"y":-0.84266094622006538},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-3.1229117491657208,"y":-0.4650098168986645},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-3.1229117491657208,"y":-0.4650098168986645},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-3.2982497734935139,"y":-0.31664687323668561},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-3.2982497734935139,"y":-0.31664687323668567},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-3.8512389271427083,"y":-0.47849735723157183},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-4.3367903791273665,"y":-0.77522324455553},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-4.3367903791273665,"y":-0.77522324455553},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-4.41771562112481,"y":-1.0179989705478594},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":24.254315289277621,"y":-17.253277651231738},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.833622309745614,"y":4.1436643280743546},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.833622309745614,"y":4.1436643280743546},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.833622309745614,"y":4.1436643280743546},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.833622309745614,"y":4.1436643280743546},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.658284285417821,"y":4.1571518684072615},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.658284285417821,"y":4.1571518684072615},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.118782672101533,"y":4.2785397314034261},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.9852761921921021,"y":6.5836914091755974},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-7.9599637792200912,"y":4.5843720247118993},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.746897588874738,"y":4.1436643280743546},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.746897588874738,"y":4.1436643280743546},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.746897588874738,"y":4.1436643280743546},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.69294742754311,"y":4.6292157800590132},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8VvLEdgpKAQe7YfsFDSzgh","pose":{"center":{"x":18.785153777839927,"y":-8.7492638572321},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8VvLEdgpKAQe7YfsFDSzgh","pose":{"center":{"x":-1.8531982058833627,"y":-4.8962628399381023},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8VvLEdgpKAQe7YfsFDSzgh","pose":{"center":{"x":-1.8666857462162696,"y":-5.3683267515898532},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-6.5397908534414739,"y":-0.28444152918073584},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"via-create","via":{"id":"FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","origin":"FT4pxFBh14a61jaK6UdDfM/5W8eqEnKRPd2ce9WiDgNPA","route-layer":1,"instance":"FT4pxFBh14a61jaK6UdDfM","relative":{"x":4.6984842540798315,"y":7.7350328286471672}},"route":[{"id":"CMR9qF55Sh9ypHi9RhtqGt","layer":1,"start":"FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","end":"FT4pxFBh14a61jaK6UdDfM/5W8eqEnKRPd2ce9WiDgNPA","sketch":{"start":{"reference-side":null,"position":{"x":8.3649671713528342,"y":-4.6984842540798315}},"turns":[],"end":{"reference-side":null,"position":{"x":10.387500000000024,"y":-4.7000000000000455}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","origin":"FT4pxFBh14a61jaK6UdDfM/8aujbv7W9yEY8mhAzSwzfd","route-layer":1,"instance":"FT4pxFBh14a61jaK6UdDfM","relative":{"x":-4.6860528771510914,"y":7.5252159415668007}},"route":[{"id":"ApWyzxJ74TNyr7PkQLPD3N","layer":1,"start":"FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","end":"FT4pxFBh14a61jaK6UdDfM/8aujbv7W9yEY8mhAzSwzfd","sketch":{"start":{"reference-side":null,"position":{"x":8.5747840584332,"y":4.6860528771510914}},"turns":[],"end":{"reference-side":null,"position":{"x":10.387500000000024,"y":4.6999999999999318}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FT4pxFBh14a61jaK6UdDfM/DgTi4zxpxEfJwhfyB8m14C","origin":"FT4pxFBh14a61jaK6UdDfM/5Vpd4bfrjQyZcR5rf4Tdvo","route-layer":1,"instance":"FT4pxFBh14a61jaK6UdDfM","relative":{"x":3.5349542439068919,"y":7.8304041409564249}},"route":[]}, + {"operation":"via-delete","delete":{"vias":["FT4pxFBh14a61jaK6UdDfM/DgTi4zxpxEfJwhfyB8m14C"]}}, + {"operation":"via-create","via":{"id":"5nc5vqcQUq4T65QATrHbs6/EKCKX6ZsFK7jMsGk4zZEUH","origin":"5nc5vqcQUq4T65QATrHbs6/Dj9cVTiijiXzvrku3kKmYm","route-layer":1,"instance":"5nc5vqcQUq4T65QATrHbs6","relative":{"x":-12.558850522053941,"y":-7.6663417842742341}},"route":[]}, + {"operation":"via-delete","delete":{"vias":["5nc5vqcQUq4T65QATrHbs6/EKCKX6ZsFK7jMsGk4zZEUH"]}}, + {"operation":"via-create","via":{"id":"5nc5vqcQUq4T65QATrHbs6/CansK13YHtfWE2sXREFX6K","origin":"5nc5vqcQUq4T65QATrHbs6/DoJCM1LP1MyRToJ88pWeto","route-layer":1,"instance":"5nc5vqcQUq4T65QATrHbs6","relative":{"x":-5.666468304729622,"y":10.290327144579633}},"route":[]}, + {"operation":"via-delete","delete":{"vias":["5nc5vqcQUq4T65QATrHbs6/CansK13YHtfWE2sXREFX6K"]}}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/8nu2m7YQsFWeXc2VkmcRHB"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT"]},"routes":[]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/8nu2m7YQsFWeXc2VkmcRHB"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"via-create","via":{"id":"3HfeEALJYFNctitkdZqmhv/FeBvfwf81Ry5oYRjJuupbE","origin":"3HfeEALJYFNctitkdZqmhv/7eLMrp81n94xgV3ZcqewUk","route-layer":0,"instance":"3HfeEALJYFNctitkdZqmhv","relative":{"x":-5.7314510048676066,"y":-0.040738102354414843}},"route":[]}, + {"operation":"via-delete","delete":{"vias":["3HfeEALJYFNctitkdZqmhv/FeBvfwf81Ry5oYRjJuupbE"]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":1.6742517668045449,"y":4.8656221488028013},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.35912737782558685,"y":-2.1016711977939107},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.7024641021389133,"y":0.0060348042406768165},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.4564754805911981,"y":-2.1279179726446893},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.0177674439686144,"y":-0.020211970610101826},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8VvLEdgpKAQe7YfsFDSzgh","pose":{"center":{"x":-1.8666857462162696,"y":-5.3683267515898532},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8VvLEdgpKAQe7YfsFDSzgh","pose":{"center":{"x":-1.3707549222081314,"y":-2.0303308207658457},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.0626984162508628,"y":-1.1365537592337107},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.0626984162508628,"y":-1.1365537592337107},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.0626984162508628,"y":-1.1365537592337107},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.3297380907167833,"y":-1.4798904835470372},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":-3.938231545360936,"y":-4.7529062132968161},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-6.115324980229591,"y":-8.2852929685132679},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":-4.2624940072124113,"y":-3.3604850535816588},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-4.474938408510365,"y":-6.7021291841795954},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-2.8272633493816697,"y":-6.7636223584998429},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-6.497814937311662,"y":-6.5812278038258434},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.280660223219956,"y":-1.1326807144552449},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-5.3381123183448311,"y":-0.18907021687147846},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.280660223219956,"y":-1.1326807144552449},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.280660223219956,"y":-1.1326807144552449},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.528625635224024,"y":-0.732121202756364},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.393750231894952,"y":-0.15215696844135518},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.555600715889838,"y":-0.044256645778097625},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-10.991518295743017,"y":3.65971304302327},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-2.7700405619961153,"y":-7.1069590828131695},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-7.379058401762939,"y":3.091702926566974},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-8.03922635352373,"y":6.246502900852918},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-11.773563056678928,"y":3.7169358304088242},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.555600715889838,"y":-0.044256645778097514},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.918011702665016,"y":-2.7146533904373036},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-11.051531539897976,"y":-7.6548873680568335},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-11.127828589745382,"y":-10.439729687487148},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-11.341961766025898,"y":-1.5971550607566072},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-11.341961766025898,"y":-1.5971550607566072},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-8.58696912024472,"y":-0.900675756432932},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-7.473471184093289,"y":-2.640501714918579},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-7.473471184093289,"y":-2.640501714918579},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-8.63700119426623,"y":-4.6242250109511325},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-8.3390037082406518,"y":-0.46196771981034823},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-9.7242341545917625,"y":-3.8231059875533711},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-8.923115131194,"y":-3.3843979509307873},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"via-create","via":{"id":"FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","origin":"FT4pxFBh14a61jaK6UdDfM/AXfPWhuyd9CPd1kPNwJaPY","route-layer":1,"instance":"FT4pxFBh14a61jaK6UdDfM","relative":{"x":1.2441827696575491,"y":7.1009408518402282}},"route":[{"id":"GeYNBZMXUUnYAC2jnnBn4z","layer":1,"start":"FT4pxFBh14a61jaK6UdDfM/AXfPWhuyd9CPd1kPNwJaPY","end":"FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","sketch":{"start":{"reference-side":null,"position":{"x":9.9374999999999787,"y":-1.25}},"turns":[],"end":{"reference-side":null,"position":{"x":8.9990591481597733,"y":-1.2441827696575491}}},"join":true}]}, + {"operation":"route","request":{"layer":1,"pads":["FT4pxFBh14a61jaK6UdDfM/AXfPWhuyd9CPd1kPNwJaPY","FT4pxFBh14a61jaK6UdDfM/D79WrXHW5QmSVpMbk7HRQe"]},"routes":[{"id":"DLp9Q6mJCU7M9HHk3epNrp","layer":1,"start":"FT4pxFBh14a61jaK6UdDfM/AXfPWhuyd9CPd1kPNwJaPY","end":"FT4pxFBh14a61jaK6UdDfM/D79WrXHW5QmSVpMbk7HRQe","sketch":{"start":{"reference-side":null,"position":{"x":9.9374999999999787,"y":-1.25}},"turns":[{"position":{"x":9.9374999999999787,"y":-0.75},"turn":"ccw"},{"position":{"x":9.9374999999999787,"y":-0.25},"turn":"ccw"},{"position":{"x":9.9374999999999787,"y":0.25},"turn":"ccw"}],"end":{"reference-side":null,"position":{"x":9.9374999999999787,"y":0.75}}}}]}, + {"operation":"via-create","via":{"id":"FT4pxFBh14a61jaK6UdDfM/EWPFMLZ3Dea5nQzF4xP2Gh","origin":"FT4pxFBh14a61jaK6UdDfM/7WVZ2C81Z19cpkvz1qT9dW","route-layer":1,"instance":"FT4pxFBh14a61jaK6UdDfM","relative":{"x":-1.7886249617768346,"y":7.1104779830711529}},"route":[{"id":"5eooEMYufSHbbmAJ5qMUPs","layer":1,"start":"FT4pxFBh14a61jaK6UdDfM/7WVZ2C81Z19cpkvz1qT9dW","end":"FT4pxFBh14a61jaK6UdDfM/EWPFMLZ3Dea5nQzF4xP2Gh","sketch":{"start":{"reference-side":null,"position":{"x":9.9374999999999787,"y":1.75}},"turns":[],"end":{"reference-side":null,"position":{"x":8.9895220169288486,"y":1.7886249617768346}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FT4pxFBh14a61jaK6UdDfM/7g64Kq3nes1cJrAZGSVYKz","origin":"FT4pxFBh14a61jaK6UdDfM/6iRgMynebkDG3ZSrGwSSgh","route-layer":1,"instance":"FT4pxFBh14a61jaK6UdDfM","relative":{"x":-2.3417785731705272,"y":7.1200151143020793}},"route":[{"id":"8jqaBEozpJky8UFdSBbdpx","layer":1,"start":"FT4pxFBh14a61jaK6UdDfM/7g64Kq3nes1cJrAZGSVYKz","end":"FT4pxFBh14a61jaK6UdDfM/6iRgMynebkDG3ZSrGwSSgh","sketch":{"start":{"reference-side":null,"position":{"x":8.9799848856979221,"y":2.3417785731705272}},"turns":[],"end":{"reference-side":null,"position":{"x":9.9374999999999787,"y":2.25}}},"join":true}]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","FshjgLMYkKo69oJh6uLstr/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"2eEJ5e46UurWxoUo5ueRfb","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","end":"FshjgLMYkKo69oJh6uLstr/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":null,"position":{"x":8.3649671713528342,"y":-4.6984842540798315}},"turns":[],"end":{"reference-side":"top","position":{"x":9.7431359512953613,"y":-6.4880270341937667}}}}]}, + {"operation":"place","place":{"placements":[{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":8.5832074826653439,"y":-6.4810868003225082},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":8.4582462946143391,"y":6.6869110173089839},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":8.4582462946143391,"y":6.6869110173089839},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":8.4582462946143391,"y":6.6869110173089839},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":8.6066092382763184,"y":6.4576228316495614},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["AnFmVeWs5C1x5ZuHHpf6vV/BvbaBVkGdAitfbnh2kkSze","FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN"]},"routes":[{"id":"FuT2TfVfAxH9ww56vPw4rP","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","end":"AnFmVeWs5C1x5ZuHHpf6vV/BvbaBVkGdAitfbnh2kkSze","sketch":{"start":{"reference-side":null,"position":{"x":8.5747840584332,"y":4.6860528771510914}},"turns":[],"end":{"reference-side":"top","position":{"x":8.6066092382763184,"y":6.0040116135361616}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/7g64Kq3nes1cJrAZGSVYKz","FEr47X6dCYqq2xKBb1kRFq/33vGxvTePDAn6c6SYp1Kbx"]},"routes":[{"id":"3dfrvvfnzJpT8c1YYo93A1","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/7g64Kq3nes1cJrAZGSVYKz","end":"FEr47X6dCYqq2xKBb1kRFq/33vGxvTePDAn6c6SYp1Kbx","sketch":{"start":{"reference-side":null,"position":{"x":8.9799848856979221,"y":2.3417785731705272}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":3.3959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/EWPFMLZ3Dea5nQzF4xP2Gh","FEr47X6dCYqq2xKBb1kRFq/6eQ3kQHJgUbiwMUFBxZiq2"]},"routes":[{"id":"2RYfCk6TQexJ9EGZ1YsLTe","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/6eQ3kQHJgUbiwMUFBxZiq2","end":"FT4pxFBh14a61jaK6UdDfM/EWPFMLZ3Dea5nQzF4xP2Gh","sketch":{"start":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":2.8959539382748734}},"turns":[],"end":{"reference-side":null,"position":{"x":8.9895220169288486,"y":1.7886249617768346}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","EVnbJQbBxw1eUEYRni6Wch/88yyoxSEmf4aUjJUGQRHbX","3HfeEALJYFNctitkdZqmhv/4M32voPjQ4ujDnVkcwNkbB"]},"routes":[{"id":"7ZeYCDR3iZcj9LtiA5APfa","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","end":"EVnbJQbBxw1eUEYRni6Wch/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":null,"position":{"x":8.9990591481597733,"y":-1.2441827696575491}},"turns":[],"end":{"reference-side":"top","position":{"x":6.3337367988187552,"y":-1.688708100766551}}}},{"id":"6f95tToQgfC6v6P5eFYEBX","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/4M32voPjQ4ujDnVkcwNkbB","end":"EVnbJQbBxw1eUEYRni6Wch/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":6.3838920819452074,"y":-3.980969864635215}},"turns":[],"end":{"reference-side":"top","position":{"x":6.3337367988187552,"y":-1.688708100766551}}}}]}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.7024641021389133,"y":0.0060348042406768165},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.7024641021389133,"y":0.0060348042406768165},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.16838475320707147,"y":-0.52804454469116435},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.855058201833724,"y":-0.070262245606729},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["77nSKnDe7MeGYsyZMCwcxr/9zoS6CDqroVgvAb897m94k","FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"FhMYWWEyYLVYiMTVjKyFj4","layer":0,"start":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","end":"77nSKnDe7MeGYsyZMCwcxr/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":1.8511268726033829,"y":-1.4798904835470372}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.40959897250667138}}}},{"id":"9bVF2p7xBtjLJ4DoYfykhE","layer":0,"start":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","end":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","sketch":{"start":{"reference-side":"top","position":{"x":1.8511268726033829,"y":-1.4798904835470372}},"turns":[],"end":{"reference-side":"top","position":{"x":1.784892081945161,"y":-3.980969864635215}}}},{"id":"32PUR4DcPcF36xMs9KFqzS","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","end":"77nSKnDe7MeGYsyZMCwcxr/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-0.90413539985816316,"y":1.5859539382749279}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.40959897250667138}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ARfh82Zei6N8jMB346B71w","6UkTHKpQvqmDsqkXeN9e3R/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"7dYdMqCmEJg3r6hzEnu4nA","layer":0,"start":"6UkTHKpQvqmDsqkXeN9e3R/88yyoxSEmf4aUjJUGQRHbX","end":"FEr47X6dCYqq2xKBb1kRFq/ARfh82Zei6N8jMB346B71w","sketch":{"start":{"reference-side":"top","position":{"x":-2.0177674439686144,"y":0.45839924750329847}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.9041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["8VvLEdgpKAQe7YfsFDSzgh/69m3hpZazob4QbVDhEkQBW","FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh"]},"routes":[{"id":"3acCFpJRFNfFzmaBvGduof","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh","end":"8VvLEdgpKAQe7YfsFDSzgh/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-1.4041353998581632,"y":1.5859539382749279}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.3707549222081314,"y":-1.5704696026524452}}}}]}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-6.4438647759800327,"y":-6.5542527231600287},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-7.239629655621556,"y":-2.1303394939664733},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-5.7832298208023616,"y":-6.0682147885329574},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"AP8Tv2QS6BLubccYtBKdsm","layer":0,"start":"qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1","end":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","sketch":{"start":{"reference-side":"top","position":{"x":-12.25858370794248,"y":9.2898865891396909}},"turns":[],"end":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}}}}]}, + {"operation":"place","place":{"placements":[{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":4.1113671626110548,"y":-9.1165229299361634},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"AXqQKmPMa9RJFGqarGtfPM","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","end":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","sketch":{"start":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}},"turns":[],"end":{"reference-side":"top","position":{"x":1.8118671626109748,"y":-5.0060229299361616}}}}]}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-1.4482616093712108,"y":-4.5713015002266193},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-1.4482616093712108,"y":-4.5713015002266193},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["AP8Tv2QS6BLubccYtBKdsm"]}}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/Gej4tp5h73rLSC7T9Y3aev"]},"routes":[{"id":"9BciGc7BMm6BjuAQJvjPdg","layer":0,"start":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","end":"7YP3vuY4RRXx4AhWfiNqKS/Gej4tp5h73rLSC7T9Y3aev","sketch":{"start":{"reference-side":"top","position":{"x":-8.923115131194,"y":-3.8442591690441876}},"turns":[{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-10.492828589745393,"y":-7.66722968748711},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-9.222828589745296,"y":-7.6672296874871124}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w"]},"routes":[{"id":"6NSMws4a7ABx3bYEqLWGj7","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","sketch":{"start":{"reference-side":"top","position":{"x":-8.3390037082406518,"y":-0.92182893792374854}},"turns":[{"position":{"x":-8.923115131194,"y":-3.8442591690441876},"turn":"cw"},{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-10.492828589745391,"y":-7.6672296874871124}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo"]},"routes":[{"id":"2UJWG41ShqHtbjJgX7VUEL","layer":0,"start":"F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","end":"7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo","sketch":{"start":{"reference-side":"top","position":{"x":-10.882100547912497,"y":-1.5971550607566072}},"turns":[{"position":{"x":-8.923115131194,"y":-3.8442591690441876},"turn":"cw"},{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-10.492828589745393,"y":-7.66722968748711},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-11.762828589745373,"y":-7.6672296874871124}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"6NYfLB7p9qsmy8PaszG7Pg","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","end":"qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}},"turns":[{"position":{"x":-6.7610184375081559,"y":-2.1303394939664733},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-12.25858370794248,"y":9.2898865891396909}}}}]}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-5.9448257836624663,"y":-0.066745823031673979},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-5.8099503803333947,"y":-0.30952154902400331},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"6XNmnsz7aNZDdGXDi9C7P5","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-12.271258269322139,"y":12.272460944620493}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"ccw"},{"position":{"x":-10.882100547912497,"y":-1.5971550607566072},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-8.923115131194,"y":-3.8442591690441876}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"E4VZHqbFvDdMkNaf9px9UC","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-8.3390037082406518,"y":-0.92182893792374854}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy"]},"routes":[{"id":"6g9mdKkpCuu4ZeVV6FxmjY","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","sketch":{"start":{"reference-side":"top","position":{"x":-8.3390037082406518,"y":-0.92182893792374854}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"cw"},{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT","4TMLddbiXPVWvD7NSw5XXn/2YVMgmUMaEggRby3bhV5F7"]},"routes":[{"id":"EZX5r2MbVaAuKKJJMewws1","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT","end":"4TMLddbiXPVWvD7NSw5XXn/2YVMgmUMaEggRby3bhV5F7","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":5.3959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":-7.5543651354103307,"y":6.246502900852918}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"ercMWQ8hjVs1bVgMprDti","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","end":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","sketch":{"start":{"reference-side":"top","position":{"x":-7.4801025611066914,"y":4.5843720247118993}},"turns":[{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-4.9212540260242106,"y":9.329199915980162},"turn":"cw"},{"position":{"x":-2.4106572888571431,"y":9.3109716910716838},"turn":"cw"},{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"cw"},{"position":{"x":8.9895220169288486,"y":1.7886249617768346},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.8118671626109748,"y":-5.0060229299361616}}}},{"id":"XHqgvWRUncZMSiq6wrdHj","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","end":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":-7.4801025611066914,"y":4.5843720247118993}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","GaQT6sXk2tqEU4pJDUnwwA/9zoS6CDqroVgvAb897m94k","656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"D46zanu5yPz5KpCWugS8AA","layer":0,"start":"GaQT6sXk2tqEU4pJDUnwwA/9zoS6CDqroVgvAb897m94k","end":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":1.1943905486911446,"y":4.8656221488028013}},"turns":[{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"cw"},{"position":{"x":8.9895220169288486,"y":1.7886249617768346},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.8511268726033829,"y":-1.4798904835470372}}}},{"id":"6ih76fRfQNnsAxtNGmsND5","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","end":"GaQT6sXk2tqEU4pJDUnwwA/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":4.8959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":1.1943905486911446,"y":4.8656221488028013}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["5DjR2uZVerwXVQtxsGGubf/88yyoxSEmf4aUjJUGQRHbX","FEr47X6dCYqq2xKBb1kRFq/56N2PXpipE8m7q5KhXMcr2"]},"routes":[{"id":"9CaAUhdR9rF46NKMBRvByK","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/56N2PXpipE8m7q5KhXMcr2","end":"5DjR2uZVerwXVQtxsGGubf/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-2.4041353998581632,"y":7.2049539382749561}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.4106572888571431,"y":8.3537492548448835}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"3GabPGZ8GxZmyrcf7Z5kPN","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","end":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","sketch":{"start":{"reference-side":"top","position":{"x":-2.972161008055421,"y":10.861226687558418}},"turns":[{"position":{"x":-2.0124385718286204,"y":10.861226687558418},"turn":"cw"},{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"cw"},{"position":{"x":8.9895220169288486,"y":1.7886249617768346},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.8118671626109748,"y":-5.0060229299361616}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["ercMWQ8hjVs1bVgMprDti"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[{"id":"9TvsvUH5B4wSQjBhkANqDs","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","end":"FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","sketch":{"start":{"reference-side":"top","position":{"x":-2.972161008055421,"y":10.861226687558418}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.9041353998581632,"y":7.2049539382749561}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["6g9mdKkpCuu4ZeVV6FxmjY"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[{"id":"Crdcbf8KS2bsymkRJDghAN","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","end":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-2.972161008055421,"y":10.861226687558418}},"turns":[{"position":{"x":-4.9212540260242106,"y":9.329199915980162},"turn":"ccw"},{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-7.4801025611066914,"y":4.5843720247118993}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["Crdcbf8KS2bsymkRJDghAN"]}}, + {"operation":"route","request":{"layer":0,"pads":["EcLdz4H3yjpw2x6PqBebdD/88yyoxSEmf4aUjJUGQRHbX","FEr47X6dCYqq2xKBb1kRFq/C6nfBM5AVtLShdneZKc72Z"]},"routes":[{"id":"82wtBhvsaek6zgpaLc99D3","layer":0,"start":"EcLdz4H3yjpw2x6PqBebdD/88yyoxSEmf4aUjJUGQRHbX","end":"FEr47X6dCYqq2xKBb1kRFq/C6nfBM5AVtLShdneZKc72Z","sketch":{"start":{"reference-side":"top","position":{"x":-4.9212540260242106,"y":8.3719774797533617}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.9041353998581627,"y":7.2049539382749561}}}}]}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.9212540260242106,"y":8.8505886978667618},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-5.0156668083545606,"y":8.81012607686804},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.246877009378851,"y":8.30434331438402},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.246877009378851,"y":8.30434331438402},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.246877009378851,"y":8.30434331438402},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.246877009378851,"y":8.30434331438402},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["EcLdz4H3yjpw2x6PqBebdD/88yyoxSEmf4aUjJUGQRHbX","DmR6sNit5G9pTyKT3TBeQc/69m3hpZazob4QbVDhEkQBW"]},"routes":[{"id":"BcpXV4LGeF19c4FqzkouFZ","layer":0,"start":"EcLdz4H3yjpw2x6PqBebdD/88yyoxSEmf4aUjJUGQRHbX","end":"DmR6sNit5G9pTyKT3TBeQc/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-4.7254882274922512,"y":8.30434331438402}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.0041273954751464,"y":10.877412929578623}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[{"id":"7BmxRkfQhqXpwoYFKgwhjD","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","end":"DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-2.972161008055421,"y":10.861226687558418}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}}}}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","origin":"FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":3.6318602020522319,"y":-0.99669030870726427}},"route":[{"id":"DLjEda4FVTjmzkqhA2CsTk","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT","end":"FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":5.3959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":-6.5359956019103951,"y":5.3926442469821376}}},"join":true}]}, + {"operation":"unroute","delete":{"routes":["EZX5r2MbVaAuKKJJMewws1"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","4TMLddbiXPVWvD7NSw5XXn/2YVMgmUMaEggRby3bhV5F7"]},"routes":[{"id":"F1iwQNSKrGDd5cdCddc9LE","layer":0,"start":"4TMLddbiXPVWvD7NSw5XXn/2YVMgmUMaEggRby3bhV5F7","end":"FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","sketch":{"start":{"reference-side":"top","position":{"x":-7.5543651354103307,"y":6.246502900852918}},"turns":[],"end":{"reference-side":"top","position":{"x":-6.5359956019103951,"y":5.3926442469821376}}}}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/6hZVMRNDpKUhYnBPFKjhAs","origin":"FEr47X6dCYqq2xKBb1kRFq/BGci5hqhQLcn4XaaP23NzX","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":3.6712139435715883,"y":0.18534249403079617}},"route":[{"id":"DMmBKmkWbKYT6auSsKoUek","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/6hZVMRNDpKUhYnBPFKjhAs","end":"FEr47X6dCYqq2xKBb1kRFq/BGci5hqhQLcn4XaaP23NzX","sketch":{"start":{"reference-side":"top","position":{"x":-6.5753493434297514,"y":4.2106114442440772}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.3959539382748734}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff","origin":"FEr47X6dCYqq2xKBb1kRFq/A5YxZCsePKsCahVaRnSrjn","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":3.6426025498788106,"y":1.0055357798904092}},"route":[{"id":"KiDtC7tTpPk76ZYa5nPRF","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff","end":"FEr47X6dCYqq2xKBb1kRFq/A5YxZCsePKsCahVaRnSrjn","sketch":{"start":{"reference-side":"top","position":{"x":-6.5467379497369738,"y":3.3904181583844641}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":3.3959539382748734}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/8J67Px9wjoZi97krZzc3gp","origin":"FEr47X6dCYqq2xKBb1kRFq/5UVtn8WhcCUrF1imUB9B5c","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":3.6807510748025138,"y":1.5396151288222502}},"route":[{"id":"3K1d3jAx4kkdNLn3Qny2qq","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/8J67Px9wjoZi97krZzc3gp","end":"FEr47X6dCYqq2xKBb1kRFq/5UVtn8WhcCUrF1imUB9B5c","sketch":{"start":{"reference-side":"top","position":{"x":-6.584886474660677,"y":2.8563388094526232}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.8959539382748734}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/BXBPvfUdFDNVCUzTuYGisz","origin":"FEr47X6dCYqq2xKBb1kRFq/473Z1Rts63cF79SMBBqThj","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":0.97220580521960553,"y":3.5710240810094316}},"route":[{"id":"4JXoPDZH2Qfr1wVwU8psCj","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/BXBPvfUdFDNVCUzTuYGisz","end":"FEr47X6dCYqq2xKBb1kRFq/473Z1Rts63cF79SMBBqThj","sketch":{"start":{"reference-side":"top","position":{"x":-3.8763412050777686,"y":0.82492985726544177}},"turns":[],"end":{"reference-side":"top","position":{"x":-3.9041353998581632,"y":1.5859539382749279}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/FJA6YFyaEZ8Mqicx7mGBUM","origin":"FEr47X6dCYqq2xKBb1kRFq/4KFt6TJWBiwftqzpt1Xr12","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":-3.5674686607010435,"y":0.0995083129524641}},"route":[{"id":"GchFb7U8JWFZtNLYFipiGx","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/FJA6YFyaEZ8Mqicx7mGBUM","end":"FEr47X6dCYqq2xKBb1kRFq/4KFt6TJWBiwftqzpt1Xr12","sketch":{"start":{"reference-side":"top","position":{"x":0.66333326084288036,"y":4.2964456253224093}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":4.3959539382748734}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT","origin":"FEr47X6dCYqq2xKBb1kRFq/6DsRgbfz5gefkV5Cs6W3G5","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":-3.700988497934004,"y":0.66219905557708181}},"route":[{"id":"9PaY7HZpmtSFhDuemXryCW","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT","end":"FEr47X6dCYqq2xKBb1kRFq/6DsRgbfz5gefkV5Cs6W3G5","sketch":{"start":{"reference-side":"top","position":{"x":0.79685309807584082,"y":3.7337548826977915}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":3.8959539382748734}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/yPjGLX25dmNm7PnXe31PZ","origin":"FEr47X6dCYqq2xKBb1kRFq/EMsjqHXMWzCrP9A1bJCHys","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":-3.6819142354721519,"y":-2.0654204764676773}},"route":[{"id":"7bd6R1pQkTDJD38UBZuKZu","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/EMsjqHXMWzCrP9A1bJCHys","end":"FEr47X6dCYqq2xKBb1kRFq/yPjGLX25dmNm7PnXe31PZ","sketch":{"start":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":6.3959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":0.77777883561398875,"y":6.4613744147425507}}},"join":true}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/8nu2m7YQsFWeXc2VkmcRHB","FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf"]},"routes":[{"id":"AsxbjuKG3F3GTUVHKHP22G","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/8nu2m7YQsFWeXc2VkmcRHB","end":"FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-0.62999999999999545}},"turns":[],"end":{"reference-side":"top","position":{"x":-6.5359956019103951,"y":5.3926442469821376}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/Cu8rc9vAmsCKTmyMSXHmQr","FEr47X6dCYqq2xKBb1kRFq/yPjGLX25dmNm7PnXe31PZ"]},"routes":[{"id":"6nNmgL8ntsw4UHtZW5u8Ut","layer":1,"start":"FEr47X6dCYqq2xKBb1kRFq/yPjGLX25dmNm7PnXe31PZ","end":"5nc5vqcQUq4T65QATrHbs6/Cu8rc9vAmsCKTmyMSXHmQr","sketch":{"start":{"reference-side":"top","position":{"x":0.77777883561398875,"y":6.4613744147425507}},"turns":[{"position":{"x":3.7749999999999773,"y":-0.62999999999999545},"turn":"cw"}],"end":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-3.1299999999999955}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/CL6n5UtMchhxs4VAExoUtF","FEr47X6dCYqq2xKBb1kRFq/FJA6YFyaEZ8Mqicx7mGBUM"]},"routes":[{"id":"3K7Soaueb8fif27LoPFjC4","layer":1,"start":"FEr47X6dCYqq2xKBb1kRFq/FJA6YFyaEZ8Mqicx7mGBUM","end":"5nc5vqcQUq4T65QATrHbs6/CL6n5UtMchhxs4VAExoUtF","sketch":{"start":{"reference-side":"top","position":{"x":0.66333326084288036,"y":4.2964456253224093}},"turns":[{"position":{"x":3.7749999999999773,"y":-0.62999999999999545},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-3.1299999999999955},"turn":"ccw"},{"position":{"x":3.7749999999999773,"y":-5.6299999999999955},"turn":"ccw"}],"end":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-8.0599999999999454}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/AsBhLVKmpk6EFaffXQKh6Y","FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT"]},"routes":[{"id":"FAbuy5KNGzxQAEuz6pzbNg","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/AsBhLVKmpk6EFaffXQKh6Y","end":"FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-9.7599999999999909}},"turns":[{"position":{"x":3.7749999999999773,"y":-8.0599999999999454},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-5.6299999999999955},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-3.1299999999999955},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-0.62999999999999545},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":0.79685309807584082,"y":3.7337548826977915}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/96rwTsoHr1oLXdHdGmuz3Q","FEr47X6dCYqq2xKBb1kRFq/BXBPvfUdFDNVCUzTuYGisz"]},"routes":[]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/96rwTsoHr1oLXdHdGmuz3Q","FEr47X6dCYqq2xKBb1kRFq/8J67Px9wjoZi97krZzc3gp"]},"routes":[{"id":"2i6VnKUfVN2XKb8rqtjWwp","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/96rwTsoHr1oLXdHdGmuz3Q","end":"FEr47X6dCYqq2xKBb1kRFq/8J67Px9wjoZi97krZzc3gp","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-11.059999999999945}},"turns":[],"end":{"reference-side":"top","position":{"x":-6.584886474660677,"y":2.8563388094526232}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/Usjz9PTceToyzanR4dQmN","FEr47X6dCYqq2xKBb1kRFq/BXBPvfUdFDNVCUzTuYGisz"]},"routes":[{"id":"AdFxZdMakpbiXzMf7KGHRn","layer":1,"start":"FEr47X6dCYqq2xKBb1kRFq/BXBPvfUdFDNVCUzTuYGisz","end":"5nc5vqcQUq4T65QATrHbs6/Usjz9PTceToyzanR4dQmN","sketch":{"start":{"reference-side":"top","position":{"x":-3.8763412050777686,"y":0.82492985726544177}},"turns":[{"position":{"x":3.7749999999999773,"y":-11.059999999999945},"turn":"cw"}],"end":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-12.259999999999991}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/G9phhhUTXXVD7b6Mni79sc","FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff"]},"routes":[{"id":"ELdQSa4UwPo3nNV4JVqaqX","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/G9phhhUTXXVD7b6Mni79sc","end":"FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":9.3700000000001182}},"turns":[{"position":{"x":-6.5359956019103951,"y":5.3926442469821376},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-6.5467379497369738,"y":3.3904181583844641}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/4ACz9ZHKTpLQiJvQppWKdf","FEr47X6dCYqq2xKBb1kRFq/6hZVMRNDpKUhYnBPFKjhAs"]},"routes":[{"id":"hRQUZsTxcj1HbjZypeKNY","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/4ACz9ZHKTpLQiJvQppWKdf","end":"FEr47X6dCYqq2xKBb1kRFq/6hZVMRNDpKUhYnBPFKjhAs","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":6.8700000000001182}},"turns":[{"position":{"x":3.7749999999999773,"y":9.3700000000001182},"turn":"ccw"},{"position":{"x":-6.5359956019103951,"y":5.3926442469821376},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-6.5753493434297514,"y":4.2106114442440772}}}}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/Anc3xsgxcxCBeu3dDucPzT","origin":"FEr47X6dCYqq2xKBb1kRFq/3qUmwHx5xpM2u9qXCbEtE3","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":-1.4759895476796685,"y":-3.7889617367951178}},"route":[{"id":"8yf6j2KhZieCsCbxQgwQ3W","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/Anc3xsgxcxCBeu3dDucPzT","end":"FEr47X6dCYqq2xKBb1kRFq/3qUmwHx5xpM2u9qXCbEtE3","sketch":{"start":{"reference-side":"top","position":{"x":-1.4281458521784947,"y":8.1849156750699912}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.4041353998581632,"y":7.2049539382749561}}},"join":true}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/EqsbchJV3wDcJFdoRsgM9F","FEr47X6dCYqq2xKBb1kRFq/Anc3xsgxcxCBeu3dDucPzT"]},"routes":[{"id":"7JHqZ2RgYC2Ars3tj18zgz","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/EqsbchJV3wDcJFdoRsgM9F","end":"FEr47X6dCYqq2xKBb1kRFq/Anc3xsgxcxCBeu3dDucPzT","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":4.3700000000000045}},"turns":[{"position":{"x":3.7749999999999773,"y":6.8700000000001182},"turn":"ccw"},{"position":{"x":3.7749999999999773,"y":9.3700000000001182},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-1.4281458521784947,"y":8.1849156750699912}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"8KyNYu4aP87Y1UJzKnyonQ","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","end":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":1.8118671626109748,"y":-5.0060229299361616}},"turns":[{"position":{"x":-1.3707549222081314,"y":-2.490192038879246},"turn":"cw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-7.4801025611066914,"y":4.5843720247118993}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["B2rjcDuioM877xmyYkTmXo/69m3hpZazob4QbVDhEkQBW","8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX","96QfAVHuYoKinFcbWHBBYB/EPythAh92WRo7sRgNi1HjZ"]},"routes":[{"id":"5d6JUf2iF4odnaToS8WTfc","layer":0,"start":"96QfAVHuYoKinFcbWHBBYB/EPythAh92WRo7sRgNi1HjZ","end":"B2rjcDuioM877xmyYkTmXo/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-3.5264940072124213,"y":-4.3464850535815351}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.3233686026889622,"y":-6.0682147885329574}}}},{"id":"k7gNgP6zQV6YaZJpA4Kd9","layer":0,"start":"8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX","end":"96QfAVHuYoKinFcbWHBBYB/EPythAh92WRo7sRgNi1HjZ","sketch":{"start":{"reference-side":"top","position":{"x":-1.9268728274846112,"y":-4.5713015002266193}},"turns":[],"end":{"reference-side":"top","position":{"x":-3.5264940072124213,"y":-4.3464850535815351}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["B2rjcDuioM877xmyYkTmXo/NPAaADWvFAh5Pttni6nm6","75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","FEr47X6dCYqq2xKBb1kRFq/BccBtdMixJFk7gBvF7VwFq","96QfAVHuYoKinFcbWHBBYB/7iXpVU4qJyqqPMU4ypY6nN"]},"routes":[{"id":"26jepyTaQCxrjgv3ndVkoX","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/BccBtdMixJFk7gBvF7VwFq","end":"75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-2.9041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":6.3959539382748734},"turn":"ccw"},{"position":{"x":-7.5543651354103307,"y":6.246502900852918},"turn":"ccw"},{"position":{"x":-7.4801025611066914,"y":4.5843720247118993},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-5.3313391622199946,"y":-0.30952154902400331}}}},{"id":"6VBWHmoRnMbcTLbEqcxWjP","layer":0,"start":"B2rjcDuioM877xmyYkTmXo/NPAaADWvFAh5Pttni6nm6","end":"96QfAVHuYoKinFcbWHBBYB/7iXpVU4qJyqqPMU4ypY6nN","sketch":{"start":{"reference-side":"top","position":{"x":-6.2430910389157619,"y":-6.0682147885329574}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.226494007212354,"y":-2.1464850535816034}}}},{"id":"8CZZ8L79oA2XPujF1zHLt4","layer":0,"start":"96QfAVHuYoKinFcbWHBBYB/7iXpVU4qJyqqPMU4ypY6nN","end":"75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-5.226494007212354,"y":-2.1464850535816034}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.3313391622199946,"y":-0.30952154902400331}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["8KyNYu4aP87Y1UJzKnyonQ"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["26jepyTaQCxrjgv3ndVkoX"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"8qANgfw7MCyRGULjiJkHwd","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":6.3959539382748734},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["8qANgfw7MCyRGULjiJkHwd"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-16.477291212048648,"y":9.7103692180117616},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-8.8184479440979,"y":9.0894014260543958},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["6XNmnsz7aNZDdGXDi9C7P5"]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.16127830551835,"y":12.084176316603426},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["E4VZHqbFvDdMkNaf9px9UC"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"B7hw9NjBVk6bE78zwXX9xs","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-8.3390037082406518,"y":-0.92182893792374854}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"J22NDBMJjzp1TDouBLwx2","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}},"turns":[{"position":{"x":-8.7429416900844,"y":12.238351946848271},"turn":"ccw"},{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"ccw"},{"position":{"x":-10.882100547912497,"y":-1.5971550607566072},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-8.923115131194,"y":-3.8442591690441876}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["B7hw9NjBVk6bE78zwXX9xs"]}}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"DgS5drD3PwTN8nqYCRtTff","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-8.3390037082406518,"y":-0.92182893792374854}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"FpVzawB224kVhBJUrwQSAa","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","end":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}},"turns":[{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-7.4801025611066914,"y":4.5843720247118993},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"FqE74uSAcGrtfJgLc4STW8","layer":0,"start":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","end":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","sketch":{"start":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}},"turns":[{"position":{"x":-8.8184479440979,"y":9.0894014260543958},"turn":"ccw"},{"position":{"x":-7.4801025611066914,"y":4.5843720247118993},"turn":"ccw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"ccw"},{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","FEr47X6dCYqq2xKBb1kRFq/BccBtdMixJFk7gBvF7VwFq"]},"routes":[{"id":"AECSPcJopwjKQW6v4yTWCk","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/BccBtdMixJFk7gBvF7VwFq","end":"75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-2.9041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-3.8763412050777686,"y":0.82492985726544177},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-5.3313391622199946,"y":-0.30952154902400331}}}}]}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-8.3390037082406518,"y":-0.46196771981034829},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["DgS5drD3PwTN8nqYCRtTff","6NSMws4a7ABx3bYEqLWGj7"]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-8.3390037082406518,"y":-0.46196771981034823},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-8.3390037082406518,"y":-0.46196771981034829},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.063825681791009,"y":-0.500116244734051},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.063825681791009,"y":-0.500116244734051},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.063825681791009,"y":-0.500116244734051},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.5224020531098521,"y":-0.500116244734051},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-13.347028360387556,"y":-3.1685973056042718},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["J22NDBMJjzp1TDouBLwx2"]}}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"2S3vAz9UnsqeSRAbFQcHZT","layer":0,"start":"qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1","end":"FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-12.25858370794248,"y":9.2898865891396909}},"turns":[],"end":{"reference-side":"top","position":{"x":-9.9822632712232515,"y":-0.500116244734051}}}},{"id":"72xBzzgkJuwEgfzAKDskj3","layer":0,"start":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","end":"FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-11.801822984139298,"y":-1.5971550607566072}},"turns":[],"end":{"reference-side":"top","position":{"x":-9.9822632712232515,"y":-0.500116244734051}}}},{"id":"4mtgsVkBNtjsTppZ6U7Hea","layer":0,"start":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","end":"9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-11.801822984139298,"y":-1.5971550607566072}},"turns":[],"end":{"reference-side":"top","position":{"x":-13.347028360387556,"y":-2.708736087490871}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"5N7LnPvm5XLd5YHp4PYGkv","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}},"turns":[{"position":{"x":-8.7429416900844,"y":12.238351946848271},"turn":"ccw"},{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"ccw"},{"position":{"x":-13.347028360387556,"y":-2.708736087490871},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-13.347028360387556,"y":-3.6284585237176721}}}}]}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.5224020531098521,"y":-0.500116244734051},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.5224020531098521,"y":-0.500116244734051},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"3aHSutQfLSbGGaMXBSSQkv","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-9.9822632712232533,"y":-0.500116244734051}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}},{"id":"C6jRkjLN6UywLnG3eYinJz","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","sketch":{"start":{"reference-side":"top","position":{"x":-9.9822632712232533,"y":-0.500116244734051}},"turns":[{"position":{"x":-11.801822984139298,"y":-1.5971550607566072},"turn":"ccw"},{"position":{"x":-13.347028360387556,"y":-2.708736087490871},"turn":"ccw"},{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-10.492828589745393,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-10.492828589745391,"y":-7.6672296874871124}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/4UENBX5zKxuEhW4wDjGPRB","96QfAVHuYoKinFcbWHBBYB/EPythAh92WRo7sRgNi1HjZ"]},"routes":[{"id":"6oaogsBVsQrrZkDPCnCQJk","layer":0,"start":"96QfAVHuYoKinFcbWHBBYB/EPythAh92WRo7sRgNi1HjZ","end":"FEr47X6dCYqq2xKBb1kRFq/4UENBX5zKxuEhW4wDjGPRB","sketch":{"start":{"reference-side":"top","position":{"x":-3.5264940072124213,"y":-4.3464850535815351}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["FqE74uSAcGrtfJgLc4STW8","FpVzawB224kVhBJUrwQSAa"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[{"id":"68NiLg7Go76gGUDzoExLTa","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","end":"2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-7.4801025611066914,"y":4.5843720247118993}},"turns":[{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-5.0041273954751464,"y":10.877412929578623},"turn":"cw"},{"position":{"x":-4.0844049592483458,"y":10.877412929578623},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-2.972161008055421,"y":10.861226687558418}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"A5oz9Vgn1wb9SiLuCjy7fs","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-8.8184479440979,"y":9.0894014260543958},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"EyqsMCAHCjDt5pYgmWbjBh","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","end":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}},"turns":[{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}}}}]}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-9.8446232278357,"y":0.14520251095562409},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["C6jRkjLN6UywLnG3eYinJz","2UJWG41ShqHtbjJgX7VUEL","72xBzzgkJuwEgfzAKDskj3"]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-10.829170231894025,"y":-1.3712950305901668},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["4mtgsVkBNtjsTppZ6U7Hea"]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-11.155862276590069,"y":-1.5210288844091866},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-11.155862276590069,"y":-1.5210288844091866},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-11.155862276590069,"y":-1.5210288844091866},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["3aHSutQfLSbGGaMXBSSQkv"]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-11.155862276590069,"y":-1.5210288844091866},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-11.155862276590069,"y":-1.5210288844091866},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-12.156888970635244,"y":-0.88576194395744134},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX"]},"routes":[{"id":"EUE3k89w4G7UhrFcB5NuWQ","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","end":"9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-11.697027752521842,"y":-0.88576194395744134}},"turns":[],"end":{"reference-side":"top","position":{"x":-13.347028360387556,"y":-2.708736087490871}}}},{"id":"CtZwCNthEKgg4u2khMuR3","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","end":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-11.697027752521842,"y":-0.88576194395744134}},"turns":[],"end":{"reference-side":"top","position":{"x":-10.3044844459491,"y":0.14520251095562409}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo"]},"routes":[{"id":"8HTYB4qeys4gCNoJNkXyE3","layer":0,"start":"F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","end":"7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo","sketch":{"start":{"reference-side":"top","position":{"x":-9.3847620097223,"y":0.14520251095562409}},"turns":[{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-11.762828589745373,"y":-7.6672296874871124}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w"]},"routes":[{"id":"EC1sxy29FyQnvabkHgZfF","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","end":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-10.492828589745391,"y":-7.6672296874871124}},"turns":[{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-13.347028360387556,"y":-2.708736087490871},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-12.616750188748643,"y":-0.88576194395744134}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"Aav3pmVrRkwRVHZUeU6Zrv","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-12.616750188748643,"y":-0.88576194395744134}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["A5oz9Vgn1wb9SiLuCjy7fs"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"8jQtubXskuk4ohMY854LpS","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-8.8184479440979,"y":9.0894014260543958},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["EyqsMCAHCjDt5pYgmWbjBh"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"3oNwj2JLAEvDSBxa7MntjM","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","sketch":{"start":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}},"turns":[{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"ccw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}}}}]}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-8.1369219700971147,"y":4.28490431707386},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["68NiLg7Go76gGUDzoExLTa","XHqgvWRUncZMSiq6wrdHj"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["3oNwj2JLAEvDSBxa7MntjM","8jQtubXskuk4ohMY854LpS"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[{"id":"AvKKKi6TdC7j5ssgQgdaCd","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","end":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":-7.6570607519837148,"y":4.28490431707386}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[{"id":"4pEXjdq1HQcXZCbuFjrVpv","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","end":"2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-7.6570607519837148,"y":4.28490431707386}},"turns":[{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-5.0041273954751464,"y":10.877412929578623},"turn":"cw"},{"position":{"x":-4.0844049592483458,"y":10.877412929578623},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-2.972161008055421,"y":10.861226687558418}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"6QXq9WsiUuM6vNCF842fJJ","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-7.6570607519837148,"y":4.28490431707386},"turn":"cw"},{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-8.8184479440979,"y":9.0894014260543958},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"GXedoBDjqo2c3stCtH3zkf","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","end":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}},"turns":[{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-7.6570607519837148,"y":4.28490431707386},"turn":"cw"},{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}}}}]}, + {"operation":"place","place":{"placements":[{"id":"47jZR3aQdgMwt1d5ioSUUG","pose":{"center":{"x":21.990979,"y":-12.295899999999961},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"47jZR3aQdgMwt1d5ioSUUG","pose":{"center":{"x":18.992088633360623,"y":-11.388341073253834},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"47jZR3aQdgMwt1d5ioSUUG","pose":{"center":{"x":20.501588633360633,"y":-12.897841073253844},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"47jZR3aQdgMwt1d5ioSUUG","pose":{"center":{"x":22.011088633360643,"y":-11.388341073253835},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"47jZR3aQdgMwt1d5ioSUUG","pose":{"center":{"x":4.7280099414126653,"y":1.2385657336487981},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["A3h29Z2RECjLiMZL85ZfCZ/6CcM546jv4yBvH2adt2GJi","FEr47X6dCYqq2xKBb1kRFq/8RtrLyWJnsRetdte9rJ4TH"]},"routes":[{"id":"Dh3buw4jfZ2J7Y9GFw7tS3","layer":0,"start":"A3h29Z2RECjLiMZL85ZfCZ/6CcM546jv4yBvH2adt2GJi","end":"FEr47X6dCYqq2xKBb1kRFq/8RtrLyWJnsRetdte9rJ4TH","sketch":{"start":{"reference-side":"top","position":{"x":1.0950099414126724,"y":1.2380657336489238}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":2.3959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["A3h29Z2RECjLiMZL85ZfCZ/A7hQLvpEKiHhFcsQY9giLT","7R2Z1QpznMLufj2rsUw5q5/2dtsvGrvUzW47GKB9Whp5m"]},"routes":[{"id":"Eo1SEG7VU9viiLnPoAXTzY","layer":0,"start":"7R2Z1QpznMLufj2rsUw5q5/2dtsvGrvUzW47GKB9Whp5m","end":"A3h29Z2RECjLiMZL85ZfCZ/A7hQLvpEKiHhFcsQY9giLT","sketch":{"start":{"reference-side":"top","position":{"x":4.0090759585906479,"y":1.2385657336487983}},"turns":[],"end":{"reference-side":"top","position":{"x":1.9610099414126578,"y":1.2380657336489236}}}}]}, + {"operation":"place","place":{"placements":[{"id":"47jZR3aQdgMwt1d5ioSUUG","pose":{"center":{"x":4.8266576508415922,"y":1.1596475661056567},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["4pEXjdq1HQcXZCbuFjrVpv","AvKKKi6TdC7j5ssgQgdaCd","7BmxRkfQhqXpwoYFKgwhjD","9TvsvUH5B4wSQjBhkANqDs","3GabPGZ8GxZmyrcf7Z5kPN","6ih76fRfQNnsAxtNGmsND5","D46zanu5yPz5KpCWugS8AA","32PUR4DcPcF36xMs9KFqzS","FhMYWWEyYLVYiMTVjKyFj4","FuT2TfVfAxH9ww56vPw4rP"]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-13.347028360387556,"y":-3.1685973056042718},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["EC1sxy29FyQnvabkHgZfF","5N7LnPvm5XLd5YHp4PYGkv"]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-13.347028360387556,"y":-3.1685973056042718},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-13.347028360387556,"y":-3.1685973056042718},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-9.8446232278357,"y":0.14520251095562409},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["CtZwCNthEKgg4u2khMuR3"]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-9.8446232278357,"y":0.14520251095562409},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-9.8446232278357,"y":0.14520251095562409},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["8HTYB4qeys4gCNoJNkXyE3"]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-10.837337614900841,"y":1.2702788162961163},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-13.192606122399646,"y":-2.7273909113530985},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["6NYfLB7p9qsmy8PaszG7Pg"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["2S3vAz9UnsqeSRAbFQcHZT"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["EUE3k89w4G7UhrFcB5NuWQ"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["AXqQKmPMa9RJFGqarGtfPM"]}}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"2Epu1qqLffemo5L2UDrcR1","layer":0,"start":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","end":"qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-10.37747639678744,"y":1.2702788162961163}},"turns":[],"end":{"reference-side":"top","position":{"x":-12.25858370794248,"y":9.2898865891396909}}}},{"id":"CELLN1kYQj9tBQCxM295dy","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","end":"9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}},"turns":[],"end":{"reference-side":"top","position":{"x":-12.732744904286244,"y":-2.7273909113530985}}}},{"id":"2ubZALh1wjvNRqMLpWUEhK","layer":0,"start":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","end":"FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-10.37747639678744,"y":1.2702788162961163}},"turns":[],"end":{"reference-side":"top","position":{"x":-11.697027752521842,"y":-0.88576194395744134}}}},{"id":"DY2ri7X9CfrbBFr2zSKX1n","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","end":"9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-11.697027752521842,"y":-0.88576194395744134}},"turns":[],"end":{"reference-side":"top","position":{"x":-12.732744904286244,"y":-2.7273909113530985}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo"]},"routes":[{"id":"6cv3p37Q8wzbB9HPqZozqz","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo","end":"F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-11.762828589745373,"y":-7.6672296874871124}},"turns":[{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-12.732744904286244,"y":-2.7273909113530985},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-11.297198833014242,"y":1.2702788162961163}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w"]},"routes":[{"id":"GnbDqQLTh8A3CjGF3XRXKA","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","end":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-10.492828589745391,"y":-7.6672296874871124}},"turns":[{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-12.732744904286244,"y":-2.7273909113530985},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-12.616750188748643,"y":-0.88576194395744134}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"2jPBCopvpmgX7LzMbGvLJq","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}},"turns":[{"position":{"x":-8.7429416900844,"y":12.238351946848271},"turn":"ccw"},{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-13.652467340513045,"y":-2.7273909113530985}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"5VP8hEJ8mwRFHfE23JqZp4","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","end":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","sketch":{"start":{"reference-side":"top","position":{"x":1.8118671626109748,"y":-5.0060229299361616}},"turns":[],"end":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}}}}]}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.2673420840612089,"y":-2.9617956416169204},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["5VP8hEJ8mwRFHfE23JqZp4"]}}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"2V5QVrKUojvEVcoq1tSTpV","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","end":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}},"turns":[{"position":{"x":-5.3233686026889622,"y":-6.0682147885329574},"turn":"ccw"},{"position":{"x":-0.9696503912578105,"y":-4.5713015002266193},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":1.7887308659478085,"y":-2.9617956416169204}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["77nSKnDe7MeGYsyZMCwcxr/88yyoxSEmf4aUjJUGQRHbX","FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"FAndHyTqgdeL9ZXqWaa5kF","layer":0,"start":"77nSKnDe7MeGYsyZMCwcxr/88yyoxSEmf4aUjJUGQRHbX","end":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.40834897250667129}},"turns":[],"end":{"reference-side":"top","position":{"x":1.7887308659478085,"y":-2.9617956416169204}}}},{"id":"C27m8BSbpBxbVV5wcSijMP","layer":0,"start":"77nSKnDe7MeGYsyZMCwcxr/88yyoxSEmf4aUjJUGQRHbX","end":"FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","sketch":{"start":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.40834897250667129}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.90413539985816316,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","2TBC8iDFgxVtTGP3hGv5pw/88yyoxSEmf4aUjJUGQRHbX","656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"7rg85ox4rXxytcGBWsBCzA","layer":0,"start":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","end":"GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":1.7887308659478085,"y":-2.9617956416169204}},"turns":[{"position":{"x":8.9895220169288486,"y":1.7886249617768346},"turn":"ccw"},{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":1.1956405486911448,"y":4.8656221488028013}}}},{"id":"DUWL1KPN51HzWgENAboP4J","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/88yyoxSEmf4aUjJUGQRHbX","end":"GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-2.9709110080554209,"y":10.861226687558418}},"turns":[{"position":{"x":0.77777883561398875,"y":6.4613744147425507},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.1956405486911448,"y":4.8656221488028013}}}},{"id":"E3YA4FjswfEAmeUS1mmhRK","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","end":"2TBC8iDFgxVtTGP3hGv5pw/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-2.9041353998581632,"y":7.2049539382749561}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.9709110080554209,"y":10.861226687558418}}}},{"id":"BGXMbrZYoVcDWSZqKTfKEf","layer":0,"start":"GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","end":"FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","sketch":{"start":{"reference-side":"top","position":{"x":1.1956405486911448,"y":4.8656221488028013}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":4.8959539382748734}}}},{"id":"86cyd4NypPGepW76jjNExt","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/88yyoxSEmf4aUjJUGQRHbX","end":"DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-2.9709110080554209,"y":10.861226687558418}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["GXedoBDjqo2c3stCtH3zkf","6QXq9WsiUuM6vNCF842fJJ"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/88yyoxSEmf4aUjJUGQRHbX","DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[{"id":"Df1jqosDFHNvXTBrUnv8JD","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/88yyoxSEmf4aUjJUGQRHbX","end":"DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-7.6583107519837146,"y":4.28490431707386}},"turns":[{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-5.0041273954751464,"y":10.877412929578623},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}}}},{"id":"Daon43xMAuouBYf1G8XrW6","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","end":"9usVbKZ7QpQqddvQtPgJBc/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":-7.6583107519837146,"y":4.28490431707386}}}}]}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-8.03922635352373,"y":6.246502900852918},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-8.03922635352373,"y":6.246502900852918},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-8.03922635352373,"y":6.246502900852918},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-8.03922635352373,"y":6.246502900852918},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.1188852553540132,"y":6.7924679590891905},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"66qTno5vb9akSqy6amCn6a","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","end":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}},"turns":[{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"5pJSmhFhvtTeFqUqoHfDkB","layer":0,"start":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","end":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","sketch":{"start":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}},"turns":[{"position":{"x":-8.8184479440979,"y":9.0894014260543958},"turn":"ccw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"ccw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"ccw"},{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.148282109379686,"y":8.98104211316387},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.095097346380673,"y":11.753271520915046},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-8.4434225089844013,"y":9.221763344329748},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["66qTno5vb9akSqy6amCn6a","2jPBCopvpmgX7LzMbGvLJq"]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":-8.6767607309467252,"y":11.907447151159889},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["5pJSmhFhvtTeFqUqoHfDkB"]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-11.751196354553629,"y":8.8928008343136362},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-11.543589353566706,"y":11.753271520915046},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"24Yc41tAXyxdFr76Ex52Tw","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-8.4434225089844013,"y":9.221763344329748}},"turns":[{"position":{"x":-8.6767607309467252,"y":11.907447151159889},"turn":"ccw"},{"position":{"x":-11.751196354553629,"y":8.8928008343136362},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-13.652467340513045,"y":-2.7273909113530985}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"EFV5Zame4n6wfNwWeUPZri","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","end":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}},"turns":[{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.4434225089844013,"y":9.221763344329748}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"EerpJgLds2JSj1X3TbB3sr","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"},{"position":{"x":-8.4434225089844013,"y":9.221763344329748},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.6767607309467252,"y":11.907447151159889}}}}]}, + {"operation":"via-update","update":{"via":"FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff","relative":{"x":3.720597558198278,"y":0.900242518659129}}}, + {"operation":"unroute","delete":{"routes":["ELdQSa4UwPo3nNV4JVqaqX"]}}, + {"operation":"via-update","update":{"via":"FEr47X6dCYqq2xKBb1kRFq/8J67Px9wjoZi97krZzc3gp","relative":{"x":3.6456533210587536,"y":1.6254096379736653}}}, + {"operation":"unroute","delete":{"routes":["EFV5Zame4n6wfNwWeUPZri","EerpJgLds2JSj1X3TbB3sr"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"AaWvb7RQFLUuaKJLh53FGt","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","sketch":{"start":{"reference-side":"top","position":{"x":-8.4434225089844013,"y":9.221763344329748}},"turns":[{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"ccw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"3jrY7Pb9uKLTjGToB2qesk","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"},{"position":{"x":-8.4434225089844013,"y":9.221763344329748},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.6767607309467252,"y":11.907447151159889}}}}]}, + {"operation":"via-update","update":{"via":"FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT","relative":{"x":-4.0129685312118744,"y":0.81818907221601656}}}, + {"operation":"unroute","delete":{"routes":["FAbuy5KNGzxQAEuz6pzbNg"]}}, + {"operation":"via-update","update":{"via":"FT4pxFBh14a61jaK6UdDfM/EWPFMLZ3Dea5nQzF4xP2Gh","relative":{"x":-1.5585396872344046,"y":7.22357074513438}}}, + {"operation":"unroute","delete":{"routes":["7rg85ox4rXxytcGBWsBCzA"]}}, + {"operation":"place","place":{"placements":[{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":4.8601192424779427,"y":-9.1477209332639511},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":9.36315756586002,"y":-6.8554628402559521},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/G9phhhUTXXVD7b6Mni79sc","FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff"]},"routes":[{"id":"2YhE5dKvZq3qp7Ws5dpbpW","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/G9phhhUTXXVD7b6Mni79sc","end":"FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":9.3700000000001182}},"turns":[{"position":{"x":-6.5359956019103951,"y":5.3926442469821376},"turn":"ccw"},{"position":{"x":-6.5753493434297514,"y":4.2106114442440772},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-6.6247329580564411,"y":3.4957114196157444}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT"]},"routes":[]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/AsBhLVKmpk6EFaffXQKh6Y","FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT"]},"routes":[{"id":"6T1hfAAup4FPZ17TxJFqWf","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/AsBhLVKmpk6EFaffXQKh6Y","end":"FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-9.7599999999999909}},"turns":[{"position":{"x":3.7749999999999773,"y":-8.0599999999999454},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-5.6299999999999955},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-3.1299999999999955},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-0.62999999999999545},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":1.1088331313537112,"y":3.5777648660588568}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"RRTmfeuWW4yP5gygdqxfm","layer":0,"start":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","end":"GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":1.7887308659478085,"y":-2.9617956416169204}},"turns":[{"position":{"x":8.8764292548656218,"y":1.5585396872344046},"turn":"ccw"},{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":1.1956405486911448,"y":4.8656221488028013}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","3HfeEALJYFNctitkdZqmhv/7eLMrp81n94xgV3ZcqewUk"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["EVnbJQbBxw1eUEYRni6Wch/2LxwweqFNEEjCqsWtbXLw8","656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","3HfeEALJYFNctitkdZqmhv/7eLMrp81n94xgV3ZcqewUk"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["7R2Z1QpznMLufj2rsUw5q5/249fMYoZnp83PEwU9hgbJp","8VvLEdgpKAQe7YfsFDSzgh/NPAaADWvFAh5Pttni6nm6","FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","8WBCGnBP9JAB789hNHWyB5/2LxwweqFNEEjCqsWtbXLw8","EVnbJQbBxw1eUEYRni6Wch/2LxwweqFNEEjCqsWtbXLw8","GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","FshjgLMYkKo69oJh6uLstr/88yyoxSEmf4aUjJUGQRHbX","656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","3HfeEALJYFNctitkdZqmhv/7eLMrp81n94xgV3ZcqewUk"]},"routes":[]}, + {"operation":"place","place":{"placements":[{"id":"GRxng3pSHKQ3xM4RUKMbtX","pose":{"center":{"x":21.05,"y":-11.746800136566161},"angle":0,"flipx":false},"side":"top"},{"id":"D89ACc7xJQykdg4Dh1A3V7","pose":{"center":{"x":21.05,"y":-13.95},"angle":0,"flipx":false},"side":"top"},{"id":"CUU84XFACmadAff3nCSfRp","pose":{"center":{"x":23.253199863433839,"y":-11.746800136566161},"angle":0,"flipx":false},"side":"top"},{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":23.253199863433839,"y":-13.95},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["3jrY7Pb9uKLTjGToB2qesk","AaWvb7RQFLUuaKJLh53FGt","24Yc41tAXyxdFr76Ex52Tw","2Epu1qqLffemo5L2UDrcR1","Aav3pmVrRkwRVHZUeU6Zrv"]}}, + {"operation":"place","place":{"placements":[{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":-9.9551844694913676,"y":11.248898408812629},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"D89ACc7xJQykdg4Dh1A3V7","pose":{"center":{"x":-12.640330477356041,"y":9.2293145654833815},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":-10.345331348316336,"y":11.386597307221441},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GRxng3pSHKQ3xM4RUKMbtX","pose":{"center":{"x":-10.29944920440623,"y":9.137532788770347},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"CUU84XFACmadAff3nCSfRp","pose":{"center":{"x":-12.686212621266133,"y":11.616112960128966},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"CUU84XFACmadAff3nCSfRp","pose":{"center":{"x":-12.646050442563563,"y":11.484151515820521},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":-10.410243231534196,"y":11.475851146645999},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GRxng3pSHKQ3xM4RUKMbtX","pose":{"center":{"x":-10.340019131417392,"y":9.2105586573904379},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GRxng3pSHKQ3xM4RUKMbtX","pose":{"center":{"x":-10.388703043830786,"y":9.2267866281949029},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["D89ACc7xJQykdg4Dh1A3V7/rp1xna1JgPguTNc7Mdp9f","F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6"]},"routes":[{"id":"AcQKYbpQynsDb9ySq3crqh","layer":0,"start":"D89ACc7xJQykdg4Dh1A3V7/rp1xna1JgPguTNc7Mdp9f","end":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-12.640330477356041,"y":9.2293145654833815}},"turns":[],"end":{"reference-side":"top","position":{"x":-10.37747639678744,"y":1.2702788162961163}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f"]},"routes":[{"id":"3PCPKh6KdHCrMspuASsuye","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-12.616750188748643,"y":-0.88576194395744134}},"turns":[{"position":{"x":-12.646050442563563,"y":11.484151515820521},"turn":"cw"},{"position":{"x":-10.410243231534196,"y":11.475851146645999},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-10.388703043830786,"y":9.2267866281949029}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["3PCPKh6KdHCrMspuASsuye"]}}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f"]},"routes":[{"id":"49KCyyeGtP87SFLrf5cbZK","layer":0,"start":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","end":"6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-13.652467340513045,"y":-2.7273909113530985}},"turns":[{"position":{"x":-12.646050442563563,"y":11.484151515820521},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-10.410243231534196,"y":11.475851146645999}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f"]},"routes":[]}, + {"operation":"place","place":{"placements":[{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":-10.088945801913635,"y":11.751248943463624},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["49KCyyeGtP87SFLrf5cbZK"]}}, + {"operation":"place","place":{"placements":[{"id":"GRxng3pSHKQ3xM4RUKMbtX","pose":{"center":{"x":-9.8608572665970069,"y":9.1808869953919654},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":-9.9282970871033545,"y":11.498800963047469},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":-9.8594476378989491,"y":11.498800963047469},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f"]},"routes":[{"id":"9i5ZK6NSfAznxEUVU8ynRA","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-12.616750188748643,"y":-0.88576194395744134}},"turns":[{"position":{"x":-12.646050442563563,"y":11.484151515820521},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8608572665970069,"y":9.1808869953919654}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f"]},"routes":[{"id":"DQf43msCg7qRcRHMut1yYc","layer":0,"start":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","end":"6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-13.652467340513045,"y":-2.7273909113530985}},"turns":[{"position":{"x":-12.646050442563563,"y":11.484151515820521},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8594476378989491,"y":11.498800963047469}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy"]},"routes":[{"id":"8Rs3gfTfaKaM3zjRyJaeQs","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8608572665970069,"y":9.1808869953919654}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW"]},"routes":[{"id":"AUov54v6Pvb2KgnqJdUEFg","layer":0,"start":"6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","end":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","sketch":{"start":{"reference-side":"top","position":{"x":-9.8594476378989491,"y":11.498800963047469}},"turns":[{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"ccw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}}}}]}, + {"operation":"place","place":{"placements":[{"id":"GRxng3pSHKQ3xM4RUKMbtX","pose":{"center":{"x":-9.8608572665970069,"y":9.2038368117934333},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["8Rs3gfTfaKaM3zjRyJaeQs"]}}, + {"operation":"route","request":{"layer":0,"pads":["GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy"]},"routes":[{"id":"3H1myfU4qY7FyjzqQYSE8r","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8608572665970069,"y":9.2038368117934333}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["AnFmVeWs5C1x5ZuHHpf6vV/NPAaADWvFAh5Pttni6nm6","FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN"]},"routes":[{"id":"8oDz6bukSndybB7sUvAYTD","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","end":"AnFmVeWs5C1x5ZuHHpf6vV/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":null,"position":{"x":8.5747840584332,"y":4.6860528771510914}},"turns":[],"end":{"reference-side":"top","position":{"x":8.6066092382763184,"y":5.9977616135361611}}}}]}, + {"operation":"unroute","delete":{"routes":["3H1myfU4qY7FyjzqQYSE8r","Daon43xMAuouBYf1G8XrW6","BGXMbrZYoVcDWSZqKTfKEf","GnbDqQLTh8A3CjGF3XRXKA"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"C4CBVVTg1WXUeaaXLTBsY6","layer":0,"start":"GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","end":"FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","sketch":{"start":{"reference-side":"top","position":{"x":1.1956405486911448,"y":4.8656221488028013}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":4.8959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/88yyoxSEmf4aUjJUGQRHbX","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[{"id":"6TF7DheDX4TmwwsRyQmifM","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/88yyoxSEmf4aUjJUGQRHbX","end":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","sketch":{"start":{"reference-side":"top","position":{"x":-7.6583107519837146,"y":4.28490431707386}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w"]},"routes":[{"id":"3yrbEBi36svR2o6kKCwfND","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","end":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-10.492828589745391,"y":-7.6672296874871124}},"turns":[{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-12.732744904286244,"y":-2.7273909113530985},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-12.616750188748643,"y":-0.88576194395744134}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy"]},"routes":[{"id":"BkRJVxF1nykkxDhXwmKBRw","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8608572665970069,"y":9.2038368117934333}}}}]}, + {"operation":"via-create","via":{"id":"7R2Z1QpznMLufj2rsUw5q5/84FdozgB6n5CbQ5yUaTChF","origin":"7R2Z1QpznMLufj2rsUw5q5/249fMYoZnp83PEwU9hgbJp","route-layer":0,"instance":"7R2Z1QpznMLufj2rsUw5q5","relative":{"x":0.00499371860140041,"y":-1.5360076906083893}},"route":[]}, + {"operation":"unroute","delete":{"routes":["6TF7DheDX4TmwwsRyQmifM","C4CBVVTg1WXUeaaXLTBsY6","Df1jqosDFHNvXTBrUnv8JD","86cyd4NypPGepW76jjNExt","E3YA4FjswfEAmeUS1mmhRK","C27m8BSbpBxbVV5wcSijMP","2V5QVrKUojvEVcoq1tSTpV","F1iwQNSKrGDd5cdCddc9LE","BcpXV4LGeF19c4FqzkouFZ","82wtBhvsaek6zgpaLc99D3","9CaAUhdR9rF46NKMBRvByK","7dYdMqCmEJg3r6hzEnu4nA","9bVF2p7xBtjLJ4DoYfykhE","6f95tToQgfC6v6P5eFYEBX","7ZeYCDR3iZcj9LtiA5APfa","2eEJ5e46UurWxoUo5ueRfb"]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.0177674439686144,"y":-0.020211970610101826},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["3acCFpJRFNfFzmaBvGduof"]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.0177674439686144,"y":-0.020211970610101826},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.855058201833724,"y":-0.070262245606729},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.855058201833724,"y":-0.070262245606729},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.2673420840612089,"y":-2.9617956416169204},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.2673420840612089,"y":-2.9617956416169204},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["RRTmfeuWW4yP5gygdqxfm"]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.2673420840612089,"y":-2.9617956416169204},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.5427398808788322,"y":-2.9158960088139829},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":6.3337367988187552,"y":-1.2100968826531506},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":6.3337367988187552,"y":-1.2100968826531506},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":7.0451811072642823,"y":-2.4034873355295185},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":7.0451811072642823,"y":-2.4034873355295185},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":6.6779840448407848,"y":-2.8395338471574223},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":9.36315756586002,"y":-6.8554628402559521},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":9.36315756586002,"y":-6.8554628402559521},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":9.1221844936445979,"y":-6.6948141254456717},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-8.1369219700971147,"y":4.28490431707386},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-8.1369219700971147,"y":4.28490431707386},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.1188852553540132,"y":6.7924679590891905},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.1188852553540132,"y":6.7924679590891905},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.246877009378851,"y":8.30434331438402},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.246877009378851,"y":8.30434331438402},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.4106572888571431,"y":8.8323604729582836},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.4106572888571431,"y":8.8323604729582836},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-2.4922997899420207,"y":10.861226687558418},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["DUWL1KPN51HzWgENAboP4J"]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-2.4922997899420207,"y":10.861226687558418},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":1.6742517668045449,"y":4.8656221488028013},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":1.6742517668045449,"y":4.8656221488028013},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"BsCwZU1nBU91oEPdKk4SUr","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","end":"656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":2.5606192424778627,"y":-5.0372209332639493}},"turns":[],"end":{"reference-side":"top","position":{"x":2.5427398808788322,"y":-3.3945072269273835}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["FAndHyTqgdeL9ZXqWaa5kF"]}}, + {"operation":"route","request":{"layer":0,"pads":["77nSKnDe7MeGYsyZMCwcxr/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"LZ1PyXUJPYTUd8Uqqygcg","layer":0,"start":"77nSKnDe7MeGYsyZMCwcxr/2LxwweqFNEEjCqsWtbXLw8","end":"656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.40834897250667124}},"turns":[],"end":{"reference-side":"top","position":{"x":2.5427398808788322,"y":-3.3945072269273835}}}},{"id":"6xcx6GdEKoy2sfkUrpizLy","layer":0,"start":"77nSKnDe7MeGYsyZMCwcxr/2LxwweqFNEEjCqsWtbXLw8","end":"FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","sketch":{"start":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.40834897250667124}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.90413539985816316,"y":1.5859539382749279}}}}]}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.5427398808788322,"y":-2.9158960088139829},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.5427398808788322,"y":-2.9158960088139829},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.5427398808788322,"y":-2.9158960088139829},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.5427398808788322,"y":-2.9158960088139829},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":3.0820605663133445,"y":-2.8355716514088427},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ARfh82Zei6N8jMB346B71w","6UkTHKpQvqmDsqkXeN9e3R/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"EzSSnfa8Mk3m7akxuxJqgG","layer":0,"start":"6UkTHKpQvqmDsqkXeN9e3R/2LxwweqFNEEjCqsWtbXLw8","end":"FEr47X6dCYqq2xKBb1kRFq/ARfh82Zei6N8jMB346B71w","sketch":{"start":{"reference-side":"top","position":{"x":-2.0177674439686144,"y":0.45839924750329852}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.9041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"AKyzYavGKUCQcvt5suVm4w","layer":0,"start":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","end":"FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","sketch":{"start":{"reference-side":"top","position":{"x":1.1956405486911446,"y":4.8656221488028013}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":4.8959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["5DjR2uZVerwXVQtxsGGubf/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/56N2PXpipE8m7q5KhXMcr2"]},"routes":[{"id":"Gg2FQRJ343rnF9ej4dk9Eq","layer":0,"start":"5DjR2uZVerwXVQtxsGGubf/2LxwweqFNEEjCqsWtbXLw8","end":"FEr47X6dCYqq2xKBb1kRFq/56N2PXpipE8m7q5KhXMcr2","sketch":{"start":{"reference-side":"top","position":{"x":-2.4106572888571431,"y":8.3537492548448835}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.4041353998581632,"y":7.2049539382749561}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","DmR6sNit5G9pTyKT3TBeQc/69m3hpZazob4QbVDhEkQBW","FEr47X6dCYqq2xKBb1kRFq/C6nfBM5AVtLShdneZKc72Z"]},"routes":[{"id":"39ydC9L2kMqF4qz56uhrJe","layer":0,"start":"EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","end":"DmR6sNit5G9pTyKT3TBeQc/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-4.7254882274922512,"y":8.30434331438402}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.0041273954751464,"y":10.877412929578623}}}},{"id":"5fghm3Xw6973h2NuRuA1CA","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/C6nfBM5AVtLShdneZKc72Z","end":"EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-4.9041353998581627,"y":7.2049539382749561}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.7254882274922512,"y":8.30434331438402}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"BkKTCXkAno8dABnTGPzsc7","layer":0,"start":"656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","end":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":2.6034493481999439,"y":-2.8355716514088427}},"turns":[{"position":{"x":8.8764292548656218,"y":1.5585396872344046},"turn":"ccw"},{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":1.1956405486911446,"y":4.8656221488028013}}}},{"id":"6JYgiNkCR4GZbz5o6MfT2V","layer":0,"start":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","end":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":1.1956405486911446,"y":4.8656221488028013}},"turns":[{"position":{"x":0.77777883561398875,"y":6.4613744147425507},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-2.9709110080554213,"y":10.861226687558418}}}},{"id":"CXSubPNzRUNDhiBEPNLcPi","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","end":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-2.9041353998581632,"y":7.2049539382749561}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.9709110080554213,"y":10.861226687558418}}}},{"id":"Dh7xc1sJXov7nQ3HZ6cg2z","layer":0,"start":"DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","end":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.9709110080554213,"y":10.861226687558418}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","4TMLddbiXPVWvD7NSw5XXn/7MJbizzrGcBXXFWspaN6LS"]},"routes":[{"id":"4ELehh8EE6hstDCk7krMEZ","layer":0,"start":"4TMLddbiXPVWvD7NSw5XXn/7MJbizzrGcBXXFWspaN6LS","end":"FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","sketch":{"start":{"reference-side":"top","position":{"x":-7.1188852553540132,"y":6.30760674097579}},"turns":[],"end":{"reference-side":"top","position":{"x":-6.5359956019103951,"y":5.3926442469821376}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[{"id":"F41z9Gnf7sbtCRizZfHD1E","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","end":"9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":-7.6583107519837146,"y":4.28490431707386}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"C1MTRaKybfBYzDyv68GTd9","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","end":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-7.6583107519837146,"y":4.28490431707386}},"turns":[{"position":{"x":-7.1188852553540132,"y":7.27732917720259},"turn":"cw"},{"position":{"x":-5.0041273954751464,"y":10.877412929578623},"turn":"cw"},{"position":{"x":-4.0844049592483458,"y":10.877412929578623},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-2.9709110080554213,"y":10.861226687558418}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","EVnbJQbBxw1eUEYRni6Wch/2LxwweqFNEEjCqsWtbXLw8","3HfeEALJYFNctitkdZqmhv/4M32voPjQ4ujDnVkcwNkbB"]},"routes":[{"id":"5AQxa58Y3ZPq6j9jTWSYQT","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","end":"EVnbJQbBxw1eUEYRni6Wch/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":null,"position":{"x":8.9990591481597733,"y":-1.2441827696575491}},"turns":[],"end":{"reference-side":"top","position":{"x":7.1565952629541849,"y":-2.8395338471574223}}}},{"id":"BrxDm6VNY3cB8o3MjSy1kp","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/4M32voPjQ4ujDnVkcwNkbB","end":"EVnbJQbBxw1eUEYRni6Wch/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":7.159619242477909,"y":-5.0372209332639493}},"turns":[],"end":{"reference-side":"top","position":{"x":7.1565952629541849,"y":-2.8395338471574223}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","FshjgLMYkKo69oJh6uLstr/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"Fj19yLeVUD2e8DdsAxgVE","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","end":"FshjgLMYkKo69oJh6uLstr/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":null,"position":{"x":8.3649671713528342,"y":-4.6984842540798315}},"turns":[],"end":{"reference-side":"top","position":{"x":9.1221844936445979,"y":-6.2162029073322715}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"9UnaKywZYWgJri4nf1QU3s","layer":0,"start":"656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","end":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","sketch":{"start":{"reference-side":"top","position":{"x":2.6034493481999439,"y":-2.8355716514088427}},"turns":[{"position":{"x":-0.9696503912578105,"y":-4.5713015002266193},"turn":"cw"},{"position":{"x":-5.3233686026889622,"y":-6.0682147885329574},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["8VvLEdgpKAQe7YfsFDSzgh/69m3hpZazob4QbVDhEkQBW","FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh"]},"routes":[{"id":"NvUnWHuhoMESY7kKMvDdx","layer":0,"start":"8VvLEdgpKAQe7YfsFDSzgh/69m3hpZazob4QbVDhEkQBW","end":"FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh","sketch":{"start":{"reference-side":"top","position":{"x":-1.3707549222081314,"y":-1.5704696026524452}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"unroute","delete":{"routes":["NvUnWHuhoMESY7kKMvDdx"]}}, + {"operation":"unroute","delete":{"routes":["Dh7xc1sJXov7nQ3HZ6cg2z","39ydC9L2kMqF4qz56uhrJe"]}}, + {"operation":"route","request":{"layer":0,"pads":["8VvLEdgpKAQe7YfsFDSzgh/3bd6evhN5qGHwvQVBHrAnX","FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh"]},"routes":[{"id":"GoVkiDK9ndLjDKsvurDNWu","layer":0,"start":"8VvLEdgpKAQe7YfsFDSzgh/3bd6evhN5qGHwvQVBHrAnX","end":"FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh","sketch":{"start":{"reference-side":"top","position":{"x":-1.3707549222081314,"y":-1.5742196026524453}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","DmR6sNit5G9pTyKT3TBeQc/8KLdf6zAUxvppad5gbWSSb"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["C1MTRaKybfBYzDyv68GTd9"]}}, + {"operation":"route","request":{"layer":0,"pads":["EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","DmR6sNit5G9pTyKT3TBeQc/8KLdf6zAUxvppad5gbWSSb"]},"routes":[{"id":"4DmTTbyQZki9mSAHyR5vNA","layer":0,"start":"EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","end":"DmR6sNit5G9pTyKT3TBeQc/8KLdf6zAUxvppad5gbWSSb","sketch":{"start":{"reference-side":"top","position":{"x":-4.7254882274922512,"y":8.30434331438402}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.9978773954751468,"y":10.877412929578623}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","DmR6sNit5G9pTyKT3TBeQc/FfXYEJ2zZ7kfpFUL7sd4uX","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"495DPpZpmusaBufdvc51tD","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","end":"DmR6sNit5G9pTyKT3TBeQc/FfXYEJ2zZ7kfpFUL7sd4uX","sketch":{"start":{"reference-side":"top","position":{"x":-7.6583107519837146,"y":4.28490431707386}},"turns":[{"position":{"x":-7.1188852553540132,"y":7.27732917720259},"turn":"cw"},{"position":{"x":-4.9978773954751468,"y":10.877412929578623},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-4.0906549592483454,"y":10.877412929578623}}}},{"id":"FnG2oY3CHjS1o53EFsuFnW","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","end":"DmR6sNit5G9pTyKT3TBeQc/FfXYEJ2zZ7kfpFUL7sd4uX","sketch":{"start":{"reference-side":"top","position":{"x":-2.9709110080554213,"y":10.861226687558418}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.0906549592483454,"y":10.877412929578623}}}}]}, + {"operation":"place","place":{"placements":[{"id":"2i6B2MSQaRVS6gpF35Rqmx","pose":{"center":{"x":19.149855143503039,"y":-15.692201891913642},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2i6B2MSQaRVS6gpF35Rqmx","pose":{"center":{"x":-8.9643455278140287,"y":-13.672618048584388},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2i6B2MSQaRVS6gpF35Rqmx","pose":{"center":{"x":-8.86697770298724,"y":-13.656390077779925},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TtfCo3u1C369a3Dc36cPQ","pose":{"center":{"x":21.990979,"y":-14.55},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TtfCo3u1C369a3Dc36cPQ","pose":{"center":{"x":7.7857088422345395,"y":-1.6705550569593157},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TtfCo3u1C369a3Dc36cPQ","pose":{"center":{"x":7.7857088422345395,"y":-1.6705550569593157},"angle":270,"flipx":true},"side":"bottom"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TtfCo3u1C369a3Dc36cPQ","pose":{"center":{"x":7.5421899252442746,"y":0.061135019415902381},"angle":270,"flipx":true},"side":"bottom"}]}}, + {"operation":"route","request":{"layer":1,"pads":["2TtfCo3u1C369a3Dc36cPQ/69m3hpZazob4QbVDhEkQBW","FT4pxFBh14a61jaK6UdDfM/8jeM3LD3mn3XBjfsNNRZVb"]},"routes":[{"id":"5h13TAks6Gsa8FEquthDEa","layer":1,"start":"2TtfCo3u1C369a3Dc36cPQ/69m3hpZazob4QbVDhEkQBW","end":"FT4pxFBh14a61jaK6UdDfM/8jeM3LD3mn3XBjfsNNRZVb","sketch":{"start":{"reference-side":"bottom","position":{"x":8.0020511433576758,"y":0.061135019415902381}},"turns":[],"end":{"reference-side":null,"position":{"x":9.9374999999999787,"y":1.25}}}}]}, + {"operation":"place","place":{"placements":[{"id":"8m61X3RXkyLesExgz2wrGA","pose":{"center":{"x":22.218999999999916,"y":-13.130999999999993},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["5h13TAks6Gsa8FEquthDEa","FnG2oY3CHjS1o53EFsuFnW","495DPpZpmusaBufdvc51tD","4DmTTbyQZki9mSAHyR5vNA","9UnaKywZYWgJri4nf1QU3s","Fj19yLeVUD2e8DdsAxgVE","BrxDm6VNY3cB8o3MjSy1kp","5AQxa58Y3ZPq6j9jTWSYQT","F41z9Gnf7sbtCRizZfHD1E","4ELehh8EE6hstDCk7krMEZ","BkKTCXkAno8dABnTGPzsc7","LZ1PyXUJPYTUd8Uqqygcg","BsCwZU1nBU91oEPdKk4SUr","8oDz6bukSndybB7sUvAYTD","9i5ZK6NSfAznxEUVU8ynRA","6cv3p37Q8wzbB9HPqZozqz","Eo1SEG7VU9viiLnPoAXTzY","Dh3buw4jfZ2J7Y9GFw7tS3","6oaogsBVsQrrZkDPCnCQJk","8CZZ8L79oA2XPujF1zHLt4","6VBWHmoRnMbcTLbEqcxWjP","k7gNgP6zQV6YaZJpA4Kd9","5d6JUf2iF4odnaToS8WTfc"]}}, + {"operation":"place","place":{"placements":[{"id":"8m61X3RXkyLesExgz2wrGA","pose":{"center":{"x":-4.7825622998827129,"y":-3.6454212279853362},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["A3h29Z2RECjLiMZL85ZfCZ/3bd6evhN5qGHwvQVBHrAnX","A3h29Z2RECjLiMZL85ZfCZ/EL9mw84DiUiE4hdKRbywVE","7R2Z1QpznMLufj2rsUw5q5/2dtsvGrvUzW47GKB9Whp5m","7R2Z1QpznMLufj2rsUw5q5/249fMYoZnp83PEwU9hgbJp","7R2Z1QpznMLufj2rsUw5q5/84FdozgB6n5CbQ5yUaTChF","9usVbKZ7QpQqddvQtPgJBc/88yyoxSEmf4aUjJUGQRHbX","9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","AnFmVeWs5C1x5ZuHHpf6vV/6Jhv1zHNyie2BpKYKWyx9F","AnFmVeWs5C1x5ZuHHpf6vV/CyV6Emr8QL3Tr2dtCRXJum","9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","77nSKnDe7MeGYsyZMCwcxr/88yyoxSEmf4aUjJUGQRHbX","77nSKnDe7MeGYsyZMCwcxr/2LxwweqFNEEjCqsWtbXLw8","8m61X3RXkyLesExgz2wrGA/8QhojHF2fzroox347dx9Kw","8m61X3RXkyLesExgz2wrGA/5e5Ld1bqfWH42N6BrfmcUy","8m61X3RXkyLesExgz2wrGA/BWEKdqfsPpBrvPBWpn8ZA2","8m61X3RXkyLesExgz2wrGA/DyMnAWs9qaaBrRyLsdDUGk","6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","EcLdz4H3yjpw2x6PqBebdD/88yyoxSEmf4aUjJUGQRHbX","EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","B2rjcDuioM877xmyYkTmXo/3bd6evhN5qGHwvQVBHrAnX","B2rjcDuioM877xmyYkTmXo/EL9mw84DiUiE4hdKRbywVE","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","8VvLEdgpKAQe7YfsFDSzgh/3bd6evhN5qGHwvQVBHrAnX","8VvLEdgpKAQe7YfsFDSzgh/EL9mw84DiUiE4hdKRbywVE","D89ACc7xJQykdg4Dh1A3V7/rp1xna1JgPguTNc7Mdp9f","DmR6sNit5G9pTyKT3TBeQc/3bd6evhN5qGHwvQVBHrAnX","DmR6sNit5G9pTyKT3TBeQc/EL9mw84DiUiE4hdKRbywVE","FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","FT4pxFBh14a61jaK6UdDfM/EWPFMLZ3Dea5nQzF4xP2Gh","FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","FT4pxFBh14a61jaK6UdDfM/7g64Kq3nes1cJrAZGSVYKz","75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","75dACL9SDaiVFRXgczJdD8/2LxwweqFNEEjCqsWtbXLw8","5DjR2uZVerwXVQtxsGGubf/88yyoxSEmf4aUjJUGQRHbX","5DjR2uZVerwXVQtxsGGubf/2LxwweqFNEEjCqsWtbXLw8","F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX","8WBCGnBP9JAB789hNHWyB5/2LxwweqFNEEjCqsWtbXLw8","CUU84XFACmadAff3nCSfRp/rp1xna1JgPguTNc7Mdp9f","EVnbJQbBxw1eUEYRni6Wch/6QnEn6Vmc31tEG8Cb9s7X8","EVnbJQbBxw1eUEYRni6Wch/87LDCrTQi3NQLEaX6fB1Jr","7YP3vuY4RRXx4AhWfiNqKS/EH6S1TnCRw8fe4FZa7ekqW","7YP3vuY4RRXx4AhWfiNqKS/2DFtmf9Gxd3taKZnKhszUP","7YP3vuY4RRXx4AhWfiNqKS/FGCBL9dGqLSUprFP68B9of","7YP3vuY4RRXx4AhWfiNqKS/5yU4RdGC2T7U8DNDgPvAFS","7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","7YP3vuY4RRXx4AhWfiNqKS/Gej4tp5h73rLSC7T9Y3aev","FEr47X6dCYqq2xKBb1kRFq/9yxFqg3qXfG2xKXLeyjxft","FEr47X6dCYqq2xKBb1kRFq/4KFt6TJWBiwftqzpt1Xr12","FEr47X6dCYqq2xKBb1kRFq/6DsRgbfz5gefkV5Cs6W3G5","FEr47X6dCYqq2xKBb1kRFq/33vGxvTePDAn6c6SYp1Kbx","FEr47X6dCYqq2xKBb1kRFq/6eQ3kQHJgUbiwMUFBxZiq2","FEr47X6dCYqq2xKBb1kRFq/8RtrLyWJnsRetdte9rJ4TH","FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","FEr47X6dCYqq2xKBb1kRFq/AccF3YNg5414BqdWPcT43T","FEr47X6dCYqq2xKBb1kRFq/x8VjT1A6XpgprfTD7WEwE","FEr47X6dCYqq2xKBb1kRFq/EMsjqHXMWzCrP9A1bJCHys","FEr47X6dCYqq2xKBb1kRFq/iSPdYYoLMUFrfECtVbbw6","FEr47X6dCYqq2xKBb1kRFq/tRVAnbEkQMJR9toFYxH2Y","FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","FEr47X6dCYqq2xKBb1kRFq/5UVtn8WhcCUrF1imUB9B5c","FEr47X6dCYqq2xKBb1kRFq/A5YxZCsePKsCahVaRnSrjn","FEr47X6dCYqq2xKBb1kRFq/B3RrovgnUSjnUYcKERZEb","FEr47X6dCYqq2xKBb1kRFq/BGci5hqhQLcn4XaaP23NzX","FEr47X6dCYqq2xKBb1kRFq/C6nfBM5AVtLShdneZKc72Z","FEr47X6dCYqq2xKBb1kRFq/4kSFcWXY1kxc3Hpg4MsRFG","FEr47X6dCYqq2xKBb1kRFq/FNfFCCiQKbgWjyRrCJgEVE","FEr47X6dCYqq2xKBb1kRFq/FD3cigPghTcptiwBkzg56r","FEr47X6dCYqq2xKBb1kRFq/AKvtN6xQKoomL5AparfbAo","FEr47X6dCYqq2xKBb1kRFq/3qUmwHx5xpM2u9qXCbEtE3","FEr47X6dCYqq2xKBb1kRFq/7y7YXsFNyyr5heai3dV9Mp","FEr47X6dCYqq2xKBb1kRFq/56N2PXpipE8m7q5KhXMcr2","FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","FEr47X6dCYqq2xKBb1kRFq/9K35oSDzDk8viDDn1pTEFg","FEr47X6dCYqq2xKBb1kRFq/2evkmfn8SpL91QBbefyNjz","FEr47X6dCYqq2xKBb1kRFq/473Z1Rts63cF79SMBBqThj","FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh","FEr47X6dCYqq2xKBb1kRFq/ARfh82Zei6N8jMB346B71w","FEr47X6dCYqq2xKBb1kRFq/4UENBX5zKxuEhW4wDjGPRB","FEr47X6dCYqq2xKBb1kRFq/BccBtdMixJFk7gBvF7VwFq","FEr47X6dCYqq2xKBb1kRFq/yPjGLX25dmNm7PnXe31PZ","FEr47X6dCYqq2xKBb1kRFq/BXBPvfUdFDNVCUzTuYGisz","FEr47X6dCYqq2xKBb1kRFq/6hZVMRNDpKUhYnBPFKjhAs","FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff","FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","FEr47X6dCYqq2xKBb1kRFq/8J67Px9wjoZi97krZzc3gp","FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT","FEr47X6dCYqq2xKBb1kRFq/FJA6YFyaEZ8Mqicx7mGBUM","FEr47X6dCYqq2xKBb1kRFq/Anc3xsgxcxCBeu3dDucPzT","GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","6UkTHKpQvqmDsqkXeN9e3R/88yyoxSEmf4aUjJUGQRHbX","6UkTHKpQvqmDsqkXeN9e3R/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/88yyoxSEmf4aUjJUGQRHbX","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","FshjgLMYkKo69oJh6uLstr/6QnEn6Vmc31tEG8Cb9s7X8","FshjgLMYkKo69oJh6uLstr/87LDCrTQi3NQLEaX6fB1Jr","4TMLddbiXPVWvD7NSw5XXn/88yyoxSEmf4aUjJUGQRHbX","4TMLddbiXPVWvD7NSw5XXn/2LxwweqFNEEjCqsWtbXLw8","656q9PiEkQzQr9tinkLxrZ/6QnEn6Vmc31tEG8Cb9s7X8","656q9PiEkQzQr9tinkLxrZ/87LDCrTQi3NQLEaX6fB1Jr","3HfeEALJYFNctitkdZqmhv/4M32voPjQ4ujDnVkcwNkbB","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","3HfeEALJYFNctitkdZqmhv/7eLMrp81n94xgV3ZcqewUk"]},"routes":[{"id":"2PZHty5vr77e2MXu7DqZhV","layer":0,"start":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","end":"656q9PiEkQzQr9tinkLxrZ/87LDCrTQi3NQLEaX6fB1Jr","sketch":{"start":{"reference-side":"top","position":{"x":1.2231405486911446,"y":4.8656221488028013}},"turns":[{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"cw"},{"position":{"x":8.8764292548656218,"y":1.5585396872344046},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":2.6034493481999439,"y":-2.8355716514088427}}}},{"id":"5bTAgVXYmBi3yoLun8RRuf","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","end":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","sketch":{"start":{"reference-side":"top","position":{"x":-10.492828589745391,"y":-7.6672296874871124}},"turns":[{"position":{"x":-5.3250891622199941,"y":-0.30952154902400331},"turn":"cw"},{"position":{"x":-3.8763412050777686,"y":0.82492985726544177},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}}}},{"id":"5aEScgHAa69zVUwZ1Se1mJ","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo","end":"F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-11.762828589745373,"y":-7.6672296874871124}},"turns":[{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-12.459922139577628,"y":-2.7273909113530985},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-11.57002159772286,"y":1.2702788162961163}}}},{"id":"C7tCp9MdrEJcAY4XNjLoT9","layer":0,"start":"DmR6sNit5G9pTyKT3TBeQc/EL9mw84DiUiE4hdKRbywVE","end":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","sketch":{"start":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}},"turns":[{"position":{"x":-5.0041273954751464,"y":10.877412929578623},"turn":"ccw"},{"position":{"x":-7.1188852553540132,"y":7.27732917720259},"turn":"ccw"},{"position":{"x":-7.1188852553540132,"y":6.30760674097579},"turn":"ccw"},{"position":{"x":-6.5359956019103951,"y":5.3926442469821376},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}}}},{"id":"BCx2ZZcfihBxkB1yNHQi2w","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/4UENBX5zKxuEhW4wDjGPRB","end":"8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-2.4041353998581632,"y":1.5859539382749279}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.9331228274846113,"y":-4.5713015002266193}}}},{"id":"8nELxBJcG7Kvmu25n1YTd3","layer":0,"start":"77nSKnDe7MeGYsyZMCwcxr/2LxwweqFNEEjCqsWtbXLw8","end":"656q9PiEkQzQr9tinkLxrZ/87LDCrTQi3NQLEaX6fB1Jr","sketch":{"start":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.38084897250667127}},"turns":[],"end":{"reference-side":"top","position":{"x":2.6034493481999439,"y":-2.8355716514088427}}}},{"id":"3wNH8zaFnynxFhjUEEU8rK","layer":0,"start":"8m61X3RXkyLesExgz2wrGA/BWEKdqfsPpBrvPBWpn8ZA2","end":"B2rjcDuioM877xmyYkTmXo/EL9mw84DiUiE4hdKRbywVE","sketch":{"start":{"reference-side":"top","position":{"x":-3.5685622998826574,"y":-2.6814212279853944}},"turns":[{"position":{"x":-5.7685622998825892,"y":-4.3814212279853262},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-6.2430910389157619,"y":-6.0682147885329574}}}},{"id":"AhXiBJEyJv6qk9NB98tWrA","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","end":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-7.6858107519837144,"y":4.28490431707386}},"turns":[],"end":{"reference-side":"top","position":{"x":-10.104653632078824,"y":1.2702788162961163}}}},{"id":"EpLJtasEKx98F21ZErzmwd","layer":0,"start":"B2rjcDuioM877xmyYkTmXo/3bd6evhN5qGHwvQVBHrAnX","end":"8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-5.3233686026889622,"y":-6.0682147885329574}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.9331228274846113,"y":-4.5713015002266193}}}},{"id":"BRJAiuN6C2UDioxBMTYJdB","layer":0,"start":"75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","end":"8m61X3RXkyLesExgz2wrGA/BWEKdqfsPpBrvPBWpn8ZA2","sketch":{"start":{"reference-side":"top","position":{"x":-5.3250891622199941,"y":-0.30952154902400331}},"turns":[],"end":{"reference-side":"top","position":{"x":-3.5685622998826574,"y":-2.6814212279853944}}}},{"id":"EUjD9WoEAEjkQc88dXfA3d","layer":0,"start":"DmR6sNit5G9pTyKT3TBeQc/3bd6evhN5qGHwvQVBHrAnX","end":"EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-5.0041273954751464,"y":10.877412929578623}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.6979882274922513,"y":8.30434331438402}}}},{"id":"4raFpQhN8pPRpHCUVhWAy6","layer":0,"start":"A3h29Z2RECjLiMZL85ZfCZ/EL9mw84DiUiE4hdKRbywVE","end":"7R2Z1QpznMLufj2rsUw5q5/2dtsvGrvUzW47GKB9Whp5m","sketch":{"start":{"reference-side":"top","position":{"x":1.626657650841592,"y":0.69978634799225625}},"turns":[],"end":{"reference-side":"top","position":{"x":4.1077236680195739,"y":1.1596475661056571}}}},{"id":"DA7pR4sYPat16if1sQ1E1i","layer":0,"start":"EVnbJQbBxw1eUEYRni6Wch/87LDCrTQi3NQLEaX6fB1Jr","end":"FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","sketch":{"start":{"reference-side":"top","position":{"x":7.1565952629541849,"y":-2.8395338471574223}},"turns":[],"end":{"reference-side":null,"position":{"x":8.9990591481597733,"y":-1.2441827696575491}}}},{"id":"6ZfvNmkPFUYG6C1o2FPVGS","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","end":"656q9PiEkQzQr9tinkLxrZ/87LDCrTQi3NQLEaX6fB1Jr","sketch":{"start":{"reference-side":"top","position":{"x":2.5606192424778627,"y":-5.0372209332639493}},"turns":[],"end":{"reference-side":"top","position":{"x":2.6034493481999439,"y":-2.8355716514088427}}}},{"id":"8VQwNWHHzu9mJwU78Fqpjv","layer":0,"start":"EVnbJQbBxw1eUEYRni6Wch/87LDCrTQi3NQLEaX6fB1Jr","end":"3HfeEALJYFNctitkdZqmhv/4M32voPjQ4ujDnVkcwNkbB","sketch":{"start":{"reference-side":"top","position":{"x":7.1565952629541849,"y":-2.8395338471574223}},"turns":[],"end":{"reference-side":"top","position":{"x":7.159619242477909,"y":-5.0372209332639493}}}},{"id":"8U2w9f7JY6nG1xDiQuUXqP","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/8RtrLyWJnsRetdte9rJ4TH","end":"A3h29Z2RECjLiMZL85ZfCZ/3bd6evhN5qGHwvQVBHrAnX","sketch":{"start":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":2.3959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":1.6266576508415922,"y":1.619508784219057}}}},{"id":"GBSFQtyo7GMiN6mBjsNNUo","layer":0,"start":"B2rjcDuioM877xmyYkTmXo/3bd6evhN5qGHwvQVBHrAnX","end":"8m61X3RXkyLesExgz2wrGA/8QhojHF2fzroox347dx9Kw","sketch":{"start":{"reference-side":"top","position":{"x":-5.3233686026889622,"y":-6.0682147885329574}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.7685622998825892,"y":-4.3814212279853262}}}},{"id":"pyWka9Bz97LVM6Xe9UyvR","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","end":"FshjgLMYkKo69oJh6uLstr/6QnEn6Vmc31tEG8Cb9s7X8","sketch":{"start":{"reference-side":null,"position":{"x":8.3649671713528342,"y":-4.6984842540798315}},"turns":[],"end":{"reference-side":"top","position":{"x":9.1221844936445979,"y":-6.2162029073322715}}}},{"id":"8Wu7hRWSXD1PTJJJvFqujs","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","end":"AnFmVeWs5C1x5ZuHHpf6vV/CyV6Emr8QL3Tr2dtCRXJum","sketch":{"start":{"reference-side":null,"position":{"x":8.5747840584332,"y":4.6860528771510914}},"turns":[],"end":{"reference-side":"top","position":{"x":8.6066092382763184,"y":6.0040116135361616}}}},{"id":"8KyKYeDHDJktYgd1C7cVc1","layer":0,"start":"DmR6sNit5G9pTyKT3TBeQc/EL9mw84DiUiE4hdKRbywVE","end":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.9434110080554206,"y":10.861226687558418}}}},{"id":"4yV4GLA7RPdZtYQ6yz71Ry","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","end":"4TMLddbiXPVWvD7NSw5XXn/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-6.5359956019103951,"y":5.3926442469821376}},"turns":[],"end":{"reference-side":"top","position":{"x":-7.1188852553540132,"y":6.30760674097579}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["AhXiBJEyJv6qk9NB98tWrA"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["BkRJVxF1nykkxDhXwmKBRw"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["AUov54v6Pvb2KgnqJdUEFg"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["C7tCp9MdrEJcAY4XNjLoT9"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[{"id":"7nvc8Rg6FKACeHwYY8aRoE","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","end":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","sketch":{"start":{"reference-side":"top","position":{"x":-7.6858107519837144,"y":4.28490431707386}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","DmR6sNit5G9pTyKT3TBeQc/3bd6evhN5qGHwvQVBHrAnX","DmR6sNit5G9pTyKT3TBeQc/EL9mw84DiUiE4hdKRbywVE","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[{"id":"CVB8kHLx8YvPx24bXpXdrg","layer":0,"start":"DmR6sNit5G9pTyKT3TBeQc/EL9mw84DiUiE4hdKRbywVE","end":"9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}},"turns":[{"position":{"x":-5.0041273954751464,"y":10.877412929578623},"turn":"ccw"},{"position":{"x":-7.1188852553540132,"y":7.27732917720259},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-7.6858107519837144,"y":4.28490431707386}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy"]},"routes":[{"id":"5qgZEsicQ4g9azy2bt8nAK","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"cw"},{"position":{"x":-7.6858107519837144,"y":4.28490431707386},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8608572665970069,"y":9.2038368117934333}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW"]},"routes":[{"id":"GWMcFSngpDEPf9dTgd5Jn3","layer":0,"start":"6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","end":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","sketch":{"start":{"reference-side":"top","position":{"x":-9.8594476378989491,"y":11.498800963047469}},"turns":[{"position":{"x":-7.6858107519837144,"y":4.28490431707386},"turn":"ccw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["2TtfCo3u1C369a3Dc36cPQ/3bd6evhN5qGHwvQVBHrAnX","FT4pxFBh14a61jaK6UdDfM/8jeM3LD3mn3XBjfsNNRZVb"]},"routes":[{"id":"DSeVSvKjQCz85PKJbbQfGW","layer":1,"start":"2TtfCo3u1C369a3Dc36cPQ/3bd6evhN5qGHwvQVBHrAnX","end":"FT4pxFBh14a61jaK6UdDfM/8jeM3LD3mn3XBjfsNNRZVb","sketch":{"start":{"reference-side":"bottom","position":{"x":8.0020511433576758,"y":0.061135019415902381}},"turns":[],"end":{"reference-side":null,"position":{"x":9.9374999999999787,"y":1.25}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["5bTAgVXYmBi3yoLun8RRuf"]}}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f"]},"routes":[{"id":"5qeHceKtdsM9MWvrwLUdnW","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-12.889572953457261,"y":-0.88576194395744134}},"turns":[{"position":{"x":-12.646050442563563,"y":11.484151515820521},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8608572665970069,"y":9.2038368117934333}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"CRqugKMxbJ5P6YQrGZgZKg","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","end":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","sketch":{"start":{"reference-side":"top","position":{"x":2.5606192424778627,"y":-5.0372209332639493}},"turns":[],"end":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}}}}]}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.2062399956240606,"y":8.867604833860538},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["6JYgiNkCR4GZbz5o6MfT2V"]}}, + {"operation":"route","request":{"layer":0,"pads":["GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"G82jCGapcCNfRfJKgERtMB","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","end":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-2.9434110080554206,"y":10.861226687558418}},"turns":[{"position":{"x":0.77777883561398875,"y":6.4613744147425507},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.2231405486911446,"y":4.8656221488028013}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["CXSubPNzRUNDhiBEPNLcPi"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"2QW2MhKSRbVJa8KHJqd7yh","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","end":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-2.9041353998581632,"y":7.2049539382749561}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.9434110080554206,"y":10.861226687558418}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["G82jCGapcCNfRfJKgERtMB"]}}, + {"operation":"route","request":{"layer":0,"pads":["GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"i3f75hb3RNS4nboEV1BbA","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","end":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-2.9434110080554206,"y":10.861226687558418}},"turns":[{"position":{"x":0.77777883561398875,"y":6.4613744147425507},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.2231405486911446,"y":4.8656221488028013}}}}]}, + {"operation":"place","place":{"placements":[{"id":"8m61X3RXkyLesExgz2wrGA","pose":{"center":{"x":-4.7825622998827129,"y":-3.6454212279853362},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8m61X3RXkyLesExgz2wrGA","pose":{"center":{"x":-4.2155260095601337,"y":-3.4060059054046916},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["EpLJtasEKx98F21ZErzmwd"]}}, + {"operation":"route","request":{"layer":0,"pads":["8m61X3RXkyLesExgz2wrGA/8QhojHF2fzroox347dx9Kw","8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"3DRwSNtM3GK8gnsmA2gfoo","layer":0,"start":"8m61X3RXkyLesExgz2wrGA/8QhojHF2fzroox347dx9Kw","end":"8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-3.4795260095601437,"y":-4.3920059054045684}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.9331228274846113,"y":-4.5713015002266193}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["BCx2ZZcfihBxkB1yNHQi2w"]}}, + {"operation":"route","request":{"layer":0,"pads":["8m61X3RXkyLesExgz2wrGA/8QhojHF2fzroox347dx9Kw","FEr47X6dCYqq2xKBb1kRFq/4UENBX5zKxuEhW4wDjGPRB"]},"routes":[{"id":"FeHu1S9gp1rPW5wFpPM39T","layer":0,"start":"8m61X3RXkyLesExgz2wrGA/8QhojHF2fzroox347dx9Kw","end":"FEr47X6dCYqq2xKBb1kRFq/4UENBX5zKxuEhW4wDjGPRB","sketch":{"start":{"reference-side":"top","position":{"x":-3.4795260095601437,"y":-4.3920059054045684}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["i3f75hb3RNS4nboEV1BbA"]}}, + {"operation":"route","request":{"layer":0,"pads":["GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"AqbJiXczpuRAiDoFTHwPGm","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","end":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-2.9434110080554206,"y":10.861226687558418}},"turns":[{"position":{"x":0.77777883561398875,"y":6.4613744147425507},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.2231405486911446,"y":4.8656221488028013}}}}]} + ] +} \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/design-info/physical-layout.design~ b/sd_card_reader/designs/jitx-design/design-info/physical-layout.design~ new file mode 100644 index 0000000..79c4798 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/design-info/physical-layout.design~ @@ -0,0 +1,635 @@ +{ + "operations": [ + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":27.482200040817226,"y":-13.009021},"angle":0,"flipx":false},"side":"top"},{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":27.482200040817226,"y":-9.3026210823974615},"angle":180,"flipx":false},"side":"top"},{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":27.482200040817226,"y":-7.4244205513916022},"angle":180,"flipx":false},"side":"top"},{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":27.482200040817226,"y":-11.180820898147584},"angle":180,"flipx":false},"side":"top"},{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":23.452499999999965,"y":-8.5770213166198737},"angle":270,"flipx":false},"side":"top"},{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":41.988379264358571,"y":-10.049420730205537},"angle":90,"flipx":false},"side":"top"},{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":42.025879168991139,"y":-11.152620927425385},"angle":90,"flipx":false},"side":"top"},{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":36.02557900000005,"y":-9.2744211116752631},"angle":90,"flipx":false},"side":"top"},{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":41.993379378799489,"y":-12.255820886226655},"angle":90,"flipx":false},"side":"top"},{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":36.778779054168751,"y":-11.868320838542939},"angle":180,"flipx":false},"side":"top"},{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":37.1287791972199,"y":-13.359021023841859},"angle":90,"flipx":false},"side":"top"},{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":34.572378957752278,"y":-12.969021038146973},"angle":0,"flipx":false},"side":"top"},{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":40.1501791720429,"y":-12.255820886226655},"angle":270,"flipx":false},"side":"top"},{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":37.868779206756642,"y":-9.2744211116752631},"angle":90,"flipx":false},"side":"top"},{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":36.065578961853078,"y":-10.377621070476533},"angle":90,"flipx":false},"side":"top"},{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":41.240179324630788,"y":-8.5462206760368353},"angle":0,"flipx":false},"side":"top"},{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":43.735779071334889,"y":-3.8584207454643256},"angle":180,"flipx":false},"side":"top"},{"id":"8VvLEdgpKAQe7YfsFDSzgh","pose":{"center":{"x":40.11017921018987,"y":-11.152620927425385},"angle":270,"flipx":false},"side":"top"},{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":44.85957934904485,"y":-9.4596208492240912},"angle":90,"flipx":false},"side":"top"},{"id":"DmR6sNit5G9pTyKT3TBeQc","pose":{"center":{"x":35.675579095367482,"y":-13.009021},"angle":0,"flipx":false},"side":"top"},{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":40.147679591659596,"y":-10.049420730205537},"angle":270,"flipx":false},"side":"top"},{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":37.75157907057195,"y":-4.4980205455741888},"angle":0,"flipx":false},"side":"top"},{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":39.749479556564381,"y":-8.946220771404267},"angle":270,"flipx":false},"side":"top"},{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":38.269479060653737,"y":-12.255820886226655},"angle":90,"flipx":false},"side":"top"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":54.559758071334883,"y":-13.009021},"angle":270,"flipx":false},"side":"top"},{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":54.559758071334883,"y":-10.265821413131714},"angle":0,"flipx":false},"side":"top"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":57.302957658203169,"y":-10.265821413131714},"angle":0,"flipx":false},"side":"top"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":57.302957658203169,"y":-13.009021},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":2.5198374033280082,"y":-6.0953138953649519},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":2.5198374033280073,"y":-6.0953138953649528},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":2.5198374033280073,"y":-6.0953138953649528},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":4.0843920819452411,"y":-8.0914698646352168},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":6.3337367988187552,"y":-1.2100968826531506},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":1.7479730856303135,"y":-1.1460908904646363},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-6.2220703217533284,"y":2.4537481303362378},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.30491757911564,"y":2.0760970010148365},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.0081916917916827,"y":2.2109724043439085},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.0081916917916836,"y":2.2109724043439094},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.0081916917916836,"y":2.2109724043439094},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.0621418531233129,"y":3.1011500663157836},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":3.5471767863193335,"y":5.6446097847720136},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":4.0431076103274712,"y":5.5301642100009047},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":-6.06870142409857,"y":-4.7673522836086306},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.0621418531233129,"y":3.1011500663157836},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-5.0621418531233129,"y":3.1011500663157836},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-4.2259143524830671,"y":4.50385426093813},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.820161836536245,"y":4.0735098540469288},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FEr47X6dCYqq2xKBb1kRFq","pose":{"center":{"x":-2.9041353998581632,"y":4.3959539382748734},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.469485787880657,"y":4.1544350960443719},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":-5.3133991654557677,"y":-3.6883490569760555},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":5.271863869910689,"y":9.2662233478041891},"angle":0,"flipx":false},"side":"top"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":5.271863869910689,"y":6.523023760935903},"angle":270,"flipx":false},"side":"top"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":8.0150634567789751,"y":9.2662233478041891},"angle":0,"flipx":false},"side":"top"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":8.0150634567789751,"y":6.523023760935903},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":8.0150634567789751,"y":9.2662233478041891},"angle":0,"flipx":true},"side":"bottom"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":8.0150634567789751,"y":6.523023760935903},"angle":90,"flipx":true},"side":"bottom"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":5.271863869910689,"y":9.2662233478041891},"angle":0,"flipx":true},"side":"bottom"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":5.271863869910689,"y":6.523023760935903},"angle":0,"flipx":true},"side":"bottom"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":5.8113654832269752,"y":12.017681575717255},"angle":0,"flipx":true},"side":"bottom"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":8.3927145861003751,"y":11.478179962400967},"angle":0,"flipx":true},"side":"bottom"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":5.271863869910689,"y":11.478179962400967},"angle":0,"flipx":false},"side":"top"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":5.649514999232089,"y":6.523023760935903},"angle":270,"flipx":false},"side":"top"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":7.8532129727840889,"y":12.017681575717255},"angle":0,"flipx":false},"side":"top"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":8.3927145861003751,"y":6.523023760935903},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":8.3927145861003751,"y":11.478179962400967},"angle":0,"flipx":true},"side":"bottom"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":8.0150634567789751,"y":6.523023760935903},"angle":90,"flipx":true},"side":"bottom"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":5.8113654832269752,"y":12.017681575717255},"angle":0,"flipx":true},"side":"bottom"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":5.271863869910689,"y":6.523023760935903},"angle":0,"flipx":true},"side":"bottom"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":5.271863869910689,"y":11.478179962400967},"angle":0,"flipx":false},"side":"top"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":5.649514999232089,"y":6.523023760935903},"angle":270,"flipx":false},"side":"top"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":7.8532129727840889,"y":12.017681575717255},"angle":0,"flipx":false},"side":"top"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":8.3927145861003751,"y":6.523023760935903},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":8.3927145861003751,"y":11.478179962400967},"angle":0,"flipx":true},"side":"bottom"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":8.0150634567789751,"y":6.523023760935903},"angle":90,"flipx":true},"side":"bottom"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":5.8113654832269752,"y":12.017681575717255},"angle":0,"flipx":true},"side":"bottom"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":5.271863869910689,"y":6.523023760935903},"angle":0,"flipx":true},"side":"bottom"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":5.271863869910689,"y":11.478179962400967},"angle":0,"flipx":false},"side":"top"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":5.649514999232089,"y":6.523023760935903},"angle":270,"flipx":false},"side":"top"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":7.8532129727840889,"y":12.017681575717255},"angle":0,"flipx":false},"side":"top"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":8.3927145861003751,"y":6.523023760935903},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":16.431288624513058,"y":8.1954787622163927},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":10.173069910044125,"y":8.5731298915377927},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":9.0940666834115511,"y":7.9257279555582478},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":8.6085152314268925,"y":7.1164755355838167},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-8.2156764629964965,"y":19.085152710160621},"angle":0,"flipx":false},"side":"top"},{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-7.8380253336750965,"y":14.129996508695555},"angle":270,"flipx":false},"side":"top"},{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-5.6343273601230965,"y":19.624654323476907},"angle":0,"flipx":false},"side":"top"},{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":-4.879025101480293,"y":14.723448283343469},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.046137917542138,"y":12.295691023420179},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.046137917542138,"y":12.295691023420179},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.154038240205397,"y":12.025940216762036},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-9.1867793669658138,"y":12.017681575717255},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-6.2277791347710121,"y":11.963731414385627},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":-3.2065701001998024,"y":11.918039894098776},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-11.791627253430217,"y":12.226219972611476},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-8.7862198552669319,"y":12.208424200335768},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":-2.7106392761916638,"y":12.251839487181178},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-5.7413854419938,"y":12.2498453513134},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":-2.7274987016077974,"y":12.265327027514084},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-5.72469546233968,"y":12.271303896582983},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-8.7322696939353026,"y":12.267432189292236},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-11.727462177819607,"y":12.279351977429624},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.314965873835078,"y":4.9413196568703484},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-11.008987401196944,"y":1.4569270294629346},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":-3.6139690835094624,"y":-4.8482775256060737},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.658311352541357,"y":-0.51225385914151444},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.280660223219956,"y":-1.1326807144552449},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.314965873835078,"y":4.9413196568703484},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.314965873835078,"y":4.9413196568703484},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.314965873835078,"y":4.9413196568703484},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.314965873835078,"y":4.9413196568703484},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.7155253855339589,"y":5.4372504808784861},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-5.1100795906849115,"y":8.7494321453699584},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-5.3528553166772408,"y":8.9450014801971136},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.9954354978552,"y":8.9180263995312981},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.9954354978552,"y":8.9180263995312981},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.9954354978552,"y":8.9180263995312981},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.9347415663571184,"y":9.0259267221945549},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-1.5388761062990639,"y":9.1596148139328371},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":41.648228039669739,"y":-11.152620927425385},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.4830039296025674,"y":9.6181911852516784},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.3971697485242358,"y":9.3988371669403854},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.8942789453583968,"y":8.8505886978667618},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.4174010590235966,"y":8.8593355536240974},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.4106572888571431,"y":8.8323604729582836},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-7.2990743029076413,"y":2.837735551600419},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-7.2990743029076413,"y":2.837735551600419},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-7.2990743029076413,"y":2.837735551600419},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-7.3799995449050844,"y":3.019817346094666},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-7.3799995449050844,"y":3.019817346094666},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-9.605443699834769,"y":4.7866851297055071},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-3.6783363051912445,"y":10.275270430579244},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":42.763353129316549,"y":-13.190459746857377},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.266963791135895,"y":5.8053326176341749},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.23903018049117,"y":8.7336966220705534},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.090667236829191,"y":9.2866857757197465},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.225542640158261,"y":8.9292659568977086},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.300682641968162,"y":6.2639089889530188},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.33998821492937,"y":9.28213981244196},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.272071248275386,"y":6.2686775545684821},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.269178628181608,"y":9.2652803870258253},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-12.271258269322139,"y":12.272460944620493},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":-8.7429416900844,"y":12.238351946848271},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-8.7354430609599252,"y":9.2517928466929185},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.25858370794248,"y":9.2898865891396909},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-3.6252531779062238,"y":10.766813905228068},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-3.6252531779062238,"y":10.766813905228068},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-3.6252531779062238,"y":10.766813905228068},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-3.6252531779062238,"y":10.766813905228068},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-2.4922997899420207,"y":10.861226687558418},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":2.0232613666741059,"y":4.2684408557735658},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":34.366693967675445,"y":-12.915070876815346},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":1.8077716040375051,"y":4.3220056686400348},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":1.8077716040375051,"y":4.3220056686400348},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":1.9699028349632426,"y":4.8751592800337269},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-1.5552165792687163,"y":-0.68781115677490412},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-1.5552165792687163,"y":-0.68781115677490412},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-1.5552165792687163,"y":-0.68781115677490412},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-1.5552165792687163,"y":-0.68781115677490412},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-1.8842476067356542,"y":-0.029749101841028414},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.35912737782558679,"y":-2.1016711977939107},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.0626984162508628,"y":-1.1365537592337107},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":-6.3797371404779248,"y":-8.4723873933578524},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.570921055362307,"y":-2.3186605972632042},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.570921055362307,"y":-2.3186605972632042},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.570921055362307,"y":-2.3186605972632042},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.5518467929004554,"y":-2.46171756572709},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.5518467929004554,"y":-2.46171756572709},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.5518467929004554,"y":-2.46171756572709},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.4564754805911981,"y":-2.1279179726446893},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":10.277215300227201,"y":6.8854347477110807},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":9.7431359512953613,"y":-6.9666382523071668},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":11.192779898396072,"y":-7.229519474059007},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":11.192779898396072,"y":-7.229519474059007},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":11.192779898396072,"y":-7.229519474059007},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":11.345373998090883,"y":-7.0387768494404925},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":11.192779898396072,"y":-7.229519474059007},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":11.80315629717532,"y":-6.962479799593086},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"DmR6sNit5G9pTyKT3TBeQc","pose":{"center":{"x":-4.8005294436869832,"y":11.295526679898746},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"DmR6sNit5G9pTyKT3TBeQc","pose":{"center":{"x":-4.8005294436869832,"y":11.295526679898746},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"DmR6sNit5G9pTyKT3TBeQc","pose":{"center":{"x":-4.5442661773617461,"y":10.877412929578623},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.8403287840267675,"y":8.81012607686804},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.9212540260242106,"y":8.8505886978667618},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-12.521170864286468,"y":4.6533905726970808},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":37.546892947540023,"y":-13.251120701178602},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-10.97803075541011,"y":6.3572211096047067},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-9.52108553751512,"y":-7.3155869086071252},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-9.52108553751512,"y":-7.3155869086071252},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-9.52108553751512,"y":-7.3155869086071252},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-9.9693307053686286,"y":-7.3060497773761988},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-9.85488513059752,"y":-7.2679012524524955},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-5.1862896183465,"y":-11.769938471687798},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-5.1862896183465,"y":-11.769938471687798},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-5.5167343565027265,"y":-11.837376173352334},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-21.7694362594099,"y":-7.8629256894982538},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-4.4514344719570786,"y":-1.8205076203558361},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-3.5005628784871221,"y":-0.84266094622006538},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-3.1229117491657208,"y":-0.4650098168986645},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-3.1229117491657208,"y":-0.4650098168986645},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-3.2982497734935139,"y":-0.31664687323668561},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-3.2982497734935139,"y":-0.31664687323668567},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-3.8512389271427083,"y":-0.47849735723157183},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-4.3367903791273665,"y":-0.77522324455553},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-4.3367903791273665,"y":-0.77522324455553},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-4.41771562112481,"y":-1.0179989705478594},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":24.254315289277621,"y":-17.253277651231738},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.833622309745614,"y":4.1436643280743546},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.833622309745614,"y":4.1436643280743546},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.833622309745614,"y":4.1436643280743546},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.833622309745614,"y":4.1436643280743546},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.658284285417821,"y":4.1571518684072615},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.658284285417821,"y":4.1571518684072615},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-13.118782672101533,"y":4.2785397314034261},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.9852761921921021,"y":6.5836914091755974},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-7.9599637792200912,"y":4.5843720247118993},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.746897588874738,"y":4.1436643280743546},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.746897588874738,"y":4.1436643280743546},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.746897588874738,"y":4.1436643280743546},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.69294742754311,"y":4.6292157800590132},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8VvLEdgpKAQe7YfsFDSzgh","pose":{"center":{"x":18.785153777839927,"y":-8.7492638572321},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8VvLEdgpKAQe7YfsFDSzgh","pose":{"center":{"x":-1.8531982058833627,"y":-4.8962628399381023},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8VvLEdgpKAQe7YfsFDSzgh","pose":{"center":{"x":-1.8666857462162696,"y":-5.3683267515898532},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-6.5397908534414739,"y":-0.28444152918073584},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"via-create","via":{"id":"FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","origin":"FT4pxFBh14a61jaK6UdDfM/5W8eqEnKRPd2ce9WiDgNPA","route-layer":1,"instance":"FT4pxFBh14a61jaK6UdDfM","relative":{"x":4.6984842540798315,"y":7.7350328286471672}},"route":[{"id":"CMR9qF55Sh9ypHi9RhtqGt","layer":1,"start":"FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","end":"FT4pxFBh14a61jaK6UdDfM/5W8eqEnKRPd2ce9WiDgNPA","sketch":{"start":{"reference-side":null,"position":{"x":8.3649671713528342,"y":-4.6984842540798315}},"turns":[],"end":{"reference-side":null,"position":{"x":10.387500000000024,"y":-4.7000000000000455}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","origin":"FT4pxFBh14a61jaK6UdDfM/8aujbv7W9yEY8mhAzSwzfd","route-layer":1,"instance":"FT4pxFBh14a61jaK6UdDfM","relative":{"x":-4.6860528771510914,"y":7.5252159415668007}},"route":[{"id":"ApWyzxJ74TNyr7PkQLPD3N","layer":1,"start":"FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","end":"FT4pxFBh14a61jaK6UdDfM/8aujbv7W9yEY8mhAzSwzfd","sketch":{"start":{"reference-side":null,"position":{"x":8.5747840584332,"y":4.6860528771510914}},"turns":[],"end":{"reference-side":null,"position":{"x":10.387500000000024,"y":4.6999999999999318}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FT4pxFBh14a61jaK6UdDfM/DgTi4zxpxEfJwhfyB8m14C","origin":"FT4pxFBh14a61jaK6UdDfM/5Vpd4bfrjQyZcR5rf4Tdvo","route-layer":1,"instance":"FT4pxFBh14a61jaK6UdDfM","relative":{"x":3.5349542439068919,"y":7.8304041409564249}},"route":[]}, + {"operation":"via-delete","delete":{"vias":["FT4pxFBh14a61jaK6UdDfM/DgTi4zxpxEfJwhfyB8m14C"]}}, + {"operation":"via-create","via":{"id":"5nc5vqcQUq4T65QATrHbs6/EKCKX6ZsFK7jMsGk4zZEUH","origin":"5nc5vqcQUq4T65QATrHbs6/Dj9cVTiijiXzvrku3kKmYm","route-layer":1,"instance":"5nc5vqcQUq4T65QATrHbs6","relative":{"x":-12.558850522053941,"y":-7.6663417842742341}},"route":[]}, + {"operation":"via-delete","delete":{"vias":["5nc5vqcQUq4T65QATrHbs6/EKCKX6ZsFK7jMsGk4zZEUH"]}}, + {"operation":"via-create","via":{"id":"5nc5vqcQUq4T65QATrHbs6/CansK13YHtfWE2sXREFX6K","origin":"5nc5vqcQUq4T65QATrHbs6/DoJCM1LP1MyRToJ88pWeto","route-layer":1,"instance":"5nc5vqcQUq4T65QATrHbs6","relative":{"x":-5.666468304729622,"y":10.290327144579633}},"route":[]}, + {"operation":"via-delete","delete":{"vias":["5nc5vqcQUq4T65QATrHbs6/CansK13YHtfWE2sXREFX6K"]}}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/8nu2m7YQsFWeXc2VkmcRHB"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT"]},"routes":[]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/8nu2m7YQsFWeXc2VkmcRHB"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"via-create","via":{"id":"3HfeEALJYFNctitkdZqmhv/FeBvfwf81Ry5oYRjJuupbE","origin":"3HfeEALJYFNctitkdZqmhv/7eLMrp81n94xgV3ZcqewUk","route-layer":0,"instance":"3HfeEALJYFNctitkdZqmhv","relative":{"x":-5.7314510048676066,"y":-0.040738102354414843}},"route":[]}, + {"operation":"via-delete","delete":{"vias":["3HfeEALJYFNctitkdZqmhv/FeBvfwf81Ry5oYRjJuupbE"]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":1.6742517668045449,"y":4.8656221488028013},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.35912737782558685,"y":-2.1016711977939107},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.7024641021389133,"y":0.0060348042406768165},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.4564754805911981,"y":-2.1279179726446893},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.0177674439686144,"y":-0.020211970610101826},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8VvLEdgpKAQe7YfsFDSzgh","pose":{"center":{"x":-1.8666857462162696,"y":-5.3683267515898532},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8VvLEdgpKAQe7YfsFDSzgh","pose":{"center":{"x":-1.3707549222081314,"y":-2.0303308207658457},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.0626984162508628,"y":-1.1365537592337107},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.0626984162508628,"y":-1.1365537592337107},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.0626984162508628,"y":-1.1365537592337107},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.3297380907167833,"y":-1.4798904835470372},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":-3.938231545360936,"y":-4.7529062132968161},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-6.115324980229591,"y":-8.2852929685132679},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"96QfAVHuYoKinFcbWHBBYB","pose":{"center":{"x":-4.2624940072124113,"y":-3.3604850535816588},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-4.474938408510365,"y":-6.7021291841795954},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-2.8272633493816697,"y":-6.7636223584998429},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-6.497814937311662,"y":-6.5812278038258434},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.280660223219956,"y":-1.1326807144552449},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-5.3381123183448311,"y":-0.18907021687147846},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.280660223219956,"y":-1.1326807144552449},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.280660223219956,"y":-1.1326807144552449},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.528625635224024,"y":-0.732121202756364},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.393750231894952,"y":-0.15215696844135518},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.555600715889838,"y":-0.044256645778097625},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-10.991518295743017,"y":3.65971304302327},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-2.7700405619961153,"y":-7.1069590828131695},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-7.379058401762939,"y":3.091702926566974},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-8.03922635352373,"y":6.246502900852918},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-11.773563056678928,"y":3.7169358304088242},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.555600715889838,"y":-0.044256645778097514},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-10.918011702665016,"y":-2.7146533904373036},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-11.051531539897976,"y":-7.6548873680568335},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"7YP3vuY4RRXx4AhWfiNqKS","pose":{"center":{"x":-11.127828589745382,"y":-10.439729687487148},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-11.341961766025898,"y":-1.5971550607566072},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-11.341961766025898,"y":-1.5971550607566072},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-8.58696912024472,"y":-0.900675756432932},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-7.473471184093289,"y":-2.640501714918579},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-7.473471184093289,"y":-2.640501714918579},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-8.63700119426623,"y":-4.6242250109511325},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-8.3390037082406518,"y":-0.46196771981034823},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-9.7242341545917625,"y":-3.8231059875533711},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-8.923115131194,"y":-3.3843979509307873},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"via-create","via":{"id":"FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","origin":"FT4pxFBh14a61jaK6UdDfM/AXfPWhuyd9CPd1kPNwJaPY","route-layer":1,"instance":"FT4pxFBh14a61jaK6UdDfM","relative":{"x":1.2441827696575491,"y":7.1009408518402282}},"route":[{"id":"GeYNBZMXUUnYAC2jnnBn4z","layer":1,"start":"FT4pxFBh14a61jaK6UdDfM/AXfPWhuyd9CPd1kPNwJaPY","end":"FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","sketch":{"start":{"reference-side":null,"position":{"x":9.9374999999999787,"y":-1.25}},"turns":[],"end":{"reference-side":null,"position":{"x":8.9990591481597733,"y":-1.2441827696575491}}},"join":true}]}, + {"operation":"route","request":{"layer":1,"pads":["FT4pxFBh14a61jaK6UdDfM/AXfPWhuyd9CPd1kPNwJaPY","FT4pxFBh14a61jaK6UdDfM/D79WrXHW5QmSVpMbk7HRQe"]},"routes":[{"id":"DLp9Q6mJCU7M9HHk3epNrp","layer":1,"start":"FT4pxFBh14a61jaK6UdDfM/AXfPWhuyd9CPd1kPNwJaPY","end":"FT4pxFBh14a61jaK6UdDfM/D79WrXHW5QmSVpMbk7HRQe","sketch":{"start":{"reference-side":null,"position":{"x":9.9374999999999787,"y":-1.25}},"turns":[{"position":{"x":9.9374999999999787,"y":-0.75},"turn":"ccw"},{"position":{"x":9.9374999999999787,"y":-0.25},"turn":"ccw"},{"position":{"x":9.9374999999999787,"y":0.25},"turn":"ccw"}],"end":{"reference-side":null,"position":{"x":9.9374999999999787,"y":0.75}}}}]}, + {"operation":"via-create","via":{"id":"FT4pxFBh14a61jaK6UdDfM/EWPFMLZ3Dea5nQzF4xP2Gh","origin":"FT4pxFBh14a61jaK6UdDfM/7WVZ2C81Z19cpkvz1qT9dW","route-layer":1,"instance":"FT4pxFBh14a61jaK6UdDfM","relative":{"x":-1.7886249617768346,"y":7.1104779830711529}},"route":[{"id":"5eooEMYufSHbbmAJ5qMUPs","layer":1,"start":"FT4pxFBh14a61jaK6UdDfM/7WVZ2C81Z19cpkvz1qT9dW","end":"FT4pxFBh14a61jaK6UdDfM/EWPFMLZ3Dea5nQzF4xP2Gh","sketch":{"start":{"reference-side":null,"position":{"x":9.9374999999999787,"y":1.75}},"turns":[],"end":{"reference-side":null,"position":{"x":8.9895220169288486,"y":1.7886249617768346}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FT4pxFBh14a61jaK6UdDfM/7g64Kq3nes1cJrAZGSVYKz","origin":"FT4pxFBh14a61jaK6UdDfM/6iRgMynebkDG3ZSrGwSSgh","route-layer":1,"instance":"FT4pxFBh14a61jaK6UdDfM","relative":{"x":-2.3417785731705272,"y":7.1200151143020793}},"route":[{"id":"8jqaBEozpJky8UFdSBbdpx","layer":1,"start":"FT4pxFBh14a61jaK6UdDfM/7g64Kq3nes1cJrAZGSVYKz","end":"FT4pxFBh14a61jaK6UdDfM/6iRgMynebkDG3ZSrGwSSgh","sketch":{"start":{"reference-side":null,"position":{"x":8.9799848856979221,"y":2.3417785731705272}},"turns":[],"end":{"reference-side":null,"position":{"x":9.9374999999999787,"y":2.25}}},"join":true}]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","FshjgLMYkKo69oJh6uLstr/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"2eEJ5e46UurWxoUo5ueRfb","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","end":"FshjgLMYkKo69oJh6uLstr/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":null,"position":{"x":8.3649671713528342,"y":-4.6984842540798315}},"turns":[],"end":{"reference-side":"top","position":{"x":9.7431359512953613,"y":-6.4880270341937667}}}}]}, + {"operation":"place","place":{"placements":[{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":8.5832074826653439,"y":-6.4810868003225082},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":8.4582462946143391,"y":6.6869110173089839},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":8.4582462946143391,"y":6.6869110173089839},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":8.4582462946143391,"y":6.6869110173089839},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"AnFmVeWs5C1x5ZuHHpf6vV","pose":{"center":{"x":8.6066092382763184,"y":6.4576228316495614},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["AnFmVeWs5C1x5ZuHHpf6vV/BvbaBVkGdAitfbnh2kkSze","FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN"]},"routes":[{"id":"FuT2TfVfAxH9ww56vPw4rP","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","end":"AnFmVeWs5C1x5ZuHHpf6vV/BvbaBVkGdAitfbnh2kkSze","sketch":{"start":{"reference-side":null,"position":{"x":8.5747840584332,"y":4.6860528771510914}},"turns":[],"end":{"reference-side":"top","position":{"x":8.6066092382763184,"y":6.0040116135361616}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/7g64Kq3nes1cJrAZGSVYKz","FEr47X6dCYqq2xKBb1kRFq/33vGxvTePDAn6c6SYp1Kbx"]},"routes":[{"id":"3dfrvvfnzJpT8c1YYo93A1","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/7g64Kq3nes1cJrAZGSVYKz","end":"FEr47X6dCYqq2xKBb1kRFq/33vGxvTePDAn6c6SYp1Kbx","sketch":{"start":{"reference-side":null,"position":{"x":8.9799848856979221,"y":2.3417785731705272}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":3.3959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/EWPFMLZ3Dea5nQzF4xP2Gh","FEr47X6dCYqq2xKBb1kRFq/6eQ3kQHJgUbiwMUFBxZiq2"]},"routes":[{"id":"2RYfCk6TQexJ9EGZ1YsLTe","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/6eQ3kQHJgUbiwMUFBxZiq2","end":"FT4pxFBh14a61jaK6UdDfM/EWPFMLZ3Dea5nQzF4xP2Gh","sketch":{"start":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":2.8959539382748734}},"turns":[],"end":{"reference-side":null,"position":{"x":8.9895220169288486,"y":1.7886249617768346}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","EVnbJQbBxw1eUEYRni6Wch/88yyoxSEmf4aUjJUGQRHbX","3HfeEALJYFNctitkdZqmhv/4M32voPjQ4ujDnVkcwNkbB"]},"routes":[{"id":"7ZeYCDR3iZcj9LtiA5APfa","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","end":"EVnbJQbBxw1eUEYRni6Wch/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":null,"position":{"x":8.9990591481597733,"y":-1.2441827696575491}},"turns":[],"end":{"reference-side":"top","position":{"x":6.3337367988187552,"y":-1.688708100766551}}}},{"id":"6f95tToQgfC6v6P5eFYEBX","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/4M32voPjQ4ujDnVkcwNkbB","end":"EVnbJQbBxw1eUEYRni6Wch/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":6.3838920819452074,"y":-3.980969864635215}},"turns":[],"end":{"reference-side":"top","position":{"x":6.3337367988187552,"y":-1.688708100766551}}}}]}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.7024641021389133,"y":0.0060348042406768165},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.7024641021389133,"y":0.0060348042406768165},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.16838475320707147,"y":-0.52804454469116435},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.855058201833724,"y":-0.070262245606729},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["77nSKnDe7MeGYsyZMCwcxr/9zoS6CDqroVgvAb897m94k","FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"FhMYWWEyYLVYiMTVjKyFj4","layer":0,"start":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","end":"77nSKnDe7MeGYsyZMCwcxr/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":1.8511268726033829,"y":-1.4798904835470372}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.40959897250667138}}}},{"id":"9bVF2p7xBtjLJ4DoYfykhE","layer":0,"start":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","end":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","sketch":{"start":{"reference-side":"top","position":{"x":1.8511268726033829,"y":-1.4798904835470372}},"turns":[],"end":{"reference-side":"top","position":{"x":1.784892081945161,"y":-3.980969864635215}}}},{"id":"32PUR4DcPcF36xMs9KFqzS","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","end":"77nSKnDe7MeGYsyZMCwcxr/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-0.90413539985816316,"y":1.5859539382749279}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.40959897250667138}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ARfh82Zei6N8jMB346B71w","6UkTHKpQvqmDsqkXeN9e3R/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"7dYdMqCmEJg3r6hzEnu4nA","layer":0,"start":"6UkTHKpQvqmDsqkXeN9e3R/88yyoxSEmf4aUjJUGQRHbX","end":"FEr47X6dCYqq2xKBb1kRFq/ARfh82Zei6N8jMB346B71w","sketch":{"start":{"reference-side":"top","position":{"x":-2.0177674439686144,"y":0.45839924750329847}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.9041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["8VvLEdgpKAQe7YfsFDSzgh/69m3hpZazob4QbVDhEkQBW","FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh"]},"routes":[{"id":"3acCFpJRFNfFzmaBvGduof","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh","end":"8VvLEdgpKAQe7YfsFDSzgh/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-1.4041353998581632,"y":1.5859539382749279}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.3707549222081314,"y":-1.5704696026524452}}}}]}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-6.4438647759800327,"y":-6.5542527231600287},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-7.239629655621556,"y":-2.1303394939664733},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"B2rjcDuioM877xmyYkTmXo","pose":{"center":{"x":-5.7832298208023616,"y":-6.0682147885329574},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"AP8Tv2QS6BLubccYtBKdsm","layer":0,"start":"qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1","end":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","sketch":{"start":{"reference-side":"top","position":{"x":-12.25858370794248,"y":9.2898865891396909}},"turns":[],"end":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}}}}]}, + {"operation":"place","place":{"placements":[{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":4.1113671626110548,"y":-9.1165229299361634},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"AXqQKmPMa9RJFGqarGtfPM","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","end":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","sketch":{"start":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}},"turns":[],"end":{"reference-side":"top","position":{"x":1.8118671626109748,"y":-5.0060229299361616}}}}]}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-1.4482616093712108,"y":-4.5713015002266193},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8WBCGnBP9JAB789hNHWyB5","pose":{"center":{"x":-1.4482616093712108,"y":-4.5713015002266193},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["AP8Tv2QS6BLubccYtBKdsm"]}}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/Gej4tp5h73rLSC7T9Y3aev"]},"routes":[{"id":"9BciGc7BMm6BjuAQJvjPdg","layer":0,"start":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","end":"7YP3vuY4RRXx4AhWfiNqKS/Gej4tp5h73rLSC7T9Y3aev","sketch":{"start":{"reference-side":"top","position":{"x":-8.923115131194,"y":-3.8442591690441876}},"turns":[{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-10.492828589745393,"y":-7.66722968748711},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-9.222828589745296,"y":-7.6672296874871124}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w"]},"routes":[{"id":"6NSMws4a7ABx3bYEqLWGj7","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","sketch":{"start":{"reference-side":"top","position":{"x":-8.3390037082406518,"y":-0.92182893792374854}},"turns":[{"position":{"x":-8.923115131194,"y":-3.8442591690441876},"turn":"cw"},{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-10.492828589745391,"y":-7.6672296874871124}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo"]},"routes":[{"id":"2UJWG41ShqHtbjJgX7VUEL","layer":0,"start":"F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","end":"7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo","sketch":{"start":{"reference-side":"top","position":{"x":-10.882100547912497,"y":-1.5971550607566072}},"turns":[{"position":{"x":-8.923115131194,"y":-3.8442591690441876},"turn":"cw"},{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-10.492828589745393,"y":-7.66722968748711},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-11.762828589745373,"y":-7.6672296874871124}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"6NYfLB7p9qsmy8PaszG7Pg","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","end":"qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}},"turns":[{"position":{"x":-6.7610184375081559,"y":-2.1303394939664733},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-12.25858370794248,"y":9.2898865891396909}}}}]}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-5.9448257836624663,"y":-0.066745823031673979},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"75dACL9SDaiVFRXgczJdD8","pose":{"center":{"x":-5.8099503803333947,"y":-0.30952154902400331},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"6XNmnsz7aNZDdGXDi9C7P5","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-12.271258269322139,"y":12.272460944620493}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"ccw"},{"position":{"x":-10.882100547912497,"y":-1.5971550607566072},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-8.923115131194,"y":-3.8442591690441876}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"E4VZHqbFvDdMkNaf9px9UC","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-8.3390037082406518,"y":-0.92182893792374854}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy"]},"routes":[{"id":"6g9mdKkpCuu4ZeVV6FxmjY","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","sketch":{"start":{"reference-side":"top","position":{"x":-8.3390037082406518,"y":-0.92182893792374854}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"cw"},{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT","4TMLddbiXPVWvD7NSw5XXn/2YVMgmUMaEggRby3bhV5F7"]},"routes":[{"id":"EZX5r2MbVaAuKKJJMewws1","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT","end":"4TMLddbiXPVWvD7NSw5XXn/2YVMgmUMaEggRby3bhV5F7","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":5.3959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":-7.5543651354103307,"y":6.246502900852918}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"ercMWQ8hjVs1bVgMprDti","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","end":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","sketch":{"start":{"reference-side":"top","position":{"x":-7.4801025611066914,"y":4.5843720247118993}},"turns":[{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-4.9212540260242106,"y":9.329199915980162},"turn":"cw"},{"position":{"x":-2.4106572888571431,"y":9.3109716910716838},"turn":"cw"},{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"cw"},{"position":{"x":8.9895220169288486,"y":1.7886249617768346},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.8118671626109748,"y":-5.0060229299361616}}}},{"id":"XHqgvWRUncZMSiq6wrdHj","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","end":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":-7.4801025611066914,"y":4.5843720247118993}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","GaQT6sXk2tqEU4pJDUnwwA/9zoS6CDqroVgvAb897m94k","656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"D46zanu5yPz5KpCWugS8AA","layer":0,"start":"GaQT6sXk2tqEU4pJDUnwwA/9zoS6CDqroVgvAb897m94k","end":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":1.1943905486911446,"y":4.8656221488028013}},"turns":[{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"cw"},{"position":{"x":8.9895220169288486,"y":1.7886249617768346},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.8511268726033829,"y":-1.4798904835470372}}}},{"id":"6ih76fRfQNnsAxtNGmsND5","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","end":"GaQT6sXk2tqEU4pJDUnwwA/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":4.8959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":1.1943905486911446,"y":4.8656221488028013}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["5DjR2uZVerwXVQtxsGGubf/88yyoxSEmf4aUjJUGQRHbX","FEr47X6dCYqq2xKBb1kRFq/56N2PXpipE8m7q5KhXMcr2"]},"routes":[{"id":"9CaAUhdR9rF46NKMBRvByK","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/56N2PXpipE8m7q5KhXMcr2","end":"5DjR2uZVerwXVQtxsGGubf/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-2.4041353998581632,"y":7.2049539382749561}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.4106572888571431,"y":8.3537492548448835}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"3GabPGZ8GxZmyrcf7Z5kPN","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","end":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","sketch":{"start":{"reference-side":"top","position":{"x":-2.972161008055421,"y":10.861226687558418}},"turns":[{"position":{"x":-2.0124385718286204,"y":10.861226687558418},"turn":"cw"},{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"cw"},{"position":{"x":8.9895220169288486,"y":1.7886249617768346},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.8118671626109748,"y":-5.0060229299361616}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["ercMWQ8hjVs1bVgMprDti"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[{"id":"9TvsvUH5B4wSQjBhkANqDs","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","end":"FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","sketch":{"start":{"reference-side":"top","position":{"x":-2.972161008055421,"y":10.861226687558418}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.9041353998581632,"y":7.2049539382749561}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["6g9mdKkpCuu4ZeVV6FxmjY"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[{"id":"Crdcbf8KS2bsymkRJDghAN","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","end":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-2.972161008055421,"y":10.861226687558418}},"turns":[{"position":{"x":-4.9212540260242106,"y":9.329199915980162},"turn":"ccw"},{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-7.4801025611066914,"y":4.5843720247118993}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["Crdcbf8KS2bsymkRJDghAN"]}}, + {"operation":"route","request":{"layer":0,"pads":["EcLdz4H3yjpw2x6PqBebdD/88yyoxSEmf4aUjJUGQRHbX","FEr47X6dCYqq2xKBb1kRFq/C6nfBM5AVtLShdneZKc72Z"]},"routes":[{"id":"82wtBhvsaek6zgpaLc99D3","layer":0,"start":"EcLdz4H3yjpw2x6PqBebdD/88yyoxSEmf4aUjJUGQRHbX","end":"FEr47X6dCYqq2xKBb1kRFq/C6nfBM5AVtLShdneZKc72Z","sketch":{"start":{"reference-side":"top","position":{"x":-4.9212540260242106,"y":8.3719774797533617}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.9041353998581627,"y":7.2049539382749561}}}}]}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.9212540260242106,"y":8.8505886978667618},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-5.0156668083545606,"y":8.81012607686804},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.246877009378851,"y":8.30434331438402},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.246877009378851,"y":8.30434331438402},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.246877009378851,"y":8.30434331438402},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.246877009378851,"y":8.30434331438402},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["EcLdz4H3yjpw2x6PqBebdD/88yyoxSEmf4aUjJUGQRHbX","DmR6sNit5G9pTyKT3TBeQc/69m3hpZazob4QbVDhEkQBW"]},"routes":[{"id":"BcpXV4LGeF19c4FqzkouFZ","layer":0,"start":"EcLdz4H3yjpw2x6PqBebdD/88yyoxSEmf4aUjJUGQRHbX","end":"DmR6sNit5G9pTyKT3TBeQc/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-4.7254882274922512,"y":8.30434331438402}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.0041273954751464,"y":10.877412929578623}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[{"id":"7BmxRkfQhqXpwoYFKgwhjD","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","end":"DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-2.972161008055421,"y":10.861226687558418}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}}}}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","origin":"FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":3.6318602020522319,"y":-0.99669030870726427}},"route":[{"id":"DLjEda4FVTjmzkqhA2CsTk","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT","end":"FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":5.3959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":-6.5359956019103951,"y":5.3926442469821376}}},"join":true}]}, + {"operation":"unroute","delete":{"routes":["EZX5r2MbVaAuKKJJMewws1"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","4TMLddbiXPVWvD7NSw5XXn/2YVMgmUMaEggRby3bhV5F7"]},"routes":[{"id":"F1iwQNSKrGDd5cdCddc9LE","layer":0,"start":"4TMLddbiXPVWvD7NSw5XXn/2YVMgmUMaEggRby3bhV5F7","end":"FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","sketch":{"start":{"reference-side":"top","position":{"x":-7.5543651354103307,"y":6.246502900852918}},"turns":[],"end":{"reference-side":"top","position":{"x":-6.5359956019103951,"y":5.3926442469821376}}}}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/6hZVMRNDpKUhYnBPFKjhAs","origin":"FEr47X6dCYqq2xKBb1kRFq/BGci5hqhQLcn4XaaP23NzX","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":3.6712139435715883,"y":0.18534249403079617}},"route":[{"id":"DMmBKmkWbKYT6auSsKoUek","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/6hZVMRNDpKUhYnBPFKjhAs","end":"FEr47X6dCYqq2xKBb1kRFq/BGci5hqhQLcn4XaaP23NzX","sketch":{"start":{"reference-side":"top","position":{"x":-6.5753493434297514,"y":4.2106114442440772}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.3959539382748734}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff","origin":"FEr47X6dCYqq2xKBb1kRFq/A5YxZCsePKsCahVaRnSrjn","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":3.6426025498788106,"y":1.0055357798904092}},"route":[{"id":"KiDtC7tTpPk76ZYa5nPRF","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff","end":"FEr47X6dCYqq2xKBb1kRFq/A5YxZCsePKsCahVaRnSrjn","sketch":{"start":{"reference-side":"top","position":{"x":-6.5467379497369738,"y":3.3904181583844641}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":3.3959539382748734}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/8J67Px9wjoZi97krZzc3gp","origin":"FEr47X6dCYqq2xKBb1kRFq/5UVtn8WhcCUrF1imUB9B5c","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":3.6807510748025138,"y":1.5396151288222502}},"route":[{"id":"3K1d3jAx4kkdNLn3Qny2qq","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/8J67Px9wjoZi97krZzc3gp","end":"FEr47X6dCYqq2xKBb1kRFq/5UVtn8WhcCUrF1imUB9B5c","sketch":{"start":{"reference-side":"top","position":{"x":-6.584886474660677,"y":2.8563388094526232}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.8959539382748734}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/BXBPvfUdFDNVCUzTuYGisz","origin":"FEr47X6dCYqq2xKBb1kRFq/473Z1Rts63cF79SMBBqThj","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":0.97220580521960553,"y":3.5710240810094316}},"route":[{"id":"4JXoPDZH2Qfr1wVwU8psCj","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/BXBPvfUdFDNVCUzTuYGisz","end":"FEr47X6dCYqq2xKBb1kRFq/473Z1Rts63cF79SMBBqThj","sketch":{"start":{"reference-side":"top","position":{"x":-3.8763412050777686,"y":0.82492985726544177}},"turns":[],"end":{"reference-side":"top","position":{"x":-3.9041353998581632,"y":1.5859539382749279}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/FJA6YFyaEZ8Mqicx7mGBUM","origin":"FEr47X6dCYqq2xKBb1kRFq/4KFt6TJWBiwftqzpt1Xr12","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":-3.5674686607010435,"y":0.0995083129524641}},"route":[{"id":"GchFb7U8JWFZtNLYFipiGx","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/FJA6YFyaEZ8Mqicx7mGBUM","end":"FEr47X6dCYqq2xKBb1kRFq/4KFt6TJWBiwftqzpt1Xr12","sketch":{"start":{"reference-side":"top","position":{"x":0.66333326084288036,"y":4.2964456253224093}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":4.3959539382748734}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT","origin":"FEr47X6dCYqq2xKBb1kRFq/6DsRgbfz5gefkV5Cs6W3G5","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":-3.700988497934004,"y":0.66219905557708181}},"route":[{"id":"9PaY7HZpmtSFhDuemXryCW","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT","end":"FEr47X6dCYqq2xKBb1kRFq/6DsRgbfz5gefkV5Cs6W3G5","sketch":{"start":{"reference-side":"top","position":{"x":0.79685309807584082,"y":3.7337548826977915}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":3.8959539382748734}}},"join":true}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/yPjGLX25dmNm7PnXe31PZ","origin":"FEr47X6dCYqq2xKBb1kRFq/EMsjqHXMWzCrP9A1bJCHys","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":-3.6819142354721519,"y":-2.0654204764676773}},"route":[{"id":"7bd6R1pQkTDJD38UBZuKZu","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/EMsjqHXMWzCrP9A1bJCHys","end":"FEr47X6dCYqq2xKBb1kRFq/yPjGLX25dmNm7PnXe31PZ","sketch":{"start":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":6.3959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":0.77777883561398875,"y":6.4613744147425507}}},"join":true}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/8nu2m7YQsFWeXc2VkmcRHB","FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf"]},"routes":[{"id":"AsxbjuKG3F3GTUVHKHP22G","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/8nu2m7YQsFWeXc2VkmcRHB","end":"FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-0.62999999999999545}},"turns":[],"end":{"reference-side":"top","position":{"x":-6.5359956019103951,"y":5.3926442469821376}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/Cu8rc9vAmsCKTmyMSXHmQr","FEr47X6dCYqq2xKBb1kRFq/yPjGLX25dmNm7PnXe31PZ"]},"routes":[{"id":"6nNmgL8ntsw4UHtZW5u8Ut","layer":1,"start":"FEr47X6dCYqq2xKBb1kRFq/yPjGLX25dmNm7PnXe31PZ","end":"5nc5vqcQUq4T65QATrHbs6/Cu8rc9vAmsCKTmyMSXHmQr","sketch":{"start":{"reference-side":"top","position":{"x":0.77777883561398875,"y":6.4613744147425507}},"turns":[{"position":{"x":3.7749999999999773,"y":-0.62999999999999545},"turn":"cw"}],"end":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-3.1299999999999955}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/CL6n5UtMchhxs4VAExoUtF","FEr47X6dCYqq2xKBb1kRFq/FJA6YFyaEZ8Mqicx7mGBUM"]},"routes":[{"id":"3K7Soaueb8fif27LoPFjC4","layer":1,"start":"FEr47X6dCYqq2xKBb1kRFq/FJA6YFyaEZ8Mqicx7mGBUM","end":"5nc5vqcQUq4T65QATrHbs6/CL6n5UtMchhxs4VAExoUtF","sketch":{"start":{"reference-side":"top","position":{"x":0.66333326084288036,"y":4.2964456253224093}},"turns":[{"position":{"x":3.7749999999999773,"y":-0.62999999999999545},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-3.1299999999999955},"turn":"ccw"},{"position":{"x":3.7749999999999773,"y":-5.6299999999999955},"turn":"ccw"}],"end":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-8.0599999999999454}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/AsBhLVKmpk6EFaffXQKh6Y","FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT"]},"routes":[{"id":"FAbuy5KNGzxQAEuz6pzbNg","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/AsBhLVKmpk6EFaffXQKh6Y","end":"FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-9.7599999999999909}},"turns":[{"position":{"x":3.7749999999999773,"y":-8.0599999999999454},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-5.6299999999999955},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-3.1299999999999955},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-0.62999999999999545},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":0.79685309807584082,"y":3.7337548826977915}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/96rwTsoHr1oLXdHdGmuz3Q","FEr47X6dCYqq2xKBb1kRFq/BXBPvfUdFDNVCUzTuYGisz"]},"routes":[]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/96rwTsoHr1oLXdHdGmuz3Q","FEr47X6dCYqq2xKBb1kRFq/8J67Px9wjoZi97krZzc3gp"]},"routes":[{"id":"2i6VnKUfVN2XKb8rqtjWwp","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/96rwTsoHr1oLXdHdGmuz3Q","end":"FEr47X6dCYqq2xKBb1kRFq/8J67Px9wjoZi97krZzc3gp","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-11.059999999999945}},"turns":[],"end":{"reference-side":"top","position":{"x":-6.584886474660677,"y":2.8563388094526232}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/Usjz9PTceToyzanR4dQmN","FEr47X6dCYqq2xKBb1kRFq/BXBPvfUdFDNVCUzTuYGisz"]},"routes":[{"id":"AdFxZdMakpbiXzMf7KGHRn","layer":1,"start":"FEr47X6dCYqq2xKBb1kRFq/BXBPvfUdFDNVCUzTuYGisz","end":"5nc5vqcQUq4T65QATrHbs6/Usjz9PTceToyzanR4dQmN","sketch":{"start":{"reference-side":"top","position":{"x":-3.8763412050777686,"y":0.82492985726544177}},"turns":[{"position":{"x":3.7749999999999773,"y":-11.059999999999945},"turn":"cw"}],"end":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-12.259999999999991}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/G9phhhUTXXVD7b6Mni79sc","FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff"]},"routes":[{"id":"ELdQSa4UwPo3nNV4JVqaqX","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/G9phhhUTXXVD7b6Mni79sc","end":"FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":9.3700000000001182}},"turns":[{"position":{"x":-6.5359956019103951,"y":5.3926442469821376},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-6.5467379497369738,"y":3.3904181583844641}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/4ACz9ZHKTpLQiJvQppWKdf","FEr47X6dCYqq2xKBb1kRFq/6hZVMRNDpKUhYnBPFKjhAs"]},"routes":[{"id":"hRQUZsTxcj1HbjZypeKNY","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/4ACz9ZHKTpLQiJvQppWKdf","end":"FEr47X6dCYqq2xKBb1kRFq/6hZVMRNDpKUhYnBPFKjhAs","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":6.8700000000001182}},"turns":[{"position":{"x":3.7749999999999773,"y":9.3700000000001182},"turn":"ccw"},{"position":{"x":-6.5359956019103951,"y":5.3926442469821376},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-6.5753493434297514,"y":4.2106114442440772}}}}]}, + {"operation":"via-create","via":{"id":"FEr47X6dCYqq2xKBb1kRFq/Anc3xsgxcxCBeu3dDucPzT","origin":"FEr47X6dCYqq2xKBb1kRFq/3qUmwHx5xpM2u9qXCbEtE3","route-layer":0,"instance":"FEr47X6dCYqq2xKBb1kRFq","relative":{"x":-1.4759895476796685,"y":-3.7889617367951178}},"route":[{"id":"8yf6j2KhZieCsCbxQgwQ3W","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/Anc3xsgxcxCBeu3dDucPzT","end":"FEr47X6dCYqq2xKBb1kRFq/3qUmwHx5xpM2u9qXCbEtE3","sketch":{"start":{"reference-side":"top","position":{"x":-1.4281458521784947,"y":8.1849156750699912}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.4041353998581632,"y":7.2049539382749561}}},"join":true}]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/EqsbchJV3wDcJFdoRsgM9F","FEr47X6dCYqq2xKBb1kRFq/Anc3xsgxcxCBeu3dDucPzT"]},"routes":[{"id":"7JHqZ2RgYC2Ars3tj18zgz","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/EqsbchJV3wDcJFdoRsgM9F","end":"FEr47X6dCYqq2xKBb1kRFq/Anc3xsgxcxCBeu3dDucPzT","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":4.3700000000000045}},"turns":[{"position":{"x":3.7749999999999773,"y":6.8700000000001182},"turn":"ccw"},{"position":{"x":3.7749999999999773,"y":9.3700000000001182},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-1.4281458521784947,"y":8.1849156750699912}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"8KyNYu4aP87Y1UJzKnyonQ","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","end":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":1.8118671626109748,"y":-5.0060229299361616}},"turns":[{"position":{"x":-1.3707549222081314,"y":-2.490192038879246},"turn":"cw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-7.4801025611066914,"y":4.5843720247118993}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["B2rjcDuioM877xmyYkTmXo/69m3hpZazob4QbVDhEkQBW","8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX","96QfAVHuYoKinFcbWHBBYB/EPythAh92WRo7sRgNi1HjZ"]},"routes":[{"id":"5d6JUf2iF4odnaToS8WTfc","layer":0,"start":"96QfAVHuYoKinFcbWHBBYB/EPythAh92WRo7sRgNi1HjZ","end":"B2rjcDuioM877xmyYkTmXo/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-3.5264940072124213,"y":-4.3464850535815351}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.3233686026889622,"y":-6.0682147885329574}}}},{"id":"k7gNgP6zQV6YaZJpA4Kd9","layer":0,"start":"8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX","end":"96QfAVHuYoKinFcbWHBBYB/EPythAh92WRo7sRgNi1HjZ","sketch":{"start":{"reference-side":"top","position":{"x":-1.9268728274846112,"y":-4.5713015002266193}},"turns":[],"end":{"reference-side":"top","position":{"x":-3.5264940072124213,"y":-4.3464850535815351}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["B2rjcDuioM877xmyYkTmXo/NPAaADWvFAh5Pttni6nm6","75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","FEr47X6dCYqq2xKBb1kRFq/BccBtdMixJFk7gBvF7VwFq","96QfAVHuYoKinFcbWHBBYB/7iXpVU4qJyqqPMU4ypY6nN"]},"routes":[{"id":"26jepyTaQCxrjgv3ndVkoX","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/BccBtdMixJFk7gBvF7VwFq","end":"75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-2.9041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":6.3959539382748734},"turn":"ccw"},{"position":{"x":-7.5543651354103307,"y":6.246502900852918},"turn":"ccw"},{"position":{"x":-7.4801025611066914,"y":4.5843720247118993},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-5.3313391622199946,"y":-0.30952154902400331}}}},{"id":"6VBWHmoRnMbcTLbEqcxWjP","layer":0,"start":"B2rjcDuioM877xmyYkTmXo/NPAaADWvFAh5Pttni6nm6","end":"96QfAVHuYoKinFcbWHBBYB/7iXpVU4qJyqqPMU4ypY6nN","sketch":{"start":{"reference-side":"top","position":{"x":-6.2430910389157619,"y":-6.0682147885329574}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.226494007212354,"y":-2.1464850535816034}}}},{"id":"8CZZ8L79oA2XPujF1zHLt4","layer":0,"start":"96QfAVHuYoKinFcbWHBBYB/7iXpVU4qJyqqPMU4ypY6nN","end":"75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-5.226494007212354,"y":-2.1464850535816034}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.3313391622199946,"y":-0.30952154902400331}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["8KyNYu4aP87Y1UJzKnyonQ"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["26jepyTaQCxrjgv3ndVkoX"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"8qANgfw7MCyRGULjiJkHwd","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":6.3959539382748734},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["8qANgfw7MCyRGULjiJkHwd"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-16.477291212048648,"y":9.7103692180117616},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-8.8184479440979,"y":9.0894014260543958},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["6XNmnsz7aNZDdGXDi9C7P5"]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.16127830551835,"y":12.084176316603426},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["E4VZHqbFvDdMkNaf9px9UC"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"B7hw9NjBVk6bE78zwXX9xs","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-8.3390037082406518,"y":-0.92182893792374854}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"J22NDBMJjzp1TDouBLwx2","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}},"turns":[{"position":{"x":-8.7429416900844,"y":12.238351946848271},"turn":"ccw"},{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"ccw"},{"position":{"x":-10.882100547912497,"y":-1.5971550607566072},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-8.923115131194,"y":-3.8442591690441876}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["B7hw9NjBVk6bE78zwXX9xs"]}}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"DgS5drD3PwTN8nqYCRtTff","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-8.3390037082406518,"y":-0.92182893792374854}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"unroute","delete":{"layer":0,"routes":[]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"FpVzawB224kVhBJUrwQSAa","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","end":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}},"turns":[{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-7.4801025611066914,"y":4.5843720247118993},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"FqE74uSAcGrtfJgLc4STW8","layer":0,"start":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","end":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","sketch":{"start":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}},"turns":[{"position":{"x":-8.8184479440979,"y":9.0894014260543958},"turn":"ccw"},{"position":{"x":-7.4801025611066914,"y":4.5843720247118993},"turn":"ccw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"ccw"},{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","FEr47X6dCYqq2xKBb1kRFq/BccBtdMixJFk7gBvF7VwFq"]},"routes":[{"id":"AECSPcJopwjKQW6v4yTWCk","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/BccBtdMixJFk7gBvF7VwFq","end":"75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-2.9041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-3.8763412050777686,"y":0.82492985726544177},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-5.3313391622199946,"y":-0.30952154902400331}}}}]}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-8.3390037082406518,"y":-0.46196771981034829},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["DgS5drD3PwTN8nqYCRtTff","6NSMws4a7ABx3bYEqLWGj7"]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-8.3390037082406518,"y":-0.46196771981034823},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-8.3390037082406518,"y":-0.46196771981034829},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.063825681791009,"y":-0.500116244734051},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.063825681791009,"y":-0.500116244734051},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.063825681791009,"y":-0.500116244734051},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.5224020531098521,"y":-0.500116244734051},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-13.347028360387556,"y":-3.1685973056042718},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["J22NDBMJjzp1TDouBLwx2"]}}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"2S3vAz9UnsqeSRAbFQcHZT","layer":0,"start":"qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1","end":"FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-12.25858370794248,"y":9.2898865891396909}},"turns":[],"end":{"reference-side":"top","position":{"x":-9.9822632712232515,"y":-0.500116244734051}}}},{"id":"72xBzzgkJuwEgfzAKDskj3","layer":0,"start":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","end":"FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-11.801822984139298,"y":-1.5971550607566072}},"turns":[],"end":{"reference-side":"top","position":{"x":-9.9822632712232515,"y":-0.500116244734051}}}},{"id":"4mtgsVkBNtjsTppZ6U7Hea","layer":0,"start":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","end":"9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-11.801822984139298,"y":-1.5971550607566072}},"turns":[],"end":{"reference-side":"top","position":{"x":-13.347028360387556,"y":-2.708736087490871}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"5N7LnPvm5XLd5YHp4PYGkv","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}},"turns":[{"position":{"x":-8.7429416900844,"y":12.238351946848271},"turn":"ccw"},{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"ccw"},{"position":{"x":-13.347028360387556,"y":-2.708736087490871},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-13.347028360387556,"y":-3.6284585237176721}}}}]}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.5224020531098521,"y":-0.500116244734051},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-9.5224020531098521,"y":-0.500116244734051},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"3aHSutQfLSbGGaMXBSSQkv","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-9.9822632712232533,"y":-0.500116244734051}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}},{"id":"C6jRkjLN6UywLnG3eYinJz","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","sketch":{"start":{"reference-side":"top","position":{"x":-9.9822632712232533,"y":-0.500116244734051}},"turns":[{"position":{"x":-11.801822984139298,"y":-1.5971550607566072},"turn":"ccw"},{"position":{"x":-13.347028360387556,"y":-2.708736087490871},"turn":"ccw"},{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-10.492828589745393,"y":-7.66722968748711},"turn":"ccw"},{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-10.492828589745391,"y":-7.6672296874871124}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/4UENBX5zKxuEhW4wDjGPRB","96QfAVHuYoKinFcbWHBBYB/EPythAh92WRo7sRgNi1HjZ"]},"routes":[{"id":"6oaogsBVsQrrZkDPCnCQJk","layer":0,"start":"96QfAVHuYoKinFcbWHBBYB/EPythAh92WRo7sRgNi1HjZ","end":"FEr47X6dCYqq2xKBb1kRFq/4UENBX5zKxuEhW4wDjGPRB","sketch":{"start":{"reference-side":"top","position":{"x":-3.5264940072124213,"y":-4.3464850535815351}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["FqE74uSAcGrtfJgLc4STW8","FpVzawB224kVhBJUrwQSAa"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/6aRu29oF2XGxg5EdDNBSSc","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[{"id":"68NiLg7Go76gGUDzoExLTa","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","end":"2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-7.4801025611066914,"y":4.5843720247118993}},"turns":[{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-5.0041273954751464,"y":10.877412929578623},"turn":"cw"},{"position":{"x":-4.0844049592483458,"y":10.877412929578623},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-2.972161008055421,"y":10.861226687558418}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"A5oz9Vgn1wb9SiLuCjy7fs","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-8.8184479440979,"y":9.0894014260543958},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"EyqsMCAHCjDt5pYgmWbjBh","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","end":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}},"turns":[{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}}}}]}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-9.8446232278357,"y":0.14520251095562409},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["C6jRkjLN6UywLnG3eYinJz","2UJWG41ShqHtbjJgX7VUEL","72xBzzgkJuwEgfzAKDskj3"]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-10.829170231894025,"y":-1.3712950305901668},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["4mtgsVkBNtjsTppZ6U7Hea"]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-11.155862276590069,"y":-1.5210288844091866},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-11.155862276590069,"y":-1.5210288844091866},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-11.155862276590069,"y":-1.5210288844091866},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["3aHSutQfLSbGGaMXBSSQkv"]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-11.155862276590069,"y":-1.5210288844091866},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-11.155862276590069,"y":-1.5210288844091866},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FhHXn7W3gZ51Woya9HJoph","pose":{"center":{"x":-12.156888970635244,"y":-0.88576194395744134},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX"]},"routes":[{"id":"EUE3k89w4G7UhrFcB5NuWQ","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","end":"9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-11.697027752521842,"y":-0.88576194395744134}},"turns":[],"end":{"reference-side":"top","position":{"x":-13.347028360387556,"y":-2.708736087490871}}}},{"id":"CtZwCNthEKgg4u2khMuR3","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","end":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-11.697027752521842,"y":-0.88576194395744134}},"turns":[],"end":{"reference-side":"top","position":{"x":-10.3044844459491,"y":0.14520251095562409}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo"]},"routes":[{"id":"8HTYB4qeys4gCNoJNkXyE3","layer":0,"start":"F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","end":"7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo","sketch":{"start":{"reference-side":"top","position":{"x":-9.3847620097223,"y":0.14520251095562409}},"turns":[{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-11.762828589745373,"y":-7.6672296874871124}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w"]},"routes":[{"id":"EC1sxy29FyQnvabkHgZfF","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","end":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-10.492828589745391,"y":-7.6672296874871124}},"turns":[{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-13.347028360387556,"y":-2.708736087490871},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-12.616750188748643,"y":-0.88576194395744134}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"Aav3pmVrRkwRVHZUeU6Zrv","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-12.616750188748643,"y":-0.88576194395744134}},"turns":[{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["A5oz9Vgn1wb9SiLuCjy7fs"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"8jQtubXskuk4ohMY854LpS","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-8.8184479440979,"y":9.0894014260543958},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["EyqsMCAHCjDt5pYgmWbjBh"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"3oNwj2JLAEvDSBxa7MntjM","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","sketch":{"start":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}},"turns":[{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"ccw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}}}}]}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-8.1369219700971147,"y":4.28490431707386},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["68NiLg7Go76gGUDzoExLTa","XHqgvWRUncZMSiq6wrdHj"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["3oNwj2JLAEvDSBxa7MntjM","8jQtubXskuk4ohMY854LpS"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[{"id":"AvKKKi6TdC7j5ssgQgdaCd","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","end":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":-7.6570607519837148,"y":4.28490431707386}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k"]},"routes":[{"id":"4pEXjdq1HQcXZCbuFjrVpv","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/9zoS6CDqroVgvAb897m94k","end":"2TBC8iDFgxVtTGP3hGv5pw/9zoS6CDqroVgvAb897m94k","sketch":{"start":{"reference-side":"top","position":{"x":-7.6570607519837148,"y":4.28490431707386}},"turns":[{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-5.0041273954751464,"y":10.877412929578623},"turn":"cw"},{"position":{"x":-4.0844049592483458,"y":10.877412929578623},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-2.972161008055421,"y":10.861226687558418}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"6QXq9WsiUuM6vNCF842fJJ","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-7.6570607519837148,"y":4.28490431707386},"turn":"cw"},{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-8.8184479440979,"y":9.0894014260543958},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"GXedoBDjqo2c3stCtH3zkf","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","end":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}},"turns":[{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-7.6570607519837148,"y":4.28490431707386},"turn":"cw"},{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}}}}]}, + {"operation":"place","place":{"placements":[{"id":"47jZR3aQdgMwt1d5ioSUUG","pose":{"center":{"x":21.990979,"y":-12.295899999999961},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"47jZR3aQdgMwt1d5ioSUUG","pose":{"center":{"x":18.992088633360623,"y":-11.388341073253834},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"47jZR3aQdgMwt1d5ioSUUG","pose":{"center":{"x":20.501588633360633,"y":-12.897841073253844},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"47jZR3aQdgMwt1d5ioSUUG","pose":{"center":{"x":22.011088633360643,"y":-11.388341073253835},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"47jZR3aQdgMwt1d5ioSUUG","pose":{"center":{"x":4.7280099414126653,"y":1.2385657336487981},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["A3h29Z2RECjLiMZL85ZfCZ/6CcM546jv4yBvH2adt2GJi","FEr47X6dCYqq2xKBb1kRFq/8RtrLyWJnsRetdte9rJ4TH"]},"routes":[{"id":"Dh3buw4jfZ2J7Y9GFw7tS3","layer":0,"start":"A3h29Z2RECjLiMZL85ZfCZ/6CcM546jv4yBvH2adt2GJi","end":"FEr47X6dCYqq2xKBb1kRFq/8RtrLyWJnsRetdte9rJ4TH","sketch":{"start":{"reference-side":"top","position":{"x":1.0950099414126724,"y":1.2380657336489238}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":2.3959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["A3h29Z2RECjLiMZL85ZfCZ/A7hQLvpEKiHhFcsQY9giLT","7R2Z1QpznMLufj2rsUw5q5/2dtsvGrvUzW47GKB9Whp5m"]},"routes":[{"id":"Eo1SEG7VU9viiLnPoAXTzY","layer":0,"start":"7R2Z1QpznMLufj2rsUw5q5/2dtsvGrvUzW47GKB9Whp5m","end":"A3h29Z2RECjLiMZL85ZfCZ/A7hQLvpEKiHhFcsQY9giLT","sketch":{"start":{"reference-side":"top","position":{"x":4.0090759585906479,"y":1.2385657336487983}},"turns":[],"end":{"reference-side":"top","position":{"x":1.9610099414126578,"y":1.2380657336489236}}}}]}, + {"operation":"place","place":{"placements":[{"id":"47jZR3aQdgMwt1d5ioSUUG","pose":{"center":{"x":4.8266576508415922,"y":1.1596475661056567},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["4pEXjdq1HQcXZCbuFjrVpv","AvKKKi6TdC7j5ssgQgdaCd","7BmxRkfQhqXpwoYFKgwhjD","9TvsvUH5B4wSQjBhkANqDs","3GabPGZ8GxZmyrcf7Z5kPN","6ih76fRfQNnsAxtNGmsND5","D46zanu5yPz5KpCWugS8AA","32PUR4DcPcF36xMs9KFqzS","FhMYWWEyYLVYiMTVjKyFj4","FuT2TfVfAxH9ww56vPw4rP"]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-13.347028360387556,"y":-3.1685973056042718},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["EC1sxy29FyQnvabkHgZfF","5N7LnPvm5XLd5YHp4PYGkv"]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-13.347028360387556,"y":-3.1685973056042718},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-13.347028360387556,"y":-3.1685973056042718},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-9.8446232278357,"y":0.14520251095562409},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["CtZwCNthEKgg4u2khMuR3"]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-9.8446232278357,"y":0.14520251095562409},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-9.8446232278357,"y":0.14520251095562409},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["8HTYB4qeys4gCNoJNkXyE3"]}}, + {"operation":"place","place":{"placements":[{"id":"F5rDN37d9RGPY6jnzVyguZ","pose":{"center":{"x":-10.837337614900841,"y":1.2702788162961163},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9XasTANj64vB9ZvTFDT3zo","pose":{"center":{"x":-13.192606122399646,"y":-2.7273909113530985},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["6NYfLB7p9qsmy8PaszG7Pg"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["2S3vAz9UnsqeSRAbFQcHZT"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["EUE3k89w4G7UhrFcB5NuWQ"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["AXqQKmPMa9RJFGqarGtfPM"]}}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"2Epu1qqLffemo5L2UDrcR1","layer":0,"start":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","end":"qnFCH9bDgvmNehhACtW61/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-10.37747639678744,"y":1.2702788162961163}},"turns":[],"end":{"reference-side":"top","position":{"x":-12.25858370794248,"y":9.2898865891396909}}}},{"id":"CELLN1kYQj9tBQCxM295dy","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","end":"9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}},"turns":[],"end":{"reference-side":"top","position":{"x":-12.732744904286244,"y":-2.7273909113530985}}}},{"id":"2ubZALh1wjvNRqMLpWUEhK","layer":0,"start":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","end":"FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-10.37747639678744,"y":1.2702788162961163}},"turns":[],"end":{"reference-side":"top","position":{"x":-11.697027752521842,"y":-0.88576194395744134}}}},{"id":"DY2ri7X9CfrbBFr2zSKX1n","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","end":"9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-11.697027752521842,"y":-0.88576194395744134}},"turns":[],"end":{"reference-side":"top","position":{"x":-12.732744904286244,"y":-2.7273909113530985}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo"]},"routes":[{"id":"6cv3p37Q8wzbB9HPqZozqz","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo","end":"F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-11.762828589745373,"y":-7.6672296874871124}},"turns":[{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-12.732744904286244,"y":-2.7273909113530985},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-11.297198833014242,"y":1.2702788162961163}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w"]},"routes":[{"id":"GnbDqQLTh8A3CjGF3XRXKA","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","end":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-10.492828589745391,"y":-7.6672296874871124}},"turns":[{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-12.732744904286244,"y":-2.7273909113530985},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-12.616750188748643,"y":-0.88576194395744134}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"2jPBCopvpmgX7LzMbGvLJq","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}},"turns":[{"position":{"x":-8.7429416900844,"y":12.238351946848271},"turn":"ccw"},{"position":{"x":-12.25858370794248,"y":9.2898865891396909},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-13.652467340513045,"y":-2.7273909113530985}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"5VP8hEJ8mwRFHfE23JqZp4","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","end":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","sketch":{"start":{"reference-side":"top","position":{"x":1.8118671626109748,"y":-5.0060229299361616}},"turns":[],"end":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}}}}]}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.2673420840612089,"y":-2.9617956416169204},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["5VP8hEJ8mwRFHfE23JqZp4"]}}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"2V5QVrKUojvEVcoq1tSTpV","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","end":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}},"turns":[{"position":{"x":-5.3233686026889622,"y":-6.0682147885329574},"turn":"ccw"},{"position":{"x":-0.9696503912578105,"y":-4.5713015002266193},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":1.7887308659478085,"y":-2.9617956416169204}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["77nSKnDe7MeGYsyZMCwcxr/88yyoxSEmf4aUjJUGQRHbX","FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"FAndHyTqgdeL9ZXqWaa5kF","layer":0,"start":"77nSKnDe7MeGYsyZMCwcxr/88yyoxSEmf4aUjJUGQRHbX","end":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.40834897250667129}},"turns":[],"end":{"reference-side":"top","position":{"x":1.7887308659478085,"y":-2.9617956416169204}}}},{"id":"C27m8BSbpBxbVV5wcSijMP","layer":0,"start":"77nSKnDe7MeGYsyZMCwcxr/88yyoxSEmf4aUjJUGQRHbX","end":"FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","sketch":{"start":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.40834897250667129}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.90413539985816316,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","2TBC8iDFgxVtTGP3hGv5pw/88yyoxSEmf4aUjJUGQRHbX","656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"7rg85ox4rXxytcGBWsBCzA","layer":0,"start":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","end":"GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":1.7887308659478085,"y":-2.9617956416169204}},"turns":[{"position":{"x":8.9895220169288486,"y":1.7886249617768346},"turn":"ccw"},{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":1.1956405486911448,"y":4.8656221488028013}}}},{"id":"DUWL1KPN51HzWgENAboP4J","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/88yyoxSEmf4aUjJUGQRHbX","end":"GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-2.9709110080554209,"y":10.861226687558418}},"turns":[{"position":{"x":0.77777883561398875,"y":6.4613744147425507},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.1956405486911448,"y":4.8656221488028013}}}},{"id":"E3YA4FjswfEAmeUS1mmhRK","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","end":"2TBC8iDFgxVtTGP3hGv5pw/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-2.9041353998581632,"y":7.2049539382749561}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.9709110080554209,"y":10.861226687558418}}}},{"id":"BGXMbrZYoVcDWSZqKTfKEf","layer":0,"start":"GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","end":"FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","sketch":{"start":{"reference-side":"top","position":{"x":1.1956405486911448,"y":4.8656221488028013}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":4.8959539382748734}}}},{"id":"86cyd4NypPGepW76jjNExt","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/88yyoxSEmf4aUjJUGQRHbX","end":"DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-2.9709110080554209,"y":10.861226687558418}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["GXedoBDjqo2c3stCtH3zkf","6QXq9WsiUuM6vNCF842fJJ"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/88yyoxSEmf4aUjJUGQRHbX","DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[{"id":"Df1jqosDFHNvXTBrUnv8JD","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/88yyoxSEmf4aUjJUGQRHbX","end":"DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-7.6583107519837146,"y":4.28490431707386}},"turns":[{"position":{"x":-8.52408757163713,"y":6.246502900852918},"turn":"cw"},{"position":{"x":-5.0041273954751464,"y":10.877412929578623},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}}}},{"id":"Daon43xMAuouBYf1G8XrW6","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","end":"9usVbKZ7QpQqddvQtPgJBc/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":-7.6583107519837146,"y":4.28490431707386}}}}]}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-8.03922635352373,"y":6.246502900852918},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-8.03922635352373,"y":6.246502900852918},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-8.03922635352373,"y":6.246502900852918},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-8.03922635352373,"y":6.246502900852918},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.1188852553540132,"y":6.7924679590891905},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"66qTno5vb9akSqy6amCn6a","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","end":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}},"turns":[{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.8184479440979,"y":9.0894014260543958}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"5pJSmhFhvtTeFqUqoHfDkB","layer":0,"start":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","end":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","sketch":{"start":{"reference-side":"top","position":{"x":-8.7429416900844,"y":12.238351946848271}},"turns":[{"position":{"x":-8.8184479440979,"y":9.0894014260543958},"turn":"ccw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"ccw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"ccw"},{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-12.148282109379686,"y":8.98104211316387},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-12.095097346380673,"y":11.753271520915046},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"UiKhZxnYe5j8euLSajovN","pose":{"center":{"x":-8.4434225089844013,"y":9.221763344329748},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["66qTno5vb9akSqy6amCn6a","2jPBCopvpmgX7LzMbGvLJq"]}}, + {"operation":"place","place":{"placements":[{"id":"M3JJuirXHMho9v8nAXgAY","pose":{"center":{"x":-8.6767607309467252,"y":11.907447151159889},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["5pJSmhFhvtTeFqUqoHfDkB"]}}, + {"operation":"place","place":{"placements":[{"id":"qnFCH9bDgvmNehhACtW61","pose":{"center":{"x":-11.751196354553629,"y":8.8928008343136362},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"A6Z7v3kr5Yy5G4C4cz6Kfv","pose":{"center":{"x":-11.543589353566706,"y":11.753271520915046},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"24Yc41tAXyxdFr76Ex52Tw","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-8.4434225089844013,"y":9.221763344329748}},"turns":[{"position":{"x":-8.6767607309467252,"y":11.907447151159889},"turn":"ccw"},{"position":{"x":-11.751196354553629,"y":8.8928008343136362},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-13.652467340513045,"y":-2.7273909113530985}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"EFV5Zame4n6wfNwWeUPZri","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","end":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}},"turns":[{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.4434225089844013,"y":9.221763344329748}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"EerpJgLds2JSj1X3TbB3sr","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.584886474660677,"y":2.8563388094526232},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"},{"position":{"x":-8.4434225089844013,"y":9.221763344329748},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.6767607309467252,"y":11.907447151159889}}}}]}, + {"operation":"via-update","update":{"via":"FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff","relative":{"x":3.720597558198278,"y":0.900242518659129}}}, + {"operation":"unroute","delete":{"routes":["ELdQSa4UwPo3nNV4JVqaqX"]}}, + {"operation":"via-update","update":{"via":"FEr47X6dCYqq2xKBb1kRFq/8J67Px9wjoZi97krZzc3gp","relative":{"x":3.6456533210587536,"y":1.6254096379736653}}}, + {"operation":"unroute","delete":{"routes":["EFV5Zame4n6wfNwWeUPZri","EerpJgLds2JSj1X3TbB3sr"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"AaWvb7RQFLUuaKJLh53FGt","layer":0,"start":"UiKhZxnYe5j8euLSajovN/5emEb4Lqifip8iYYnNCVB1","end":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","sketch":{"start":{"reference-side":"top","position":{"x":-8.4434225089844013,"y":9.221763344329748}},"turns":[{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"ccw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1"]},"routes":[{"id":"3jrY7Pb9uKLTjGToB2qesk","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"M3JJuirXHMho9v8nAXgAY/5emEb4Lqifip8iYYnNCVB1","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"},{"position":{"x":-8.4434225089844013,"y":9.221763344329748},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-8.6767607309467252,"y":11.907447151159889}}}}]}, + {"operation":"via-update","update":{"via":"FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT","relative":{"x":-4.0129685312118744,"y":0.81818907221601656}}}, + {"operation":"unroute","delete":{"routes":["FAbuy5KNGzxQAEuz6pzbNg"]}}, + {"operation":"via-update","update":{"via":"FT4pxFBh14a61jaK6UdDfM/EWPFMLZ3Dea5nQzF4xP2Gh","relative":{"x":-1.5585396872344046,"y":7.22357074513438}}}, + {"operation":"unroute","delete":{"routes":["7rg85ox4rXxytcGBWsBCzA"]}}, + {"operation":"place","place":{"placements":[{"id":"3HfeEALJYFNctitkdZqmhv","pose":{"center":{"x":4.8601192424779427,"y":-9.1477209332639511},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":9.36315756586002,"y":-6.8554628402559521},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/G9phhhUTXXVD7b6Mni79sc","FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff"]},"routes":[{"id":"2YhE5dKvZq3qp7Ws5dpbpW","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/G9phhhUTXXVD7b6Mni79sc","end":"FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":9.3700000000001182}},"turns":[{"position":{"x":-6.5359956019103951,"y":5.3926442469821376},"turn":"ccw"},{"position":{"x":-6.5753493434297514,"y":4.2106114442440772},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-6.6247329580564411,"y":3.4957114196157444}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT"]},"routes":[]}, + {"operation":"route","request":{"layer":1,"pads":["5nc5vqcQUq4T65QATrHbs6/AsBhLVKmpk6EFaffXQKh6Y","FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT"]},"routes":[{"id":"6T1hfAAup4FPZ17TxJFqWf","layer":1,"start":"5nc5vqcQUq4T65QATrHbs6/AsBhLVKmpk6EFaffXQKh6Y","end":"FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT","sketch":{"start":{"reference-side":null,"position":{"x":3.7749999999999773,"y":-9.7599999999999909}},"turns":[{"position":{"x":3.7749999999999773,"y":-8.0599999999999454},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-5.6299999999999955},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-3.1299999999999955},"turn":"cw"},{"position":{"x":3.7749999999999773,"y":-0.62999999999999545},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":1.1088331313537112,"y":3.5777648660588568}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"RRTmfeuWW4yP5gygdqxfm","layer":0,"start":"656q9PiEkQzQr9tinkLxrZ/88yyoxSEmf4aUjJUGQRHbX","end":"GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":1.7887308659478085,"y":-2.9617956416169204}},"turns":[{"position":{"x":8.8764292548656218,"y":1.5585396872344046},"turn":"ccw"},{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":1.1956405486911448,"y":4.8656221488028013}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","3HfeEALJYFNctitkdZqmhv/7eLMrp81n94xgV3ZcqewUk"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["EVnbJQbBxw1eUEYRni6Wch/2LxwweqFNEEjCqsWtbXLw8","656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","3HfeEALJYFNctitkdZqmhv/7eLMrp81n94xgV3ZcqewUk"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["7R2Z1QpznMLufj2rsUw5q5/249fMYoZnp83PEwU9hgbJp","8VvLEdgpKAQe7YfsFDSzgh/NPAaADWvFAh5Pttni6nm6","FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","8WBCGnBP9JAB789hNHWyB5/2LxwweqFNEEjCqsWtbXLw8","EVnbJQbBxw1eUEYRni6Wch/2LxwweqFNEEjCqsWtbXLw8","GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","FshjgLMYkKo69oJh6uLstr/88yyoxSEmf4aUjJUGQRHbX","656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","3HfeEALJYFNctitkdZqmhv/7eLMrp81n94xgV3ZcqewUk"]},"routes":[]}, + {"operation":"place","place":{"placements":[{"id":"GRxng3pSHKQ3xM4RUKMbtX","pose":{"center":{"x":21.05,"y":-11.746800136566161},"angle":0,"flipx":false},"side":"top"},{"id":"D89ACc7xJQykdg4Dh1A3V7","pose":{"center":{"x":21.05,"y":-13.95},"angle":0,"flipx":false},"side":"top"},{"id":"CUU84XFACmadAff3nCSfRp","pose":{"center":{"x":23.253199863433839,"y":-11.746800136566161},"angle":0,"flipx":false},"side":"top"},{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":23.253199863433839,"y":-13.95},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["3jrY7Pb9uKLTjGToB2qesk","AaWvb7RQFLUuaKJLh53FGt","24Yc41tAXyxdFr76Ex52Tw","2Epu1qqLffemo5L2UDrcR1","Aav3pmVrRkwRVHZUeU6Zrv"]}}, + {"operation":"place","place":{"placements":[{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":-9.9551844694913676,"y":11.248898408812629},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"D89ACc7xJQykdg4Dh1A3V7","pose":{"center":{"x":-12.640330477356041,"y":9.2293145654833815},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":-10.345331348316336,"y":11.386597307221441},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GRxng3pSHKQ3xM4RUKMbtX","pose":{"center":{"x":-10.29944920440623,"y":9.137532788770347},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"CUU84XFACmadAff3nCSfRp","pose":{"center":{"x":-12.686212621266133,"y":11.616112960128966},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"CUU84XFACmadAff3nCSfRp","pose":{"center":{"x":-12.646050442563563,"y":11.484151515820521},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":-10.410243231534196,"y":11.475851146645999},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GRxng3pSHKQ3xM4RUKMbtX","pose":{"center":{"x":-10.340019131417392,"y":9.2105586573904379},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GRxng3pSHKQ3xM4RUKMbtX","pose":{"center":{"x":-10.388703043830786,"y":9.2267866281949029},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["D89ACc7xJQykdg4Dh1A3V7/rp1xna1JgPguTNc7Mdp9f","F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6"]},"routes":[{"id":"AcQKYbpQynsDb9ySq3crqh","layer":0,"start":"D89ACc7xJQykdg4Dh1A3V7/rp1xna1JgPguTNc7Mdp9f","end":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-12.640330477356041,"y":9.2293145654833815}},"turns":[],"end":{"reference-side":"top","position":{"x":-10.37747639678744,"y":1.2702788162961163}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f"]},"routes":[{"id":"3PCPKh6KdHCrMspuASsuye","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-12.616750188748643,"y":-0.88576194395744134}},"turns":[{"position":{"x":-12.646050442563563,"y":11.484151515820521},"turn":"cw"},{"position":{"x":-10.410243231534196,"y":11.475851146645999},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-10.388703043830786,"y":9.2267866281949029}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["3PCPKh6KdHCrMspuASsuye"]}}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f"]},"routes":[{"id":"49KCyyeGtP87SFLrf5cbZK","layer":0,"start":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","end":"6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-13.652467340513045,"y":-2.7273909113530985}},"turns":[{"position":{"x":-12.646050442563563,"y":11.484151515820521},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-10.410243231534196,"y":11.475851146645999}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f"]},"routes":[]}, + {"operation":"place","place":{"placements":[{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":-10.088945801913635,"y":11.751248943463624},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["49KCyyeGtP87SFLrf5cbZK"]}}, + {"operation":"place","place":{"placements":[{"id":"GRxng3pSHKQ3xM4RUKMbtX","pose":{"center":{"x":-9.8608572665970069,"y":9.1808869953919654},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":-9.9282970871033545,"y":11.498800963047469},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"6WpfMibZFsfK3UeazZfhA1","pose":{"center":{"x":-9.8594476378989491,"y":11.498800963047469},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f"]},"routes":[{"id":"9i5ZK6NSfAznxEUVU8ynRA","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-12.616750188748643,"y":-0.88576194395744134}},"turns":[{"position":{"x":-12.646050442563563,"y":11.484151515820521},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8608572665970069,"y":9.1808869953919654}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f"]},"routes":[{"id":"DQf43msCg7qRcRHMut1yYc","layer":0,"start":"9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","end":"6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-13.652467340513045,"y":-2.7273909113530985}},"turns":[{"position":{"x":-12.646050442563563,"y":11.484151515820521},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8594476378989491,"y":11.498800963047469}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy"]},"routes":[{"id":"8Rs3gfTfaKaM3zjRyJaeQs","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8608572665970069,"y":9.1808869953919654}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW"]},"routes":[{"id":"AUov54v6Pvb2KgnqJdUEFg","layer":0,"start":"6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","end":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","sketch":{"start":{"reference-side":"top","position":{"x":-9.8594476378989491,"y":11.498800963047469}},"turns":[{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"ccw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}}}}]}, + {"operation":"place","place":{"placements":[{"id":"GRxng3pSHKQ3xM4RUKMbtX","pose":{"center":{"x":-9.8608572665970069,"y":9.2038368117934333},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["8Rs3gfTfaKaM3zjRyJaeQs"]}}, + {"operation":"route","request":{"layer":0,"pads":["GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy"]},"routes":[{"id":"3H1myfU4qY7FyjzqQYSE8r","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8608572665970069,"y":9.2038368117934333}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["AnFmVeWs5C1x5ZuHHpf6vV/NPAaADWvFAh5Pttni6nm6","FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN"]},"routes":[{"id":"8oDz6bukSndybB7sUvAYTD","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","end":"AnFmVeWs5C1x5ZuHHpf6vV/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":null,"position":{"x":8.5747840584332,"y":4.6860528771510914}},"turns":[],"end":{"reference-side":"top","position":{"x":8.6066092382763184,"y":5.9977616135361611}}}}]}, + {"operation":"unroute","delete":{"routes":["3H1myfU4qY7FyjzqQYSE8r","Daon43xMAuouBYf1G8XrW6","BGXMbrZYoVcDWSZqKTfKEf","GnbDqQLTh8A3CjGF3XRXKA"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"C4CBVVTg1WXUeaaXLTBsY6","layer":0,"start":"GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","end":"FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","sketch":{"start":{"reference-side":"top","position":{"x":1.1956405486911448,"y":4.8656221488028013}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":4.8959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/88yyoxSEmf4aUjJUGQRHbX","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[{"id":"6TF7DheDX4TmwwsRyQmifM","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/88yyoxSEmf4aUjJUGQRHbX","end":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","sketch":{"start":{"reference-side":"top","position":{"x":-7.6583107519837146,"y":4.28490431707386}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w"]},"routes":[{"id":"3yrbEBi36svR2o6kKCwfND","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","end":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-10.492828589745391,"y":-7.6672296874871124}},"turns":[{"position":{"x":-11.762828589745375,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-12.732744904286244,"y":-2.7273909113530985},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-12.616750188748643,"y":-0.88576194395744134}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy"]},"routes":[{"id":"BkRJVxF1nykkxDhXwmKBRw","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"cw"},{"position":{"x":-7.6583107519837146,"y":4.28490431707386},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8608572665970069,"y":9.2038368117934333}}}}]}, + {"operation":"via-create","via":{"id":"7R2Z1QpznMLufj2rsUw5q5/84FdozgB6n5CbQ5yUaTChF","origin":"7R2Z1QpznMLufj2rsUw5q5/249fMYoZnp83PEwU9hgbJp","route-layer":0,"instance":"7R2Z1QpznMLufj2rsUw5q5","relative":{"x":0.00499371860140041,"y":-1.5360076906083893}},"route":[]}, + {"operation":"unroute","delete":{"routes":["6TF7DheDX4TmwwsRyQmifM","C4CBVVTg1WXUeaaXLTBsY6","Df1jqosDFHNvXTBrUnv8JD","86cyd4NypPGepW76jjNExt","E3YA4FjswfEAmeUS1mmhRK","C27m8BSbpBxbVV5wcSijMP","2V5QVrKUojvEVcoq1tSTpV","F1iwQNSKrGDd5cdCddc9LE","BcpXV4LGeF19c4FqzkouFZ","82wtBhvsaek6zgpaLc99D3","9CaAUhdR9rF46NKMBRvByK","7dYdMqCmEJg3r6hzEnu4nA","9bVF2p7xBtjLJ4DoYfykhE","6f95tToQgfC6v6P5eFYEBX","7ZeYCDR3iZcj9LtiA5APfa","2eEJ5e46UurWxoUo5ueRfb"]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.0177674439686144,"y":-0.020211970610101826},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["3acCFpJRFNfFzmaBvGduof"]}}, + {"operation":"place","place":{"placements":[{"id":"6UkTHKpQvqmDsqkXeN9e3R","pose":{"center":{"x":-2.0177674439686144,"y":-0.020211970610101826},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.855058201833724,"y":-0.070262245606729},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"77nSKnDe7MeGYsyZMCwcxr","pose":{"center":{"x":-0.855058201833724,"y":-0.070262245606729},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.2673420840612089,"y":-2.9617956416169204},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.2673420840612089,"y":-2.9617956416169204},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["RRTmfeuWW4yP5gygdqxfm"]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.2673420840612089,"y":-2.9617956416169204},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.5427398808788322,"y":-2.9158960088139829},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":6.3337367988187552,"y":-1.2100968826531506},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":6.3337367988187552,"y":-1.2100968826531506},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":7.0451811072642823,"y":-2.4034873355295185},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":7.0451811072642823,"y":-2.4034873355295185},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EVnbJQbBxw1eUEYRni6Wch","pose":{"center":{"x":6.6779840448407848,"y":-2.8395338471574223},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":9.36315756586002,"y":-6.8554628402559521},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":9.36315756586002,"y":-6.8554628402559521},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"FshjgLMYkKo69oJh6uLstr","pose":{"center":{"x":9.1221844936445979,"y":-6.6948141254456717},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-8.1369219700971147,"y":4.28490431707386},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"9usVbKZ7QpQqddvQtPgJBc","pose":{"center":{"x":-8.1369219700971147,"y":4.28490431707386},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.1188852553540132,"y":6.7924679590891905},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"4TMLddbiXPVWvD7NSw5XXn","pose":{"center":{"x":-7.1188852553540132,"y":6.7924679590891905},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.246877009378851,"y":8.30434331438402},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"EcLdz4H3yjpw2x6PqBebdD","pose":{"center":{"x":-4.246877009378851,"y":8.30434331438402},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.4106572888571431,"y":8.8323604729582836},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.4106572888571431,"y":8.8323604729582836},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-2.4922997899420207,"y":10.861226687558418},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["DUWL1KPN51HzWgENAboP4J"]}}, + {"operation":"place","place":{"placements":[{"id":"2TBC8iDFgxVtTGP3hGv5pw","pose":{"center":{"x":-2.4922997899420207,"y":10.861226687558418},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":1.6742517668045449,"y":4.8656221488028013},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"GaQT6sXk2tqEU4pJDUnwwA","pose":{"center":{"x":1.6742517668045449,"y":4.8656221488028013},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"BsCwZU1nBU91oEPdKk4SUr","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","end":"656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":2.5606192424778627,"y":-5.0372209332639493}},"turns":[],"end":{"reference-side":"top","position":{"x":2.5427398808788322,"y":-3.3945072269273835}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["FAndHyTqgdeL9ZXqWaa5kF"]}}, + {"operation":"route","request":{"layer":0,"pads":["77nSKnDe7MeGYsyZMCwcxr/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"LZ1PyXUJPYTUd8Uqqygcg","layer":0,"start":"77nSKnDe7MeGYsyZMCwcxr/2LxwweqFNEEjCqsWtbXLw8","end":"656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.40834897250667124}},"turns":[],"end":{"reference-side":"top","position":{"x":2.5427398808788322,"y":-3.3945072269273835}}}},{"id":"6xcx6GdEKoy2sfkUrpizLy","layer":0,"start":"77nSKnDe7MeGYsyZMCwcxr/2LxwweqFNEEjCqsWtbXLw8","end":"FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","sketch":{"start":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.40834897250667124}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.90413539985816316,"y":1.5859539382749279}}}}]}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.5427398808788322,"y":-2.9158960088139829},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.5427398808788322,"y":-2.9158960088139829},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.5427398808788322,"y":-2.9158960088139829},"angle":180,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":2.5427398808788322,"y":-2.9158960088139829},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"656q9PiEkQzQr9tinkLxrZ","pose":{"center":{"x":3.0820605663133445,"y":-2.8355716514088427},"angle":270,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/ARfh82Zei6N8jMB346B71w","6UkTHKpQvqmDsqkXeN9e3R/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"EzSSnfa8Mk3m7akxuxJqgG","layer":0,"start":"6UkTHKpQvqmDsqkXeN9e3R/2LxwweqFNEEjCqsWtbXLw8","end":"FEr47X6dCYqq2xKBb1kRFq/ARfh82Zei6N8jMB346B71w","sketch":{"start":{"reference-side":"top","position":{"x":-2.0177674439686144,"y":0.45839924750329852}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.9041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"AKyzYavGKUCQcvt5suVm4w","layer":0,"start":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","end":"FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","sketch":{"start":{"reference-side":"top","position":{"x":1.1956405486911446,"y":4.8656221488028013}},"turns":[],"end":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":4.8959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["5DjR2uZVerwXVQtxsGGubf/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/56N2PXpipE8m7q5KhXMcr2"]},"routes":[{"id":"Gg2FQRJ343rnF9ej4dk9Eq","layer":0,"start":"5DjR2uZVerwXVQtxsGGubf/2LxwweqFNEEjCqsWtbXLw8","end":"FEr47X6dCYqq2xKBb1kRFq/56N2PXpipE8m7q5KhXMcr2","sketch":{"start":{"reference-side":"top","position":{"x":-2.4106572888571431,"y":8.3537492548448835}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.4041353998581632,"y":7.2049539382749561}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","DmR6sNit5G9pTyKT3TBeQc/69m3hpZazob4QbVDhEkQBW","FEr47X6dCYqq2xKBb1kRFq/C6nfBM5AVtLShdneZKc72Z"]},"routes":[{"id":"39ydC9L2kMqF4qz56uhrJe","layer":0,"start":"EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","end":"DmR6sNit5G9pTyKT3TBeQc/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-4.7254882274922512,"y":8.30434331438402}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.0041273954751464,"y":10.877412929578623}}}},{"id":"5fghm3Xw6973h2NuRuA1CA","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/C6nfBM5AVtLShdneZKc72Z","end":"EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-4.9041353998581627,"y":7.2049539382749561}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.7254882274922512,"y":8.30434331438402}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"BkKTCXkAno8dABnTGPzsc7","layer":0,"start":"656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","end":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":2.6034493481999439,"y":-2.8355716514088427}},"turns":[{"position":{"x":8.8764292548656218,"y":1.5585396872344046},"turn":"ccw"},{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":1.1956405486911446,"y":4.8656221488028013}}}},{"id":"6JYgiNkCR4GZbz5o6MfT2V","layer":0,"start":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","end":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":1.1956405486911446,"y":4.8656221488028013}},"turns":[{"position":{"x":0.77777883561398875,"y":6.4613744147425507},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-2.9709110080554213,"y":10.861226687558418}}}},{"id":"CXSubPNzRUNDhiBEPNLcPi","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","end":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-2.9041353998581632,"y":7.2049539382749561}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.9709110080554213,"y":10.861226687558418}}}},{"id":"Dh7xc1sJXov7nQ3HZ6cg2z","layer":0,"start":"DmR6sNit5G9pTyKT3TBeQc/NPAaADWvFAh5Pttni6nm6","end":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.9709110080554213,"y":10.861226687558418}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","4TMLddbiXPVWvD7NSw5XXn/7MJbizzrGcBXXFWspaN6LS"]},"routes":[{"id":"4ELehh8EE6hstDCk7krMEZ","layer":0,"start":"4TMLddbiXPVWvD7NSw5XXn/7MJbizzrGcBXXFWspaN6LS","end":"FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","sketch":{"start":{"reference-side":"top","position":{"x":-7.1188852553540132,"y":6.30760674097579}},"turns":[],"end":{"reference-side":"top","position":{"x":-6.5359956019103951,"y":5.3926442469821376}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[{"id":"F41z9Gnf7sbtCRizZfHD1E","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","end":"9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":-7.6583107519837146,"y":4.28490431707386}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"C1MTRaKybfBYzDyv68GTd9","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","end":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-7.6583107519837146,"y":4.28490431707386}},"turns":[{"position":{"x":-7.1188852553540132,"y":7.27732917720259},"turn":"cw"},{"position":{"x":-5.0041273954751464,"y":10.877412929578623},"turn":"cw"},{"position":{"x":-4.0844049592483458,"y":10.877412929578623},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-2.9709110080554213,"y":10.861226687558418}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","EVnbJQbBxw1eUEYRni6Wch/2LxwweqFNEEjCqsWtbXLw8","3HfeEALJYFNctitkdZqmhv/4M32voPjQ4ujDnVkcwNkbB"]},"routes":[{"id":"5AQxa58Y3ZPq6j9jTWSYQT","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","end":"EVnbJQbBxw1eUEYRni6Wch/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":null,"position":{"x":8.9990591481597733,"y":-1.2441827696575491}},"turns":[],"end":{"reference-side":"top","position":{"x":7.1565952629541849,"y":-2.8395338471574223}}}},{"id":"BrxDm6VNY3cB8o3MjSy1kp","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/4M32voPjQ4ujDnVkcwNkbB","end":"EVnbJQbBxw1eUEYRni6Wch/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":7.159619242477909,"y":-5.0372209332639493}},"turns":[],"end":{"reference-side":"top","position":{"x":7.1565952629541849,"y":-2.8395338471574223}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","FshjgLMYkKo69oJh6uLstr/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"Fj19yLeVUD2e8DdsAxgVE","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","end":"FshjgLMYkKo69oJh6uLstr/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":null,"position":{"x":8.3649671713528342,"y":-4.6984842540798315}},"turns":[],"end":{"reference-side":"top","position":{"x":9.1221844936445979,"y":-6.2162029073322715}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"9UnaKywZYWgJri4nf1QU3s","layer":0,"start":"656q9PiEkQzQr9tinkLxrZ/2LxwweqFNEEjCqsWtbXLw8","end":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","sketch":{"start":{"reference-side":"top","position":{"x":2.6034493481999439,"y":-2.8355716514088427}},"turns":[{"position":{"x":-0.9696503912578105,"y":-4.5713015002266193},"turn":"cw"},{"position":{"x":-5.3233686026889622,"y":-6.0682147885329574},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["8VvLEdgpKAQe7YfsFDSzgh/69m3hpZazob4QbVDhEkQBW","FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh"]},"routes":[{"id":"NvUnWHuhoMESY7kKMvDdx","layer":0,"start":"8VvLEdgpKAQe7YfsFDSzgh/69m3hpZazob4QbVDhEkQBW","end":"FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh","sketch":{"start":{"reference-side":"top","position":{"x":-1.3707549222081314,"y":-1.5704696026524452}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"unroute","delete":{"routes":["NvUnWHuhoMESY7kKMvDdx"]}}, + {"operation":"unroute","delete":{"routes":["Dh7xc1sJXov7nQ3HZ6cg2z","39ydC9L2kMqF4qz56uhrJe"]}}, + {"operation":"route","request":{"layer":0,"pads":["8VvLEdgpKAQe7YfsFDSzgh/3bd6evhN5qGHwvQVBHrAnX","FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh"]},"routes":[{"id":"GoVkiDK9ndLjDKsvurDNWu","layer":0,"start":"8VvLEdgpKAQe7YfsFDSzgh/3bd6evhN5qGHwvQVBHrAnX","end":"FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh","sketch":{"start":{"reference-side":"top","position":{"x":-1.3707549222081314,"y":-1.5742196026524453}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","DmR6sNit5G9pTyKT3TBeQc/8KLdf6zAUxvppad5gbWSSb"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["C1MTRaKybfBYzDyv68GTd9"]}}, + {"operation":"route","request":{"layer":0,"pads":["EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","DmR6sNit5G9pTyKT3TBeQc/8KLdf6zAUxvppad5gbWSSb"]},"routes":[{"id":"4DmTTbyQZki9mSAHyR5vNA","layer":0,"start":"EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","end":"DmR6sNit5G9pTyKT3TBeQc/8KLdf6zAUxvppad5gbWSSb","sketch":{"start":{"reference-side":"top","position":{"x":-4.7254882274922512,"y":8.30434331438402}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.9978773954751468,"y":10.877412929578623}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","DmR6sNit5G9pTyKT3TBeQc/FfXYEJ2zZ7kfpFUL7sd4uX","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"495DPpZpmusaBufdvc51tD","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","end":"DmR6sNit5G9pTyKT3TBeQc/FfXYEJ2zZ7kfpFUL7sd4uX","sketch":{"start":{"reference-side":"top","position":{"x":-7.6583107519837146,"y":4.28490431707386}},"turns":[{"position":{"x":-7.1188852553540132,"y":7.27732917720259},"turn":"cw"},{"position":{"x":-4.9978773954751468,"y":10.877412929578623},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-4.0906549592483454,"y":10.877412929578623}}}},{"id":"FnG2oY3CHjS1o53EFsuFnW","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","end":"DmR6sNit5G9pTyKT3TBeQc/FfXYEJ2zZ7kfpFUL7sd4uX","sketch":{"start":{"reference-side":"top","position":{"x":-2.9709110080554213,"y":10.861226687558418}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.0906549592483454,"y":10.877412929578623}}}}]}, + {"operation":"place","place":{"placements":[{"id":"2i6B2MSQaRVS6gpF35Rqmx","pose":{"center":{"x":19.149855143503039,"y":-15.692201891913642},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2i6B2MSQaRVS6gpF35Rqmx","pose":{"center":{"x":-8.9643455278140287,"y":-13.672618048584388},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2i6B2MSQaRVS6gpF35Rqmx","pose":{"center":{"x":-8.86697770298724,"y":-13.656390077779925},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TtfCo3u1C369a3Dc36cPQ","pose":{"center":{"x":21.990979,"y":-14.55},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TtfCo3u1C369a3Dc36cPQ","pose":{"center":{"x":7.7857088422345395,"y":-1.6705550569593157},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TtfCo3u1C369a3Dc36cPQ","pose":{"center":{"x":7.7857088422345395,"y":-1.6705550569593157},"angle":270,"flipx":true},"side":"bottom"}]}}, + {"operation":"place","place":{"placements":[{"id":"2TtfCo3u1C369a3Dc36cPQ","pose":{"center":{"x":7.5421899252442746,"y":0.061135019415902381},"angle":270,"flipx":true},"side":"bottom"}]}}, + {"operation":"route","request":{"layer":1,"pads":["2TtfCo3u1C369a3Dc36cPQ/69m3hpZazob4QbVDhEkQBW","FT4pxFBh14a61jaK6UdDfM/8jeM3LD3mn3XBjfsNNRZVb"]},"routes":[{"id":"5h13TAks6Gsa8FEquthDEa","layer":1,"start":"2TtfCo3u1C369a3Dc36cPQ/69m3hpZazob4QbVDhEkQBW","end":"FT4pxFBh14a61jaK6UdDfM/8jeM3LD3mn3XBjfsNNRZVb","sketch":{"start":{"reference-side":"bottom","position":{"x":8.0020511433576758,"y":0.061135019415902381}},"turns":[],"end":{"reference-side":null,"position":{"x":9.9374999999999787,"y":1.25}}}}]}, + {"operation":"place","place":{"placements":[{"id":"8m61X3RXkyLesExgz2wrGA","pose":{"center":{"x":22.218999999999916,"y":-13.130999999999993},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"routes":["5h13TAks6Gsa8FEquthDEa","FnG2oY3CHjS1o53EFsuFnW","495DPpZpmusaBufdvc51tD","4DmTTbyQZki9mSAHyR5vNA","9UnaKywZYWgJri4nf1QU3s","Fj19yLeVUD2e8DdsAxgVE","BrxDm6VNY3cB8o3MjSy1kp","5AQxa58Y3ZPq6j9jTWSYQT","F41z9Gnf7sbtCRizZfHD1E","4ELehh8EE6hstDCk7krMEZ","BkKTCXkAno8dABnTGPzsc7","LZ1PyXUJPYTUd8Uqqygcg","BsCwZU1nBU91oEPdKk4SUr","8oDz6bukSndybB7sUvAYTD","9i5ZK6NSfAznxEUVU8ynRA","6cv3p37Q8wzbB9HPqZozqz","Eo1SEG7VU9viiLnPoAXTzY","Dh3buw4jfZ2J7Y9GFw7tS3","6oaogsBVsQrrZkDPCnCQJk","8CZZ8L79oA2XPujF1zHLt4","6VBWHmoRnMbcTLbEqcxWjP","k7gNgP6zQV6YaZJpA4Kd9","5d6JUf2iF4odnaToS8WTfc"]}}, + {"operation":"place","place":{"placements":[{"id":"8m61X3RXkyLesExgz2wrGA","pose":{"center":{"x":-4.7825622998827129,"y":-3.6454212279853362},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"route","request":{"layer":0,"pads":["A3h29Z2RECjLiMZL85ZfCZ/3bd6evhN5qGHwvQVBHrAnX","A3h29Z2RECjLiMZL85ZfCZ/EL9mw84DiUiE4hdKRbywVE","7R2Z1QpznMLufj2rsUw5q5/2dtsvGrvUzW47GKB9Whp5m","7R2Z1QpznMLufj2rsUw5q5/249fMYoZnp83PEwU9hgbJp","7R2Z1QpznMLufj2rsUw5q5/84FdozgB6n5CbQ5yUaTChF","9usVbKZ7QpQqddvQtPgJBc/88yyoxSEmf4aUjJUGQRHbX","9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","AnFmVeWs5C1x5ZuHHpf6vV/6Jhv1zHNyie2BpKYKWyx9F","AnFmVeWs5C1x5ZuHHpf6vV/CyV6Emr8QL3Tr2dtCRXJum","9XasTANj64vB9ZvTFDT3zo/69m3hpZazob4QbVDhEkQBW","9XasTANj64vB9ZvTFDT3zo/NPAaADWvFAh5Pttni6nm6","77nSKnDe7MeGYsyZMCwcxr/88yyoxSEmf4aUjJUGQRHbX","77nSKnDe7MeGYsyZMCwcxr/2LxwweqFNEEjCqsWtbXLw8","8m61X3RXkyLesExgz2wrGA/8QhojHF2fzroox347dx9Kw","8m61X3RXkyLesExgz2wrGA/5e5Ld1bqfWH42N6BrfmcUy","8m61X3RXkyLesExgz2wrGA/BWEKdqfsPpBrvPBWpn8ZA2","8m61X3RXkyLesExgz2wrGA/DyMnAWs9qaaBrRyLsdDUGk","6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","FhHXn7W3gZ51Woya9HJoph/NPAaADWvFAh5Pttni6nm6","EcLdz4H3yjpw2x6PqBebdD/88yyoxSEmf4aUjJUGQRHbX","EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","B2rjcDuioM877xmyYkTmXo/3bd6evhN5qGHwvQVBHrAnX","B2rjcDuioM877xmyYkTmXo/EL9mw84DiUiE4hdKRbywVE","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","8VvLEdgpKAQe7YfsFDSzgh/3bd6evhN5qGHwvQVBHrAnX","8VvLEdgpKAQe7YfsFDSzgh/EL9mw84DiUiE4hdKRbywVE","D89ACc7xJQykdg4Dh1A3V7/rp1xna1JgPguTNc7Mdp9f","DmR6sNit5G9pTyKT3TBeQc/3bd6evhN5qGHwvQVBHrAnX","DmR6sNit5G9pTyKT3TBeQc/EL9mw84DiUiE4hdKRbywVE","FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","FT4pxFBh14a61jaK6UdDfM/EWPFMLZ3Dea5nQzF4xP2Gh","FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","FT4pxFBh14a61jaK6UdDfM/7g64Kq3nes1cJrAZGSVYKz","75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","75dACL9SDaiVFRXgczJdD8/2LxwweqFNEEjCqsWtbXLw8","5DjR2uZVerwXVQtxsGGubf/88yyoxSEmf4aUjJUGQRHbX","5DjR2uZVerwXVQtxsGGubf/2LxwweqFNEEjCqsWtbXLw8","F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX","8WBCGnBP9JAB789hNHWyB5/2LxwweqFNEEjCqsWtbXLw8","CUU84XFACmadAff3nCSfRp/rp1xna1JgPguTNc7Mdp9f","EVnbJQbBxw1eUEYRni6Wch/6QnEn6Vmc31tEG8Cb9s7X8","EVnbJQbBxw1eUEYRni6Wch/87LDCrTQi3NQLEaX6fB1Jr","7YP3vuY4RRXx4AhWfiNqKS/EH6S1TnCRw8fe4FZa7ekqW","7YP3vuY4RRXx4AhWfiNqKS/2DFtmf9Gxd3taKZnKhszUP","7YP3vuY4RRXx4AhWfiNqKS/FGCBL9dGqLSUprFP68B9of","7YP3vuY4RRXx4AhWfiNqKS/5yU4RdGC2T7U8DNDgPvAFS","7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo","7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","7YP3vuY4RRXx4AhWfiNqKS/Gej4tp5h73rLSC7T9Y3aev","FEr47X6dCYqq2xKBb1kRFq/9yxFqg3qXfG2xKXLeyjxft","FEr47X6dCYqq2xKBb1kRFq/4KFt6TJWBiwftqzpt1Xr12","FEr47X6dCYqq2xKBb1kRFq/6DsRgbfz5gefkV5Cs6W3G5","FEr47X6dCYqq2xKBb1kRFq/33vGxvTePDAn6c6SYp1Kbx","FEr47X6dCYqq2xKBb1kRFq/6eQ3kQHJgUbiwMUFBxZiq2","FEr47X6dCYqq2xKBb1kRFq/8RtrLyWJnsRetdte9rJ4TH","FEr47X6dCYqq2xKBb1kRFq/FcFQYGZbd2ypQhhBvLTcfy","FEr47X6dCYqq2xKBb1kRFq/AccF3YNg5414BqdWPcT43T","FEr47X6dCYqq2xKBb1kRFq/x8VjT1A6XpgprfTD7WEwE","FEr47X6dCYqq2xKBb1kRFq/EMsjqHXMWzCrP9A1bJCHys","FEr47X6dCYqq2xKBb1kRFq/iSPdYYoLMUFrfECtVbbw6","FEr47X6dCYqq2xKBb1kRFq/tRVAnbEkQMJR9toFYxH2Y","FEr47X6dCYqq2xKBb1kRFq/25CmWk3GaXyudFGgVeg9zT","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","FEr47X6dCYqq2xKBb1kRFq/5UVtn8WhcCUrF1imUB9B5c","FEr47X6dCYqq2xKBb1kRFq/A5YxZCsePKsCahVaRnSrjn","FEr47X6dCYqq2xKBb1kRFq/B3RrovgnUSjnUYcKERZEb","FEr47X6dCYqq2xKBb1kRFq/BGci5hqhQLcn4XaaP23NzX","FEr47X6dCYqq2xKBb1kRFq/C6nfBM5AVtLShdneZKc72Z","FEr47X6dCYqq2xKBb1kRFq/4kSFcWXY1kxc3Hpg4MsRFG","FEr47X6dCYqq2xKBb1kRFq/FNfFCCiQKbgWjyRrCJgEVE","FEr47X6dCYqq2xKBb1kRFq/FD3cigPghTcptiwBkzg56r","FEr47X6dCYqq2xKBb1kRFq/AKvtN6xQKoomL5AparfbAo","FEr47X6dCYqq2xKBb1kRFq/3qUmwHx5xpM2u9qXCbEtE3","FEr47X6dCYqq2xKBb1kRFq/7y7YXsFNyyr5heai3dV9Mp","FEr47X6dCYqq2xKBb1kRFq/56N2PXpipE8m7q5KhXMcr2","FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","FEr47X6dCYqq2xKBb1kRFq/9K35oSDzDk8viDDn1pTEFg","FEr47X6dCYqq2xKBb1kRFq/2evkmfn8SpL91QBbefyNjz","FEr47X6dCYqq2xKBb1kRFq/473Z1Rts63cF79SMBBqThj","FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","FEr47X6dCYqq2xKBb1kRFq/FSn9uPfzN5pjfSeKpa4mbX","FEr47X6dCYqq2xKBb1kRFq/2TEAWxppSXtCjwekzwNGFh","FEr47X6dCYqq2xKBb1kRFq/ARfh82Zei6N8jMB346B71w","FEr47X6dCYqq2xKBb1kRFq/4UENBX5zKxuEhW4wDjGPRB","FEr47X6dCYqq2xKBb1kRFq/BccBtdMixJFk7gBvF7VwFq","FEr47X6dCYqq2xKBb1kRFq/yPjGLX25dmNm7PnXe31PZ","FEr47X6dCYqq2xKBb1kRFq/BXBPvfUdFDNVCUzTuYGisz","FEr47X6dCYqq2xKBb1kRFq/6hZVMRNDpKUhYnBPFKjhAs","FEr47X6dCYqq2xKBb1kRFq/FhEigC3akbr3RgHvxRWLff","FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","FEr47X6dCYqq2xKBb1kRFq/8J67Px9wjoZi97krZzc3gp","FEr47X6dCYqq2xKBb1kRFq/D8st13aQzmvv5ZTT5fXgkT","FEr47X6dCYqq2xKBb1kRFq/FJA6YFyaEZ8Mqicx7mGBUM","FEr47X6dCYqq2xKBb1kRFq/Anc3xsgxcxCBeu3dDucPzT","GaQT6sXk2tqEU4pJDUnwwA/88yyoxSEmf4aUjJUGQRHbX","GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","6UkTHKpQvqmDsqkXeN9e3R/88yyoxSEmf4aUjJUGQRHbX","6UkTHKpQvqmDsqkXeN9e3R/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/88yyoxSEmf4aUjJUGQRHbX","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","FshjgLMYkKo69oJh6uLstr/6QnEn6Vmc31tEG8Cb9s7X8","FshjgLMYkKo69oJh6uLstr/87LDCrTQi3NQLEaX6fB1Jr","4TMLddbiXPVWvD7NSw5XXn/88yyoxSEmf4aUjJUGQRHbX","4TMLddbiXPVWvD7NSw5XXn/2LxwweqFNEEjCqsWtbXLw8","656q9PiEkQzQr9tinkLxrZ/6QnEn6Vmc31tEG8Cb9s7X8","656q9PiEkQzQr9tinkLxrZ/87LDCrTQi3NQLEaX6fB1Jr","3HfeEALJYFNctitkdZqmhv/4M32voPjQ4ujDnVkcwNkbB","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","3HfeEALJYFNctitkdZqmhv/7eLMrp81n94xgV3ZcqewUk"]},"routes":[{"id":"2PZHty5vr77e2MXu7DqZhV","layer":0,"start":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","end":"656q9PiEkQzQr9tinkLxrZ/87LDCrTQi3NQLEaX6fB1Jr","sketch":{"start":{"reference-side":"top","position":{"x":1.2231405486911446,"y":4.8656221488028013}},"turns":[{"position":{"x":8.9799848856979221,"y":2.3417785731705272},"turn":"cw"},{"position":{"x":8.8764292548656218,"y":1.5585396872344046},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":2.6034493481999439,"y":-2.8355716514088427}}}},{"id":"5bTAgVXYmBi3yoLun8RRuf","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/CKURLeJJtDnZdaZNubf31w","end":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","sketch":{"start":{"reference-side":"top","position":{"x":-10.492828589745391,"y":-7.6672296874871124}},"turns":[{"position":{"x":-5.3250891622199941,"y":-0.30952154902400331},"turn":"cw"},{"position":{"x":-3.8763412050777686,"y":0.82492985726544177},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}}}},{"id":"5aEScgHAa69zVUwZ1Se1mJ","layer":0,"start":"7YP3vuY4RRXx4AhWfiNqKS/8PUWU9x1HYTQeLEKn9zHoo","end":"F5rDN37d9RGPY6jnzVyguZ/69m3hpZazob4QbVDhEkQBW","sketch":{"start":{"reference-side":"top","position":{"x":-11.762828589745373,"y":-7.6672296874871124}},"turns":[{"position":{"x":-13.032828589745357,"y":-7.66722968748711},"turn":"cw"},{"position":{"x":-12.459922139577628,"y":-2.7273909113530985},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-11.57002159772286,"y":1.2702788162961163}}}},{"id":"C7tCp9MdrEJcAY4XNjLoT9","layer":0,"start":"DmR6sNit5G9pTyKT3TBeQc/EL9mw84DiUiE4hdKRbywVE","end":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","sketch":{"start":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}},"turns":[{"position":{"x":-5.0041273954751464,"y":10.877412929578623},"turn":"ccw"},{"position":{"x":-7.1188852553540132,"y":7.27732917720259},"turn":"ccw"},{"position":{"x":-7.1188852553540132,"y":6.30760674097579},"turn":"ccw"},{"position":{"x":-6.5359956019103951,"y":5.3926442469821376},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}}}},{"id":"BCx2ZZcfihBxkB1yNHQi2w","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/4UENBX5zKxuEhW4wDjGPRB","end":"8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-2.4041353998581632,"y":1.5859539382749279}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.9331228274846113,"y":-4.5713015002266193}}}},{"id":"8nELxBJcG7Kvmu25n1YTd3","layer":0,"start":"77nSKnDe7MeGYsyZMCwcxr/2LxwweqFNEEjCqsWtbXLw8","end":"656q9PiEkQzQr9tinkLxrZ/87LDCrTQi3NQLEaX6fB1Jr","sketch":{"start":{"reference-side":"top","position":{"x":-0.855058201833724,"y":0.38084897250667127}},"turns":[],"end":{"reference-side":"top","position":{"x":2.6034493481999439,"y":-2.8355716514088427}}}},{"id":"3wNH8zaFnynxFhjUEEU8rK","layer":0,"start":"8m61X3RXkyLesExgz2wrGA/BWEKdqfsPpBrvPBWpn8ZA2","end":"B2rjcDuioM877xmyYkTmXo/EL9mw84DiUiE4hdKRbywVE","sketch":{"start":{"reference-side":"top","position":{"x":-3.5685622998826574,"y":-2.6814212279853944}},"turns":[{"position":{"x":-5.7685622998825892,"y":-4.3814212279853262},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-6.2430910389157619,"y":-6.0682147885329574}}}},{"id":"AhXiBJEyJv6qk9NB98tWrA","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","end":"F5rDN37d9RGPY6jnzVyguZ/NPAaADWvFAh5Pttni6nm6","sketch":{"start":{"reference-side":"top","position":{"x":-7.6858107519837144,"y":4.28490431707386}},"turns":[],"end":{"reference-side":"top","position":{"x":-10.104653632078824,"y":1.2702788162961163}}}},{"id":"EpLJtasEKx98F21ZErzmwd","layer":0,"start":"B2rjcDuioM877xmyYkTmXo/3bd6evhN5qGHwvQVBHrAnX","end":"8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-5.3233686026889622,"y":-6.0682147885329574}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.9331228274846113,"y":-4.5713015002266193}}}},{"id":"BRJAiuN6C2UDioxBMTYJdB","layer":0,"start":"75dACL9SDaiVFRXgczJdD8/88yyoxSEmf4aUjJUGQRHbX","end":"8m61X3RXkyLesExgz2wrGA/BWEKdqfsPpBrvPBWpn8ZA2","sketch":{"start":{"reference-side":"top","position":{"x":-5.3250891622199941,"y":-0.30952154902400331}},"turns":[],"end":{"reference-side":"top","position":{"x":-3.5685622998826574,"y":-2.6814212279853944}}}},{"id":"EUjD9WoEAEjkQc88dXfA3d","layer":0,"start":"DmR6sNit5G9pTyKT3TBeQc/3bd6evhN5qGHwvQVBHrAnX","end":"EcLdz4H3yjpw2x6PqBebdD/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-5.0041273954751464,"y":10.877412929578623}},"turns":[],"end":{"reference-side":"top","position":{"x":-4.6979882274922513,"y":8.30434331438402}}}},{"id":"4raFpQhN8pPRpHCUVhWAy6","layer":0,"start":"A3h29Z2RECjLiMZL85ZfCZ/EL9mw84DiUiE4hdKRbywVE","end":"7R2Z1QpznMLufj2rsUw5q5/2dtsvGrvUzW47GKB9Whp5m","sketch":{"start":{"reference-side":"top","position":{"x":1.626657650841592,"y":0.69978634799225625}},"turns":[],"end":{"reference-side":"top","position":{"x":4.1077236680195739,"y":1.1596475661056571}}}},{"id":"DA7pR4sYPat16if1sQ1E1i","layer":0,"start":"EVnbJQbBxw1eUEYRni6Wch/87LDCrTQi3NQLEaX6fB1Jr","end":"FT4pxFBh14a61jaK6UdDfM/8CERpnJNeksdZH6tc1MMQT","sketch":{"start":{"reference-side":"top","position":{"x":7.1565952629541849,"y":-2.8395338471574223}},"turns":[],"end":{"reference-side":null,"position":{"x":8.9990591481597733,"y":-1.2441827696575491}}}},{"id":"6ZfvNmkPFUYG6C1o2FPVGS","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","end":"656q9PiEkQzQr9tinkLxrZ/87LDCrTQi3NQLEaX6fB1Jr","sketch":{"start":{"reference-side":"top","position":{"x":2.5606192424778627,"y":-5.0372209332639493}},"turns":[],"end":{"reference-side":"top","position":{"x":2.6034493481999439,"y":-2.8355716514088427}}}},{"id":"8VQwNWHHzu9mJwU78Fqpjv","layer":0,"start":"EVnbJQbBxw1eUEYRni6Wch/87LDCrTQi3NQLEaX6fB1Jr","end":"3HfeEALJYFNctitkdZqmhv/4M32voPjQ4ujDnVkcwNkbB","sketch":{"start":{"reference-side":"top","position":{"x":7.1565952629541849,"y":-2.8395338471574223}},"turns":[],"end":{"reference-side":"top","position":{"x":7.159619242477909,"y":-5.0372209332639493}}}},{"id":"8U2w9f7JY6nG1xDiQuUXqP","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/8RtrLyWJnsRetdte9rJ4TH","end":"A3h29Z2RECjLiMZL85ZfCZ/3bd6evhN5qGHwvQVBHrAnX","sketch":{"start":{"reference-side":"top","position":{"x":-0.094135399858217728,"y":2.3959539382748734}},"turns":[],"end":{"reference-side":"top","position":{"x":1.6266576508415922,"y":1.619508784219057}}}},{"id":"GBSFQtyo7GMiN6mBjsNNUo","layer":0,"start":"B2rjcDuioM877xmyYkTmXo/3bd6evhN5qGHwvQVBHrAnX","end":"8m61X3RXkyLesExgz2wrGA/8QhojHF2fzroox347dx9Kw","sketch":{"start":{"reference-side":"top","position":{"x":-5.3233686026889622,"y":-6.0682147885329574}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.7685622998825892,"y":-4.3814212279853262}}}},{"id":"pyWka9Bz97LVM6Xe9UyvR","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/Gfv5T3M57D8XWTQHey1HR8","end":"FshjgLMYkKo69oJh6uLstr/6QnEn6Vmc31tEG8Cb9s7X8","sketch":{"start":{"reference-side":null,"position":{"x":8.3649671713528342,"y":-4.6984842540798315}},"turns":[],"end":{"reference-side":"top","position":{"x":9.1221844936445979,"y":-6.2162029073322715}}}},{"id":"8Wu7hRWSXD1PTJJJvFqujs","layer":0,"start":"FT4pxFBh14a61jaK6UdDfM/EHe5m8FwrQR4YnH2ozMbXN","end":"AnFmVeWs5C1x5ZuHHpf6vV/CyV6Emr8QL3Tr2dtCRXJum","sketch":{"start":{"reference-side":null,"position":{"x":8.5747840584332,"y":4.6860528771510914}},"turns":[],"end":{"reference-side":"top","position":{"x":8.6066092382763184,"y":6.0040116135361616}}}},{"id":"8KyKYeDHDJktYgd1C7cVc1","layer":0,"start":"DmR6sNit5G9pTyKT3TBeQc/EL9mw84DiUiE4hdKRbywVE","end":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.9434110080554206,"y":10.861226687558418}}}},{"id":"4yV4GLA7RPdZtYQ6yz71Ry","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/3CkPNJAX1UEGXnWDApUsgf","end":"4TMLddbiXPVWvD7NSw5XXn/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-6.5359956019103951,"y":5.3926442469821376}},"turns":[],"end":{"reference-side":"top","position":{"x":-7.1188852553540132,"y":6.30760674097579}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["AhXiBJEyJv6qk9NB98tWrA"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["BkRJVxF1nykkxDhXwmKBRw"]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["AUov54v6Pvb2KgnqJdUEFg"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[]}, + {"operation":"unroute","delete":{"layer":0,"routes":["C7tCp9MdrEJcAY4XNjLoT9"]}}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[{"id":"7nvc8Rg6FKACeHwYY8aRoE","layer":0,"start":"9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","end":"FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW","sketch":{"start":{"reference-side":"top","position":{"x":-7.6858107519837144,"y":4.28490431707386}},"turns":[],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":4.8959539382748734}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","DmR6sNit5G9pTyKT3TBeQc/3bd6evhN5qGHwvQVBHrAnX","DmR6sNit5G9pTyKT3TBeQc/EL9mw84DiUiE4hdKRbywVE","FEr47X6dCYqq2xKBb1kRFq/A7sE9dEGR88JQTWAxUfmMW"]},"routes":[{"id":"CVB8kHLx8YvPx24bXpXdrg","layer":0,"start":"DmR6sNit5G9pTyKT3TBeQc/EL9mw84DiUiE4hdKRbywVE","end":"9usVbKZ7QpQqddvQtPgJBc/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-4.0844049592483458,"y":10.877412929578623}},"turns":[{"position":{"x":-5.0041273954751464,"y":10.877412929578623},"turn":"ccw"},{"position":{"x":-7.1188852553540132,"y":7.27732917720259},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-7.6858107519837144,"y":4.28490431707386}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy"]},"routes":[{"id":"5qgZEsicQ4g9azy2bt8nAK","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/5rqZmSk4k1eYRd7CKFahQy","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-3.4041353998581632,"y":1.5859539382749279}},"turns":[{"position":{"x":-5.7141353998582218,"y":2.3959539382748734},"turn":"cw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"cw"},{"position":{"x":-7.6858107519837144,"y":4.28490431707386},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8608572665970069,"y":9.2038368117934333}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW"]},"routes":[{"id":"GWMcFSngpDEPf9dTgd5Jn3","layer":0,"start":"6WpfMibZFsfK3UeazZfhA1/rp1xna1JgPguTNc7Mdp9f","end":"FEr47X6dCYqq2xKBb1kRFq/ENTmJcBrjt9DmfR37FdEQW","sketch":{"start":{"reference-side":"top","position":{"x":-9.8594476378989491,"y":11.498800963047469}},"turns":[{"position":{"x":-7.6858107519837144,"y":4.28490431707386},"turn":"ccw"},{"position":{"x":-6.5497887209169168,"y":2.770544300301208},"turn":"ccw"}],"end":{"reference-side":"top","position":{"x":-5.7141353998582218,"y":2.3959539382748734}}}}]}, + {"operation":"route","request":{"layer":1,"pads":["2TtfCo3u1C369a3Dc36cPQ/3bd6evhN5qGHwvQVBHrAnX","FT4pxFBh14a61jaK6UdDfM/8jeM3LD3mn3XBjfsNNRZVb"]},"routes":[{"id":"DSeVSvKjQCz85PKJbbQfGW","layer":1,"start":"2TtfCo3u1C369a3Dc36cPQ/3bd6evhN5qGHwvQVBHrAnX","end":"FT4pxFBh14a61jaK6UdDfM/8jeM3LD3mn3XBjfsNNRZVb","sketch":{"start":{"reference-side":"bottom","position":{"x":8.0020511433576758,"y":0.061135019415902381}},"turns":[],"end":{"reference-side":null,"position":{"x":9.9374999999999787,"y":1.25}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["5bTAgVXYmBi3yoLun8RRuf"]}}, + {"operation":"route","request":{"layer":0,"pads":["FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f"]},"routes":[{"id":"5qeHceKtdsM9MWvrwLUdnW","layer":0,"start":"FhHXn7W3gZ51Woya9HJoph/69m3hpZazob4QbVDhEkQBW","end":"GRxng3pSHKQ3xM4RUKMbtX/rp1xna1JgPguTNc7Mdp9f","sketch":{"start":{"reference-side":"top","position":{"x":-12.889572953457261,"y":-0.88576194395744134}},"turns":[{"position":{"x":-12.646050442563563,"y":11.484151515820521},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":-9.8608572665970069,"y":9.2038368117934333}}}}]}, + {"operation":"route","request":{"layer":0,"pads":["7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N"]},"routes":[{"id":"CRqugKMxbJ5P6YQrGZgZKg","layer":0,"start":"3HfeEALJYFNctitkdZqmhv/76bgGbRRSV5RstoEEsS35N","end":"7YP3vuY4RRXx4AhWfiNqKS/8EeRoknV6x54y7F4NJpmeX","sketch":{"start":{"reference-side":"top","position":{"x":2.5606192424778627,"y":-5.0372209332639493}},"turns":[],"end":{"reference-side":"top","position":{"x":-13.032828589745355,"y":-7.6672296874871124}}}}]}, + {"operation":"place","place":{"placements":[{"id":"5DjR2uZVerwXVQtxsGGubf","pose":{"center":{"x":-2.2062399956240606,"y":8.867604833860538},"angle":0,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["6JYgiNkCR4GZbz5o6MfT2V"]}}, + {"operation":"route","request":{"layer":0,"pads":["GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"G82jCGapcCNfRfJKgERtMB","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","end":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-2.9434110080554206,"y":10.861226687558418}},"turns":[{"position":{"x":0.77777883561398875,"y":6.4613744147425507},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.2231405486911446,"y":4.8656221488028013}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["CXSubPNzRUNDhiBEPNLcPi"]}}, + {"operation":"route","request":{"layer":0,"pads":["FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"2QW2MhKSRbVJa8KHJqd7yh","layer":0,"start":"FEr47X6dCYqq2xKBb1kRFq/6sGBrER1ovb6kQsosW2Yjz","end":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-2.9041353998581632,"y":7.2049539382749561}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.9434110080554206,"y":10.861226687558418}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["G82jCGapcCNfRfJKgERtMB"]}}, + {"operation":"route","request":{"layer":0,"pads":["GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"i3f75hb3RNS4nboEV1BbA","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","end":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-2.9434110080554206,"y":10.861226687558418}},"turns":[{"position":{"x":0.77777883561398875,"y":6.4613744147425507},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.2231405486911446,"y":4.8656221488028013}}}}]}, + {"operation":"place","place":{"placements":[{"id":"8m61X3RXkyLesExgz2wrGA","pose":{"center":{"x":-4.7825622998827129,"y":-3.6454212279853362},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"place","place":{"placements":[{"id":"8m61X3RXkyLesExgz2wrGA","pose":{"center":{"x":-4.2155260095601337,"y":-3.4060059054046916},"angle":90,"flipx":false},"side":"top"}]}}, + {"operation":"unroute","delete":{"layer":0,"routes":["EpLJtasEKx98F21ZErzmwd"]}}, + {"operation":"route","request":{"layer":0,"pads":["8m61X3RXkyLesExgz2wrGA/8QhojHF2fzroox347dx9Kw","8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX"]},"routes":[{"id":"3DRwSNtM3GK8gnsmA2gfoo","layer":0,"start":"8m61X3RXkyLesExgz2wrGA/8QhojHF2fzroox347dx9Kw","end":"8WBCGnBP9JAB789hNHWyB5/88yyoxSEmf4aUjJUGQRHbX","sketch":{"start":{"reference-side":"top","position":{"x":-3.4795260095601437,"y":-4.3920059054045684}},"turns":[],"end":{"reference-side":"top","position":{"x":-1.9331228274846113,"y":-4.5713015002266193}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["BCx2ZZcfihBxkB1yNHQi2w"]}}, + {"operation":"route","request":{"layer":0,"pads":["8m61X3RXkyLesExgz2wrGA/8QhojHF2fzroox347dx9Kw","FEr47X6dCYqq2xKBb1kRFq/4UENBX5zKxuEhW4wDjGPRB"]},"routes":[{"id":"FeHu1S9gp1rPW5wFpPM39T","layer":0,"start":"8m61X3RXkyLesExgz2wrGA/8QhojHF2fzroox347dx9Kw","end":"FEr47X6dCYqq2xKBb1kRFq/4UENBX5zKxuEhW4wDjGPRB","sketch":{"start":{"reference-side":"top","position":{"x":-3.4795260095601437,"y":-4.3920059054045684}},"turns":[],"end":{"reference-side":"top","position":{"x":-2.4041353998581632,"y":1.5859539382749279}}}}]}, + {"operation":"unroute","delete":{"layer":0,"routes":["i3f75hb3RNS4nboEV1BbA"]}}, + {"operation":"route","request":{"layer":0,"pads":["GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8"]},"routes":[{"id":"AqbJiXczpuRAiDoFTHwPGm","layer":0,"start":"2TBC8iDFgxVtTGP3hGv5pw/2LxwweqFNEEjCqsWtbXLw8","end":"GaQT6sXk2tqEU4pJDUnwwA/2LxwweqFNEEjCqsWtbXLw8","sketch":{"start":{"reference-side":"top","position":{"x":-2.9434110080554206,"y":10.861226687558418}},"turns":[{"position":{"x":0.77777883561398875,"y":6.4613744147425507},"turn":"cw"}],"end":{"reference-side":"top","position":{"x":1.2231405486911446,"y":4.8656221488028013}}}}]} + ] +} \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/design-info/reference-designators.table b/sd_card_reader/designs/jitx-design/design-info/reference-designators.table new file mode 100644 index 0000000..13653f4 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/design-info/reference-designators.table @@ -0,0 +1,40 @@ +{ + "assigned": { + "FshjgLMYkKo69oJh6uLstr": "C1", + "77nSKnDe7MeGYsyZMCwcxr": "C10", + "4TMLddbiXPVWvD7NSw5XXn": "C11", + "8WBCGnBP9JAB789hNHWyB5": "C12", + "75dACL9SDaiVFRXgczJdD8": "C13", + "EVnbJQbBxw1eUEYRni6Wch": "C2", + "656q9PiEkQzQr9tinkLxrZ": "C3", + "EcLdz4H3yjpw2x6PqBebdD": "C4", + "5DjR2uZVerwXVQtxsGGubf": "C5", + "6UkTHKpQvqmDsqkXeN9e3R": "C6", + "GaQT6sXk2tqEU4pJDUnwwA": "C7", + "2TBC8iDFgxVtTGP3hGv5pw": "C8", + "9usVbKZ7QpQqddvQtPgJBc": "C9", + "5nc5vqcQUq4T65QATrHbs6": "Card1", + "2i6B2MSQaRVS6gpF35Rqmx": "JITX1", + "7R2Z1QpznMLufj2rsUw5q5": "LED1", + "AnFmVeWs5C1x5ZuHHpf6vV": "R1", + "9XasTANj64vB9ZvTFDT3zo": "R2", + "FhHXn7W3gZ51Woya9HJoph": "R3", + "F5rDN37d9RGPY6jnzVyguZ": "R4", + "8VvLEdgpKAQe7YfsFDSzgh": "R5", + "DmR6sNit5G9pTyKT3TBeQc": "R6", + "B2rjcDuioM877xmyYkTmXo": "R7", + "A3h29Z2RECjLiMZL85ZfCZ": "R8", + "2TtfCo3u1C369a3Dc36cPQ": "R9", + "PciZ3xURTHGr48a7y5NRz": "U1", + "6gubidcNTxtTSuXPZQKXUm": "U2", + "3HfeEALJYFNctitkdZqmhv": "U3", + "7YP3vuY4RRXx4AhWfiNqKS": "U4", + "FEr47X6dCYqq2xKBb1kRFq": "U5", + "D89ACc7xJQykdg4Dh1A3V7": "U6", + "CUU84XFACmadAff3nCSfRp": "U7", + "6WpfMibZFsfK3UeazZfhA1": "U8", + "GRxng3pSHKQ3xM4RUKMbtX": "U9", + "FT4pxFBh14a61jaK6UdDfM": "USB1", + "8m61X3RXkyLesExgz2wrGA": "XTAL1" + } +} \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/design-info/schematic.design b/sd_card_reader/designs/jitx-design/design-info/schematic.design new file mode 100644 index 0000000..a46e04a Binary files /dev/null and b/sd_card_reader/designs/jitx-design/design-info/schematic.design differ diff --git a/sd_card_reader/designs/jitx-design/design-info/stable.design b/sd_card_reader/designs/jitx-design/design-info/stable.design new file mode 100644 index 0000000..4ca0625 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/design-info/stable.design @@ -0,0 +1,2324 @@ +{ + "entries": [ + {"tag":"instantiation","def-id":"9vYtcGtfkD1njJ7nfwp5Pb","inst-id":"87LDCrTQi3NQLEaX6fB1Jr"}, + {"tag":"instantiation","def-id":"9vYtcGtfkD1njJ7nfwp5Pb","inst-id":"6QnEn6Vmc31tEG8Cb9s7X8"}, + {"tag":"instantiation","def-id":"CbxqNNggPsVZwvYJPpqnyS","inst-id":"rp1xna1JgPguTNc7Mdp9f"}, + {"tag":"instantiation","def-id":"3SuVoBsk9ThMafscjEedTT","inst-id":"EL9mw84DiUiE4hdKRbywVE"}, + {"tag":"instantiation","def-id":"3SuVoBsk9ThMafscjEedTT","inst-id":"3bd6evhN5qGHwvQVBHrAnX"}, + {"tag":"instantiation","def-id":"6atuTtyFZU48AKFxhNYejb","inst-id":"5W8eqEnKRPd2ce9WiDgNPA"}, + {"tag":"instantiation","def-id":"6atuTtyFZU48AKFxhNYejb","inst-id":"8aujbv7W9yEY8mhAzSwzfd"}, + {"tag":"instantiation","def-id":"ENYMRJ6xdkfFE9fmeEQKiV","inst-id":"5Vpd4bfrjQyZcR5rf4Tdvo"}, + {"tag":"instantiation","def-id":"ENYMRJ6xdkfFE9fmeEQKiV","inst-id":"G5GBKCnNwTc4VSC1pYRFfo"}, + {"tag":"instantiation","def-id":"FsyKeyEygi1xykZnkp59EW","inst-id":"6HqJGqWeLSbGKjwKn5oqsG"}, + {"tag":"instantiation","def-id":"FsyKeyEygi1xykZnkp59EW","inst-id":"6iRgMynebkDG3ZSrGwSSgh"}, + {"tag":"instantiation","def-id":"FsyKeyEygi1xykZnkp59EW","inst-id":"7WVZ2C81Z19cpkvz1qT9dW"}, + {"tag":"instantiation","def-id":"FsyKeyEygi1xykZnkp59EW","inst-id":"8jeM3LD3mn3XBjfsNNRZVb"}, + {"tag":"instantiation","def-id":"FsyKeyEygi1xykZnkp59EW","inst-id":"A4S2RQcfpGtMEtt1KucACD"}, + {"tag":"instantiation","def-id":"FsyKeyEygi1xykZnkp59EW","inst-id":"F39LZR6kUCrhny6FtLLPe9"}, + {"tag":"instantiation","def-id":"FsyKeyEygi1xykZnkp59EW","inst-id":"3pYu7PXk2k4vcPuZjirUzQ"}, + {"tag":"instantiation","def-id":"FsyKeyEygi1xykZnkp59EW","inst-id":"D79WrXHW5QmSVpMbk7HRQe"}, + {"tag":"instantiation","def-id":"FsyKeyEygi1xykZnkp59EW","inst-id":"AXfPWhuyd9CPd1kPNwJaPY"}, + {"tag":"instantiation","def-id":"FsyKeyEygi1xykZnkp59EW","inst-id":"2u8b7Lp7pJWrhDuUEFnq5y"}, + {"tag":"instantiation","def-id":"FsyKeyEygi1xykZnkp59EW","inst-id":"4itZv6tedRvhZ2uRQSK7gH"}, + {"tag":"instantiation","def-id":"FsyKeyEygi1xykZnkp59EW","inst-id":"EEXAyqPuykQbWPZbFtE1HZ"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"BccBtdMixJFk7gBvF7VwFq"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"4UENBX5zKxuEhW4wDjGPRB"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"ARfh82Zei6N8jMB346B71w"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"2TEAWxppSXtCjwekzwNGFh"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"FSn9uPfzN5pjfSeKpa4mbX"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"5rqZmSk4k1eYRd7CKFahQy"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"473Z1Rts63cF79SMBBqThj"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"2evkmfn8SpL91QBbefyNjz"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"9K35oSDzDk8viDDn1pTEFg"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"6sGBrER1ovb6kQsosW2Yjz"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"56N2PXpipE8m7q5KhXMcr2"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"7y7YXsFNyyr5heai3dV9Mp"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"3qUmwHx5xpM2u9qXCbEtE3"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"AKvtN6xQKoomL5AparfbAo"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"FD3cigPghTcptiwBkzg56r"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"FNfFCCiQKbgWjyRrCJgEVE"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"4kSFcWXY1kxc3Hpg4MsRFG"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"C6nfBM5AVtLShdneZKc72Z"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"BGci5hqhQLcn4XaaP23NzX"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"B3RrovgnUSjnUYcKERZEb"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"A5YxZCsePKsCahVaRnSrjn"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"5UVtn8WhcCUrF1imUB9B5c"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"ENTmJcBrjt9DmfR37FdEQW"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"A7sE9dEGR88JQTWAxUfmMW"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"25CmWk3GaXyudFGgVeg9zT"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"tRVAnbEkQMJR9toFYxH2Y"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"iSPdYYoLMUFrfECtVbbw6"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"EMsjqHXMWzCrP9A1bJCHys"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"x8VjT1A6XpgprfTD7WEwE"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"AccF3YNg5414BqdWPcT43T"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"FcFQYGZbd2ypQhhBvLTcfy"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"8RtrLyWJnsRetdte9rJ4TH"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"6eQ3kQHJgUbiwMUFBxZiq2"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"33vGxvTePDAn6c6SYp1Kbx"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"6DsRgbfz5gefkV5Cs6W3G5"}, + {"tag":"instantiation","def-id":"CqGQBdoktLtG5UpqFQ1aU6","inst-id":"4KFt6TJWBiwftqzpt1Xr12"}, + {"tag":"instantiation","def-id":"4tSVMzLvGcFSpmW5ruNsYj","inst-id":"9yxFqg3qXfG2xKXLeyjxft"}, + {"tag":"instantiation","def-id":"2LsoCUBoqtzmRN8RSJ1RFG","inst-id":"2LxwweqFNEEjCqsWtbXLw8"}, + {"tag":"instantiation","def-id":"2LsoCUBoqtzmRN8RSJ1RFG","inst-id":"88yyoxSEmf4aUjJUGQRHbX"}, + {"tag":"instantiation","def-id":"GeH6wepvk3oSCDswcMujRQ","inst-id":"DyMnAWs9qaaBrRyLsdDUGk"}, + {"tag":"instantiation","def-id":"GeH6wepvk3oSCDswcMujRQ","inst-id":"BWEKdqfsPpBrvPBWpn8ZA2"}, + {"tag":"instantiation","def-id":"GeH6wepvk3oSCDswcMujRQ","inst-id":"5e5Ld1bqfWH42N6BrfmcUy"}, + {"tag":"instantiation","def-id":"GeH6wepvk3oSCDswcMujRQ","inst-id":"8QhojHF2fzroox347dx9Kw"}, + {"tag":"instantiation","def-id":"3UqGYP6PmiULBMirwDtpgF","inst-id":"2LxwweqFNEEjCqsWtbXLw8"}, + {"tag":"instantiation","def-id":"3UqGYP6PmiULBMirwDtpgF","inst-id":"88yyoxSEmf4aUjJUGQRHbX"}, + {"tag":"instantiation","def-id":"7rKM9MqK1hpvTPcjV3dt3q","inst-id":"NPAaADWvFAh5Pttni6nm6"}, + {"tag":"instantiation","def-id":"7rKM9MqK1hpvTPcjV3dt3q","inst-id":"69m3hpZazob4QbVDhEkQBW"}, + {"tag":"instantiation","def-id":"9GjWQ4F8bAj5gWTP5h8gRj","inst-id":"249fMYoZnp83PEwU9hgbJp"}, + {"tag":"instantiation","def-id":"9GjWQ4F8bAj5gWTP5h8gRj","inst-id":"2dtsvGrvUzW47GKB9Whp5m"}, + {"tag":"instantiation","def-id":"2ZrGLNLJQz9xBEJ3CHYatK","inst-id":"Gej4tp5h73rLSC7T9Y3aev"}, + {"tag":"instantiation","def-id":"2ZrGLNLJQz9xBEJ3CHYatK","inst-id":"CKURLeJJtDnZdaZNubf31w"}, + {"tag":"instantiation","def-id":"2ZrGLNLJQz9xBEJ3CHYatK","inst-id":"8PUWU9x1HYTQeLEKn9zHoo"}, + {"tag":"instantiation","def-id":"2ZrGLNLJQz9xBEJ3CHYatK","inst-id":"8EeRoknV6x54y7F4NJpmeX"}, + {"tag":"instantiation","def-id":"2ZrGLNLJQz9xBEJ3CHYatK","inst-id":"5yU4RdGC2T7U8DNDgPvAFS"}, + {"tag":"instantiation","def-id":"2ZrGLNLJQz9xBEJ3CHYatK","inst-id":"FGCBL9dGqLSUprFP68B9of"}, + {"tag":"instantiation","def-id":"2ZrGLNLJQz9xBEJ3CHYatK","inst-id":"2DFtmf9Gxd3taKZnKhszUP"}, + {"tag":"instantiation","def-id":"2ZrGLNLJQz9xBEJ3CHYatK","inst-id":"EH6S1TnCRw8fe4FZa7ekqW"}, + {"tag":"instantiation","def-id":"ESyLpzk4Bm24Cam2fwvum4","inst-id":"CyV6Emr8QL3Tr2dtCRXJum"}, + {"tag":"instantiation","def-id":"ESyLpzk4Bm24Cam2fwvum4","inst-id":"6Jhv1zHNyie2BpKYKWyx9F"}, + {"tag":"instantiation","def-id":"ByijqTpGAVzD9hdyzeizCR","inst-id":"4ACz9ZHKTpLQiJvQppWKdf"}, + {"tag":"instantiation","def-id":"ByijqTpGAVzD9hdyzeizCR","inst-id":"EqsbchJV3wDcJFdoRsgM9F"}, + {"tag":"instantiation","def-id":"ByijqTpGAVzD9hdyzeizCR","inst-id":"5ZytxRFdKgJUFipFzB7Bqn"}, + {"tag":"instantiation","def-id":"ByijqTpGAVzD9hdyzeizCR","inst-id":"8nu2m7YQsFWeXc2VkmcRHB"}, + {"tag":"instantiation","def-id":"ByijqTpGAVzD9hdyzeizCR","inst-id":"Cu8rc9vAmsCKTmyMSXHmQr"}, + {"tag":"instantiation","def-id":"ByijqTpGAVzD9hdyzeizCR","inst-id":"DoJCM1LP1MyRToJ88pWeto"}, + {"tag":"instantiation","def-id":"ByijqTpGAVzD9hdyzeizCR","inst-id":"CL6n5UtMchhxs4VAExoUtF"}, + {"tag":"instantiation","def-id":"ByijqTpGAVzD9hdyzeizCR","inst-id":"AsBhLVKmpk6EFaffXQKh6Y"}, + {"tag":"instantiation","def-id":"ByijqTpGAVzD9hdyzeizCR","inst-id":"G9phhhUTXXVD7b6Mni79sc"}, + {"tag":"instantiation","def-id":"5tH9dR9rt6RLoqN8hxMwxy","inst-id":"96rwTsoHr1oLXdHdGmuz3Q"}, + {"tag":"instantiation","def-id":"5tH9dR9rt6RLoqN8hxMwxy","inst-id":"Usjz9PTceToyzanR4dQmN"}, + {"tag":"instantiation","def-id":"EYX3oy34yTxAbztGELmiBd","inst-id":"6EmQCkumhnwazZWi5MDkEs"}, + {"tag":"instantiation","def-id":"EYX3oy34yTxAbztGELmiBd","inst-id":"Dj9cVTiijiXzvrku3kKmYm"}, + {"tag":"instantiation","def-id":"EYX3oy34yTxAbztGELmiBd","inst-id":"2kTLWLRtV33rz9trVmSQet"}, + {"tag":"instantiation","def-id":"EYX3oy34yTxAbztGELmiBd","inst-id":"TSDiDy6VLF3BhTAqCyKT1"}, + {"tag":"instantiation","def-id":"9YMG5DTxzXCtgFtB2YkssL","inst-id":"7eLMrp81n94xgV3ZcqewUk"}, + {"tag":"instantiation","def-id":"9VxsRdCqEvv7peG7NM5wE3","inst-id":"76bgGbRRSV5RstoEEsS35N"}, + {"tag":"instantiation","def-id":"9VxsRdCqEvv7peG7NM5wE3","inst-id":"4M32voPjQ4ujDnVkcwNkbB"}, + {"tag":"instantiation","def-id":0,"inst-id":"7UnVFrTtHCEAfuWy8Qyj35"}, + {"tag":"instantiation","def-id":1,"inst-id":"jLMtwr8MfU9qAmA7mhVCM"}, + {"tag":"instantiation","def-id":"3ut3gkiqUNJ5qxvbq22dd5","inst-id":"A3h29Z2RECjLiMZL85ZfCZ"}, + {"tag":"instantiation","def-id":2,"inst-id":"87hJx8eDSzoKU5FJeab2o6"}, + {"tag":"instantiation","def-id":3,"inst-id":"EbuCfXA4ZtgWgfsHsZYTax"}, + {"tag":"instantiation","def-id":"BRXwLCGrq4CRSQSGs5KsSF","inst-id":"7R2Z1QpznMLufj2rsUw5q5"}, + {"tag":"instantiation","def-id":4,"inst-id":"D13Br9DpFFMUdnNgMu4oto"}, + {"tag":"instantiation","def-id":5,"inst-id":"D2qhSBtjAPGW7NpcY3egWR"}, + {"tag":"instantiation","def-id":6,"inst-id":"42RThQxoTRzifkTzd8JQLz"}, + {"tag":"instantiation","def-id":7,"inst-id":"BBJ4xa8atnBuDwzYwD2Swa"}, + {"tag":"instantiation","def-id":8,"inst-id":"57w51FV1Riwa4Z3dSC8ugz"}, + {"tag":"instantiation","def-id":9,"inst-id":"CUCbwuTS8giDyxhsPjNGT3"}, + {"tag":"instantiation","def-id":10,"inst-id":"bKJLm756eu17KqKPvD7fL"}, + {"tag":"instantiation","def-id":11,"inst-id":"DYANuVfc2zF8qNaPKDaKh1"}, + {"tag":"instantiation","def-id":12,"inst-id":"54wJaJXFy9CQvxEyYqRKhf"}, + {"tag":"instantiation","def-id":13,"inst-id":"25jqKP7wGB1hHFnHajrz6j"}, + {"tag":"instantiation","def-id":14,"inst-id":"A78Yibo7QcpndY2scY495S"}, + {"tag":"instantiation","def-id":15,"inst-id":"36gsRq1mvk2kJ7qfrkVgmm"}, + {"tag":"instantiation","def-id":16,"inst-id":"7S7XEtXCqG8w92LnGSuAoA"}, + {"tag":"instantiation","def-id":17,"inst-id":"NpkWPyQ2HbGLHzHQqdhp6"}, + {"tag":"instantiation","def-id":18,"inst-id":"CrZi1jX1LBeU5XzWo2Nbrx"}, + {"tag":"instantiation","def-id":"9pFNXJXKj5jXediTRiXsT8","inst-id":"5nc5vqcQUq4T65QATrHbs6"}, + {"tag":"instantiation","def-id":19,"inst-id":"BzykxomQv8fBJsHsULMLWw"}, + {"tag":"instantiation","def-id":20,"inst-id":"D2NH6Z35uUyENstm5H4cmT"}, + {"tag":"instantiation","def-id":"49ckLSmHhX9zw6NJBqicJg","inst-id":"B2rjcDuioM877xmyYkTmXo"}, + {"tag":"instantiation","def-id":21,"inst-id":"3sNaTjnwsKFXUb3xYSF1bN"}, + {"tag":"instantiation","def-id":22,"inst-id":"F4oKNpinJf1b3DmVGpNvNz"}, + {"tag":"instantiation","def-id":"fryXKB8SKwNEUvtPDdbi9","inst-id":"75dACL9SDaiVFRXgczJdD8"}, + {"tag":"instantiation","def-id":23,"inst-id":"BaQqiZhf7fzPcMVhPVFjV8"}, + {"tag":"instantiation","def-id":24,"inst-id":"17pdzod64CL5zaF2zXeKxt"}, + {"tag":"instantiation","def-id":"51m3sE1ig4FpnDDkEhCy23","inst-id":"8WBCGnBP9JAB789hNHWyB5"}, + {"tag":"instantiation","def-id":25,"inst-id":"7948RDWWTzK9dfRer7rhNt"}, + {"tag":"instantiation","def-id":26,"inst-id":"AUG7o4u3QLU1ZJUvbgw9sa"}, + {"tag":"instantiation","def-id":27,"inst-id":"9uZMz6vqHJ1uNtj86m8pf7"}, + {"tag":"instantiation","def-id":28,"inst-id":"7ufe2X3ZQP9Sdwn1S6wSpA"}, + {"tag":"instantiation","def-id":"2dnpU3ErHPq4WCHbRCEMjS","inst-id":"8m61X3RXkyLesExgz2wrGA"}, + {"tag":"instantiation","def-id":29,"inst-id":"9WUHkS75DiJP5JBe8vS1nS"}, + {"tag":"instantiation","def-id":30,"inst-id":"DKf7YPAuciGQR3Ax5PSEci"}, + {"tag":"instantiation","def-id":"CZ44u98NqK9yFMoSXAxE7X","inst-id":"4TMLddbiXPVWvD7NSw5XXn"}, + {"tag":"instantiation","def-id":31,"inst-id":"2D2N5Chqy9unTybVH24e8U"}, + {"tag":"instantiation","def-id":32,"inst-id":"CSfP1ctjtt8LGDhDLycPZr"}, + {"tag":"instantiation","def-id":"Go1q54QG6UE5cNAXPi1HGe","inst-id":"77nSKnDe7MeGYsyZMCwcxr"}, + {"tag":"instantiation","def-id":33,"inst-id":"B2J5ij72TkeWQWjFnf32n5"}, + {"tag":"instantiation","def-id":34,"inst-id":"FB7RxYLzFx8W11KBcYB9nv"}, + {"tag":"instantiation","def-id":"FcoUDreLBna6ww5xkXhrBp","inst-id":"9usVbKZ7QpQqddvQtPgJBc"}, + {"tag":"instantiation","def-id":35,"inst-id":"AHDzLvPpduq3Fwt3jwFB87"}, + {"tag":"instantiation","def-id":36,"inst-id":"24gJNm4uiWnUnVnivP1KP7"}, + {"tag":"instantiation","def-id":"BrVKhF2j14MtWLpsJyJZPp","inst-id":"2TBC8iDFgxVtTGP3hGv5pw"}, + {"tag":"instantiation","def-id":37,"inst-id":"3fRFzPLWN4c8KNAtFn2r1E"}, + {"tag":"instantiation","def-id":38,"inst-id":"4DobcdUSUfn6ajQHVQGeEp"}, + {"tag":"instantiation","def-id":"6nVTRwdPzwz1dbHxSAuiPZ","inst-id":"GaQT6sXk2tqEU4pJDUnwwA"}, + {"tag":"instantiation","def-id":39,"inst-id":"83jAUgzKQB84GWkC2X11D4"}, + {"tag":"instantiation","def-id":40,"inst-id":"7Wbnw9X9Azst4PPDBFaSSg"}, + {"tag":"instantiation","def-id":"5nHFuYbKH2cKYjTmDrvq1w","inst-id":"6UkTHKpQvqmDsqkXeN9e3R"}, + {"tag":"instantiation","def-id":41,"inst-id":"FqZp6QumQQS6aKhmEmMxR3"}, + {"tag":"instantiation","def-id":42,"inst-id":"4337KB2qcyTLx3u6qfd9sc"}, + {"tag":"instantiation","def-id":"E1s3CRGbtnmhYni3iEEFi3","inst-id":"5DjR2uZVerwXVQtxsGGubf"}, + {"tag":"instantiation","def-id":43,"inst-id":"DsVRy52GsE9UAfjS5ACQQ5"}, + {"tag":"instantiation","def-id":44,"inst-id":"Ar4Z2CXKpNY9HuNbnZQynZ"}, + {"tag":"instantiation","def-id":"AkWDEaAcm1tQkhNQt6LkbW","inst-id":"EcLdz4H3yjpw2x6PqBebdD"}, + {"tag":"instantiation","def-id":45,"inst-id":"CfPyd35i6FzhUffuUACTe1"}, + {"tag":"instantiation","def-id":46,"inst-id":"EtizFU9Y2EQ3VaxYAZpCXK"}, + {"tag":"instantiation","def-id":"58vQGcqzeBKZUcCpNSp37e","inst-id":"DmR6sNit5G9pTyKT3TBeQc"}, + {"tag":"instantiation","def-id":47,"inst-id":"9WbgN49DYsmKvsHByMiMtW"}, + {"tag":"instantiation","def-id":48,"inst-id":"5Ztemf7V4JLHy3qXgtTe2S"}, + {"tag":"instantiation","def-id":"A2QXCG5pWXMXzbCUSKN8GA","inst-id":"8VvLEdgpKAQe7YfsFDSzgh"}, + {"tag":"instantiation","def-id":49,"inst-id":"23Bt9uG4TNRPg8DWbPWrDo"}, + {"tag":"instantiation","def-id":50,"inst-id":"D2os9Qqi4ERox74HZtGXNw"}, + {"tag":"instantiation","def-id":51,"inst-id":"DFoMtTfdzrfSBEbYcYqKvA"}, + {"tag":"instantiation","def-id":52,"inst-id":"2z3K6HddgeHuNaVea1LyUU"}, + {"tag":"instantiation","def-id":53,"inst-id":"4XVqWYW9xHqoQfM4hiDWKz"}, + {"tag":"instantiation","def-id":54,"inst-id":"5hBUoy2D2wMsQvN16hEu1v"}, + {"tag":"instantiation","def-id":55,"inst-id":"AqoA3xEAhq2iokeih6SHu4"}, + {"tag":"instantiation","def-id":56,"inst-id":"8BETgZHa8gHnD3M3u6QoQf"}, + {"tag":"instantiation","def-id":57,"inst-id":"FE1jig2pJwVBmdfjkBPxoi"}, + {"tag":"instantiation","def-id":58,"inst-id":"BS3ZjAuuHNvH3BXUyGamQo"}, + {"tag":"instantiation","def-id":59,"inst-id":"EiVQtcS1yvdESnqKesnt5S"}, + {"tag":"instantiation","def-id":60,"inst-id":"DeB929HVXFSDGDNMawL47B"}, + {"tag":"instantiation","def-id":61,"inst-id":"3YHAYemPtGHrVehEq3n9Ga"}, + {"tag":"instantiation","def-id":62,"inst-id":"2854s8fxu3p7VCiKXryr8a"}, + {"tag":"instantiation","def-id":63,"inst-id":"G6kFwwGM5NBg2TRz7jcsfG"}, + {"tag":"instantiation","def-id":64,"inst-id":"CmBH4GY3PqKffEnZ8xo5BA"}, + {"tag":"instantiation","def-id":65,"inst-id":"BCFGY5efK71HXjRJLxPNVg"}, + {"tag":"instantiation","def-id":66,"inst-id":"5RCgeDJeUtDRD7STqBfnac"}, + {"tag":"instantiation","def-id":67,"inst-id":"2hvnmgsFJQhYgQrToJojcb"}, + {"tag":"instantiation","def-id":68,"inst-id":"BK7fxLYivXnhdnTzpuqESL"}, + {"tag":"instantiation","def-id":69,"inst-id":"3psZnnbnj2KLbd4tyvUaqX"}, + {"tag":"instantiation","def-id":70,"inst-id":"5aCEMRq7f2bMZZQqumCVSu"}, + {"tag":"instantiation","def-id":71,"inst-id":"GhZzRu1QS2cRUHcDxFeSLn"}, + {"tag":"instantiation","def-id":72,"inst-id":"56RDse2xYH1tFwvGSrwszn"}, + {"tag":"instantiation","def-id":73,"inst-id":"25ReKJPGqpZDDKYdXEX5ks"}, + {"tag":"instantiation","def-id":74,"inst-id":"5YhZZLv58HXQszMsLjk6wF"}, + {"tag":"instantiation","def-id":75,"inst-id":"FjUW9hEBbJycC2Gp72cP7j"}, + {"tag":"instantiation","def-id":76,"inst-id":"9tfHWjUpAy1itVaqpVaBWa"}, + {"tag":"instantiation","def-id":77,"inst-id":"7zqHcbRU8gUZhDnqFh62hN"}, + {"tag":"instantiation","def-id":78,"inst-id":"DNcS4v9wwLjfny7YPiREoV"}, + {"tag":"instantiation","def-id":79,"inst-id":"92nBH8B9kCbgEtrPKHqeHU"}, + {"tag":"instantiation","def-id":80,"inst-id":"G7uMRVZSTiYG2ELP29iTeF"}, + {"tag":"instantiation","def-id":81,"inst-id":"JHRHWGiTF5TTd8q8uEXuL"}, + {"tag":"instantiation","def-id":82,"inst-id":"EqFTGRsHFbuGdUQHHzC7a9"}, + {"tag":"instantiation","def-id":83,"inst-id":"9V2UzEWDFs5SmUMGzcJZjJ"}, + {"tag":"instantiation","def-id":84,"inst-id":"61QJQLupTAUJc9v92jucvz"}, + {"tag":"instantiation","def-id":85,"inst-id":"7fKuydWPboB5K2mB1vwvFy"}, + {"tag":"instantiation","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","inst-id":"FEr47X6dCYqq2xKBb1kRFq"}, + {"tag":"instantiation","def-id":86,"inst-id":"3xsachBtugDAmny7YFjTUv"}, + {"tag":"instantiation","def-id":"9Q3B7DSxHL3ETUkuhA7Rv1","inst-id":"GRxng3pSHKQ3xM4RUKMbtX"}, + {"tag":"instantiation","def-id":86,"inst-id":"BTiMGuN62ATHVWoCbhhmT7"}, + {"tag":"instantiation","def-id":"9Q3B7DSxHL3ETUkuhA7Rv1","inst-id":"6WpfMibZFsfK3UeazZfhA1"}, + {"tag":"instantiation","def-id":86,"inst-id":"DD3didSr1qqJrSWMBwcYZJ"}, + {"tag":"instantiation","def-id":"9Q3B7DSxHL3ETUkuhA7Rv1","inst-id":"CUU84XFACmadAff3nCSfRp"}, + {"tag":"instantiation","def-id":86,"inst-id":"Bnma4VLaxTrrUPYmYTMVZM"}, + {"tag":"instantiation","def-id":"9Q3B7DSxHL3ETUkuhA7Rv1","inst-id":"D89ACc7xJQykdg4Dh1A3V7"}, + {"tag":"instantiation","def-id":87,"inst-id":"4iBBVVSD1Y3DAT6X9vi2x4"}, + {"tag":"instantiation","def-id":88,"inst-id":"8Qf3z2y8iLKXEBiryNfvTg"}, + {"tag":"instantiation","def-id":"FtYyKJdp2V5UZg9MrPmReV","inst-id":"F5rDN37d9RGPY6jnzVyguZ"}, + {"tag":"instantiation","def-id":89,"inst-id":"184eWHvSsF8qHiq9LQWUvf"}, + {"tag":"instantiation","def-id":90,"inst-id":"BojYHKhb4qvvKaZPrT2Tae"}, + {"tag":"instantiation","def-id":"7tgBFnrdabFgShDWJTfjju","inst-id":"FhHXn7W3gZ51Woya9HJoph"}, + {"tag":"instantiation","def-id":91,"inst-id":"VQ2bPyBxi9JFtTYKasZN2"}, + {"tag":"instantiation","def-id":92,"inst-id":"DhZWB1YfDsJJdNLJSr7B7T"}, + {"tag":"instantiation","def-id":"EpdzpvFwLd8Ywh7npkAh5V","inst-id":"9XasTANj64vB9ZvTFDT3zo"}, + {"tag":"instantiation","def-id":93,"inst-id":"44hHmQU7zL7GeTqVQzC3yf"}, + {"tag":"instantiation","def-id":94,"inst-id":"3rPRuPF5Jwm3GgNzmcnqSc"}, + {"tag":"instantiation","def-id":95,"inst-id":"85HQgozBLahmuB2fFbGa6Q"}, + {"tag":"instantiation","def-id":96,"inst-id":"7WPWy63fC1XmuxQ5W7mC3y"}, + {"tag":"instantiation","def-id":97,"inst-id":"3oyh9oYcL3Q3mvdYeiTynK"}, + {"tag":"instantiation","def-id":98,"inst-id":"yBtYiRsKFMvckFgHeFP6i"}, + {"tag":"instantiation","def-id":99,"inst-id":"7KLQwfxKeZrd3L7e18zRBr"}, + {"tag":"instantiation","def-id":100,"inst-id":"GNZG7RwFN8NdHpkQz2qpmq"}, + {"tag":"instantiation","def-id":"GVPknkp4LJFTom7oS7se87","inst-id":"7YP3vuY4RRXx4AhWfiNqKS"}, + {"tag":"instantiation","def-id":101,"inst-id":"4vVDaQem42Z3vQpvrtjaHA"}, + {"tag":"instantiation","def-id":102,"inst-id":"BrvpWkJGuzCBf3r7kVNJo4"}, + {"tag":"instantiation","def-id":"bHxRWEzDGdT6Lnv5uTCRe","inst-id":"656q9PiEkQzQr9tinkLxrZ"}, + {"tag":"instantiation","def-id":103,"inst-id":"4xqmHPcrykC5ipyaNXcVAL"}, + {"tag":"instantiation","def-id":104,"inst-id":"GfTkMWsbEoko71aefPJW2A"}, + {"tag":"instantiation","def-id":"97YsZPsN9YL3sGwuRbbUL2","inst-id":"EVnbJQbBxw1eUEYRni6Wch"}, + {"tag":"instantiation","def-id":105,"inst-id":"CPQb4sGNz6xHNCh1UaWTP3"}, + {"tag":"instantiation","def-id":106,"inst-id":"EnpXBWZSzDAMp6XEP1h7FN"}, + {"tag":"instantiation","def-id":107,"inst-id":"5o3HsqtVKhtZcR8CjD2ahn"}, + {"tag":"instantiation","def-id":"GVgofqGRhE7nuiyo6ubZFD","inst-id":"3HfeEALJYFNctitkdZqmhv"}, + {"tag":"instantiation","def-id":108,"inst-id":"6f9FR7wLwDCEKc8usfbek2"}, + {"tag":"instantiation","def-id":109,"inst-id":"4JFZct6tKK9BthSHRS7QNT"}, + {"tag":"instantiation","def-id":"Ce1KiA8n8mWbf4TktZgxTe","inst-id":"2TtfCo3u1C369a3Dc36cPQ"}, + {"tag":"instantiation","def-id":110,"inst-id":"5qVRVEcfCGoyMLYtc3EHxm"}, + {"tag":"instantiation","def-id":111,"inst-id":"DfNNaXMJNnrQUeZPZtWnzf"}, + {"tag":"instantiation","def-id":"F7Zm7tffdGSG1x83j6j5dg","inst-id":"FshjgLMYkKo69oJh6uLstr"}, + {"tag":"instantiation","def-id":112,"inst-id":"6Gex9EhRrSp4XFMxu1fUXA"}, + {"tag":"instantiation","def-id":113,"inst-id":"CLMSWV8xzuNonh8RQ8m4yz"}, + {"tag":"instantiation","def-id":"iP6L7364Bd5aJCtLVeS51","inst-id":"AnFmVeWs5C1x5ZuHHpf6vV"}, + {"tag":"instantiation","def-id":114,"inst-id":"7tPQshXYB72sigUwopnuTu"}, + {"tag":"instantiation","def-id":115,"inst-id":"4LE2HuNEv5fLTMamdYDn37"}, + {"tag":"instantiation","def-id":116,"inst-id":"3H3QT3ZYNPxxzRBJRGyWDP"}, + {"tag":"instantiation","def-id":117,"inst-id":"A6HWL3Kcej6TvtkSE5P3B9"}, + {"tag":"instantiation","def-id":118,"inst-id":"6WXF4tdzibmU3QAAkGmZSM"}, + {"tag":"instantiation","def-id":119,"inst-id":"CCVrkKJvmHuyxpsDKd99Eu"}, + {"tag":"instantiation","def-id":120,"inst-id":"7rrM7rHEb472PcXrniAkgc"}, + {"tag":"instantiation","def-id":121,"inst-id":"FpMPxqqWKai7uUQ7o95nrz"}, + {"tag":"instantiation","def-id":122,"inst-id":"EhQ9xRJUNNcPLV2trriLMz"}, + {"tag":"instantiation","def-id":123,"inst-id":"9aHF6CUi5tTYZVP3QP8wxR"}, + {"tag":"instantiation","def-id":124,"inst-id":"9Awpf4Q7fzGzjeSNKEzpSr"}, + {"tag":"instantiation","def-id":125,"inst-id":"AtaGrkHsjZ2Y7e5qaQknaf"}, + {"tag":"instantiation","def-id":126,"inst-id":"tQKQDnj6DJEdkWjYWjXLL"}, + {"tag":"instantiation","def-id":127,"inst-id":"9tkWdT1wHayfHVdPjNCwkp"}, + {"tag":"instantiation","def-id":128,"inst-id":"AmmGoogduACgzAdEpd74ZP"}, + {"tag":"instantiation","def-id":129,"inst-id":"3NX5ocwjVexDKP6HUefroh"}, + {"tag":"instantiation","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","inst-id":"FT4pxFBh14a61jaK6UdDfM"}, + {"tag":"instantiation","def-id":"DTTNbEaJKWdNBxL6Mudut1","inst-id":"2i6B2MSQaRVS6gpF35Rqmx"}, + {"tag":"instantiation","def-id":"Db7hETyHfWF8dSyRX6WRVT","inst-id":"6gubidcNTxtTSuXPZQKXUm"}, + {"tag":"instantiation","def-id":"Db7hETyHfWF8dSyRX6WRVT","inst-id":"PciZ3xURTHGr48a7y5NRz"}, + {"tag":"pad-def-contains-geometry","pad-id":"ByijqTpGAVzD9hdyzeizCR","item-id":"EJ6ccARPYGCgmyDBRVDAKA","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"ByijqTpGAVzD9hdyzeizCR","item-id":"DCiRdYJr1p5TEryEzk9Msj","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"9YMG5DTxzXCtgFtB2YkssL","item-id":"2eMDXhpkQ4AAVXEmUJLLba","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"9YMG5DTxzXCtgFtB2YkssL","item-id":"5s4ZgYwBRVc8bSYGcbg5me","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"5tH9dR9rt6RLoqN8hxMwxy","item-id":"6eu9Wwxi8BKpt2aEnMLk9S","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"5tH9dR9rt6RLoqN8hxMwxy","item-id":"87NCUtWRnKsiDWe9RG6st3","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"CbxqNNggPsVZwvYJPpqnyS","item-id":"72sb8EQEMtnanwXEvtzw63","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"9VxsRdCqEvv7peG7NM5wE3","item-id":"4WtrzemHE64WPkAepBdmWE","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"9VxsRdCqEvv7peG7NM5wE3","item-id":"JESWJDeWmvpu8aUfCztU8","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"EYX3oy34yTxAbztGELmiBd","item-id":"A3ZNzmYbU8iepdW2MdTA1a","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"EYX3oy34yTxAbztGELmiBd","item-id":"7radm3PGzJgPtKrZUBXSoN","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"3SuVoBsk9ThMafscjEedTT","item-id":"F9hoKpPgXwE22tYztPqhHN","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"3SuVoBsk9ThMafscjEedTT","item-id":"FL7aC16w5eaMiJHxFKgt15","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"6atuTtyFZU48AKFxhNYejb","item-id":"xwWW1u4GtpvgWnsBb1FHp","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"6atuTtyFZU48AKFxhNYejb","item-id":"7V5K8Q2j5wDJQdmQ2v9YTZ","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"ENYMRJ6xdkfFE9fmeEQKiV","item-id":"5P4Rqzn5qDcLBgBtt7eU1F","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"ENYMRJ6xdkfFE9fmeEQKiV","item-id":"2tSX7nvuDWVCBxmDNaeU6R","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"CqGQBdoktLtG5UpqFQ1aU6","item-id":"2PTxwHpxsYW58QY8p5vNY1","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"FsyKeyEygi1xykZnkp59EW","item-id":"4xrFDePf1mooBqPkWsfXuQ","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"FsyKeyEygi1xykZnkp59EW","item-id":"AP2yigqmHWSBwSsuyqeKPP","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"2LsoCUBoqtzmRN8RSJ1RFG","item-id":"4VcMGPxKJqWYwoWMVbA5KL","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"2LsoCUBoqtzmRN8RSJ1RFG","item-id":"AkKfYie9VtSwCSJCRbAP9J","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"4tSVMzLvGcFSpmW5ruNsYj","item-id":"jRgcyY5jvrxsVHCFLAKsC","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"GeH6wepvk3oSCDswcMujRQ","item-id":"KWnJFizvmMudSXbWyget7","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"GeH6wepvk3oSCDswcMujRQ","item-id":"3ttVs9UEdSSR8yoDQhdsQa","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"3UqGYP6PmiULBMirwDtpgF","item-id":"CDEeKJRSco5XhQPvJGFCGG","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"3UqGYP6PmiULBMirwDtpgF","item-id":"B3HrKZZzJDCdvf8dmK6YQ1","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"7rKM9MqK1hpvTPcjV3dt3q","item-id":"Hx49r9cSDbBCnj6nzgw9R","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"7rKM9MqK1hpvTPcjV3dt3q","item-id":"2o1QE6MEuR8RDKbCaLRbh8","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"ESyLpzk4Bm24Cam2fwvum4","item-id":"46y5VTm37hUMFTNW3UaZ3q","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"ESyLpzk4Bm24Cam2fwvum4","item-id":"6XSbqzjSEy9U8mcDreZWng","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"9GjWQ4F8bAj5gWTP5h8gRj","item-id":"9ovSf5mZyYesv6sPtvk5F2","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"9GjWQ4F8bAj5gWTP5h8gRj","item-id":"5wp9egvXABV8ezwbXjaGix","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"2ZrGLNLJQz9xBEJ3CHYatK","item-id":"A32AuNiXjRsV39ArjZ8WbF","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"2ZrGLNLJQz9xBEJ3CHYatK","item-id":"2HVYcyrUjjmvVdRfmwMie6","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"9vYtcGtfkD1njJ7nfwp5Pb","item-id":"C9gCuXZNuXA5ZXHqbn3grn","index":0}, + {"tag":"pad-def-contains-geometry","pad-id":"9vYtcGtfkD1njJ7nfwp5Pb","item-id":"8Bf3r5m9KJok2rXKEsrAhR","index":0}, + {"tag":"package-contains-geometry","pkg-id":"3nMAwnPEMTTghiJzvQuEyS","item-id":"4PW8hH2YhKzjtdEnFkqBr2","index":0}, + {"tag":"package-contains-geometry","pkg-id":"3nMAwnPEMTTghiJzvQuEyS","item-id":"2LotteBPXi7XkhaHqDHhrE","index":0}, + {"tag":"package-contains-pad","pkg-id":"3nMAwnPEMTTghiJzvQuEyS","pad-id":"87LDCrTQi3NQLEaX6fB1Jr"}, + {"tag":"package-contains-pad","pkg-id":"3nMAwnPEMTTghiJzvQuEyS","pad-id":"6QnEn6Vmc31tEG8Cb9s7X8"}, + {"tag":"package-contains-geometry","pkg-id":"6RsuPH8NbwFHfrUREA2HkD","item-id":"66ZNWRviL4867sVJd1vnoe","index":0}, + {"tag":"package-contains-geometry","pkg-id":"6RsuPH8NbwFHfrUREA2HkD","item-id":"FfQToWn4h9EWtmZkoiuN6i","index":0}, + {"tag":"package-contains-geometry","pkg-id":"6RsuPH8NbwFHfrUREA2HkD","item-id":"5eyNZUjCiNHrRaEMjW8AFn","index":0}, + {"tag":"package-contains-geometry","pkg-id":"6RsuPH8NbwFHfrUREA2HkD","item-id":"3wFWKsSRzuZxxnWTv2NoUh","index":0}, + {"tag":"package-contains-geometry","pkg-id":"6RsuPH8NbwFHfrUREA2HkD","item-id":"3YbE7JkffCfzFPKU4WdSyQ","index":0}, + {"tag":"package-contains-pad","pkg-id":"QnsiHXKK2nbtfhBdD66J2","pad-id":"rp1xna1JgPguTNc7Mdp9f"}, + {"tag":"package-contains-geometry","pkg-id":"An4o2xNFeTwu4FARfsC7ds","item-id":"E7wg9W1wHrrsBTNwZSt278","index":0}, + {"tag":"package-contains-geometry","pkg-id":"An4o2xNFeTwu4FARfsC7ds","item-id":"B7BTUuCpLJdyC2fk6Vn3dr","index":0}, + {"tag":"package-contains-pad","pkg-id":"An4o2xNFeTwu4FARfsC7ds","pad-id":"EL9mw84DiUiE4hdKRbywVE"}, + {"tag":"package-contains-pad","pkg-id":"An4o2xNFeTwu4FARfsC7ds","pad-id":"3bd6evhN5qGHwvQVBHrAnX"}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"GHeSB12RYPiC8Cov5j1vDv","index":0}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"5v5QeNv8bzkZcw7bYLuQd6","index":7}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"5eCwib5PZoLpXVp15cRuJT","index":6}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"DvJfPKdR1fkVfFtBwZKGCn","index":5}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"CFB8hbBiXFMcbzyeSc3Yam","index":4}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"96Fbu4b6YoommHscUnXhqP","index":3}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"5eunoZSSEwftkb72VhsGgf","index":2}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"AaCVpQ7JvecbWpymvNjgvn","index":1}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"FXBTREGdaffpkrk7V67dF9","index":0}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"F9L5ttNiueVNYWi6ZNiK8R","index":2}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"67BERCWYGcoCCashnxX2ih","index":1}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"8sarThWd1rXV2vVgizjHD2","index":0}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"3ntLF6z12sEEWo6JBYuG5L","index":2}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"25W9DXSM2axiVW22iyMXcf","index":1}, + {"tag":"package-contains-geometry","pkg-id":"CTucWsGHbQa7EiGa82c7YW","item-id":"GREsG9JAuWLZ8VAYzCtxW3","index":0}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"5W8eqEnKRPd2ce9WiDgNPA"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"8aujbv7W9yEY8mhAzSwzfd"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"5Vpd4bfrjQyZcR5rf4Tdvo"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"G5GBKCnNwTc4VSC1pYRFfo"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"6HqJGqWeLSbGKjwKn5oqsG"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"6iRgMynebkDG3ZSrGwSSgh"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"7WVZ2C81Z19cpkvz1qT9dW"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"8jeM3LD3mn3XBjfsNNRZVb"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"A4S2RQcfpGtMEtt1KucACD"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"F39LZR6kUCrhny6FtLLPe9"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"3pYu7PXk2k4vcPuZjirUzQ"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"D79WrXHW5QmSVpMbk7HRQe"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"AXfPWhuyd9CPd1kPNwJaPY"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"2u8b7Lp7pJWrhDuUEFnq5y"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"4itZv6tedRvhZ2uRQSK7gH"}, + {"tag":"package-contains-pad","pkg-id":"CTucWsGHbQa7EiGa82c7YW","pad-id":"EEXAyqPuykQbWPZbFtE1HZ"}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"2NTd7PSKFZe7vVTc3kjgyw","index":36}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"33mDgBXfeQytCgYGcxhzgW","index":35}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"Bg2myLHyLBaJNR6pgc77td","index":34}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"FErQLnEb2sf6tR16vMDX2c","index":33}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"4YNGdGKNtSsZSsFSGLShzN","index":32}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"89SReUygBBqHdu13JwTj9U","index":31}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"2FYbwFr4oEcW1RgS89AFS7","index":30}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"6pMFneE5Yq14W7jazLk3XP","index":29}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"65CSDCpHXTHJ5B5t7o3Tqg","index":28}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"6ECwM1ZVX24sb7WLCMfoUZ","index":27}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"9UD3Zsht7FrpBbj2sjGBLc","index":26}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"5n2BJ9AshnqRvbNkG3Vqfh","index":25}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"GgBLDErTXbGVBWMh85XaPf","index":24}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"4NFyN8GugA6xDu1B6KyHMC","index":23}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"2dEe2UFAr8a2qg2BV7bRqm","index":22}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"3bqiaKMfmDHth4bo4rk65T","index":21}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"BC1vuj3mbQz3dgtUb2juRP","index":20}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"LHiiCt5QwGMSAjF5zcWTF","index":19}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"AW6Kikr9wp7UUoAvufk37X","index":18}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"8gKUDthtatxMdpHxfdDpAn","index":17}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"DPkeT3BZxXiLJ3cqtT5RMM","index":16}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"5yBU8W8RCrV4WEAGXUVvaW","index":15}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"8Y62gRDyQeHsj54hPd771p","index":14}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"4WPB2DeodLLgETpLgjjSJj","index":13}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"5kVVtzY2ntHVUYGUfUL9gf","index":12}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"5XzeACm4M7egJFBQALum3i","index":11}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"5gguVonAfkf5qmNL4SbdZp","index":10}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"4uoX92Ws83jB67B1ExPPRQ","index":9}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"EX833YYsaT1Xdbgq9NE59G","index":8}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"Ge3juV97HyWVGRGjvc17s","index":7}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"AcX7jGp4grvHUrEmDpSGhS","index":6}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"Tr2z2sW9n3ZTuYaEhDBuD","index":5}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"CGj4JBYwC35pLR54FHdfWS","index":4}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"B6NnwPehUEEZnpDw2GpyWK","index":3}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"3M7QRwcDh28mdCDWgwdcSg","index":2}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"DESvDBiGJx1cbs2pPrBA74","index":1}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"AwvSUGzdRnAtU75B84NHg5","index":0}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"6XSTWeMTc1aremPnSUTe4Y","index":0}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"AsAkwEJ9d9PVApKR87y5BP","index":9}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"ALTCQ4YvHHTigg8CUg6weN","index":8}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"BEx65HsXsFLhxRugGVbjwV","index":7}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"7nEPDYeXwHKt2pdLxxEURe","index":6}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"9iPJo6RtqB6GRGWMJ7YzYo","index":5}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"8MLS59Xf97kWdAtSC5FzG3","index":4}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"FSuJMZR3RzKM3VJ4svbxtG","index":3}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"BhZxEJDorvs51oXC3HbCjy","index":2}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"EvsqSWRhrvpmwrP2Cdmbhc","index":1}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"2L6dutqpwdMCqiBE7B8AQ4","index":0}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"EZVGcD7WtbDYXaQzzmo1SF","index":2}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"FzJ3GLRA7agd96a8SW41Tu","index":1}, + {"tag":"package-contains-geometry","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","item-id":"7Dv1oN8zk8nDibwpvgL6m2","index":0}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"BccBtdMixJFk7gBvF7VwFq"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"4UENBX5zKxuEhW4wDjGPRB"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"ARfh82Zei6N8jMB346B71w"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"2TEAWxppSXtCjwekzwNGFh"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"FSn9uPfzN5pjfSeKpa4mbX"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"5rqZmSk4k1eYRd7CKFahQy"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"473Z1Rts63cF79SMBBqThj"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"2evkmfn8SpL91QBbefyNjz"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"9K35oSDzDk8viDDn1pTEFg"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"6sGBrER1ovb6kQsosW2Yjz"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"56N2PXpipE8m7q5KhXMcr2"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"7y7YXsFNyyr5heai3dV9Mp"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"3qUmwHx5xpM2u9qXCbEtE3"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"AKvtN6xQKoomL5AparfbAo"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"FD3cigPghTcptiwBkzg56r"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"FNfFCCiQKbgWjyRrCJgEVE"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"4kSFcWXY1kxc3Hpg4MsRFG"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"C6nfBM5AVtLShdneZKc72Z"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"BGci5hqhQLcn4XaaP23NzX"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"B3RrovgnUSjnUYcKERZEb"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"A5YxZCsePKsCahVaRnSrjn"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"5UVtn8WhcCUrF1imUB9B5c"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"ENTmJcBrjt9DmfR37FdEQW"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"A7sE9dEGR88JQTWAxUfmMW"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"25CmWk3GaXyudFGgVeg9zT"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"tRVAnbEkQMJR9toFYxH2Y"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"iSPdYYoLMUFrfECtVbbw6"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"EMsjqHXMWzCrP9A1bJCHys"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"x8VjT1A6XpgprfTD7WEwE"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"AccF3YNg5414BqdWPcT43T"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"FcFQYGZbd2ypQhhBvLTcfy"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"8RtrLyWJnsRetdte9rJ4TH"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"6eQ3kQHJgUbiwMUFBxZiq2"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"33vGxvTePDAn6c6SYp1Kbx"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"6DsRgbfz5gefkV5Cs6W3G5"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"4KFt6TJWBiwftqzpt1Xr12"}, + {"tag":"package-contains-pad","pkg-id":"7X5YLoyaV8pjSTtoBbguEz","pad-id":"9yxFqg3qXfG2xKXLeyjxft"}, + {"tag":"package-contains-geometry","pkg-id":"6FoXpKMuEUcEa31mVZurHa","item-id":"DkceenWqsKyVa9Kx88cEVs","index":0}, + {"tag":"package-contains-geometry","pkg-id":"6FoXpKMuEUcEa31mVZurHa","item-id":"6ceKzLM31urMTbov25yef9","index":0}, + {"tag":"package-contains-pad","pkg-id":"6FoXpKMuEUcEa31mVZurHa","pad-id":"2LxwweqFNEEjCqsWtbXLw8"}, + {"tag":"package-contains-pad","pkg-id":"6FoXpKMuEUcEa31mVZurHa","pad-id":"88yyoxSEmf4aUjJUGQRHbX"}, + {"tag":"package-contains-geometry","pkg-id":"6n9ZFMrzvPH5LhDA2A3XAT","item-id":"C15EFT85frJXtxv9V3cTeu","index":0}, + {"tag":"package-contains-geometry","pkg-id":"6n9ZFMrzvPH5LhDA2A3XAT","item-id":"2PR5GGSxcH522X3bA2FEhf","index":2}, + {"tag":"package-contains-geometry","pkg-id":"6n9ZFMrzvPH5LhDA2A3XAT","item-id":"67FydDnrkPoWrtt3CM6CRW","index":1}, + {"tag":"package-contains-geometry","pkg-id":"6n9ZFMrzvPH5LhDA2A3XAT","item-id":"CMzKX7jKyTP4YPkawnLoC8","index":0}, + {"tag":"package-contains-geometry","pkg-id":"6n9ZFMrzvPH5LhDA2A3XAT","item-id":"ByMGfkfMir8nSxEVnBYSfd","index":2}, + {"tag":"package-contains-geometry","pkg-id":"6n9ZFMrzvPH5LhDA2A3XAT","item-id":"oyNNGdfPueFeoPUoWQUHK","index":1}, + {"tag":"package-contains-geometry","pkg-id":"6n9ZFMrzvPH5LhDA2A3XAT","item-id":"DZRM8uYSFiaYY5Me1wajia","index":0}, + {"tag":"package-contains-pad","pkg-id":"6n9ZFMrzvPH5LhDA2A3XAT","pad-id":"DyMnAWs9qaaBrRyLsdDUGk"}, + {"tag":"package-contains-pad","pkg-id":"6n9ZFMrzvPH5LhDA2A3XAT","pad-id":"BWEKdqfsPpBrvPBWpn8ZA2"}, + {"tag":"package-contains-pad","pkg-id":"6n9ZFMrzvPH5LhDA2A3XAT","pad-id":"5e5Ld1bqfWH42N6BrfmcUy"}, + {"tag":"package-contains-pad","pkg-id":"6n9ZFMrzvPH5LhDA2A3XAT","pad-id":"8QhojHF2fzroox347dx9Kw"}, + {"tag":"package-contains-geometry","pkg-id":"SqnCmAk76hDeBTh51y1FZ","item-id":"Aw5Mtsg74SzfueVQky8Hzi","index":0}, + {"tag":"package-contains-geometry","pkg-id":"SqnCmAk76hDeBTh51y1FZ","item-id":"6dQNeSfCWHGVZUFSX3Wj2n","index":0}, + {"tag":"package-contains-geometry","pkg-id":"Gfgq3XkY3gfdEMNQQnJnvT","item-id":"9XHXUTvrfq7KPzBV2ESYKD","index":0}, + {"tag":"package-contains-geometry","pkg-id":"Gfgq3XkY3gfdEMNQQnJnvT","item-id":"9Bvd9gt2E5D4Eujru4XB4s","index":0}, + {"tag":"package-contains-pad","pkg-id":"Gfgq3XkY3gfdEMNQQnJnvT","pad-id":"2LxwweqFNEEjCqsWtbXLw8"}, + {"tag":"package-contains-pad","pkg-id":"Gfgq3XkY3gfdEMNQQnJnvT","pad-id":"88yyoxSEmf4aUjJUGQRHbX"}, + {"tag":"package-contains-geometry","pkg-id":"24mU64xBQAu7abAJ8qQpeW","item-id":"6a35n7D5CvrL8dq5aWK4Da","index":0}, + {"tag":"package-contains-geometry","pkg-id":"24mU64xBQAu7abAJ8qQpeW","item-id":"62b9z7eewUWpSoBmWq6czm","index":0}, + {"tag":"package-contains-pad","pkg-id":"24mU64xBQAu7abAJ8qQpeW","pad-id":"NPAaADWvFAh5Pttni6nm6"}, + {"tag":"package-contains-pad","pkg-id":"24mU64xBQAu7abAJ8qQpeW","pad-id":"69m3hpZazob4QbVDhEkQBW"}, + {"tag":"package-contains-geometry","pkg-id":"FojY5v25YV7yxNL71KvyGw","item-id":"4osKv3Qf6igaxR6DqkrZVH","index":0}, + {"tag":"package-contains-geometry","pkg-id":"FojY5v25YV7yxNL71KvyGw","item-id":"7T51WBdLidjVZS2j7d6dys","index":0}, + {"tag":"package-contains-pad","pkg-id":"FojY5v25YV7yxNL71KvyGw","pad-id":"249fMYoZnp83PEwU9hgbJp"}, + {"tag":"package-contains-pad","pkg-id":"FojY5v25YV7yxNL71KvyGw","pad-id":"2dtsvGrvUzW47GKB9Whp5m"}, + {"tag":"package-contains-geometry","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","item-id":"EjDFb4Sa3zS4S26oabpEFw","index":0}, + {"tag":"package-contains-geometry","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","item-id":"4F6B8GXwzMh27TLVN3Pds5","index":3}, + {"tag":"package-contains-geometry","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","item-id":"GJ2g91exFr8RFBCPaxx6zH","index":2}, + {"tag":"package-contains-geometry","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","item-id":"EFNYLQ2PpymvKgycXCVjM6","index":1}, + {"tag":"package-contains-geometry","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","item-id":"CfWqvFvEP1y1CnMAmMqVtd","index":0}, + {"tag":"package-contains-geometry","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","item-id":"CotCRSsw6x5nukw4fEt8w6","index":2}, + {"tag":"package-contains-geometry","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","item-id":"4nQSKaCg6RLycoiy5ox8LX","index":1}, + {"tag":"package-contains-geometry","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","item-id":"B4Cm2tMqYtDu1nMAcPg2jW","index":0}, + {"tag":"package-contains-pad","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","pad-id":"Gej4tp5h73rLSC7T9Y3aev"}, + {"tag":"package-contains-pad","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","pad-id":"CKURLeJJtDnZdaZNubf31w"}, + {"tag":"package-contains-pad","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","pad-id":"8PUWU9x1HYTQeLEKn9zHoo"}, + {"tag":"package-contains-pad","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","pad-id":"8EeRoknV6x54y7F4NJpmeX"}, + {"tag":"package-contains-pad","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","pad-id":"5yU4RdGC2T7U8DNDgPvAFS"}, + {"tag":"package-contains-pad","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","pad-id":"FGCBL9dGqLSUprFP68B9of"}, + {"tag":"package-contains-pad","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","pad-id":"2DFtmf9Gxd3taKZnKhszUP"}, + {"tag":"package-contains-pad","pkg-id":"Jdz1ZREUiRhVoAS3xi4T7","pad-id":"EH6S1TnCRw8fe4FZa7ekqW"}, + {"tag":"package-contains-geometry","pkg-id":"AKJwqHoiayEHZeT8eofJ2z","item-id":"EFgrPp5VRbA3P64N79z8se","index":0}, + {"tag":"package-contains-geometry","pkg-id":"AKJwqHoiayEHZeT8eofJ2z","item-id":"BUdnUmukE4DKx4vdTjg4if","index":0}, + {"tag":"package-contains-pad","pkg-id":"AKJwqHoiayEHZeT8eofJ2z","pad-id":"CyV6Emr8QL3Tr2dtCRXJum"}, + {"tag":"package-contains-pad","pkg-id":"AKJwqHoiayEHZeT8eofJ2z","pad-id":"6Jhv1zHNyie2BpKYKWyx9F"}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"8xcYrKk37WcPqk8vZspJF3","index":0}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"5MBwdSZh4Kmpk8bYqZ9vXv","index":11}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"5wcsDLjhVNVexxhUfi1ayP","index":10}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"GWq3A9LbySgVchXuQ9NXsP","index":9}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"GEjVChXc6wHYhdfYuepHGK","index":8}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"9kEQbkAd1u9DwmhK6mw6Gw","index":7}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"6JkNqKtpM6MweNzgohxSeP","index":6}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"CLzQHyw9WRoswSK5jodGby","index":5}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"4ynorL1bJ8MRb9JeFRhThP","index":4}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"5rAHCvBwjs7P3uYeadMgci","index":3}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"9qqrFp9rYATPq7JH2ep99p","index":2}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"25w2yu9Ax5qiZgN2Nc1Toq","index":1}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"7cGc2qfCx2veXyhkKRssLy","index":0}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"FxCGnjtwZt9Jd9JG66ruGK","index":3}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"6KoWhM5fNUaqpxidGEUD1x","index":2}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"9iyzc9STQpt4GB7KigrHAF","index":1}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"GVKoX6LrifCte3kgnBe6Ls","index":0}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"Aru5pWQNzLYFpfUeUT9QsR","index":1}, + {"tag":"package-contains-geometry","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","item-id":"9bFmpKg1FPai3oe43S3KbL","index":0}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"4ACz9ZHKTpLQiJvQppWKdf"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"EqsbchJV3wDcJFdoRsgM9F"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"5ZytxRFdKgJUFipFzB7Bqn"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"8nu2m7YQsFWeXc2VkmcRHB"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"Cu8rc9vAmsCKTmyMSXHmQr"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"DoJCM1LP1MyRToJ88pWeto"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"CL6n5UtMchhxs4VAExoUtF"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"AsBhLVKmpk6EFaffXQKh6Y"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"G9phhhUTXXVD7b6Mni79sc"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"96rwTsoHr1oLXdHdGmuz3Q"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"Usjz9PTceToyzanR4dQmN"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"6EmQCkumhnwazZWi5MDkEs"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"Dj9cVTiijiXzvrku3kKmYm"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"2kTLWLRtV33rz9trVmSQet"}, + {"tag":"package-contains-pad","pkg-id":"ETxf7uYkBRtvAMZ5eePNej","pad-id":"TSDiDy6VLF3BhTAqCyKT1"}, + {"tag":"package-contains-geometry","pkg-id":"GTmTqwndRUPT26duWivqqm","item-id":"EcuUnMhmE6KbxFmqbxBpuR","index":0}, + {"tag":"package-contains-geometry","pkg-id":"GTmTqwndRUPT26duWivqqm","item-id":"2KdveVvhnVZABsjJAsUC5U","index":3}, + {"tag":"package-contains-geometry","pkg-id":"GTmTqwndRUPT26duWivqqm","item-id":"Ct4NXMFFT6z3yDSJMZfsM1","index":2}, + {"tag":"package-contains-geometry","pkg-id":"GTmTqwndRUPT26duWivqqm","item-id":"GnEsvigQhc7R7am9BLjLHh","index":1}, + {"tag":"package-contains-geometry","pkg-id":"GTmTqwndRUPT26duWivqqm","item-id":"GewmqcK3EhzYh2pgBJy216","index":0}, + {"tag":"package-contains-geometry","pkg-id":"GTmTqwndRUPT26duWivqqm","item-id":"72Rufx483XcXRZAXmw7sPP","index":2}, + {"tag":"package-contains-geometry","pkg-id":"GTmTqwndRUPT26duWivqqm","item-id":"AL62Qcai2KLUty57uuKLVt","index":1}, + {"tag":"package-contains-geometry","pkg-id":"GTmTqwndRUPT26duWivqqm","item-id":"7ehHRC9FNwrNFgndPLyV6q","index":0}, + {"tag":"package-contains-pad","pkg-id":"GTmTqwndRUPT26duWivqqm","pad-id":"7eLMrp81n94xgV3ZcqewUk"}, + {"tag":"package-contains-pad","pkg-id":"GTmTqwndRUPT26duWivqqm","pad-id":"76bgGbRRSV5RstoEEsS35N"}, + {"tag":"package-contains-pad","pkg-id":"GTmTqwndRUPT26duWivqqm","pad-id":"4M32voPjQ4ujDnVkcwNkbB"}, + {"tag":"def-pin-uses-pad","pin-id":127,"pad-id":"6iRgMynebkDG3ZSrGwSSgh","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":127}, + {"tag":"def-pin-uses-pad","pin-id":86,"pad-id":"rp1xna1JgPguTNc7Mdp9f","index":0}, + {"tag":"component-has-pin","def-id":"9Q3B7DSxHL3ETUkuhA7Rv1","pin-id":86}, + {"tag":"def-pin-uses-pad","pin-id":24,"pad-id":"2LxwweqFNEEjCqsWtbXLw8","index":0}, + {"tag":"component-has-pin","def-id":"51m3sE1ig4FpnDDkEhCy23","pin-id":24}, + {"tag":"def-pin-uses-pad","pin-id":4,"pad-id":"AsBhLVKmpk6EFaffXQKh6Y","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":4}, + {"tag":"def-pin-uses-pad","pin-id":115,"pad-id":"EEXAyqPuykQbWPZbFtE1HZ","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":115}, + {"tag":"def-pin-uses-pad","pin-id":66,"pad-id":"B3RrovgnUSjnUYcKERZEb","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":66}, + {"tag":"def-pin-uses-pad","pin-id":68,"pad-id":"A7sE9dEGR88JQTWAxUfmMW","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":68}, + {"tag":"def-pin-uses-pad","pin-id":107,"pad-id":"76bgGbRRSV5RstoEEsS35N","index":0}, + {"tag":"component-has-pin","def-id":"GVgofqGRhE7nuiyo6ubZFD","pin-id":107}, + {"tag":"def-pin-uses-pad","pin-id":70,"pad-id":"4kSFcWXY1kxc3Hpg4MsRFG","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":70}, + {"tag":"def-pin-uses-pad","pin-id":26,"pad-id":"DyMnAWs9qaaBrRyLsdDUGk","index":0}, + {"tag":"component-has-pin","def-id":"2dnpU3ErHPq4WCHbRCEMjS","pin-id":26}, + {"tag":"def-pin-uses-pad","pin-id":31,"pad-id":"2LxwweqFNEEjCqsWtbXLw8","index":0}, + {"tag":"component-has-pin","def-id":"Go1q54QG6UE5cNAXPi1HGe","pin-id":31}, + {"tag":"def-pin-uses-pad","pin-id":101,"pad-id":"6QnEn6Vmc31tEG8Cb9s7X8","index":0}, + {"tag":"component-has-pin","def-id":"bHxRWEzDGdT6Lnv5uTCRe","pin-id":101}, + {"tag":"def-pin-uses-pad","pin-id":110,"pad-id":"6QnEn6Vmc31tEG8Cb9s7X8","index":0}, + {"tag":"component-has-pin","def-id":"F7Zm7tffdGSG1x83j6j5dg","pin-id":110}, + {"tag":"def-pin-uses-pad","pin-id":56,"pad-id":"5UVtn8WhcCUrF1imUB9B5c","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":56}, + {"tag":"def-pin-uses-pad","pin-id":58,"pad-id":"3qUmwHx5xpM2u9qXCbEtE3","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":58}, + {"tag":"def-pin-uses-pad","pin-id":60,"pad-id":"EMsjqHXMWzCrP9A1bJCHys","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":60}, + {"tag":"def-pin-uses-pad","pin-id":118,"pad-id":"G5GBKCnNwTc4VSC1pYRFfo","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":118}, + {"tag":"def-pin-uses-pad","pin-id":16,"pad-id":"TSDiDy6VLF3BhTAqCyKT1","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":16}, + {"tag":"def-pin-uses-pad","pin-id":106,"pad-id":"4M32voPjQ4ujDnVkcwNkbB","index":0}, + {"tag":"component-has-pin","def-id":"GVgofqGRhE7nuiyo6ubZFD","pin-id":106}, + {"tag":"def-pin-uses-pad","pin-id":97,"pad-id":"CKURLeJJtDnZdaZNubf31w","index":0}, + {"tag":"component-has-pin","def-id":"GVPknkp4LJFTom7oS7se87","pin-id":97}, + {"tag":"def-pin-uses-pad","pin-id":112,"pad-id":"6Jhv1zHNyie2BpKYKWyx9F","index":0}, + {"tag":"component-has-pin","def-id":"iP6L7364Bd5aJCtLVeS51","pin-id":112}, + {"tag":"def-pin-uses-pad","pin-id":121,"pad-id":"2u8b7Lp7pJWrhDuUEFnq5y","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":121}, + {"tag":"def-pin-uses-pad","pin-id":36,"pad-id":"2LxwweqFNEEjCqsWtbXLw8","index":0}, + {"tag":"component-has-pin","def-id":"BrVKhF2j14MtWLpsJyJZPp","pin-id":36}, + {"tag":"def-pin-uses-pad","pin-id":82,"pad-id":"56N2PXpipE8m7q5KhXMcr2","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":82}, + {"tag":"def-pin-uses-pad","pin-id":43,"pad-id":"88yyoxSEmf4aUjJUGQRHbX","index":0}, + {"tag":"component-has-pin","def-id":"AkWDEaAcm1tQkhNQt6LkbW","pin-id":43}, + {"tag":"def-pin-uses-pad","pin-id":84,"pad-id":"473Z1Rts63cF79SMBBqThj","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":84}, + {"tag":"def-pin-uses-pad","pin-id":17,"pad-id":"CL6n5UtMchhxs4VAExoUtF","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":17}, + {"tag":"def-pin-uses-pad","pin-id":21,"pad-id":"88yyoxSEmf4aUjJUGQRHbX","index":0}, + {"tag":"component-has-pin","def-id":"fryXKB8SKwNEUvtPDdbi9","pin-id":21}, + {"tag":"def-pin-uses-pad","pin-id":30,"pad-id":"2LxwweqFNEEjCqsWtbXLw8","index":0}, + {"tag":"component-has-pin","def-id":"CZ44u98NqK9yFMoSXAxE7X","pin-id":30}, + {"tag":"def-pin-uses-pad","pin-id":71,"pad-id":"2evkmfn8SpL91QBbefyNjz","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":71}, + {"tag":"def-pin-uses-pad","pin-id":105,"pad-id":"7eLMrp81n94xgV3ZcqewUk","index":0}, + {"tag":"component-has-pin","def-id":"GVgofqGRhE7nuiyo6ubZFD","pin-id":105}, + {"tag":"def-pin-uses-pad","pin-id":73,"pad-id":"FSn9uPfzN5pjfSeKpa4mbX","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":73}, + {"tag":"def-pin-uses-pad","pin-id":75,"pad-id":"iSPdYYoLMUFrfECtVbbw6","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":75}, + {"tag":"def-pin-uses-pad","pin-id":125,"pad-id":"A4S2RQcfpGtMEtt1KucACD","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":125}, + {"tag":"def-pin-uses-pad","pin-id":44,"pad-id":"2LxwweqFNEEjCqsWtbXLw8","index":0}, + {"tag":"component-has-pin","def-id":"AkWDEaAcm1tQkhNQt6LkbW","pin-id":44}, + {"tag":"def-pin-uses-pad","pin-id":19,"pad-id":"3bd6evhN5qGHwvQVBHrAnX","index":0}, + {"tag":"component-has-pin","def-id":"49ckLSmHhX9zw6NJBqicJg","pin-id":19}, + {"tag":"def-pin-uses-pad","pin-id":129,"pad-id":"AXfPWhuyd9CPd1kPNwJaPY","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":129}, + {"tag":"def-pin-uses-pad","pin-id":14,"pad-id":"2kTLWLRtV33rz9trVmSQet","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":14}, + {"tag":"def-pin-uses-pad","pin-id":62,"pad-id":"9K35oSDzDk8viDDn1pTEFg","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":62}, + {"tag":"def-pin-uses-pad","pin-id":64,"pad-id":"x8VjT1A6XpgprfTD7WEwE","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":64}, + {"tag":"def-pin-uses-pad","pin-id":20,"pad-id":"EL9mw84DiUiE4hdKRbywVE","index":0}, + {"tag":"component-has-pin","def-id":"49ckLSmHhX9zw6NJBqicJg","pin-id":20}, + {"tag":"def-pin-uses-pad","pin-id":22,"pad-id":"2LxwweqFNEEjCqsWtbXLw8","index":0}, + {"tag":"component-has-pin","def-id":"fryXKB8SKwNEUvtPDdbi9","pin-id":22}, + {"tag":"def-pin-uses-pad","pin-id":40,"pad-id":"2LxwweqFNEEjCqsWtbXLw8","index":0}, + {"tag":"component-has-pin","def-id":"5nHFuYbKH2cKYjTmDrvq1w","pin-id":40}, + {"tag":"def-pin-uses-pad","pin-id":95,"pad-id":"FGCBL9dGqLSUprFP68B9of","index":0}, + {"tag":"component-has-pin","def-id":"GVPknkp4LJFTom7oS7se87","pin-id":95}, + {"tag":"def-pin-uses-pad","pin-id":91,"pad-id":"69m3hpZazob4QbVDhEkQBW","index":0}, + {"tag":"component-has-pin","def-id":"EpdzpvFwLd8Ywh7npkAh5V","pin-id":91}, + {"tag":"def-pin-uses-pad","pin-id":100,"pad-id":"5yU4RdGC2T7U8DNDgPvAFS","index":0}, + {"tag":"component-has-pin","def-id":"GVPknkp4LJFTom7oS7se87","pin-id":100}, + {"tag":"def-pin-uses-pad","pin-id":114,"pad-id":"7WVZ2C81Z19cpkvz1qT9dW","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":114}, + {"tag":"def-pin-uses-pad","pin-id":15,"pad-id":"EqsbchJV3wDcJFdoRsgM9F","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":15}, + {"tag":"def-pin-uses-pad","pin-id":35,"pad-id":"88yyoxSEmf4aUjJUGQRHbX","index":0}, + {"tag":"component-has-pin","def-id":"BrVKhF2j14MtWLpsJyJZPp","pin-id":35}, + {"tag":"def-pin-uses-pad","pin-id":49,"pad-id":"25CmWk3GaXyudFGgVeg9zT","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":49}, + {"tag":"def-pin-uses-pad","pin-id":34,"pad-id":"2LxwweqFNEEjCqsWtbXLw8","index":0}, + {"tag":"component-has-pin","def-id":"FcoUDreLBna6ww5xkXhrBp","pin-id":34}, + {"tag":"def-pin-uses-pad","pin-id":51,"pad-id":"ARfh82Zei6N8jMB346B71w","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":51}, + {"tag":"def-pin-uses-pad","pin-id":27,"pad-id":"8QhojHF2fzroox347dx9Kw","index":0}, + {"tag":"component-has-pin","def-id":"2dnpU3ErHPq4WCHbRCEMjS","pin-id":27}, + {"tag":"def-pin-uses-pad","pin-id":32,"pad-id":"88yyoxSEmf4aUjJUGQRHbX","index":0}, + {"tag":"component-has-pin","def-id":"Go1q54QG6UE5cNAXPi1HGe","pin-id":32}, + {"tag":"def-pin-uses-pad","pin-id":53,"pad-id":"A5YxZCsePKsCahVaRnSrjn","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":53}, + {"tag":"def-pin-uses-pad","pin-id":117,"pad-id":"3pYu7PXk2k4vcPuZjirUzQ","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":117}, + {"tag":"def-pin-uses-pad","pin-id":38,"pad-id":"2LxwweqFNEEjCqsWtbXLw8","index":0}, + {"tag":"component-has-pin","def-id":"6nVTRwdPzwz1dbHxSAuiPZ","pin-id":38}, + {"tag":"def-pin-uses-pad","pin-id":109,"pad-id":"EL9mw84DiUiE4hdKRbywVE","index":0}, + {"tag":"component-has-pin","def-id":"Ce1KiA8n8mWbf4TktZgxTe","pin-id":109}, + {"tag":"def-pin-uses-pad","pin-id":10,"pad-id":"Usjz9PTceToyzanR4dQmN","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":10}, + {"tag":"def-pin-uses-pad","pin-id":39,"pad-id":"88yyoxSEmf4aUjJUGQRHbX","index":0}, + {"tag":"component-has-pin","def-id":"5nHFuYbKH2cKYjTmDrvq1w","pin-id":39}, + {"tag":"def-pin-uses-pad","pin-id":76,"pad-id":"2TEAWxppSXtCjwekzwNGFh","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":76}, + {"tag":"def-pin-uses-pad","pin-id":78,"pad-id":"4UENBX5zKxuEhW4wDjGPRB","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":78}, + {"tag":"def-pin-uses-pad","pin-id":80,"pad-id":"FD3cigPghTcptiwBkzg56r","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":80}, + {"tag":"def-pin-uses-pad","pin-id":92,"pad-id":"NPAaADWvFAh5Pttni6nm6","index":0}, + {"tag":"component-has-pin","def-id":"EpdzpvFwLd8Ywh7npkAh5V","pin-id":92}, + {"tag":"def-pin-uses-pad","pin-id":12,"pad-id":"Dj9cVTiijiXzvrku3kKmYm","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":12}, + {"tag":"def-pin-uses-pad","pin-id":120,"pad-id":"5W8eqEnKRPd2ce9WiDgNPA","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":120}, + {"tag":"def-pin-uses-pad","pin-id":67,"pad-id":"5rqZmSk4k1eYRd7CKFahQy","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":67}, + {"tag":"def-pin-uses-pad","pin-id":123,"pad-id":"4itZv6tedRvhZ2uRQSK7gH","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":123}, + {"tag":"def-pin-uses-pad","pin-id":69,"pad-id":"AccF3YNg5414BqdWPcT43T","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":69}, + {"tag":"def-pin-uses-pad","pin-id":13,"pad-id":"Cu8rc9vAmsCKTmyMSXHmQr","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":13}, + {"tag":"def-pin-uses-pad","pin-id":98,"pad-id":"Gej4tp5h73rLSC7T9Y3aev","index":0}, + {"tag":"component-has-pin","def-id":"GVPknkp4LJFTom7oS7se87","pin-id":98}, + {"tag":"def-pin-uses-pad","pin-id":37,"pad-id":"88yyoxSEmf4aUjJUGQRHbX","index":0}, + {"tag":"component-has-pin","def-id":"6nVTRwdPzwz1dbHxSAuiPZ","pin-id":37}, + {"tag":"def-pin-uses-pad","pin-id":55,"pad-id":"9yxFqg3qXfG2xKXLeyjxft","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":55}, + {"tag":"def-pin-uses-pad","pin-id":104,"pad-id":"87LDCrTQi3NQLEaX6fB1Jr","index":0}, + {"tag":"component-has-pin","def-id":"97YsZPsN9YL3sGwuRbbUL2","pin-id":104}, + {"tag":"def-pin-uses-pad","pin-id":57,"pad-id":"FcFQYGZbd2ypQhhBvLTcfy","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":57}, + {"tag":"def-pin-uses-pad","pin-id":1,"pad-id":"EL9mw84DiUiE4hdKRbywVE","index":0}, + {"tag":"component-has-pin","def-id":"3ut3gkiqUNJ5qxvbq22dd5","pin-id":1}, + {"tag":"def-pin-uses-pad","pin-id":29,"pad-id":"88yyoxSEmf4aUjJUGQRHbX","index":0}, + {"tag":"component-has-pin","def-id":"CZ44u98NqK9yFMoSXAxE7X","pin-id":29}, + {"tag":"def-pin-uses-pad","pin-id":124,"pad-id":"8jeM3LD3mn3XBjfsNNRZVb","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":124}, + {"tag":"def-pin-uses-pad","pin-id":7,"pad-id":"DoJCM1LP1MyRToJ88pWeto","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":7}, + {"tag":"def-pin-uses-pad","pin-id":59,"pad-id":"BGci5hqhQLcn4XaaP23NzX","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":59}, + {"tag":"def-pin-uses-pad","pin-id":47,"pad-id":"3bd6evhN5qGHwvQVBHrAnX","index":0}, + {"tag":"component-has-pin","def-id":"A2QXCG5pWXMXzbCUSKN8GA","pin-id":47}, + {"tag":"def-pin-uses-pad","pin-id":128,"pad-id":"6HqJGqWeLSbGKjwKn5oqsG","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":128}, + {"tag":"def-pin-uses-pad","pin-id":33,"pad-id":"88yyoxSEmf4aUjJUGQRHbX","index":0}, + {"tag":"component-has-pin","def-id":"FcoUDreLBna6ww5xkXhrBp","pin-id":33}, + {"tag":"def-pin-uses-pad","pin-id":9,"pad-id":"6EmQCkumhnwazZWi5MDkEs","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":9}, + {"tag":"def-pin-uses-pad","pin-id":81,"pad-id":"C6nfBM5AVtLShdneZKc72Z","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":81}, + {"tag":"def-pin-uses-pad","pin-id":83,"pad-id":"BccBtdMixJFk7gBvF7VwFq","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":83}, + {"tag":"def-pin-uses-pad","pin-id":85,"pad-id":"FNfFCCiQKbgWjyRrCJgEVE","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":85}, + {"tag":"def-pin-uses-pad","pin-id":25,"pad-id":"5e5Ld1bqfWH42N6BrfmcUy","index":0}, + {"tag":"component-has-pin","def-id":"2dnpU3ErHPq4WCHbRCEMjS","pin-id":25}, + {"tag":"def-pin-uses-pad","pin-id":2,"pad-id":"249fMYoZnp83PEwU9hgbJp","index":0}, + {"tag":"component-has-pin","def-id":"BRXwLCGrq4CRSQSGs5KsSF","pin-id":2}, + {"tag":"def-pin-uses-pad","pin-id":11,"pad-id":"4ACz9ZHKTpLQiJvQppWKdf","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":11}, + {"tag":"def-pin-uses-pad","pin-id":102,"pad-id":"87LDCrTQi3NQLEaX6fB1Jr","index":0}, + {"tag":"component-has-pin","def-id":"bHxRWEzDGdT6Lnv5uTCRe","pin-id":102}, + {"tag":"def-pin-uses-pad","pin-id":111,"pad-id":"87LDCrTQi3NQLEaX6fB1Jr","index":0}, + {"tag":"component-has-pin","def-id":"F7Zm7tffdGSG1x83j6j5dg","pin-id":111}, + {"tag":"def-pin-uses-pad","pin-id":72,"pad-id":"6eQ3kQHJgUbiwMUFBxZiq2","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":72}, + {"tag":"def-pin-uses-pad","pin-id":116,"pad-id":"8aujbv7W9yEY8mhAzSwzfd","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":116}, + {"tag":"def-pin-uses-pad","pin-id":28,"pad-id":"BWEKdqfsPpBrvPBWpn8ZA2","index":0}, + {"tag":"component-has-pin","def-id":"2dnpU3ErHPq4WCHbRCEMjS","pin-id":28}, + {"tag":"def-pin-uses-pad","pin-id":96,"pad-id":"EH6S1TnCRw8fe4FZa7ekqW","index":0}, + {"tag":"component-has-pin","def-id":"GVPknkp4LJFTom7oS7se87","pin-id":96}, + {"tag":"def-pin-uses-pad","pin-id":74,"pad-id":"4KFt6TJWBiwftqzpt1Xr12","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":74}, + {"tag":"def-pin-uses-pad","pin-id":94,"pad-id":"8PUWU9x1HYTQeLEKn9zHoo","index":0}, + {"tag":"component-has-pin","def-id":"GVPknkp4LJFTom7oS7se87","pin-id":94}, + {"tag":"def-pin-uses-pad","pin-id":90,"pad-id":"69m3hpZazob4QbVDhEkQBW","index":0}, + {"tag":"component-has-pin","def-id":"7tgBFnrdabFgShDWJTfjju","pin-id":90}, + {"tag":"def-pin-uses-pad","pin-id":119,"pad-id":"F39LZR6kUCrhny6FtLLPe9","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":119}, + {"tag":"def-pin-uses-pad","pin-id":46,"pad-id":"3bd6evhN5qGHwvQVBHrAnX","index":0}, + {"tag":"component-has-pin","def-id":"58vQGcqzeBKZUcCpNSp37e","pin-id":46}, + {"tag":"def-pin-uses-pad","pin-id":5,"pad-id":"5ZytxRFdKgJUFipFzB7Bqn","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":5}, + {"tag":"def-pin-uses-pad","pin-id":0,"pad-id":"3bd6evhN5qGHwvQVBHrAnX","index":0}, + {"tag":"component-has-pin","def-id":"3ut3gkiqUNJ5qxvbq22dd5","pin-id":0}, + {"tag":"def-pin-uses-pad","pin-id":88,"pad-id":"NPAaADWvFAh5Pttni6nm6","index":0}, + {"tag":"component-has-pin","def-id":"FtYyKJdp2V5UZg9MrPmReV","pin-id":88}, + {"tag":"def-pin-uses-pad","pin-id":89,"pad-id":"NPAaADWvFAh5Pttni6nm6","index":0}, + {"tag":"component-has-pin","def-id":"7tgBFnrdabFgShDWJTfjju","pin-id":89}, + {"tag":"def-pin-uses-pad","pin-id":23,"pad-id":"88yyoxSEmf4aUjJUGQRHbX","index":0}, + {"tag":"component-has-pin","def-id":"51m3sE1ig4FpnDDkEhCy23","pin-id":23}, + {"tag":"def-pin-uses-pad","pin-id":3,"pad-id":"2dtsvGrvUzW47GKB9Whp5m","index":0}, + {"tag":"component-has-pin","def-id":"BRXwLCGrq4CRSQSGs5KsSF","pin-id":3}, + {"tag":"def-pin-uses-pad","pin-id":61,"pad-id":"8RtrLyWJnsRetdte9rJ4TH","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":61}, + {"tag":"def-pin-uses-pad","pin-id":63,"pad-id":"6sGBrER1ovb6kQsosW2Yjz","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":63}, + {"tag":"def-pin-uses-pad","pin-id":87,"pad-id":"69m3hpZazob4QbVDhEkQBW","index":0}, + {"tag":"component-has-pin","def-id":"FtYyKJdp2V5UZg9MrPmReV","pin-id":87}, + {"tag":"def-pin-uses-pad","pin-id":48,"pad-id":"EL9mw84DiUiE4hdKRbywVE","index":0}, + {"tag":"component-has-pin","def-id":"A2QXCG5pWXMXzbCUSKN8GA","pin-id":48}, + {"tag":"def-pin-uses-pad","pin-id":65,"pad-id":"tRVAnbEkQMJR9toFYxH2Y","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":65}, + {"tag":"def-pin-uses-pad","pin-id":6,"pad-id":"G9phhhUTXXVD7b6Mni79sc","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":6}, + {"tag":"def-pin-uses-pad","pin-id":108,"pad-id":"3bd6evhN5qGHwvQVBHrAnX","index":0}, + {"tag":"component-has-pin","def-id":"Ce1KiA8n8mWbf4TktZgxTe","pin-id":108}, + {"tag":"def-pin-uses-pad","pin-id":103,"pad-id":"6QnEn6Vmc31tEG8Cb9s7X8","index":0}, + {"tag":"component-has-pin","def-id":"97YsZPsN9YL3sGwuRbbUL2","pin-id":103}, + {"tag":"def-pin-uses-pad","pin-id":122,"pad-id":"5Vpd4bfrjQyZcR5rf4Tdvo","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":122}, + {"tag":"def-pin-uses-pad","pin-id":50,"pad-id":"ENTmJcBrjt9DmfR37FdEQW","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":50}, + {"tag":"def-pin-uses-pad","pin-id":52,"pad-id":"AKvtN6xQKoomL5AparfbAo","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":52}, + {"tag":"def-pin-uses-pad","pin-id":8,"pad-id":"96rwTsoHr1oLXdHdGmuz3Q","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":8}, + {"tag":"def-pin-uses-pad","pin-id":54,"pad-id":"7y7YXsFNyyr5heai3dV9Mp","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":54}, + {"tag":"def-pin-uses-pad","pin-id":126,"pad-id":"D79WrXHW5QmSVpMbk7HRQe","index":0}, + {"tag":"component-has-pin","def-id":"FeMe1WwUKfQ3nWxxEBCtmR","pin-id":126}, + {"tag":"def-pin-uses-pad","pin-id":45,"pad-id":"EL9mw84DiUiE4hdKRbywVE","index":0}, + {"tag":"component-has-pin","def-id":"58vQGcqzeBKZUcCpNSp37e","pin-id":45}, + {"tag":"def-pin-uses-pad","pin-id":113,"pad-id":"CyV6Emr8QL3Tr2dtCRXJum","index":0}, + {"tag":"component-has-pin","def-id":"iP6L7364Bd5aJCtLVeS51","pin-id":113}, + {"tag":"def-pin-uses-pad","pin-id":93,"pad-id":"2DFtmf9Gxd3taKZnKhszUP","index":0}, + {"tag":"component-has-pin","def-id":"GVPknkp4LJFTom7oS7se87","pin-id":93}, + {"tag":"def-pin-uses-pad","pin-id":99,"pad-id":"8EeRoknV6x54y7F4NJpmeX","index":0}, + {"tag":"component-has-pin","def-id":"GVPknkp4LJFTom7oS7se87","pin-id":99}, + {"tag":"def-pin-uses-pad","pin-id":77,"pad-id":"33vGxvTePDAn6c6SYp1Kbx","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":77}, + {"tag":"def-pin-uses-pad","pin-id":18,"pad-id":"8nu2m7YQsFWeXc2VkmcRHB","index":0}, + {"tag":"component-has-pin","def-id":"9pFNXJXKj5jXediTRiXsT8","pin-id":18}, + {"tag":"def-pin-uses-pad","pin-id":79,"pad-id":"6DsRgbfz5gefkV5Cs6W3G5","index":0}, + {"tag":"component-has-pin","def-id":"4mxWXtLURdFmcZ1DTjQ6RQ","pin-id":79}, + {"tag":"def-pin-uses-pad","pin-id":42,"pad-id":"2LxwweqFNEEjCqsWtbXLw8","index":0}, + {"tag":"component-has-pin","def-id":"E1s3CRGbtnmhYni3iEEFi3","pin-id":42}, + {"tag":"def-pin-uses-pad","pin-id":41,"pad-id":"88yyoxSEmf4aUjJUGQRHbX","index":0}, + {"tag":"component-has-pin","def-id":"E1s3CRGbtnmhYni3iEEFi3","pin-id":41}, + {"tag":"component-uses-package","component-id":"Db7hETyHfWF8dSyRX6WRVT","package-id":"6RsuPH8NbwFHfrUREA2HkD"}, + {"tag":"component-uses-package","component-id":"iP6L7364Bd5aJCtLVeS51","package-id":"AKJwqHoiayEHZeT8eofJ2z"}, + {"tag":"component-uses-package","component-id":"7tgBFnrdabFgShDWJTfjju","package-id":"24mU64xBQAu7abAJ8qQpeW"}, + {"tag":"component-uses-package","component-id":"BrVKhF2j14MtWLpsJyJZPp","package-id":"6FoXpKMuEUcEa31mVZurHa"}, + {"tag":"component-uses-package","component-id":"Ce1KiA8n8mWbf4TktZgxTe","package-id":"An4o2xNFeTwu4FARfsC7ds"}, + {"tag":"component-uses-package","component-id":"49ckLSmHhX9zw6NJBqicJg","package-id":"An4o2xNFeTwu4FARfsC7ds"}, + {"tag":"component-uses-package","component-id":"3ut3gkiqUNJ5qxvbq22dd5","package-id":"An4o2xNFeTwu4FARfsC7ds"}, + {"tag":"component-uses-package","component-id":"9pFNXJXKj5jXediTRiXsT8","package-id":"ETxf7uYkBRtvAMZ5eePNej"}, + {"tag":"component-uses-package","component-id":"AkWDEaAcm1tQkhNQt6LkbW","package-id":"6FoXpKMuEUcEa31mVZurHa"}, + {"tag":"component-uses-package","component-id":"6nVTRwdPzwz1dbHxSAuiPZ","package-id":"6FoXpKMuEUcEa31mVZurHa"}, + {"tag":"component-uses-package","component-id":"2dnpU3ErHPq4WCHbRCEMjS","package-id":"6n9ZFMrzvPH5LhDA2A3XAT"}, + {"tag":"component-uses-package","component-id":"EpdzpvFwLd8Ywh7npkAh5V","package-id":"24mU64xBQAu7abAJ8qQpeW"}, + {"tag":"component-uses-package","component-id":"CZ44u98NqK9yFMoSXAxE7X","package-id":"Gfgq3XkY3gfdEMNQQnJnvT"}, + {"tag":"component-uses-package","component-id":"FeMe1WwUKfQ3nWxxEBCtmR","package-id":"CTucWsGHbQa7EiGa82c7YW"}, + {"tag":"component-uses-package","component-id":"BRXwLCGrq4CRSQSGs5KsSF","package-id":"FojY5v25YV7yxNL71KvyGw"}, + {"tag":"component-uses-package","component-id":"58vQGcqzeBKZUcCpNSp37e","package-id":"An4o2xNFeTwu4FARfsC7ds"}, + {"tag":"component-uses-package","component-id":"9Q3B7DSxHL3ETUkuhA7Rv1","package-id":"QnsiHXKK2nbtfhBdD66J2"}, + {"tag":"component-uses-package","component-id":"GVgofqGRhE7nuiyo6ubZFD","package-id":"GTmTqwndRUPT26duWivqqm"}, + {"tag":"component-uses-package","component-id":"fryXKB8SKwNEUvtPDdbi9","package-id":"Gfgq3XkY3gfdEMNQQnJnvT"}, + {"tag":"component-uses-package","component-id":"5nHFuYbKH2cKYjTmDrvq1w","package-id":"Gfgq3XkY3gfdEMNQQnJnvT"}, + {"tag":"component-uses-package","component-id":"GVPknkp4LJFTom7oS7se87","package-id":"Jdz1ZREUiRhVoAS3xi4T7"}, + {"tag":"component-uses-package","component-id":"bHxRWEzDGdT6Lnv5uTCRe","package-id":"3nMAwnPEMTTghiJzvQuEyS"}, + {"tag":"component-uses-package","component-id":"F7Zm7tffdGSG1x83j6j5dg","package-id":"3nMAwnPEMTTghiJzvQuEyS"}, + {"tag":"component-uses-package","component-id":"Go1q54QG6UE5cNAXPi1HGe","package-id":"6FoXpKMuEUcEa31mVZurHa"}, + {"tag":"component-uses-package","component-id":"A2QXCG5pWXMXzbCUSKN8GA","package-id":"An4o2xNFeTwu4FARfsC7ds"}, + {"tag":"component-uses-package","component-id":"51m3sE1ig4FpnDDkEhCy23","package-id":"Gfgq3XkY3gfdEMNQQnJnvT"}, + {"tag":"component-uses-package","component-id":"4mxWXtLURdFmcZ1DTjQ6RQ","package-id":"7X5YLoyaV8pjSTtoBbguEz"}, + {"tag":"component-uses-package","component-id":"97YsZPsN9YL3sGwuRbbUL2","package-id":"3nMAwnPEMTTghiJzvQuEyS"}, + {"tag":"component-uses-package","component-id":"DTTNbEaJKWdNBxL6Mudut1","package-id":"SqnCmAk76hDeBTh51y1FZ"}, + {"tag":"component-uses-package","component-id":"FtYyKJdp2V5UZg9MrPmReV","package-id":"24mU64xBQAu7abAJ8qQpeW"}, + {"tag":"component-uses-package","component-id":"FcoUDreLBna6ww5xkXhrBp","package-id":"6FoXpKMuEUcEa31mVZurHa"}, + {"tag":"component-uses-package","component-id":"E1s3CRGbtnmhYni3iEEFi3","package-id":"Gfgq3XkY3gfdEMNQQnJnvT"}, + {"tag":"inst-contains-geometry","inst-id":"38HrsE5q9UtHPnuxhH4W3N","item-id":"RcmcWurCkaSUeHT5K2A9h","index":1}, + {"tag":"inst-contains-geometry","inst-id":"38HrsE5q9UtHPnuxhH4W3N","item-id":"FSzDZiCa1YeWq9rjDqv9PS","index":0}, + {"tag":"stable-placement","anchor-id":"47jZR3aQdgMwt1d5ioSUUG","instance-id":"7R2Z1QpznMLufj2rsUw5q5","side":"Top","pose?":{"center":{"x":"11111111","y":"11111111"},"angle":"BnA9Fn4SjZZ","flip-x?":false}}, + {"tag":"stable-placement","anchor-id":"38HrsE5q9UtHPnuxhH4W3N","instance-id":"5nc5vqcQUq4T65QATrHbs6","side":"Bottom","pose?":{"center":{"x":"Z8Q7HPpE5SF","y":"11111111"},"angle":"BnA9Fn4SjZZ","flip-x?":true}}, + {"tag":"stable-placement","anchor-id":"38HrsE5q9UtHPnuxhH4W3N","instance-id":"FT4pxFBh14a61jaK6UdDfM","side":"Bottom","pose?":{"center":{"x":"BjhmhptCu13","y":"11111111"},"angle":"BmAAxSuXgtf","flip-x?":true}}, + {"tag":"stable-placement","anchor-id":"38HrsE5q9UtHPnuxhH4W3N","instance-id":"7chV5y7rZv1JE76RykH387","side":"Bottom","pose?":{"center":{"x":"BjhmhptCu13","y":"11111111"},"angle":"BmAAxSuXgtf","flip-x?":true}}, + {"tag":"stable-placement","anchor-id":"38HrsE5q9UtHPnuxhH4W3N","instance-id":"6YqcNXu6ArR48oqFoyuAAF","side":"Bottom","pose?":{"center":{"x":"Z8Q7HPpE5SF","y":"11111111"},"angle":"BnA9Fn4SjZZ","flip-x?":true}}, + {"tag":"stable-placement","anchor-id":"38HrsE5q9UtHPnuxhH4W3N","instance-id":"PciZ3xURTHGr48a7y5NRz","side":"Top","pose?":{"center":{"x":"BjHbRFc7pKB","y":"BjHbRFc7pKB"},"angle":"11111111","flip-x?":false}}, + {"tag":"stable-placement","anchor-id":"38HrsE5q9UtHPnuxhH4W3N","instance-id":"9wrpABkM2A6wAcmzpQXaWM","side":"Top","pose?":{"center":{"x":"11111111","y":"11111111"},"angle":"11111111","flip-x?":false}}, + {"tag":"stable-placement","anchor-id":"47jZR3aQdgMwt1d5ioSUUG","instance-id":"A3h29Z2RECjLiMZL85ZfCZ","side":"Top","pose?":{"center":{"x":"BiF9hpQu7bX","y":"11111111"},"angle":"BmmLeNakMM1","flip-x?":false}}, + {"tag":"stable-placement","anchor-id":"38HrsE5q9UtHPnuxhH4W3N","instance-id":"6gubidcNTxtTSuXPZQKXUm","side":"Top","pose?":{"center":{"x":"BjHbRFc7pKB","y":"Z93hCaRFeZP"},"angle":"11111111","flip-x?":false}}, + {"tag":"net-contains","net-id":130,"item-id":"E16Czh5sDF5KCKNdcmXXWj"}, + {"tag":"net-contains","net-id":130,"item-id":"8y12SmjjnoBocPfECLrqTr"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":130}, + {"tag":"net-contains","net-id":131,"item-id":"D13Br9DpFFMUdnNgMu4oto"}, + {"tag":"net-contains","net-id":131,"item-id":"E16Czh5sDF5KCKNdcmXXWj"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":131}, + {"tag":"net-contains","net-id":132,"item-id":"8y12SmjjnoBocPfECLrqTr"}, + {"tag":"net-contains","net-id":132,"item-id":"92nBH8B9kCbgEtrPKHqeHU"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":132}, + {"tag":"net-contains","net-id":133,"item-id":"3NX5ocwjVexDKP6HUefroh"}, + {"tag":"net-contains","net-id":133,"item-id":"tQKQDnj6DJEdkWjYWjXLL"}, + {"tag":"net-contains","net-id":133,"item-id":"2z31EYci2xN6V6mk36qyyw"}, + {"tag":"net-contains","net-id":133,"item-id":"33pj57B3buenj7mGwvUNug"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":133}, + {"tag":"net-contains","net-id":134,"item-id":"CpcQzrD8wxzmY7oua4uN8r"}, + {"tag":"net-contains","net-id":134,"item-id":"33pj57B3buenj7mGwvUNug"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":134}, + {"tag":"net-contains","net-id":135,"item-id":"bncwRTbFJVfyPf1GB9u7U"}, + {"tag":"net-contains","net-id":135,"item-id":"33pj57B3buenj7mGwvUNug"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":135}, + {"tag":"net-contains","net-id":136,"item-id":"CpcQzrD8wxzmY7oua4uN8r"}, + {"tag":"net-contains","net-id":136,"item-id":"EnpXBWZSzDAMp6XEP1h7FN"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":136}, + {"tag":"net-contains","net-id":137,"item-id":"GfTkMWsbEoko71aefPJW2A"}, + {"tag":"net-contains","net-id":137,"item-id":"EnpXBWZSzDAMp6XEP1h7FN"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":137}, + {"tag":"net-contains","net-id":138,"item-id":"33pj57B3buenj7mGwvUNug"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":138}, + {"tag":"net-contains","net-id":139,"item-id":"NpkWPyQ2HbGLHzHQqdhp6"}, + {"tag":"net-contains","net-id":139,"item-id":"DoHnvhBGn4TUATsc2iFhC"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":139}, + {"tag":"net-contains","net-id":140,"item-id":"AuP4wkTtUAQbUiGT3P4gV9"}, + {"tag":"net-contains","net-id":140,"item-id":"5YhZZLv58HXQszMsLjk6wF"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":140}, + {"tag":"net-contains","net-id":141,"item-id":"DoHnvhBGn4TUATsc2iFhC"}, + {"tag":"net-contains","net-id":141,"item-id":"AuP4wkTtUAQbUiGT3P4gV9"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":141}, + {"tag":"net-contains","net-id":142,"item-id":"5VovU7LRgXhitCgnxMbdGq"}, + {"tag":"net-contains","net-id":142,"item-id":"DeB929HVXFSDGDNMawL47B"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":142}, + {"tag":"net-contains","net-id":143,"item-id":"APMh6kb9sQ9aVXGtBEJ9H3"}, + {"tag":"net-contains","net-id":143,"item-id":"5VovU7LRgXhitCgnxMbdGq"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":143}, + {"tag":"net-contains","net-id":144,"item-id":"25jqKP7wGB1hHFnHajrz6j"}, + {"tag":"net-contains","net-id":144,"item-id":"APMh6kb9sQ9aVXGtBEJ9H3"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":144}, + {"tag":"net-contains","net-id":145,"item-id":"EtizFU9Y2EQ3VaxYAZpCXK"}, + {"tag":"net-contains","net-id":145,"item-id":"JHRHWGiTF5TTd8q8uEXuL"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":145}, + {"tag":"net-contains","net-id":146,"item-id":"Ar4Z2CXKpNY9HuNbnZQynZ"}, + {"tag":"net-contains","net-id":146,"item-id":"JHRHWGiTF5TTd8q8uEXuL"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":146}, + {"tag":"net-contains","net-id":147,"item-id":"7sui1JYj3muQyiuMajjhU1"}, + {"tag":"net-contains","net-id":147,"item-id":"5bChcShWpT8qS5WQdY5KjN"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":147}, + {"tag":"net-contains","net-id":148,"item-id":"5bChcShWpT8qS5WQdY5KjN"}, + {"tag":"net-contains","net-id":148,"item-id":"BS3ZjAuuHNvH3BXUyGamQo"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":148}, + {"tag":"net-contains","net-id":149,"item-id":"36gsRq1mvk2kJ7qfrkVgmm"}, + {"tag":"net-contains","net-id":149,"item-id":"7sui1JYj3muQyiuMajjhU1"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":149}, + {"tag":"net-contains","net-id":150,"item-id":"9WbgN49DYsmKvsHByMiMtW"}, + {"tag":"net-contains","net-id":150,"item-id":"9tfHWjUpAy1itVaqpVaBWa"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":150}, + {"tag":"net-contains","net-id":151,"item-id":"952fSiZTkDf71mNC9ucWV5"}, + {"tag":"net-contains","net-id":151,"item-id":"61QJQLupTAUJc9v92jucvz"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":151}, + {"tag":"net-contains","net-id":152,"item-id":"7YnYYc8i2AoVosKDj55732"}, + {"tag":"net-contains","net-id":152,"item-id":"952fSiZTkDf71mNC9ucWV5"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":152}, + {"tag":"net-contains","net-id":153,"item-id":"bKJLm756eu17KqKPvD7fL"}, + {"tag":"net-contains","net-id":153,"item-id":"7YnYYc8i2AoVosKDj55732"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":153}, + {"tag":"net-contains","net-id":154,"item-id":"6968mitPMQDxc4CpNfQYYS"}, + {"tag":"net-contains","net-id":154,"item-id":"8BETgZHa8gHnD3M3u6QoQf"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":154}, + {"tag":"net-contains","net-id":155,"item-id":"9N1LZVwwxNR9c7nfSB18vh"}, + {"tag":"net-contains","net-id":155,"item-id":"6968mitPMQDxc4CpNfQYYS"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":155}, + {"tag":"net-contains","net-id":156,"item-id":"57w51FV1Riwa4Z3dSC8ugz"}, + {"tag":"net-contains","net-id":156,"item-id":"9N1LZVwwxNR9c7nfSB18vh"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":156}, + {"tag":"net-contains","net-id":157,"item-id":"ACTgpyru4KvR1mppxcqyej"}, + {"tag":"net-contains","net-id":157,"item-id":"5o3HsqtVKhtZcR8CjD2ahn"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":157}, + {"tag":"net-contains","net-id":158,"item-id":"ACTgpyru4KvR1mppxcqyej"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":158}, + {"tag":"net-contains","net-id":159,"item-id":"2aXCXZ3EDZDoeMSuAoR56c"}, + {"tag":"net-contains","net-id":159,"item-id":"DT7p3Wkjc6nziPgfRfnnK5"}, + {"tag":"net-contains","net-id":159,"item-id":"ACTgpyru4KvR1mppxcqyej"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":159}, + {"tag":"net-contains","net-id":160,"item-id":"2aXCXZ3EDZDoeMSuAoR56c"}, + {"tag":"net-contains","net-id":160,"item-id":"A2feHRZ2SdgNdDgbCD5zzQ"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":160}, + {"tag":"net-contains","net-id":161,"item-id":"2aXCXZ3EDZDoeMSuAoR56c"}, + {"tag":"net-contains","net-id":161,"item-id":"7KLQwfxKeZrd3L7e18zRBr"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":161}, + {"tag":"net-contains","net-id":162,"item-id":"8Qf3z2y8iLKXEBiryNfvTg"}, + {"tag":"net-contains","net-id":162,"item-id":"2aXCXZ3EDZDoeMSuAoR56c"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":162}, + {"tag":"net-contains","net-id":163,"item-id":"CfPyd35i6FzhUffuUACTe1"}, + {"tag":"net-contains","net-id":163,"item-id":"DT7p3Wkjc6nziPgfRfnnK5"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":163}, + {"tag":"net-contains","net-id":164,"item-id":"2D2N5Chqy9unTybVH24e8U"}, + {"tag":"net-contains","net-id":164,"item-id":"25ReKJPGqpZDDKYdXEX5ks"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":164}, + {"tag":"net-contains","net-id":165,"item-id":"184eWHvSsF8qHiq9LQWUvf"}, + {"tag":"net-contains","net-id":165,"item-id":"2aXCXZ3EDZDoeMSuAoR56c"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":165}, + {"tag":"net-contains","net-id":166,"item-id":"FB7RxYLzFx8W11KBcYB9nv"}, + {"tag":"net-contains","net-id":166,"item-id":"BK7fxLYivXnhdnTzpuqESL"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":166}, + {"tag":"net-contains","net-id":167,"item-id":"DhZWB1YfDsJJdNLJSr7B7T"}, + {"tag":"net-contains","net-id":167,"item-id":"2aXCXZ3EDZDoeMSuAoR56c"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":167}, + {"tag":"net-contains","net-id":168,"item-id":"DT7p3Wkjc6nziPgfRfnnK5"}, + {"tag":"net-contains","net-id":168,"item-id":"25ReKJPGqpZDDKYdXEX5ks"}, + {"tag":"net-contains","net-id":168,"item-id":"BK7fxLYivXnhdnTzpuqESL"}, + {"tag":"net-contains","net-id":168,"item-id":"G6kFwwGM5NBg2TRz7jcsfG"}, + {"tag":"net-contains","net-id":168,"item-id":"FE1jig2pJwVBmdfjkBPxoi"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":168}, + {"tag":"net-contains","net-id":169,"item-id":"Bnma4VLaxTrrUPYmYTMVZM"}, + {"tag":"net-contains","net-id":169,"item-id":"A2feHRZ2SdgNdDgbCD5zzQ"}, + {"tag":"inst-contains","parent-id":"4m1RjvLofxg9CSb2wvbcqP","child-id":169}, + {"tag":"net-contains","net-id":170,"item-id":"24gJNm4uiWnUnVnivP1KP7"}, + {"tag":"net-contains","net-id":170,"item-id":"G6kFwwGM5NBg2TRz7jcsfG"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":170}, + {"tag":"net-contains","net-id":171,"item-id":"4DobcdUSUfn6ajQHVQGeEp"}, + {"tag":"net-contains","net-id":171,"item-id":"FE1jig2pJwVBmdfjkBPxoi"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":171}, + {"tag":"net-contains","net-id":172,"item-id":"BrvpWkJGuzCBf3r7kVNJo4"}, + {"tag":"net-contains","net-id":172,"item-id":"5o3HsqtVKhtZcR8CjD2ahn"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":172}, + {"tag":"net-contains","net-id":173,"item-id":"DfNNaXMJNnrQUeZPZtWnzf"}, + {"tag":"net-contains","net-id":173,"item-id":"CmNfRcfk5od2sZLS4AMFpP"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":173}, + {"tag":"net-contains","net-id":174,"item-id":"DsVRy52GsE9UAfjS5ACQQ5"}, + {"tag":"net-contains","net-id":174,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":174}, + {"tag":"net-contains","net-id":175,"item-id":"9WUHkS75DiJP5JBe8vS1nS"}, + {"tag":"net-contains","net-id":175,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":175}, + {"tag":"net-contains","net-id":176,"item-id":"CE4Pt5Zz9un4Nst6MEyHf1"}, + {"tag":"net-contains","net-id":176,"item-id":"87hJx8eDSzoKU5FJeab2o6"}, + {"tag":"inst-contains","parent-id":"47jZR3aQdgMwt1d5ioSUUG","child-id":176}, + {"tag":"net-contains","net-id":177,"item-id":"4LE2HuNEv5fLTMamdYDn37"}, + {"tag":"net-contains","net-id":177,"item-id":"AmmGoogduACgzAdEpd74ZP"}, + {"tag":"net-contains","net-id":177,"item-id":"AtaGrkHsjZ2Y7e5qaQknaf"}, + {"tag":"net-contains","net-id":177,"item-id":"EhQ9xRJUNNcPLV2trriLMz"}, + {"tag":"net-contains","net-id":177,"item-id":"6WXF4tdzibmU3QAAkGmZSM"}, + {"tag":"net-contains","net-id":177,"item-id":"DiRckmLVorNW2kP6EdX23b"}, + {"tag":"net-contains","net-id":177,"item-id":"CmNfRcfk5od2sZLS4AMFpP"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":177}, + {"tag":"net-contains","net-id":178,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"net-contains","net-id":178,"item-id":"AUG7o4u3QLU1ZJUvbgw9sa"}, + {"tag":"net-contains","net-id":178,"item-id":"7948RDWWTzK9dfRer7rhNt"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":178}, + {"tag":"net-contains","net-id":179,"item-id":"CSfP1ctjtt8LGDhDLycPZr"}, + {"tag":"net-contains","net-id":179,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":179}, + {"tag":"net-contains","net-id":180,"item-id":"CmNfRcfk5od2sZLS4AMFpP"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":180}, + {"tag":"net-contains","net-id":181,"item-id":"AvcBRmZyxwuWaYmnEyTZ6y"}, + {"tag":"net-contains","net-id":181,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"net-contains","net-id":181,"item-id":"5VRjwjs8Fx1tNWru8qo6XP"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":181}, + {"tag":"net-contains","net-id":182,"item-id":"AvcBRmZyxwuWaYmnEyTZ6y"}, + {"tag":"net-contains","net-id":182,"item-id":"G5J2R3zxj5KsSiLDkhSkhp"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":182}, + {"tag":"net-contains","net-id":183,"item-id":"B2J5ij72TkeWQWjFnf32n5"}, + {"tag":"net-contains","net-id":183,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":183}, + {"tag":"net-contains","net-id":184,"item-id":"AvcBRmZyxwuWaYmnEyTZ6y"}, + {"tag":"net-contains","net-id":184,"item-id":"GNZG7RwFN8NdHpkQz2qpmq"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":184}, + {"tag":"net-contains","net-id":185,"item-id":"3Ptgi3Z3YsNbNcuVSh2r8c"}, + {"tag":"net-contains","net-id":185,"item-id":"2854s8fxu3p7VCiKXryr8a"}, + {"tag":"net-contains","net-id":185,"item-id":"25Nap8otkzSMNH7215RqGH"}, + {"tag":"net-contains","net-id":185,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"net-contains","net-id":185,"item-id":"AqoA3xEAhq2iokeih6SHu4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":185}, + {"tag":"net-contains","net-id":186,"item-id":"5Ztemf7V4JLHy3qXgtTe2S"}, + {"tag":"net-contains","net-id":186,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":186}, + {"tag":"net-contains","net-id":187,"item-id":"2kcMjd8btRSdQG4pxm6dsV"}, + {"tag":"net-contains","net-id":187,"item-id":"25Nap8otkzSMNH7215RqGH"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":187}, + {"tag":"net-contains","net-id":188,"item-id":"AHDzLvPpduq3Fwt3jwFB87"}, + {"tag":"net-contains","net-id":188,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":188}, + {"tag":"net-contains","net-id":189,"item-id":"7S7XEtXCqG8w92LnGSuAoA"}, + {"tag":"net-contains","net-id":189,"item-id":"A78Yibo7QcpndY2scY495S"}, + {"tag":"net-contains","net-id":189,"item-id":"54wJaJXFy9CQvxEyYqRKhf"}, + {"tag":"net-contains","net-id":189,"item-id":"CUCbwuTS8giDyxhsPjNGT3"}, + {"tag":"net-contains","net-id":189,"item-id":"BBJ4xa8atnBuDwzYwD2Swa"}, + {"tag":"net-contains","net-id":189,"item-id":"D2qhSBtjAPGW7NpcY3egWR"}, + {"tag":"net-contains","net-id":189,"item-id":"2kcMjd8btRSdQG4pxm6dsV"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":189}, + {"tag":"net-contains","net-id":190,"item-id":"3fRFzPLWN4c8KNAtFn2r1E"}, + {"tag":"net-contains","net-id":190,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":190}, + {"tag":"net-contains","net-id":191,"item-id":"4vVDaQem42Z3vQpvrtjaHA"}, + {"tag":"net-contains","net-id":191,"item-id":"5VRjwjs8Fx1tNWru8qo6XP"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":191}, + {"tag":"net-contains","net-id":192,"item-id":"5arXjj7DjvuWP3G3Qy5NeG"}, + {"tag":"net-contains","net-id":192,"item-id":"CmNfRcfk5od2sZLS4AMFpP"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":192}, + {"tag":"net-contains","net-id":193,"item-id":"3Ptgi3Z3YsNbNcuVSh2r8c"}, + {"tag":"net-contains","net-id":193,"item-id":"CmNfRcfk5od2sZLS4AMFpP"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":193}, + {"tag":"net-contains","net-id":194,"item-id":"F4oKNpinJf1b3DmVGpNvNz"}, + {"tag":"net-contains","net-id":194,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":194}, + {"tag":"net-contains","net-id":195,"item-id":"DD3didSr1qqJrSWMBwcYZJ"}, + {"tag":"net-contains","net-id":195,"item-id":"G5J2R3zxj5KsSiLDkhSkhp"}, + {"tag":"inst-contains","parent-id":"4m1RjvLofxg9CSb2wvbcqP","child-id":195}, + {"tag":"net-contains","net-id":196,"item-id":"5VRjwjs8Fx1tNWru8qo6XP"}, + {"tag":"net-contains","net-id":196,"item-id":"5arXjj7DjvuWP3G3Qy5NeG"}, + {"tag":"net-contains","net-id":196,"item-id":"CPQb4sGNz6xHNCh1UaWTP3"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":196}, + {"tag":"net-contains","net-id":197,"item-id":"83jAUgzKQB84GWkC2X11D4"}, + {"tag":"net-contains","net-id":197,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":197}, + {"tag":"net-contains","net-id":198,"item-id":"4xqmHPcrykC5ipyaNXcVAL"}, + {"tag":"net-contains","net-id":198,"item-id":"5arXjj7DjvuWP3G3Qy5NeG"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":198}, + {"tag":"net-contains","net-id":199,"item-id":"17pdzod64CL5zaF2zXeKxt"}, + {"tag":"net-contains","net-id":199,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":199}, + {"tag":"net-contains","net-id":200,"item-id":"4JFZct6tKK9BthSHRS7QNT"}, + {"tag":"net-contains","net-id":200,"item-id":"DiRckmLVorNW2kP6EdX23b"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":200}, + {"tag":"net-contains","net-id":201,"item-id":180}, + {"tag":"net-contains","net-id":201,"item-id":"CE4Pt5Zz9un4Nst6MEyHf1"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":201}, + {"tag":"net-contains","net-id":202,"item-id":"FqZp6QumQQS6aKhmEmMxR3"}, + {"tag":"net-contains","net-id":202,"item-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":202}, + {"tag":"net-contains","net-id":203,"item-id":"6Gex9EhRrSp4XFMxu1fUXA"}, + {"tag":"net-contains","net-id":203,"item-id":"CmNfRcfk5od2sZLS4AMFpP"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":203}, + {"tag":"net-contains","net-id":204,"item-id":"DeKUJ4n4RMSFYakXhW9Re1"}, + {"tag":"net-contains","net-id":204,"item-id":"3YHAYemPtGHrVehEq3n9Ga"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":204}, + {"tag":"net-contains","net-id":205,"item-id":"8PunXKCsQUeKuCbr4KntQY"}, + {"tag":"net-contains","net-id":205,"item-id":"DeKUJ4n4RMSFYakXhW9Re1"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":205}, + {"tag":"net-contains","net-id":206,"item-id":"7UnVFrTtHCEAfuWy8Qyj35"}, + {"tag":"net-contains","net-id":206,"item-id":"8PunXKCsQUeKuCbr4KntQY"}, + {"tag":"inst-contains","parent-id":"47jZR3aQdgMwt1d5ioSUUG","child-id":206}, + {"tag":"net-contains","net-id":207,"item-id":"5qVRVEcfCGoyMLYtc3EHxm"}, + {"tag":"net-contains","net-id":207,"item-id":"7rrM7rHEb472PcXrniAkgc"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":207}, + {"tag":"net-contains","net-id":208,"item-id":"CLMSWV8xzuNonh8RQ8m4yz"}, + {"tag":"net-contains","net-id":208,"item-id":"3H3QT3ZYNPxxzRBJRGyWDP"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":208}, + {"tag":"net-contains","net-id":209,"item-id":"DKf7YPAuciGQR3Ax5PSEci"}, + {"tag":"net-contains","net-id":209,"item-id":"23Bt9uG4TNRPg8DWbPWrDo"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":209}, + {"tag":"net-contains","net-id":210,"item-id":"CSy24Pr1JfHAASVs2yHtzs"}, + {"tag":"net-contains","net-id":210,"item-id":"CdGXxxjmptensebnmim39E"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":210}, + {"tag":"net-contains","net-id":211,"item-id":"CrZi1jX1LBeU5XzWo2Nbrx"}, + {"tag":"net-contains","net-id":211,"item-id":"CSy24Pr1JfHAASVs2yHtzs"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":211}, + {"tag":"net-contains","net-id":212,"item-id":"CdGXxxjmptensebnmim39E"}, + {"tag":"net-contains","net-id":212,"item-id":"23Bt9uG4TNRPg8DWbPWrDo"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":212}, + {"tag":"net-contains","net-id":213,"item-id":"9aHF6CUi5tTYZVP3QP8wxR"}, + {"tag":"net-contains","net-id":213,"item-id":"WHcgmcj9euviCZT4bDLS3"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":213}, + {"tag":"net-contains","net-id":214,"item-id":"FpMPxqqWKai7uUQ7o95nrz"}, + {"tag":"net-contains","net-id":214,"item-id":"5QxVYXsHeR2X5iad8t9V78"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":214}, + {"tag":"net-contains","net-id":215,"item-id":"CCVrkKJvmHuyxpsDKd99Eu"}, + {"tag":"net-contains","net-id":215,"item-id":"f6R2Lr3WxXLncV5sKKaQa"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":215}, + {"tag":"net-contains","net-id":216,"item-id":"Gg69dMd8cg1MZ18V7MAiuu"}, + {"tag":"net-contains","net-id":216,"item-id":"8BxBKM5g59aSHaDuQ7Z8U6"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":216}, + {"tag":"net-contains","net-id":217,"item-id":"4iBBVVSD1Y3DAT6X9vi2x4"}, + {"tag":"net-contains","net-id":217,"item-id":"3rPRuPF5Jwm3GgNzmcnqSc"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":217}, + {"tag":"net-contains","net-id":218,"item-id":"A6HWL3Kcej6TvtkSE5P3B9"}, + {"tag":"net-contains","net-id":218,"item-id":"7heRTn7cBBoFc3wxwhYs97"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":218}, + {"tag":"net-contains","net-id":219,"item-id":"9Awpf4Q7fzGzjeSNKEzpSr"}, + {"tag":"net-contains","net-id":219,"item-id":"7sbxYsP487NYRFpB9CcMNq"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":219}, + {"tag":"net-contains","net-id":220,"item-id":"6f9FR7wLwDCEKc8usfbek2"}, + {"tag":"net-contains","net-id":220,"item-id":"7sbxYsP487NYRFpB9CcMNq"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":220}, + {"tag":"net-contains","net-id":221,"item-id":"9V2UzEWDFs5SmUMGzcJZjJ"}, + {"tag":"net-contains","net-id":221,"item-id":"7ufe2X3ZQP9Sdwn1S6wSpA"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":221}, + {"tag":"net-contains","net-id":222,"item-id":"D2NH6Z35uUyENstm5H4cmT"}, + {"tag":"net-contains","net-id":222,"item-id":"9V2UzEWDFs5SmUMGzcJZjJ"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":222}, + {"tag":"net-contains","net-id":223,"item-id":"3sNaTjnwsKFXUb3xYSF1bN"}, + {"tag":"net-contains","net-id":223,"item-id":"7ufe2X3ZQP9Sdwn1S6wSpA"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":223}, + {"tag":"net-contains","net-id":224,"item-id":"8G7oj6booNR1MCuDk6wmy7"}, + {"tag":"net-contains","net-id":224,"item-id":"4gqPhHX2zz26jVUoCdA6hZ"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":224}, + {"tag":"net-contains","net-id":225,"item-id":"7tPQshXYB72sigUwopnuTu"}, + {"tag":"net-contains","net-id":225,"item-id":"DhCSUe1sn4TJowyNosJHJZ"}, + {"tag":"net-contains","net-id":225,"item-id":"2SwCyMjvCnW5LR2bxCaoYj"}, + {"tag":"net-contains","net-id":225,"item-id":"4gqPhHX2zz26jVUoCdA6hZ"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":225}, + {"tag":"net-contains","net-id":226,"item-id":"8G7oj6booNR1MCuDk6wmy7"}, + {"tag":"net-contains","net-id":226,"item-id":"56RDse2xYH1tFwvGSrwszn"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":226}, + {"tag":"net-contains","net-id":227,"item-id":"BaQqiZhf7fzPcMVhPVFjV8"}, + {"tag":"net-contains","net-id":227,"item-id":"9uZMz6vqHJ1uNtj86m8pf7"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":227}, + {"tag":"net-contains","net-id":228,"item-id":"DNcS4v9wwLjfny7YPiREoV"}, + {"tag":"net-contains","net-id":228,"item-id":"9uZMz6vqHJ1uNtj86m8pf7"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":228}, + {"tag":"net-contains","net-id":229,"item-id":"BzykxomQv8fBJsHsULMLWw"}, + {"tag":"net-contains","net-id":229,"item-id":"DNcS4v9wwLjfny7YPiREoV"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":229}, + {"tag":"net-contains","net-id":230,"item-id":"7Wbnw9X9Azst4PPDBFaSSg"}, + {"tag":"net-contains","net-id":230,"item-id":"DFoMtTfdzrfSBEbYcYqKvA"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":230}, + {"tag":"net-contains","net-id":231,"item-id":"EbuCfXA4ZtgWgfsHsZYTax"}, + {"tag":"net-contains","net-id":231,"item-id":"jLMtwr8MfU9qAmA7mhVCM"}, + {"tag":"inst-contains","parent-id":"47jZR3aQdgMwt1d5ioSUUG","child-id":231}, + {"tag":"net-contains","net-id":232,"item-id":"3xsachBtugDAmny7YFjTUv"}, + {"tag":"net-contains","net-id":232,"item-id":"779WEUwehTnRozEHaHvWji"}, + {"tag":"inst-contains","parent-id":"4m1RjvLofxg9CSb2wvbcqP","child-id":232}, + {"tag":"net-contains","net-id":233,"item-id":"BojYHKhb4qvvKaZPrT2Tae"}, + {"tag":"net-contains","net-id":233,"item-id":"3oyh9oYcL3Q3mvdYeiTynK"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":233}, + {"tag":"net-contains","net-id":234,"item-id":"8DAscPKubVjNrxeLQeX3QW"}, + {"tag":"net-contains","net-id":234,"item-id":"2hvnmgsFJQhYgQrToJojcb"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":234}, + {"tag":"net-contains","net-id":235,"item-id":"8SbcWuyvCf9gzjJ565rEXW"}, + {"tag":"net-contains","net-id":235,"item-id":"779WEUwehTnRozEHaHvWji"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":235}, + {"tag":"net-contains","net-id":236,"item-id":"8SbcWuyvCf9gzjJ565rEXW"}, + {"tag":"net-contains","net-id":236,"item-id":"3oyh9oYcL3Q3mvdYeiTynK"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":236}, + {"tag":"net-contains","net-id":237,"item-id":"8SbcWuyvCf9gzjJ565rEXW"}, + {"tag":"net-contains","net-id":237,"item-id":"8DAscPKubVjNrxeLQeX3QW"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":237}, + {"tag":"net-contains","net-id":238,"item-id":"4mEjZNz911hE2veStLE9yo"}, + {"tag":"net-contains","net-id":238,"item-id":"EiVQtcS1yvdESnqKesnt5S"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":238}, + {"tag":"net-contains","net-id":239,"item-id":"1upDCgEx1so6cXARxUb1J"}, + {"tag":"net-contains","net-id":239,"item-id":"4mEjZNz911hE2veStLE9yo"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":239}, + {"tag":"net-contains","net-id":240,"item-id":"DYANuVfc2zF8qNaPKDaKh1"}, + {"tag":"net-contains","net-id":240,"item-id":"1upDCgEx1so6cXARxUb1J"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":240}, + {"tag":"net-contains","net-id":241,"item-id":"EeGbiqZhWsmKmT6kCNJz5t"}, + {"tag":"net-contains","net-id":241,"item-id":"Bo4r9MopfUiC9CSLGRdk3k"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":241}, + {"tag":"net-contains","net-id":242,"item-id":"9tkWdT1wHayfHVdPjNCwkp"}, + {"tag":"net-contains","net-id":242,"item-id":"5N3pj5n32K3r3VBLJQTDAw"}, + {"tag":"net-contains","net-id":242,"item-id":"9gGwkLDmZJAqjHfzNigUrz"}, + {"tag":"net-contains","net-id":242,"item-id":"Bo4r9MopfUiC9CSLGRdk3k"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":242}, + {"tag":"net-contains","net-id":243,"item-id":"EeGbiqZhWsmKmT6kCNJz5t"}, + {"tag":"net-contains","net-id":243,"item-id":"7zqHcbRU8gUZhDnqFh62hN"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":243}, + {"tag":"net-contains","net-id":244,"item-id":"5xeEYptBJYzUgfAQYzXRfT"}, + {"tag":"net-contains","net-id":244,"item-id":"D2os9Qqi4ERox74HZtGXNw"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":244}, + {"tag":"net-contains","net-id":245,"item-id":"VQ2bPyBxi9JFtTYKasZN2"}, + {"tag":"net-contains","net-id":245,"item-id":"yBtYiRsKFMvckFgHeFP6i"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":245}, + {"tag":"net-contains","net-id":246,"item-id":"AoY5i2BXKixk89thuA7Vpb"}, + {"tag":"net-contains","net-id":246,"item-id":"dTB1mTNUgi3v11gxkGrhi"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":246}, + {"tag":"net-contains","net-id":247,"item-id":"AoY5i2BXKixk89thuA7Vpb"}, + {"tag":"net-contains","net-id":247,"item-id":"yBtYiRsKFMvckFgHeFP6i"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":247}, + {"tag":"net-contains","net-id":248,"item-id":"AoY5i2BXKixk89thuA7Vpb"}, + {"tag":"net-contains","net-id":248,"item-id":"5xeEYptBJYzUgfAQYzXRfT"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":248}, + {"tag":"net-contains","net-id":249,"item-id":"BTiMGuN62ATHVWoCbhhmT7"}, + {"tag":"net-contains","net-id":249,"item-id":"dTB1mTNUgi3v11gxkGrhi"}, + {"tag":"inst-contains","parent-id":"4m1RjvLofxg9CSb2wvbcqP","child-id":249}, + {"tag":"net-contains","net-id":250,"item-id":"FR8FGWTAWx9RuwBjWeLNHz"}, + {"tag":"net-contains","net-id":250,"item-id":"4XVqWYW9xHqoQfM4hiDWKz"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":250}, + {"tag":"net-contains","net-id":251,"item-id":"A1d2dKdiqXwnqsVLNZjbub"}, + {"tag":"net-contains","net-id":251,"item-id":"FR8FGWTAWx9RuwBjWeLNHz"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":251}, + {"tag":"net-contains","net-id":252,"item-id":"42RThQxoTRzifkTzd8JQLz"}, + {"tag":"net-contains","net-id":252,"item-id":"A1d2dKdiqXwnqsVLNZjbub"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":252}, + {"tag":"net-contains","net-id":253,"item-id":"4337KB2qcyTLx3u6qfd9sc"}, + {"tag":"net-contains","net-id":253,"item-id":"EqFTGRsHFbuGdUQHHzC7a9"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":253}, + {"tag":"inst-contains","parent-id":"8VvLEdgpKAQe7YfsFDSzgh","child-id":"9WbgN49DYsmKvsHByMiMtW"}, + {"tag":"inst-contains","parent-id":"DmR6sNit5G9pTyKT3TBeQc","child-id":"CfPyd35i6FzhUffuUACTe1"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"DT7p3Wkjc6nziPgfRfnnK5"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":"APMh6kb9sQ9aVXGtBEJ9H3"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":"5VRjwjs8Fx1tNWru8qo6XP"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"DhCSUe1sn4TJowyNosJHJZ"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"EeGbiqZhWsmKmT6kCNJz5t"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":"7YnYYc8i2AoVosKDj55732"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"5bChcShWpT8qS5WQdY5KjN"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"D13Br9DpFFMUdnNgMu4oto"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"8y12SmjjnoBocPfECLrqTr"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"D2qhSBtjAPGW7NpcY3egWR"}, + {"tag":"inst-contains","parent-id":"9usVbKZ7QpQqddvQtPgJBc","child-id":"B2J5ij72TkeWQWjFnf32n5"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"23Bt9uG4TNRPg8DWbPWrDo"}, + {"tag":"inst-contains","parent-id":"7YP3vuY4RRXx4AhWfiNqKS","child-id":"44hHmQU7zL7GeTqVQzC3yf"}, + {"tag":"inst-contains","parent-id":"77nSKnDe7MeGYsyZMCwcxr","child-id":"2D2N5Chqy9unTybVH24e8U"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"D2os9Qqi4ERox74HZtGXNw"}, + {"tag":"inst-contains","parent-id":"7YP3vuY4RRXx4AhWfiNqKS","child-id":"3rPRuPF5Jwm3GgNzmcnqSc"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"7tPQshXYB72sigUwopnuTu"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"DFoMtTfdzrfSBEbYcYqKvA"}, + {"tag":"inst-contains","parent-id":"7R2Z1QpznMLufj2rsUw5q5","child-id":"87hJx8eDSzoKU5FJeab2o6"}, + {"tag":"inst-contains","parent-id":"9XasTANj64vB9ZvTFDT3zo","child-id":"VQ2bPyBxi9JFtTYKasZN2"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"4LE2HuNEv5fLTMamdYDn37"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"2z3K6HddgeHuNaVea1LyUU"}, + {"tag":"inst-contains","parent-id":"FhHXn7W3gZ51Woya9HJoph","child-id":"184eWHvSsF8qHiq9LQWUvf"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"4XVqWYW9xHqoQfM4hiDWKz"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"5hBUoy2D2wMsQvN16hEu1v"}, + {"tag":"inst-contains","parent-id":"4m1RjvLofxg9CSb2wvbcqP","child-id":"779WEUwehTnRozEHaHvWji"}, + {"tag":"inst-contains","parent-id":"8VvLEdgpKAQe7YfsFDSzgh","child-id":"5Ztemf7V4JLHy3qXgtTe2S"}, + {"tag":"inst-contains","parent-id":"6WpfMibZFsfK3UeazZfhA1","child-id":"BTiMGuN62ATHVWoCbhhmT7"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"4842wu49S1zjBAfW1Y4Hw4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"8G7oj6booNR1MCuDk6wmy7"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"D75uAYK1bKFK54hBvs9Gwb"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"42RThQxoTRzifkTzd8JQLz"}, + {"tag":"inst-contains","parent-id":"2TBC8iDFgxVtTGP3hGv5pw","child-id":"AHDzLvPpduq3Fwt3jwFB87"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"3Tybb4Zv4kzgPcsTGPn93K"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"FR8FGWTAWx9RuwBjWeLNHz"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"BBJ4xa8atnBuDwzYwD2Swa"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":"2aXCXZ3EDZDoeMSuAoR56c"}, + {"tag":"inst-contains","parent-id":"9usVbKZ7QpQqddvQtPgJBc","child-id":"FB7RxYLzFx8W11KBcYB9nv"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"277ymguyfunp3xeMzgqkoh"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"AqoA3xEAhq2iokeih6SHu4"}, + {"tag":"inst-contains","parent-id":"7YP3vuY4RRXx4AhWfiNqKS","child-id":"85HQgozBLahmuB2fFbGa6Q"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"33pj57B3buenj7mGwvUNug"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"8BETgZHa8gHnD3M3u6QoQf"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"3H3QT3ZYNPxxzRBJRGyWDP"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"FE1jig2pJwVBmdfjkBPxoi"}, + {"tag":"inst-contains","parent-id":"9XasTANj64vB9ZvTFDT3zo","child-id":"DhZWB1YfDsJJdNLJSr7B7T"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"A6HWL3Kcej6TvtkSE5P3B9"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"BS3ZjAuuHNvH3BXUyGamQo"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"EiVQtcS1yvdESnqKesnt5S"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"DeB929HVXFSDGDNMawL47B"}, + {"tag":"inst-contains","parent-id":"75dACL9SDaiVFRXgczJdD8","child-id":"3sNaTjnwsKFXUb3xYSF1bN"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":"DoHnvhBGn4TUATsc2iFhC"}, + {"tag":"inst-contains","parent-id":"3HfeEALJYFNctitkdZqmhv","child-id":"CPQb4sGNz6xHNCh1UaWTP3"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"2z31EYci2xN6V6mk36qyyw"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"57w51FV1Riwa4Z3dSC8ugz"}, + {"tag":"inst-contains","parent-id":"GaQT6sXk2tqEU4pJDUnwwA","child-id":"3fRFzPLWN4c8KNAtFn2r1E"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"AsguL4QmXoCP9AHMrtXcpR"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"CdGXxxjmptensebnmim39E"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"CUCbwuTS8giDyxhsPjNGT3"}, + {"tag":"inst-contains","parent-id":"656q9PiEkQzQr9tinkLxrZ","child-id":"4vVDaQem42Z3vQpvrtjaHA"}, + {"tag":"inst-contains","parent-id":"2TBC8iDFgxVtTGP3hGv5pw","child-id":"24gJNm4uiWnUnVnivP1KP7"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"Egj3xeqw8bDYFo8WBkiMHr"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"4mEjZNz911hE2veStLE9yo"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"bKJLm756eu17KqKPvD7fL"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":"AvcBRmZyxwuWaYmnEyTZ6y"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"GQ81dGuN4d9yKhXKWKMBuH"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"3YHAYemPtGHrVehEq3n9Ga"}, + {"tag":"inst-contains","parent-id":"7YP3vuY4RRXx4AhWfiNqKS","child-id":"7WPWy63fC1XmuxQ5W7mC3y"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"CmNfRcfk5od2sZLS4AMFpP"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"2854s8fxu3p7VCiKXryr8a"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"6WXF4tdzibmU3QAAkGmZSM"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"G6kFwwGM5NBg2TRz7jcsfG"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"CCVrkKJvmHuyxpsDKd99Eu"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"CmBH4GY3PqKffEnZ8xo5BA"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"BCFGY5efK71HXjRJLxPNVg"}, + {"tag":"inst-contains","parent-id":"8WBCGnBP9JAB789hNHWyB5","child-id":"BaQqiZhf7fzPcMVhPVFjV8"}, + {"tag":"inst-contains","parent-id":"75dACL9SDaiVFRXgczJdD8","child-id":"F4oKNpinJf1b3DmVGpNvNz"}, + {"tag":"inst-contains","parent-id":"GRxng3pSHKQ3xM4RUKMbtX","child-id":"3xsachBtugDAmny7YFjTUv"}, + {"tag":"inst-contains","parent-id":"2TtfCo3u1C369a3Dc36cPQ","child-id":"6f9FR7wLwDCEKc8usfbek2"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":"7sui1JYj3muQyiuMajjhU1"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":"CpcQzrD8wxzmY7oua4uN8r"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"9gGwkLDmZJAqjHfzNigUrz"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"5xeEYptBJYzUgfAQYzXRfT"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":"E16Czh5sDF5KCKNdcmXXWj"}, + {"tag":"inst-contains","parent-id":"3HfeEALJYFNctitkdZqmhv","child-id":"EnpXBWZSzDAMp6XEP1h7FN"}, + {"tag":"inst-contains","parent-id":"6UkTHKpQvqmDsqkXeN9e3R","child-id":"83jAUgzKQB84GWkC2X11D4"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"DiRckmLVorNW2kP6EdX23b"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"bncwRTbFJVfyPf1GB9u7U"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"DYANuVfc2zF8qNaPKDaKh1"}, + {"tag":"inst-contains","parent-id":"EVnbJQbBxw1eUEYRni6Wch","child-id":"4xqmHPcrykC5ipyaNXcVAL"}, + {"tag":"inst-contains","parent-id":"GaQT6sXk2tqEU4pJDUnwwA","child-id":"4DobcdUSUfn6ajQHVQGeEp"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"25Nap8otkzSMNH7215RqGH"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"54wJaJXFy9CQvxEyYqRKhf"}, + {"tag":"inst-contains","parent-id":"656q9PiEkQzQr9tinkLxrZ","child-id":"BrvpWkJGuzCBf3r7kVNJo4"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"6968mitPMQDxc4CpNfQYYS"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"5RCgeDJeUtDRD7STqBfnac"}, + {"tag":"inst-contains","parent-id":"7YP3vuY4RRXx4AhWfiNqKS","child-id":"3oyh9oYcL3Q3mvdYeiTynK"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"8BxBKM5g59aSHaDuQ7Z8U6"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"2hvnmgsFJQhYgQrToJojcb"}, + {"tag":"inst-contains","parent-id":"47jZR3aQdgMwt1d5ioSUUG","child-id":"8PunXKCsQUeKuCbr4KntQY"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"7rrM7rHEb472PcXrniAkgc"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"BK7fxLYivXnhdnTzpuqESL"}, + {"tag":"inst-contains","parent-id":"A3h29Z2RECjLiMZL85ZfCZ","child-id":"7UnVFrTtHCEAfuWy8Qyj35"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"FpMPxqqWKai7uUQ7o95nrz"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"3psZnnbnj2KLbd4tyvUaqX"}, + {"tag":"inst-contains","parent-id":"8m61X3RXkyLesExgz2wrGA","child-id":"7948RDWWTzK9dfRer7rhNt"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"5aCEMRq7f2bMZZQqumCVSu"}, + {"tag":"inst-contains","parent-id":"8WBCGnBP9JAB789hNHWyB5","child-id":"17pdzod64CL5zaF2zXeKxt"}, + {"tag":"inst-contains","parent-id":"D89ACc7xJQykdg4Dh1A3V7","child-id":"Bnma4VLaxTrrUPYmYTMVZM"}, + {"tag":"inst-contains","parent-id":"FshjgLMYkKo69oJh6uLstr","child-id":"5qVRVEcfCGoyMLYtc3EHxm"}, + {"tag":"inst-contains","parent-id":"B2rjcDuioM877xmyYkTmXo","child-id":"BzykxomQv8fBJsHsULMLWw"}, + {"tag":"inst-contains","parent-id":"2TtfCo3u1C369a3Dc36cPQ","child-id":"4JFZct6tKK9BthSHRS7QNT"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":"5arXjj7DjvuWP3G3Qy5NeG"}, + {"tag":"inst-contains","parent-id":"5DjR2uZVerwXVQtxsGGubf","child-id":"FqZp6QumQQS6aKhmEmMxR3"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"2SwCyMjvCnW5LR2bxCaoYj"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"8DAscPKubVjNrxeLQeX3QW"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":"A1d2dKdiqXwnqsVLNZjbub"}, + {"tag":"inst-contains","parent-id":"3HfeEALJYFNctitkdZqmhv","child-id":"5o3HsqtVKhtZcR8CjD2ahn"}, + {"tag":"inst-contains","parent-id":"6UkTHKpQvqmDsqkXeN9e3R","child-id":"7Wbnw9X9Azst4PPDBFaSSg"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"3Ptgi3Z3YsNbNcuVSh2r8c"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"25jqKP7wGB1hHFnHajrz6j"}, + {"tag":"inst-contains","parent-id":"EVnbJQbBxw1eUEYRni6Wch","child-id":"GfTkMWsbEoko71aefPJW2A"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"5VovU7LRgXhitCgnxMbdGq"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"A78Yibo7QcpndY2scY495S"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"952fSiZTkDf71mNC9ucWV5"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":"AoY5i2BXKixk89thuA7Vpb"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"GhZzRu1QS2cRUHcDxFeSLn"}, + {"tag":"inst-contains","parent-id":"7YP3vuY4RRXx4AhWfiNqKS","child-id":"yBtYiRsKFMvckFgHeFP6i"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"56RDse2xYH1tFwvGSrwszn"}, + {"tag":"inst-contains","parent-id":"47jZR3aQdgMwt1d5ioSUUG","child-id":"CE4Pt5Zz9un4Nst6MEyHf1"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"EhQ9xRJUNNcPLV2trriLMz"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"25ReKJPGqpZDDKYdXEX5ks"}, + {"tag":"inst-contains","parent-id":"A3h29Z2RECjLiMZL85ZfCZ","child-id":"jLMtwr8MfU9qAmA7mhVCM"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"9aHF6CUi5tTYZVP3QP8wxR"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"5YhZZLv58HXQszMsLjk6wF"}, + {"tag":"inst-contains","parent-id":"8m61X3RXkyLesExgz2wrGA","child-id":"AUG7o4u3QLU1ZJUvbgw9sa"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"FjUW9hEBbJycC2Gp72cP7j"}, + {"tag":"inst-contains","parent-id":"4m1RjvLofxg9CSb2wvbcqP","child-id":"A2feHRZ2SdgNdDgbCD5zzQ"}, + {"tag":"inst-contains","parent-id":"AnFmVeWs5C1x5ZuHHpf6vV","child-id":"6Gex9EhRrSp4XFMxu1fUXA"}, + {"tag":"inst-contains","parent-id":"FshjgLMYkKo69oJh6uLstr","child-id":"DfNNaXMJNnrQUeZPZtWnzf"}, + {"tag":"inst-contains","parent-id":"B2rjcDuioM877xmyYkTmXo","child-id":"D2NH6Z35uUyENstm5H4cmT"}, + {"tag":"inst-contains","parent-id":"EcLdz4H3yjpw2x6PqBebdD","child-id":"DsVRy52GsE9UAfjS5ACQQ5"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":"CSy24Pr1JfHAASVs2yHtzs"}, + {"tag":"inst-contains","parent-id":"5DjR2uZVerwXVQtxsGGubf","child-id":"4337KB2qcyTLx3u6qfd9sc"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":"1upDCgEx1so6cXARxUb1J"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"7sbxYsP487NYRFpB9CcMNq"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"Gg69dMd8cg1MZ18V7MAiuu"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"36gsRq1mvk2kJ7qfrkVgmm"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"7heRTn7cBBoFc3wxwhYs97"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"7S7XEtXCqG8w92LnGSuAoA"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"5QxVYXsHeR2X5iad8t9V78"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"DeKUJ4n4RMSFYakXhW9Re1"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":"8SbcWuyvCf9gzjJ565rEXW"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"Bo4r9MopfUiC9CSLGRdk3k"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"9tfHWjUpAy1itVaqpVaBWa"}, + {"tag":"inst-contains","parent-id":"7YP3vuY4RRXx4AhWfiNqKS","child-id":"7KLQwfxKeZrd3L7e18zRBr"}, + {"tag":"inst-contains","parent-id":"4TMLddbiXPVWvD7NSw5XXn","child-id":"9WUHkS75DiJP5JBe8vS1nS"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"9Awpf4Q7fzGzjeSNKEzpSr"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"7zqHcbRU8gUZhDnqFh62hN"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"AtaGrkHsjZ2Y7e5qaQknaf"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"DNcS4v9wwLjfny7YPiREoV"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"tQKQDnj6DJEdkWjYWjXLL"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"92nBH8B9kCbgEtrPKHqeHU"}, + {"tag":"inst-contains","parent-id":"F5rDN37d9RGPY6jnzVyguZ","child-id":"4iBBVVSD1Y3DAT6X9vi2x4"}, + {"tag":"inst-contains","parent-id":"8m61X3RXkyLesExgz2wrGA","child-id":"9uZMz6vqHJ1uNtj86m8pf7"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"G7uMRVZSTiYG2ELP29iTeF"}, + {"tag":"inst-contains","parent-id":"4m1RjvLofxg9CSb2wvbcqP","child-id":"G5J2R3zxj5KsSiLDkhSkhp"}, + {"tag":"inst-contains","parent-id":"AnFmVeWs5C1x5ZuHHpf6vV","child-id":"CLMSWV8xzuNonh8RQ8m4yz"}, + {"tag":"inst-contains","parent-id":"CUU84XFACmadAff3nCSfRp","child-id":"DD3didSr1qqJrSWMBwcYZJ"}, + {"tag":"inst-contains","parent-id":"DmR6sNit5G9pTyKT3TBeQc","child-id":"EtizFU9Y2EQ3VaxYAZpCXK"}, + {"tag":"inst-contains","parent-id":"EcLdz4H3yjpw2x6PqBebdD","child-id":"Ar4Z2CXKpNY9HuNbnZQynZ"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":"2kcMjd8btRSdQG4pxm6dsV"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":"ACTgpyru4KvR1mppxcqyej"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"5N3pj5n32K3r3VBLJQTDAw"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":"9N1LZVwwxNR9c7nfSB18vh"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"FKYWLC7ntPV1BBLcF57Bpv"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"NpkWPyQ2HbGLHzHQqdhp6"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"f6R2Lr3WxXLncV5sKKaQa"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"AuP4wkTtUAQbUiGT3P4gV9"}, + {"tag":"inst-contains","parent-id":"5nc5vqcQUq4T65QATrHbs6","child-id":"CrZi1jX1LBeU5XzWo2Nbrx"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"WHcgmcj9euviCZT4bDLS3"}, + {"tag":"inst-contains","parent-id":"77nSKnDe7MeGYsyZMCwcxr","child-id":"CSfP1ctjtt8LGDhDLycPZr"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"4gqPhHX2zz26jVUoCdA6hZ"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"JHRHWGiTF5TTd8q8uEXuL"}, + {"tag":"inst-contains","parent-id":"7YP3vuY4RRXx4AhWfiNqKS","child-id":"GNZG7RwFN8NdHpkQz2qpmq"}, + {"tag":"inst-contains","parent-id":"4TMLddbiXPVWvD7NSw5XXn","child-id":"DKf7YPAuciGQR3Ax5PSEci"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"9tkWdT1wHayfHVdPjNCwkp"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"EqFTGRsHFbuGdUQHHzC7a9"}, + {"tag":"inst-contains","parent-id":"7R2Z1QpznMLufj2rsUw5q5","child-id":"EbuCfXA4ZtgWgfsHsZYTax"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"AmmGoogduACgzAdEpd74ZP"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"9V2UzEWDFs5SmUMGzcJZjJ"}, + {"tag":"inst-contains","parent-id":"FhHXn7W3gZ51Woya9HJoph","child-id":"BojYHKhb4qvvKaZPrT2Tae"}, + {"tag":"inst-contains","parent-id":"FT4pxFBh14a61jaK6UdDfM","child-id":"3NX5ocwjVexDKP6HUefroh"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"61QJQLupTAUJc9v92jucvz"}, + {"tag":"inst-contains","parent-id":"F5rDN37d9RGPY6jnzVyguZ","child-id":"8Qf3z2y8iLKXEBiryNfvTg"}, + {"tag":"inst-contains","parent-id":"8m61X3RXkyLesExgz2wrGA","child-id":"7ufe2X3ZQP9Sdwn1S6wSpA"}, + {"tag":"inst-contains","parent-id":"FEr47X6dCYqq2xKBb1kRFq","child-id":"7fKuydWPboB5K2mB1vwvFy"}, + {"tag":"inst-contains","parent-id":"4m1RjvLofxg9CSb2wvbcqP","child-id":"dTB1mTNUgi3v11gxkGrhi"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":"47jZR3aQdgMwt1d5ioSUUG"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"8WBCGnBP9JAB789hNHWyB5"}, + {"tag":"inst-contains","parent-id":"4m1RjvLofxg9CSb2wvbcqP","child-id":"6WpfMibZFsfK3UeazZfhA1"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":"7chV5y7rZv1JE76RykH387"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"4TMLddbiXPVWvD7NSw5XXn"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"77nSKnDe7MeGYsyZMCwcxr"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"2TtfCo3u1C369a3Dc36cPQ"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"8m61X3RXkyLesExgz2wrGA"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"9usVbKZ7QpQqddvQtPgJBc"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"FshjgLMYkKo69oJh6uLstr"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"FT4pxFBh14a61jaK6UdDfM"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":"6YqcNXu6ArR48oqFoyuAAF"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"2TBC8iDFgxVtTGP3hGv5pw"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":"4m1RjvLofxg9CSb2wvbcqP"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":"FvcA53GAZiezkh8KVA1tyb"}, + {"tag":"inst-contains","parent-id":"4m1RjvLofxg9CSb2wvbcqP","child-id":"GRxng3pSHKQ3xM4RUKMbtX"}, + {"tag":"inst-contains","parent-id":"7chV5y7rZv1JE76RykH387","child-id":"AnFmVeWs5C1x5ZuHHpf6vV"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"B2rjcDuioM877xmyYkTmXo"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"GaQT6sXk2tqEU4pJDUnwwA"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":"F5rDN37d9RGPY6jnzVyguZ"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":"qibhMUFXdUcBYh52d2qfy"}, + {"tag":"inst-contains","parent-id":"4m1RjvLofxg9CSb2wvbcqP","child-id":"D89ACc7xJQykdg4Dh1A3V7"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":"3HfeEALJYFNctitkdZqmhv"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"6UkTHKpQvqmDsqkXeN9e3R"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"FEr47X6dCYqq2xKBb1kRFq"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":"FhHXn7W3gZ51Woya9HJoph"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":"656q9PiEkQzQr9tinkLxrZ"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":"7YP3vuY4RRXx4AhWfiNqKS"}, + {"tag":"inst-contains","parent-id":"47jZR3aQdgMwt1d5ioSUUG","child-id":"7R2Z1QpznMLufj2rsUw5q5"}, + {"tag":"inst-contains","parent-id":"6YqcNXu6ArR48oqFoyuAAF","child-id":"5nc5vqcQUq4T65QATrHbs6"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"5DjR2uZVerwXVQtxsGGubf"}, + {"tag":"inst-contains","parent-id":"qibhMUFXdUcBYh52d2qfy","child-id":"9XasTANj64vB9ZvTFDT3zo"}, + {"tag":"inst-contains","parent-id":"FvcA53GAZiezkh8KVA1tyb","child-id":"EVnbJQbBxw1eUEYRni6Wch"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"EcLdz4H3yjpw2x6PqBebdD"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":"PciZ3xURTHGr48a7y5NRz"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"DmR6sNit5G9pTyKT3TBeQc"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"8VvLEdgpKAQe7YfsFDSzgh"}, + {"tag":"inst-contains","parent-id":"4m1RjvLofxg9CSb2wvbcqP","child-id":"CUU84XFACmadAff3nCSfRp"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":"6gubidcNTxtTSuXPZQKXUm"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":"2i6B2MSQaRVS6gpF35Rqmx"}, + {"tag":"inst-contains","parent-id":"38HrsE5q9UtHPnuxhH4W3N","child-id":"9wrpABkM2A6wAcmzpQXaWM"}, + {"tag":"inst-contains","parent-id":"47jZR3aQdgMwt1d5ioSUUG","child-id":"A3h29Z2RECjLiMZL85ZfCZ"}, + {"tag":"inst-contains","parent-id":"9wrpABkM2A6wAcmzpQXaWM","child-id":"75dACL9SDaiVFRXgczJdD8"}, + {"tag":"pour","id":"RcmcWurCkaSUeHT5K2A9h","layer-ind":{"index":1,"side":"Top"},"shape":{"type":"polygon","points":[{"x":"Z9PFn2HhuRZ","y":"Z9PFn2HhuRZ"},{"x":"BjFBBzgJueP","y":"Z9PFn2HhuRZ"},{"x":"BjFBBzgJueP","y":"Z9ETrYNQEoy"},{"x":"Bjd9zhUa5BM","y":"Z9ETrYNQEoy"},{"x":"Bjd9zhUa5BM","y":"BjUN5DZGQZm"},{"x":"BjFBBzgJueP","y":"BjUN5DZGQZm"},{"x":"BjFBBzgJueP","y":"Bjd9zhUa5BM"},{"x":"Z9PFn2HhuRZ","y":"Bjd9zhUa5BM"}]},"isolate":"BfDKGC2ooKo","rank":1,"orphans":true}, + {"tag":"pour","id":"FSzDZiCa1YeWq9rjDqv9PS","layer-ind":{"index":0,"side":"Top"},"shape":{"type":"polygon","points":[{"x":"Z9PFn2HhuRZ","y":"Z9PFn2HhuRZ"},{"x":"BjFBBzgJueP","y":"Z9PFn2HhuRZ"},{"x":"BjFBBzgJueP","y":"Z9ETrYNQEoy"},{"x":"Bjd9zhUa5BM","y":"Z9ETrYNQEoy"},{"x":"Bjd9zhUa5BM","y":"BjUN5DZGQZm"},{"x":"BjFBBzgJueP","y":"BjUN5DZGQZm"},{"x":"BjFBBzgJueP","y":"Bjd9zhUa5BM"},{"x":"Z9PFn2HhuRZ","y":"Bjd9zhUa5BM"}]},"isolate":"BfDKGC2ooKo","rank":1,"orphans":true}, + {"tag":"layer-stmt","id":"EJ6ccARPYGCgmyDBRVDAKA","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"DCiRdYJr1p5TEryEzk9Msj","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"2eMDXhpkQ4AAVXEmUJLLba","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"5s4ZgYwBRVc8bSYGcbg5me","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"6eu9Wwxi8BKpt2aEnMLk9S","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"87NCUtWRnKsiDWe9RG6st3","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"72sb8EQEMtnanwXEvtzw63","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"circle","center":{"x":"11111111","y":"11111111"},"radius":"BhJeBqKDBnt"}}, + {"tag":"layer-stmt","id":"4WtrzemHE64WPkAepBdmWE","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"JESWJDeWmvpu8aUfCztU8","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"A3ZNzmYbU8iepdW2MdTA1a","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"7radm3PGzJgPtKrZUBXSoN","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"F9hoKpPgXwE22tYztPqhHN","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"FL7aC16w5eaMiJHxFKgt15","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"xwWW1u4GtpvgWnsBb1FHp","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"7V5K8Q2j5wDJQdmQ2v9YTZ","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"5P4Rqzn5qDcLBgBtt7eU1F","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"2tSX7nvuDWVCBxmDNaeU6R","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"2PTxwHpxsYW58QY8p5vNY1","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"4xrFDePf1mooBqPkWsfXuQ","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"AP2yigqmHWSBwSsuyqeKPP","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"4VcMGPxKJqWYwoWMVbA5KL","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"AkKfYie9VtSwCSJCRbAP9J","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"jRgcyY5jvrxsVHCFLAKsC","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"KWnJFizvmMudSXbWyget7","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"3ttVs9UEdSSR8yoDQhdsQa","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"CDEeKJRSco5XhQPvJGFCGG","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"B3HrKZZzJDCdvf8dmK6YQ1","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"Hx49r9cSDbBCnj6nzgw9R","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"2o1QE6MEuR8RDKbCaLRbh8","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"46y5VTm37hUMFTNW3UaZ3q","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"6XSbqzjSEy9U8mcDreZWng","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"9ovSf5mZyYesv6sPtvk5F2","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"5wp9egvXABV8ezwbXjaGix","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"A32AuNiXjRsV39ArjZ8WbF","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"capsule","width":"BgmuVx7Kdok","height":"BhtqnTRJgn7","pose":{"center":{"x":"11111111","y":"NQm6nKp8qFD"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"2HVYcyrUjjmvVdRfmwMie6","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"capsule","width":"Bgu5bYVUUwu","height":"BhvdorWqu4e","pose":{"center":{"x":"11111111","y":"NQm6nKp8qFD"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"C9gCuXZNuXA5ZXHqbn3grn","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"8Bf3r5m9KJok2rXKEsrAhR","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"4PW8hH2YhKzjtdEnFkqBr2","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"2LotteBPXi7XkhaHqDHhrE","layer-spec":{"tag":"silkscreen","name":"values","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"C","pose":{"center":{"x":"BhDNEYZdPRX","y":"11111111"},"angle":"BnA9Fn4SjZZ","flip-x?":false}}}, + {"tag":"layer-stmt","id":"66ZNWRviL4867sVJd1vnoe","layer-spec":{"tag":"soldermask","side":"Top"},"shape":{"type":"circle","center":{"x":"11111111","y":"11111111"},"radius":"BhnmwNez7km"}}, + {"tag":"layer-stmt","id":"FfQToWn4h9EWtmZkoiuN6i","layer-spec":{"tag":"courtyard","side":"Bottom"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"5eyNZUjCiNHrRaEMjW8AFn","layer-spec":{"tag":"soldermask","side":"Bottom"},"shape":{"type":"circle","center":{"x":"11111111","y":"11111111"},"radius":"BhnmwNez7km"}}, + {"tag":"layer-stmt","id":"3wFWKsSRzuZxxnWTv2NoUh","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"3YbE7JkffCfzFPKU4WdSyQ","layer-spec":{"tag":"cutout"},"shape":{"type":"circle","center":{"x":"11111111","y":"11111111"},"radius":"BhNAA2Uw437"}}, + {"tag":"layer-stmt","id":"E7wg9W1wHrrsBTNwZSt278","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"B7BTUuCpLJdyC2fk6Vn3dr","layer-spec":{"tag":"silkscreen","name":"values","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"C","pose":{"center":{"x":"BhDNEYZdPRX","y":"11111111"},"angle":"BnA9Fn4SjZZ","flip-x?":false}}}, + {"tag":"layer-stmt","id":"GHeSB12RYPiC8Cov5j1vDv","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"5v5QeNv8bzkZcw7bYLuQd6","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"Z8GdrEapMuZ","y":"Z8fpmZqyyno"},{"x":"BiWY4umgXhZ","y":"Z8fpmZqyyno"}]}}, + {"tag":"layer-stmt","id":"5eCwib5PZoLpXVp15cRuJT","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"Z8CDsLsKtVm","y":"BiuwjdUq943"},{"x":"Z7y41GkD2eB","y":"BiuwjdUq943"}]}}, + {"tag":"layer-stmt","id":"DvJfPKdR1fkVfFtBwZKGCn","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"BiCxDww5CUP","y":"BiuwjdUq943"},{"x":"BiS8624C4Ky","y":"BiuwjdUq943"}]}}, + {"tag":"layer-stmt","id":"CFB8hbBiXFMcbzyeSc3Yam","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"BiWY4umgXhZ","y":"Z8fpmZqyyno"},{"x":"BiWY4umgXhZ","y":"BiZ1cQey1rw"}]}}, + {"tag":"layer-stmt","id":"96Fbu4b6YoommHscUnXhqP","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"Z8GdrEapMuZ","y":"Z8fpmZqyyno"},{"x":"Z8GdrEapMuZ","y":"BiZ1cQey1rw"}]}}, + {"tag":"layer-stmt","id":"5eunoZSSEwftkb72VhsGgf","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"Z7vfJjxA5cj","y":"Z8fpmZqyyno"},{"x":"Z7vfJjxA5cj","y":"BiTgLswudz7"}]}}, + {"tag":"layer-stmt","id":"AaCVpQ7JvecbWpymvNjgvn","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"BiBdjdFBFMH","y":"Z8e4nUG83eo"},{"x":"BiBdjdFBFMH","y":"BiTgLswudz7"}]}}, + {"tag":"layer-stmt","id":"FXBTREGdaffpkrk7V67dF9","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"W","pose":{"center":{"x":"Z7LZq2P6R99","y":"Bj8fN3Qhbsu"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"F9L5ttNiueVNYWi6ZNiK8R","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BgRee3PF8EV","elements":[{"center":{"x":"Z7rkuE9z9bd","y":"BiuWEras9zw"},"radius":"BfpUx7i2Tn9","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"67BERCWYGcoCCashnxX2ih","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BeoQGt6JJrb","elements":[{"center":{"x":"BieSzqu4EF9","y":"BiuwjdUq943"},"radius":"BeCEaxR5eQF","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"8sarThWd1rXV2vVgizjHD2","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"text","string":">VALUE","size":"BhGtCjjMFfm","anchor":"W","pose":{"center":{"x":"Z7LZq2P6R99","y":"Bj29Y696J7R"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"3ntLF6z12sEEWo6JBYuG5L","layer-spec":{"tag":"cutout"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"Z8GNYyFEmhR","y":"BiZ8EtZvAs1"},{"x":"BiWMsQDJ8rb","y":"BiZ8EtZvAs1"}]}}, + {"tag":"layer-stmt","id":"25W9DXSM2axiVW22iyMXcf","layer-spec":{"tag":"cutout"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"Z8GPa815QmD","y":"BiZ6iASADGK"},{"x":"Z8GPa815QmD","y":"Z8g1UenHh8T"}]}}, + {"tag":"layer-stmt","id":"GREsG9JAuWLZ8VAYzCtxW3","layer-spec":{"tag":"cutout"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"BiWLrFTTVno","y":"BiZ4frvUw6X"},{"x":"BiWLrFTTVno","y":"Z8g3WxHxyJF"}]}}, + {"tag":"layer-stmt","id":"2NTd7PSKFZe7vVTc3kjgyw","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z7RVPJ1uRsD","y":"BhfPbyCmbd1"},{"x":"BhfPbyCmbmq","y":"BhfPbyCmbd1"},{"x":"BhfPbyCmbmq","y":"Z7RVPJ1uS23"},{"x":"Z7RVPJ1uRsD","y":"Z7RVPJ1uS23"},{"x":"Z7RVPJ1uRsD","y":"BhfPbyCmbd1"}]}}, + {"tag":"layer-stmt","id":"33mDgBXfeQytCgYGcxhzgW","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Bh736CTjEDd","y":"Z7kZv66o72F"},{"x":"Bh736CTjEDd","y":"Z82DaSoA7Jf"},{"x":"BhMom1NAGYf","y":"Z82DaSoA7Jf"},{"x":"BhMom1NAGYf","y":"Z7kZv66o72F"},{"x":"Bh736CTjEDd","y":"Z7kZv66o72F"}]}}, + {"tag":"layer-stmt","id":"Bg2myLHyLBaJNR6pgc77td","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BhfPbyCmbmq","y":"Z82DaSoA7Jf"},{"x":"BhfPbyCmbmq","y":"Z7kZv66o72F"},{"x":"BhVYVRw9aAs","y":"Z7kZv66o72F"},{"x":"BhVYVRw9aAs","y":"Z82DaSoA7Jf"},{"x":"BhfPbyCmbmq","y":"Z82DaSoA7Jf"}]}}, + {"tag":"layer-stmt","id":"FErQLnEb2sf6tR16vMDX2c","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BgL2HjWtYK9","y":"Z7kZv66o72F"},{"x":"BgL2HjWtYK9","y":"Z82DaSoA7Jf"},{"x":"BgqZdMKkcyD","y":"Z82DaSoA7Jf"},{"x":"BgqZdMKkcyD","y":"Z7kZv66o72F"},{"x":"BgL2HjWtYK9","y":"Z7kZv66o72F"}]}}, + {"tag":"layer-stmt","id":"4YNGdGKNtSsZSsFSGLShzN","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z7gcT837FjM","y":"Z7kZv66o72F"},{"x":"Z7gcT837FjM","y":"Z82DaSoA7Jf"},{"x":"Z7ZE7iatjVR","y":"Z82DaSoA7Jf"},{"x":"Z7ZE7iatjVR","y":"Z7kZv66o72F"},{"x":"Z7gcT837FjM","y":"Z7kZv66o72F"}]}}, + {"tag":"layer-stmt","id":"89SReUygBBqHdu13JwTj9U","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z7RVPJ1uRsD","y":"Z7kZv66o72F"},{"x":"Z7RVPJ1uRsD","y":"Z82DaSoA7Jf"},{"x":"Z7FeGkkHQGF","y":"Z82DaSoA7Jf"},{"x":"Z7FeGkkHQGF","y":"Z7kZv66o72F"},{"x":"Z7RVPJ1uRsD","y":"Z7kZv66o72F"}]}}, + {"tag":"layer-stmt","id":"2FYbwFr4oEcW1RgS89AFS7","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BhvWfoDyRZZ","y":"Z82DaSoA7Jf"},{"x":"BhvWfoDyRZZ","y":"Z7kZv66o72F"},{"x":"Bho8LPmkuQ3","y":"Z7kZv66o72F"},{"x":"Bho8LPmkuQ3","y":"Z82DaSoA7Jf"},{"x":"BhvWfoDyRZZ","y":"Z82DaSoA7Jf"}]}}, + {"tag":"layer-stmt","id":"6pMFneE5Yq14W7jazLk3XP","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z77uYLBJ6e3","y":"Z7kZv66o72F"},{"x":"Z77uYLBJ6e3","y":"Z82DaSoA7Jf"},{"x":"Z6s8sXGs4AB","y":"Z82DaSoA7Jf"},{"x":"Z6s8sXGs4AB","y":"Z7kZv66o72F"},{"x":"Z77uYLBJ6e3","y":"Z7kZv66o72F"}]}}, + {"tag":"layer-stmt","id":"65CSDCpHXTHJ5B5t7o3Tqg","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z6bfQg8tSum","y":"Z7kZv66o72F"},{"x":"Z6bfQg8tSum","y":"Z82DaSoA7Jf"},{"x":"Z66854L2Mx3","y":"Z82DaSoA7Jf"},{"x":"Z66854L2Mx3","y":"Z7kZv66o72F"},{"x":"Z6bfQg8tSum","y":"Z7kZv66o72F"}]}}, + {"tag":"layer-stmt","id":"6ECwM1ZVX24sb7WLCMfoUZ","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BfXbuC6xisZ","y":"Z82DaSoA7Jf"},{"x":"BfXbuC6xisZ","y":"Z7kZv66o72F"},{"x":"Z5HhgWv6Xu9","y":"Z7kZv66o72F"},{"x":"Z5HhgWv6Xu9","y":"Z82DaSoA7Jf"},{"x":"BfXbuC6xisZ","y":"Z82DaSoA7Jf"}]}}, + {"tag":"layer-stmt","id":"9UD3Zsht7FrpBbj2sjGBLc","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z7kZv66o72F","y":"Z7gcT837Fom"},{"x":"Z7kZv66o72F","y":"Z7ZE7iatjeF"},{"x":"Z82DaSoA7Jf","y":"Z7ZE7iatjeF"},{"x":"Z82DaSoA7Jf","y":"Z7gcT837Fom"},{"x":"Z7kZv66o72F","y":"Z7gcT837Fom"}]}}, + {"tag":"layer-stmt","id":"5n2BJ9AshnqRvbNkG3Vqfh","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BhzU8mHfGn3","y":"Z7ZE7iatjeF"},{"x":"BhzU8mHfGn3","y":"Z7gcT837Fom"},{"x":"BiG7o7z2H4T","y":"Z7gcT837Fom"},{"x":"BiG7o7z2H4T","y":"Z7ZE7iatjeF"},{"x":"BhzU8mHfGn3","y":"Z7ZE7iatjeF"}]}}, + {"tag":"layer-stmt","id":"GgBLDErTXbGVBWMh85XaPf","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z7kZv66o72F","y":"Z7RVPJ1uS23"},{"x":"Z7kZv66o72F","y":"Z7FeGkkHQR5"},{"x":"Z82DaSoA7Jf","y":"Z7FeGkkHQR5"},{"x":"Z82DaSoA7Jf","y":"Z7RVPJ1uS23"},{"x":"Z7kZv66o72F","y":"Z7RVPJ1uS23"}]}}, + {"tag":"layer-stmt","id":"4NFyN8GugA6xDu1B6KyHMC","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BhzU8mHfGn3","y":"Z7FeGkkHQR5"},{"x":"BhzU8mHfGn3","y":"Z7RVPJ1uS23"},{"x":"BiG7o7z2H4T","y":"Z7RVPJ1uS23"},{"x":"BiG7o7z2H4T","y":"Z7FeGkkHQR5"},{"x":"BhzU8mHfGn3","y":"Z7FeGkkHQR5"}]}}, + {"tag":"layer-stmt","id":"2dEe2UFAr8a2qg2BV7bRqm","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z7kZv66o72F","y":"Z77uYLBJ6ns"},{"x":"Z7kZv66o72F","y":"Z6s8sXGs4Tq"},{"x":"Z82DaSoA7Jf","y":"Z6s8sXGs4Tq"},{"x":"Z82DaSoA7Jf","y":"Z77uYLBJ6ns"},{"x":"Z7kZv66o72F","y":"Z77uYLBJ6ns"}]}}, + {"tag":"layer-stmt","id":"3bqiaKMfmDHth4bo4rk65T","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BhzU8mHfGn3","y":"Z6s8sXGs4Tq"},{"x":"BhzU8mHfGn3","y":"Z77uYLBJ6ns"},{"x":"BiG7o7z2H4T","y":"Z77uYLBJ6ns"},{"x":"BiG7o7z2H4T","y":"Z6s8sXGs4Tq"},{"x":"BhzU8mHfGn3","y":"Z6s8sXGs4Tq"}]}}, + {"tag":"layer-stmt","id":"BC1vuj3mbQz3dgtUb2juRP","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z7kZv66o72F","y":"Z6bfQg8tTDR"},{"x":"Z7kZv66o72F","y":"Z66854L2NZM"},{"x":"Z82DaSoA7Jf","y":"Z66854L2NZM"},{"x":"Z82DaSoA7Jf","y":"Z6bfQg8tTDR"},{"x":"Z7kZv66o72F","y":"Z6bfQg8tTDR"}]}}, + {"tag":"layer-stmt","id":"LHiiCt5QwGMSAjF5zcWTF","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BhzU8mHfGn3","y":"Z66854L2NZM"},{"x":"BhzU8mHfGn3","y":"Z6bfQg8tTDR"},{"x":"BiG7o7z2H4T","y":"Z6bfQg8tTDR"},{"x":"BiG7o7z2H4T","y":"Z66854L2NZM"},{"x":"BhzU8mHfGn3","y":"Z66854L2NZM"}]}}, + {"tag":"layer-stmt","id":"AW6Kikr9wp7UUoAvufk37X","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z82DaSoA7Jf","y":"BfXbuC6xhew"},{"x":"Z82DaSoA7Jf","y":"Z5HhgWv6Z7m"},{"x":"Z7kZv66o72F","y":"Z5HhgWv6Z7m"},{"x":"Z7kZv66o72F","y":"BfXbuC6xhew"},{"x":"Z82DaSoA7Jf","y":"BfXbuC6xhew"}]}}, + {"tag":"layer-stmt","id":"8gKUDthtatxMdpHxfdDpAn","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BiG7o7z2H4T","y":"Z5HhgWv6Z7m"},{"x":"BiG7o7z2H4T","y":"BfXbuC6xhew"},{"x":"BhzU8mHfGn3","y":"BfXbuC6xhew"},{"x":"BhzU8mHfGn3","y":"Z5HhgWv6Z7m"},{"x":"BiG7o7z2H4T","y":"Z5HhgWv6Z7m"}]}}, + {"tag":"layer-stmt","id":"DPkeT3BZxXiLJ3cqtT5RMM","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z82DaSoA7Jf","y":"BgqZdMKkcfZ"},{"x":"Z82DaSoA7Jf","y":"BgL2HjWtXhq"},{"x":"Z7kZv66o72F","y":"BgL2HjWtXhq"},{"x":"Z7kZv66o72F","y":"BgqZdMKkcfZ"},{"x":"Z82DaSoA7Jf","y":"BgqZdMKkcfZ"}]}}, + {"tag":"layer-stmt","id":"5yBU8W8RCrV4WEAGXUVvaW","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BiG7o7z2H4T","y":"BgL2HjWtXhq"},{"x":"BiG7o7z2H4T","y":"BgqZdMKkcfZ"},{"x":"BhzU8mHfGn3","y":"BgqZdMKkcfZ"},{"x":"BhzU8mHfGn3","y":"BgL2HjWtXhq"},{"x":"BiG7o7z2H4T","y":"BgL2HjWtXhq"}]}}, + {"tag":"layer-stmt","id":"8Y62gRDyQeHsj54hPd771p","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z82DaSoA7Jf","y":"BhMom1NAGPq"},{"x":"Z82DaSoA7Jf","y":"Bh736CTjDuy"},{"x":"Z7kZv66o72F","y":"Bh736CTjDuy"},{"x":"Z7kZv66o72F","y":"BhMom1NAGPq"},{"x":"Z82DaSoA7Jf","y":"BhMom1NAGPq"}]}}, + {"tag":"layer-stmt","id":"4WPB2DeodLLgETpLgjjSJj","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BiG7o7z2H4T","y":"Bh736CTjDuy"},{"x":"BiG7o7z2H4T","y":"BhMom1NAGPq"},{"x":"BhzU8mHfGn3","y":"BhMom1NAGPq"},{"x":"BhzU8mHfGn3","y":"Bh736CTjDuy"},{"x":"BiG7o7z2H4T","y":"Bh736CTjDuy"}]}}, + {"tag":"layer-stmt","id":"5kVVtzY2ntHVUYGUfUL9gf","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BiG7o7z2H4T","y":"BhVYVRw9a23"},{"x":"BiG7o7z2H4T","y":"BhfPbyCmbd1"},{"x":"BhzU8mHfGn3","y":"BhfPbyCmbd1"},{"x":"BhzU8mHfGn3","y":"BhVYVRw9a23"},{"x":"BiG7o7z2H4T","y":"BhVYVRw9a23"}]}}, + {"tag":"layer-stmt","id":"5XzeACm4M7egJFBQALum3i","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z82DaSoA7Jf","y":"BhfPbyCmbd1"},{"x":"Z82DaSoA7Jf","y":"BhVYVRw9a23"},{"x":"Z7kZv66o72F","y":"BhVYVRw9a23"},{"x":"Z7kZv66o72F","y":"BhfPbyCmbd1"},{"x":"Z82DaSoA7Jf","y":"BhfPbyCmbd1"}]}}, + {"tag":"layer-stmt","id":"5gguVonAfkf5qmNL4SbdZp","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BiG7o7z2H4T","y":"Bho8LPmkuFD"},{"x":"BiG7o7z2H4T","y":"BhvWfoDyRV9"},{"x":"BhzU8mHfGn3","y":"BhvWfoDyRV9"},{"x":"BhzU8mHfGn3","y":"Bho8LPmkuFD"},{"x":"BiG7o7z2H4T","y":"Bho8LPmkuFD"}]}}, + {"tag":"layer-stmt","id":"4uoX92Ws83jB67B1ExPPRQ","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z7kZv66o72F","y":"Bho8LPmkuFD"},{"x":"Z7kZv66o72F","y":"BhvWfoDyRV9"},{"x":"Z82DaSoA7Jf","y":"BhvWfoDyRV9"},{"x":"Z82DaSoA7Jf","y":"Bho8LPmkuFD"},{"x":"Z7kZv66o72F","y":"Bho8LPmkuFD"}]}}, + {"tag":"layer-stmt","id":"EX833YYsaT1Xdbgq9NE59G","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BhMom1NAGYf","y":"BhzU8mHfGn3"},{"x":"BhMom1NAGYf","y":"BiG7o7z2H4T"},{"x":"Bh736CTjEDd","y":"BiG7o7z2H4T"},{"x":"Bh736CTjEDd","y":"BhzU8mHfGn3"},{"x":"BhMom1NAGYf","y":"BhzU8mHfGn3"}]}}, + {"tag":"layer-stmt","id":"Ge3juV97HyWVGRGjvc17s","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BgL2HjWtYK9","y":"BiG7o7z2H4T"},{"x":"BgL2HjWtYK9","y":"BhzU8mHfGn3"},{"x":"BgqZdMKkcyD","y":"BhzU8mHfGn3"},{"x":"BgqZdMKkcyD","y":"BiG7o7z2H4T"},{"x":"BgL2HjWtYK9","y":"BiG7o7z2H4T"}]}}, + {"tag":"layer-stmt","id":"AcX7jGp4grvHUrEmDpSGhS","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z7gcT837FjM","y":"BiG7o7z2H4T"},{"x":"Z7gcT837FjM","y":"BhzU8mHfGn3"},{"x":"Z7ZE7iatjVR","y":"BhzU8mHfGn3"},{"x":"Z7ZE7iatjVR","y":"BiG7o7z2H4T"},{"x":"Z7gcT837FjM","y":"BiG7o7z2H4T"}]}}, + {"tag":"layer-stmt","id":"Tr2z2sW9n3ZTuYaEhDBuD","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z7RVPJ1uRsD","y":"BiG7o7z2H4T"},{"x":"Z7RVPJ1uRsD","y":"BhzU8mHfGn3"},{"x":"Z7FeGkkHQGF","y":"BhzU8mHfGn3"},{"x":"Z7FeGkkHQGF","y":"BiG7o7z2H4T"},{"x":"Z7RVPJ1uRsD","y":"BiG7o7z2H4T"}]}}, + {"tag":"layer-stmt","id":"CGj4JBYwC35pLR54FHdfWS","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BhfPbyCmbmq","y":"BhzU8mHfGn3"},{"x":"BhfPbyCmbmq","y":"BiG7o7z2H4T"},{"x":"BhVYVRw9aAs","y":"BiG7o7z2H4T"},{"x":"BhVYVRw9aAs","y":"BhzU8mHfGn3"},{"x":"BhfPbyCmbmq","y":"BhzU8mHfGn3"}]}}, + {"tag":"layer-stmt","id":"B6NnwPehUEEZnpDw2GpyWK","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z77uYLBJ6e3","y":"BiG7o7z2H4T"},{"x":"Z77uYLBJ6e3","y":"BhzU8mHfGn3"},{"x":"Z6s8sXGs4AB","y":"BhzU8mHfGn3"},{"x":"Z6s8sXGs4AB","y":"BiG7o7z2H4T"},{"x":"Z77uYLBJ6e3","y":"BiG7o7z2H4T"}]}}, + {"tag":"layer-stmt","id":"3M7QRwcDh28mdCDWgwdcSg","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z6bfQg8tSum","y":"BiG7o7z2H4T"},{"x":"Z6bfQg8tSum","y":"BhzU8mHfGn3"},{"x":"Z66854L2Mx3","y":"BhzU8mHfGn3"},{"x":"Z66854L2Mx3","y":"BiG7o7z2H4T"},{"x":"Z6bfQg8tSum","y":"BiG7o7z2H4T"}]}}, + {"tag":"layer-stmt","id":"DESvDBiGJx1cbs2pPrBA74","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"Z5HhgWv6Xu9","y":"BiG7o7z2H4T"},{"x":"Z5HhgWv6Xu9","y":"BhzU8mHfGn3"},{"x":"BfXbuC6xisZ","y":"BhzU8mHfGn3"},{"x":"BfXbuC6xisZ","y":"BiG7o7z2H4T"},{"x":"Z5HhgWv6Xu9","y":"BiG7o7z2H4T"}]}}, + {"tag":"layer-stmt","id":"AwvSUGzdRnAtU75B84NHg5","layer-spec":{"tag":"paste","side":"Top"},"shape":{"type":"polygon-with-arcs","elements":[{"x":"BhvWfoDyRZZ","y":"BhzU8mHfGn3"},{"x":"BhvWfoDyRZZ","y":"BiG7o7z2H4T"},{"x":"Bho8LPmkuQ3","y":"BiG7o7z2H4T"},{"x":"Bho8LPmkuQ3","y":"BhzU8mHfGn3"},{"x":"BhvWfoDyRZZ","y":"BhzU8mHfGn3"}]}}, + {"tag":"layer-stmt","id":"6XSTWeMTc1aremPnSUTe4Y","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"AsAkwEJ9d9PVApKR87y5BP","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"polyline","width":"BgBamGiMfFY","elements":[{"center":{"x":"Z89k54J5k4w","y":"Bi3YcBZR9xj"},"radius":"BfaR5M38zoC","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"ALTCQ4YvHHTigg8CUg6weN","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"BfaR5M38zoC","points":[{"x":"Z7wjWx4K5bV","y":"BiBdjdFBFMH"},{"x":"Z7wjWx4K5bV","y":"Bi15q3k1ebh"}]}}, + {"tag":"layer-stmt","id":"BEx65HsXsFLhxRugGVbjwV","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"BfaR5M38zoC","points":[{"x":"Z7mBcNZ9Uqu","y":"BiBdjdFBFMH"},{"x":"Z7wjWx4K5bV","y":"BiBdjdFBFMH"}]}}, + {"tag":"layer-stmt","id":"7nEPDYeXwHKt2pdLxxEURe","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"BfaR5M38zoC","points":[{"x":"BiBdjdFBFMH","y":"BiBdjdFBFMH"},{"x":"Bi15q3k1eg7","y":"BiBdjdFBFMH"}]}}, + {"tag":"layer-stmt","id":"9iPJo6RtqB6GRGWMJ7YzYo","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"BfaR5M38zoC","points":[{"x":"BiBdjdFBFMH","y":"Bi15q3k1ebh"},{"x":"BiBdjdFBFMH","y":"BiBdjdFBFMH"}]}}, + {"tag":"layer-stmt","id":"8MLS59Xf97kWdAtSC5FzG3","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"BfaR5M38zoC","points":[{"x":"Z7wjWx4K5bV","y":"Z7mBcNZ9UvK"},{"x":"Z7wjWx4K5bV","y":"Z7wjWx4K5bV"}]}}, + {"tag":"layer-stmt","id":"FSuJMZR3RzKM3VJ4svbxtG","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"BfaR5M38zoC","points":[{"x":"Z7wjWx4K5bV","y":"Z7wjWx4K5bV"},{"x":"Z7mBcNZ9Uqu","y":"Z7wjWx4K5bV"}]}}, + {"tag":"layer-stmt","id":"BhZxEJDorvs51oXC3HbCjy","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"BfaR5M38zoC","points":[{"x":"BiBdjdFBFMH","y":"Z7wjWx4K5bV"},{"x":"BiBdjdFBFMH","y":"Z7mBcNZ9UvK"}]}}, + {"tag":"layer-stmt","id":"EvsqSWRhrvpmwrP2Cdmbhc","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"BfaR5M38zoC","points":[{"x":"Bi15q3k1eg7","y":"Z7wjWx4K5bV"},{"x":"BiBdjdFBFMH","y":"Z7wjWx4K5bV"}]}}, + {"tag":"layer-stmt","id":"2L6dutqpwdMCqiBE7B8AQ4","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"W","pose":{"center":{"x":"Z7LZq2P6R99","y":"BibRP3k3jdq"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"EZVGcD7WtbDYXaQzzmo1SF","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BgBamGiMfFY","elements":[{"center":{"x":"Z7zozNL4xnB","y":"Bhvr3faua2s"},"radius":"BfaR5M38zoC","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"FzJ3GLRA7agd96a8SW41Tu","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BeoQGt6JJrb","elements":[{"center":{"x":"Z7wjWx4K5bV","y":"BiBekn11tR5"},"radius":"BeCEaxR5eQF","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"7Dv1oN8zk8nDibwpvgL6m2","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"text","string":">VALUE","size":"BhGtCjjMFfm","anchor":"W","pose":{"center":{"x":"Z7LZq2P6R99","y":"BiQ3LYZhZU3"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"DkceenWqsKyVa9Kx88cEVs","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"6ceKzLM31urMTbov25yef9","layer-spec":{"tag":"silkscreen","name":"values","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"C","pose":{"center":{"x":"BhDNEYZdPRX","y":"11111111"},"angle":"BnA9Fn4SjZZ","flip-x?":false}}}, + {"tag":"layer-stmt","id":"C15EFT85frJXtxv9V3cTeu","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"2PR5GGSxcH522X3bA2FEhf","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"polyline","width":"BfayiBDyTPx","elements":[{"x":"Z7gfWaJdAvj","y":"Z5GaQrYRcVm"},{"x":"Z7gfWaJdAvj","y":"Z7WsTVJX4kP"},{"x":"Z5uiKgsZt6s","y":"Z7WsTVJX4kP"}]}}, + {"tag":"layer-stmt","id":"67FydDnrkPoWrtt3CM6CRW","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"polyline","width":"BfayiBDyTPx","elements":[{"x":"Z7bAJKj94Wb","y":"Z7NpNM8SFVR"},{"x":"Z7bAJKj94Wb","y":"BhkmgAVPEWB"},{"x":"BhvZjFVVLkw","y":"BhkmgAVPEWB"},{"x":"BhvZjFVVLkw","y":"Z7NpNM8SFVR"},{"x":"Z7bAJKj94Wb","y":"Z7NpNM8SFVR"}]}}, + {"tag":"layer-stmt","id":"CMzKX7jKyTP4YPkawnLoC8","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"W","pose":{"center":{"x":"Z7LZq2P6R99","y":"BiLQEJ77Df5"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"ByMGfkfMir8nSxEVnBYSfd","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BgL2HjWtYEu","elements":[{"center":{"x":"Z7418pP8AU7","y":"Z6mA8CHjgkP"},"radius":"BfirboqfsnZ","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"oyNNGdfPueFeoPUoWQUHK","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BeoQGt6JJrb","elements":[{"center":{"x":"Z7L5GoDcWhd","y":"Z77mP88ayxs"},"radius":"BeCEaxR5eQF","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"DZRM8uYSFiaYY5Me1wajia","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"text","string":">VALUE","size":"BhGtCjjMFfm","anchor":"W","pose":{"center":{"x":"Z7LZq2P6R99","y":"Bi2pPLGVtRu"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"Aw5Mtsg74SzfueVQky8Hzi","layer-spec":{"tag":"silkscreen","name":"artwork","side":"Top"},"shape":{"type":"union","shapes":[{"type":"polygon","points":[{"x":"Birh9CQF3pt","y":"BiCT9TM19iC"},{"x":"Bix5quD1MqG","y":"BiTADgrvLPf"},{"x":"Bj4WNjNFFsk","y":"Bht6Ffs3Yvr"},{"x":"BivYD3tDZVg","y":"Bht68rYnJrL"}]},{"type":"polygon-with-arcs","elements":[{"x":"Bix5quD1MqG","y":"BiTADgrvLPf"},{"center":{"x":"Bj9qU1owQaE","y":"BidGuGesLhW"},"radius":"Bh17ckh9LQ9","start-angle":"BmaA12gZuXv","angle":"ZAQYSHHY53y"},{"center":{"x":"Bj4nMDXEtYb","y":"BidPqRVANa5"},"radius":"BgzCBbX16Zh","start-angle":"Bm8AmjYqM2Z","angle":"Bkc9qjHWbWh"},{"x":"BiuK5KKRPUa","y":"BibKko4NmHc"}]},{"type":"polygon","points":[{"x":"BiLhdXEuywi","y":"Bht6ANPx96E"},{"x":"BiVZy5PcLes","y":"Bht6B8KY4DB"},{"x":"BiZGbL63FQi","y":"BiYgdKLpzKA"},{"x":"BifP2TgFCoQ","y":"BiYh9cJDd6x"},{"x":"BigD2hobrXn","y":"BidSgKuk3ts"},{"x":"Bia7Q9Xrj1D","y":"BidSq32y5mj"},{"x":"Biav4mTmzxj","y":"Bii4P3ACvQD"},{"x":"BiWJpwWa9Cu","y":"Bii4MuGq3io"}]},{"type":"polygon-with-arcs","elements":[{"center":{"x":"BiLtPmh2d9V","y":"Bif62iAYjBu"},"radius":"BgGwEA2W7GU","start-angle":"BmACQRxLjue","angle":"Bkw2s5MHe1J"},{"center":{"x":"BiKDy9X9iex","y":"BifLonhQ58k"},"radius":"Bg1n8YToV5G","start-angle":"Bme1cVzQuMX","angle":"BmAAxTSU6ye"},{"center":{"x":"BiK2LWFU74A","y":"Big3DPQNFcy"},"radius":"BgCtCMDS8So","start-angle":"Bn75NmNkTkC","angle":"Bm54pqAyN7E"},{"center":{"x":"BiLXhdeHPxZ","y":"Big3Vsgvhwc"},"radius":"BfzrqLjZE2H","start-angle":"BnHQ9nQLQMR","angle":"BmAAxSuXgtf"},{"center":{"x":"BiLU4gLMQXq","y":"BifcAvYmvBM"},"radius":"Bg8m5q4AAUs","start-angle":"Bkoj8qzmohE","angle":"Bk7DyjXHvay"}]},{"type":"polygon-with-arcs","elements":[{"x":"Bi8yua9gGRd","y":"BiaioLNfTY6"},{"x":"BhykcD3RrNU","y":"Biaip6JFNf3"},{"center":{"x":"BhBgogeUxDu","y":"Bhw5kcGymkB"},"radius":"BhDu6y4x38i","start-angle":"BnLGQCDitCE","angle":"ZAkx6NHDqx7"},{"center":{"x":"BgwezUvqM1C","y":"Bi18GBGdPzy"},"radius":"Bhi1qz3NkNM","start-angle":"BnAiB11ASoi","angle":"BkyFeEjyNcr"}]},{"type":"polygon-with-arcs","elements":[{"center":{"x":"BiKH2QqxJu1","y":"BhwcytGEEvM"},"radius":"BfpnAsAgXYq","start-angle":"Bn8xnctg2KQ","angle":"ZAvGjmifX8q"},{"center":{"x":"BiJbxAea752","y":"BiYrFqCaw87"},"radius":"BftPRjbZa9R","start-angle":"BnMbLWgirhS","angle":"BmAAxSuXgtf"},{"center":{"x":"BiAJF7wz3mo","y":"BiYtjcTkPRp"},"radius":"BfrsiCzfQgu","start-angle":"Bm5uaWU4dXZ","angle":"ZAuisJbi3M9"},{"center":{"x":"BiAuBMQyCs8","y":"BhwgFbCDAR5"},"radius":"BfqLmqB9gQC","start-angle":"Bmkp8QZbcL1","angle":"BmAAxUGGoyJ"}]},{"type":"polygon-with-arcs","elements":[{"x":"Birh9CQF3pt","y":"BiCT9TM19iC"},{"x":"Bix5quD1MqG","y":"BiTADgrvLPf"},{"x":"BiuK5KKRPUa","y":"BibKko4NmHc"},{"x":"Biqv2KT7oZL","y":"Bik51hB3KVf"},{"x":"BihSKz8APt6","y":"Bik5TSavTZn"},{"x":"BioXRsUiw4N","y":"BiSTn3ZUP5g"},{"center":{"x":"BiXFJbeHNG2","y":"BiAFnE98nKe"},"radius":"BhBbT7caxFA","start-angle":"BnGXHpUePRL","angle":"ZADnRHZHdUT"},{"center":{"x":"BigRFg5fNLw","y":"Bi7VxHfzAgE"},"radius":"BgzAvooiKut","start-angle":"BnA8PPP8X1E","angle":"BkexM3qbXSq"}]}]}}, + {"tag":"layer-stmt","id":"6dQNeSfCWHGVZUFSX3Wj2n","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"9XHXUTvrfq7KPzBV2ESYKD","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"9Bvd9gt2E5D4Eujru4XB4s","layer-spec":{"tag":"silkscreen","name":"values","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"C","pose":{"center":{"x":"BhDNEYZdPRX","y":"11111111"},"angle":"BnA9Fn4SjZZ","flip-x?":false}}}, + {"tag":"layer-stmt","id":"6a35n7D5CvrL8dq5aWK4Da","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"62b9z7eewUWpSoBmWq6czm","layer-spec":{"tag":"silkscreen","name":"values","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"C","pose":{"center":{"x":"BhMHAUh15yZ","y":"11111111"},"angle":"BnA9Fn4SjZZ","flip-x?":false}}}, + {"tag":"layer-stmt","id":"4osKv3Qf6igaxR6DqkrZVH","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"7T51WBdLidjVZS2j7d6dys","layer-spec":{"tag":"silkscreen","name":"values","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"C","pose":{"center":{"x":"BhMHAUh15yZ","y":"11111111"},"angle":"BnA9Fn4SjZZ","flip-x?":false}}}, + {"tag":"layer-stmt","id":"EjDFb4Sa3zS4S26oabpEFw","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"4F6B8GXwzMh27TLVN3Pds5","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"polyline","width":"BgBamGiMfFY","elements":[{"center":{"x":"Z7qbbGGdxDV","y":"Z7sjW772dZh"},"radius":"BfaR5M38zoC","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"GJ2g91exFr8RFBCPaxx6zH","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"polyline","width":"BgBamGiMfFY","elements":[{"center":{"x":"Z7aouJcNGu5","y":"Z6kmgsfHchd"},"radius":"BfaR5M38zoC","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"EFNYLQ2PpymvKgycXCVjM6","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"polyline","width":"BfayiBDyTPx","elements":[{"x":"Z7oQ7Pnp34b","y":"Z7MKgWt9uZZ"},{"x":"Z7oQ7Pnp34b","y":"BhbDuC525UB"},{"x":"Bi3JL4ygCto","y":"BhbDuC525UB"},{"x":"Bi3JL4ygCto","y":"Z7MKgWt9uZZ"},{"x":"Z7oQ7Pnp34b","y":"Z7MKgWt9uZZ"}]}}, + {"tag":"layer-stmt","id":"CfWqvFvEP1y1CnMAmMqVtd","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"W","pose":{"center":{"x":"Z7LZq2P6R99","y":"BiZRNdGQWf9"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"CotCRSsw6x5nukw4fEt8w6","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BeoQGt6JJrb","elements":[{"center":{"x":"Z7n4bvM5Ssh","y":"Z7wk2XSEQ3y"},"radius":"BeCEaxR5eQF","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"4nQSKaCg6RLycoiy5ox8LX","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BgBamGiMfFY","elements":[{"center":{"x":"Z7aouJcNGu5","y":"Z84mxumg8by"},"radius":"BfaR5M38zoC","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"B4Cm2tMqYtDu1nMAcPg2jW","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"text","string":">VALUE","size":"BhGtCjjMFfm","anchor":"W","pose":{"center":{"x":"Z7LZq2P6R99","y":"BiL3KhcR7Wf"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"EFgrPp5VRbA3P64N79z8se","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"BUdnUmukE4DKx4vdTjg4if","layer-spec":{"tag":"silkscreen","name":"values","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"C","pose":{"center":{"x":"BhDNEYZdPRX","y":"11111111"},"angle":"BnA9Fn4SjZZ","flip-x?":false}}}, + {"tag":"layer-stmt","id":"8xcYrKk37WcPqk8vZspJF3","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"5MBwdSZh4Kmpk8bYqZ9vXv","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"BjSugUWd17M","y":"Z8uteLWsSm5"},{"x":"Z9D1ToKkqLT","y":"Z8uteLWsSm5"}]}}, + {"tag":"layer-stmt","id":"5wcsDLjhVNVexxhUfi1ayP","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"Z9FLr6ALCrs","y":"Z8ZHeCMyoq9"},{"x":"Z9FLr6ALCrs","y":"BifiRiKSG4F"}]}}, + {"tag":"layer-stmt","id":"GWq3A9LbySgVchXuQ9NXsP","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"Z8mD6YpZGuD","y":"Bj3y3FqCLNT"},{"x":"Z8c2jkGoYWK","y":"Bj3y3FqCLNT"}]}}, + {"tag":"layer-stmt","id":"GEjVChXc6wHYhdfYuepHGK","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"Z8PGL9XyPY3","y":"Bj3y3FqCLNT"},{"x":"Z8CnWB4AM83","y":"Bj3y3FqCLNT"}]}}, + {"tag":"layer-stmt","id":"9kEQbkAd1u9DwmhK6mw6Gw","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"Z7mFgyaW3BV","y":"Bj3y3FqCLNT"},{"x":"Z7FW7YhaHju","y":"Bj3y3FqCLNT"}]}}, + {"tag":"layer-stmt","id":"6JkNqKtpM6MweNzgohxSeP","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"BfB4isHTy1H","y":"Bj3y3FqCLNT"},{"x":"BhMwvDQsP51","y":"Bj3y3FqCLNT"}]}}, + {"tag":"layer-stmt","id":"CLzQHyw9WRoswSK5jodGby","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"Bi4XidtNxY7","y":"Bj3y3FqCLNT"},{"x":"BiNyXzm5cjH","y":"Bj3y3FqCLNT"}]}}, + {"tag":"layer-stmt","id":"4ynorL1bJ8MRb9JeFRhThP","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"BierTKHLw6F","y":"Bj3y3FqCLNT"},{"x":"Bip4rRLmwew","y":"Bj3y3FqCLNT"}]}}, + {"tag":"layer-stmt","id":"5rAHCvBwjs7P3uYeadMgci","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"Bj2qG25c6dD","y":"Bj3y3FqCLNT"},{"x":"Bj9Dic8yqNo","y":"Bj3y3FqCLNT"}]}}, + {"tag":"layer-stmt","id":"9qqrFp9rYATPq7JH2ep99p","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"Bg57TiZkPMq","points":[{"x":"BjFbfcpSFbV","y":"Bj3y3FqCLNT"},{"x":"BjHEmSoPNRm","y":"Bj3y3FqCLNT"}]}}, + {"tag":"layer-stmt","id":"25w2yu9Ax5qiZgN2Nc1Toq","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"polyline","width":"Bg57TiZkPMq","elements":[{"x":"BjVF4mMCNdm","y":"Z8aA8AmzTNF"},{"x":"BjVF4mMCNdm","y":"BgwYNgJszP1"},{"x":"BjKa9jdxjxB","y":"BiAKFJZHJJb"},{"x":"BjKa9jdxjxB","y":"BieqSAXWJ2T"}]}}, + {"tag":"layer-stmt","id":"7cGc2qfCx2veXyhkKRssLy","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"W","pose":{"center":{"x":"Z7LZq2P6R99","y":"BjHHiyzX2MM"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"FxCGnjtwZt9Jd9JG66ruGK","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BgYgaRigrix","elements":[{"center":{"x":"Z97sQvvvVMH","y":"Bikph4tYzAB"},"radius":"BfwWtW3UCGc","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"6KoWhM5fNUaqpxidGEUD1x","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BgyJMmtjvSb","elements":[{"center":{"x":"BjCyi8CUzVV","y":"BikPCHzb19H"},"radius":"BgN8frDXFzF","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"9iyzc9STQpt4GB7KigrHAF","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BeoQGt6JJrb","elements":[{"center":{"x":"BjYm2xWvEsZ","y":"BjAT7B3gb5R"},"radius":"BeCEaxR5eQF","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"GVKoX6LrifCte3kgnBe6Ls","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"text","string":">VALUE","size":"BhGtCjjMFfm","anchor":"W","pose":{"center":{"x":"Z7LZq2P6R99","y":"BjCtmF2sC3Z"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"Aru5pWQNzLYFpfUeUT9QsR","layer-spec":{"tag":"cutout"},"shape":{"type":"circle","center":{"x":"Z97sQvvvVMH","y":"Bikph4tYzAB"},"radius":"BgnkTCPaKht"}}, + {"tag":"layer-stmt","id":"9bFmpKg1FPai3oe43S3KbL","layer-spec":{"tag":"cutout"},"shape":{"type":"circle","center":{"x":"BjCyi8CUzVV","y":"BikPCHzb19H"},"radius":"Bh6LJAEBew4"}}, + {"tag":"layer-stmt","id":"EcuUnMhmE6KbxFmqbxBpuR","layer-spec":{"tag":"courtyard","side":"Top"},"shape":{"type":"error"}}, + {"tag":"layer-stmt","id":"2KdveVvhnVZABsjJAsUC5U","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"BfayiBDyTPx","points":[{"x":"BhvYCXMjPAF","y":"Z84MVHdYnes"},{"x":"BhvYCXMjPAF","y":"BiJFhxpQxV5"}]}}, + {"tag":"layer-stmt","id":"Ct4NXMFFT6z3yDSJMZfsM1","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"BfayiBDyTPx","points":[{"x":"Z8GHi1A1EZV","y":"BiJFhxpQxV5"},{"x":"BhvYCXMjPAF","y":"BiJFhxpQxV5"}]}}, + {"tag":"layer-stmt","id":"GnEsvigQhc7R7am9BLjLHh","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"line","width":"BfayiBDyTPx","points":[{"x":"Z8GHi1A1EZV","y":"Z84MVHdYnes"},{"x":"BhvYCXMjPAF","y":"Z84MVHdYnes"}]}}, + {"tag":"layer-stmt","id":"GewmqcK3EhzYh2pgBJy216","layer-spec":{"tag":"silkscreen","name":"F-SilkS","side":"Top"},"shape":{"type":"text","string":">REF","size":"BhGtCjjMFfm","anchor":"W","pose":{"center":{"x":"Z7LZq2P6R99","y":"BiejNDXfbCj"},"angle":"11111111","flip-x?":false}}}, + {"tag":"layer-stmt","id":"72Rufx483XcXRZAXmw7sPP","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BgnkTCPaKht","elements":[{"center":{"x":"BiRtKUrNRiX","y":"Z7jBrjmTv6T"},"radius":"BgBamGiMfFY","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"AL62Qcai2KLUty57uuKLVt","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"polyline","width":"BeoQGt6JJrb","elements":[{"center":{"x":"Bibwvct1nQf","y":"Z82zxfRyZQB"},"radius":"BeCEaxR5eQF","start-angle":"11111111","angle":"ZC8c7d56r3Z"}]}}, + {"tag":"layer-stmt","id":"7ehHRC9FNwrNFgndPLyV6q","layer-spec":{"tag":"finish","side":"Top"},"shape":{"type":"text","string":">VALUE","size":"BhGtCjjMFfm","anchor":"W","pose":{"center":{"x":"Z7LZq2P6R99","y":"BiVwSjcMvb9"},"angle":"11111111","flip-x?":false}}}, + {"tag":"package-pad","id":"87LDCrTQi3NQLEaX6fB1Jr","ref":{"ref":{"name":"p"},"index":2},"pose":{"center":{"x":"11111111","y":"Z6NonoMtAVp"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"6QnEn6Vmc31tEG8Cb9s7X8","ref":{"ref":{"name":"p"},"index":1},"pose":{"center":{"x":"11111111","y":"Bgci1UYkLFc"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"rp1xna1JgPguTNc7Mdp9f","ref":{"name":"tp"},"pose":{"center":{"x":"11111111","y":"11111111"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"EL9mw84DiUiE4hdKRbywVE","ref":{"ref":{"name":"p"},"index":2},"pose":{"center":{"x":"11111111","y":"Z6LAp9z6GKA"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"3bd6evhN5qGHwvQVBHrAnX","ref":{"ref":{"name":"p"},"index":1},"pose":{"center":{"x":"11111111","y":"Bga52qAxS4x"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"5W8eqEnKRPd2ce9WiDgNPA","ref":{"ref":{"name":"p"},"index":15},"pose":{"center":{"x":"BibNXRdJM2F","y":"BikGpbmbWNT"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"8aujbv7W9yEY8mhAzSwzfd","ref":{"ref":{"name":"p"},"index":14},"pose":{"center":{"x":"Z8MUJkSSBEF","y":"BikGpbmbWNT"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"5Vpd4bfrjQyZcR5rf4Tdvo","ref":{"ref":{"name":"p"},"index":16},"pose":{"center":{"x":"BiMk9RrNs5y","y":"BigKsD5pyef"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"G5GBKCnNwTc4VSC1pYRFfo","ref":{"ref":{"name":"p"},"index":13},"pose":{"center":{"x":"Z87qvkfWhFm","y":"BigKsD5pyef"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"6HqJGqWeLSbGKjwKn5oqsG","ref":{"name":"A12"},"pose":{"center":{"x":"Z7sLZD6fFHh","y":"BipEHZqHMfM"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"6iRgMynebkDG3ZSrGwSSgh","ref":{"name":"A7"},"pose":{"center":{"x":"Z7iYdjBMag7","y":"BipEHZqHMfM"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"7WVZ2C81Z19cpkvz1qT9dW","ref":{"name":"A6"},"pose":{"center":{"x":"Z7VMkWJQ5kj","y":"BipEHZqHMfM"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"8jeM3LD3mn3XBjfsNNRZVb","ref":{"name":"A5"},"pose":{"center":{"x":"Z7BmuYTnkXZ","y":"BipEHZqHMfM"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"A4S2RQcfpGtMEtt1KucACD","ref":{"name":"B12"},"pose":{"center":{"x":"BgyJMmtjvSb","y":"BipEHZqHMfM"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"F39LZR6kUCrhny6FtLLPe9","ref":{"name":"B11"},"pose":{"center":{"x":"Bg4YptNuvm5","y":"BipEHZqHMfM"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"3pYu7PXk2k4vcPuZjirUzQ","ref":{"name":"B10"},"pose":{"center":{"x":"Z5pecDC3m1H","y":"BipEHZqHMfM"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"D79WrXHW5QmSVpMbk7HRQe","ref":{"name":"B9"},"pose":{"center":{"x":"Z6jQ96hskgo","y":"BipEHZqHMfM"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"AXfPWhuyd9CPd1kPNwJaPY","ref":{"name":"A4"},"pose":{"center":{"x":"BhRg8DeevHM","y":"BipEHZqHMfM"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"2u8b7Lp7pJWrhDuUEFnq5y","ref":{"name":"A3"},"pose":{"center":{"x":"BhjFyBVGFWX","y":"BipEHZqHMfM"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"4itZv6tedRvhZ2uRQSK7gH","ref":{"name":"A2"},"pose":{"center":{"x":"BhxSrQNDkRu","y":"BipEHZqHMfM"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"EEXAyqPuykQbWPZbFtE1HZ","ref":{"name":"A1"},"pose":{"center":{"x":"Bi7EmtHXR3V","y":"BipEHZqHMfM"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"BccBtdMixJFk7gBvF7VwFq","ref":{"ref":{"name":"p"},"index":32},"pose":{"center":{"x":"11111111","y":"Bi8Hxwdqmt3"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"4UENBX5zKxuEhW4wDjGPRB","ref":{"ref":{"name":"p"},"index":33},"pose":{"center":{"x":"Z6RpJ8sGRTd","y":"Bi8Hxwdqmt3"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"ARfh82Zei6N8jMB346B71w","ref":{"ref":{"name":"p"},"index":34},"pose":{"center":{"x":"Z72yz4YV5uy","y":"Bi8Hxwdqmt3"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"2TEAWxppSXtCjwekzwNGFh","ref":{"ref":{"name":"p"},"index":35},"pose":{"center":{"x":"Z7LZq2P6R99","y":"Bi8Hxwdqmt3"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"FSn9uPfzN5pjfSeKpa4mbX","ref":{"ref":{"name":"p"},"index":36},"pose":{"center":{"x":"Z7e9fzDhkNK","y":"Bi8Hxwdqmt3"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"5rqZmSk4k1eYRd7CKFahQy","ref":{"ref":{"name":"p"},"index":31},"pose":{"center":{"x":"BgfiWp48bDR","y":"Bi8Hxwdqmt3"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"473Z1Rts63cF79SMBBqThj","ref":{"ref":{"name":"p"},"index":30},"pose":{"center":{"x":"BhGtCjjMFfm","y":"Bi8Hxwdqmt3"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"2evkmfn8SpL91QBbefyNjz","ref":{"ref":{"name":"p"},"index":29},"pose":{"center":{"x":"BhaU3hZxatw","y":"Bi8Hxwdqmt3"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"9K35oSDzDk8viDDn1pTEFg","ref":{"ref":{"name":"p"},"index":28},"pose":{"center":{"x":"Bht3tfQZv87","y":"Bi8Hxwdqmt3"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"6sGBrER1ovb6kQsosW2Yjz","ref":{"ref":{"name":"p"},"index":14},"pose":{"center":{"x":"11111111","y":"Z7tNj7h8y8s"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"56N2PXpipE8m7q5KhXMcr2","ref":{"ref":{"name":"p"},"index":13},"pose":{"center":{"x":"Z6RpJ8sGRTd","y":"Z7tNj7h8y8s"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"7y7YXsFNyyr5heai3dV9Mp","ref":{"ref":{"name":"p"},"index":12},"pose":{"center":{"x":"Z72yz4YV5uy","y":"Z7tNj7h8y8s"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"3qUmwHx5xpM2u9qXCbEtE3","ref":{"ref":{"name":"p"},"index":11},"pose":{"center":{"x":"Z7LZq2P6R99","y":"Z7tNj7h8y8s"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"AKvtN6xQKoomL5AparfbAo","ref":{"ref":{"name":"p"},"index":10},"pose":{"center":{"x":"Z7e9fzDhkNK","y":"Z7tNj7h8y8s"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"FD3cigPghTcptiwBkzg56r","ref":{"ref":{"name":"p"},"index":15},"pose":{"center":{"x":"BgfiWp48bDR","y":"Z7tNj7h8y8s"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"FNfFCCiQKbgWjyRrCJgEVE","ref":{"ref":{"name":"p"},"index":16},"pose":{"center":{"x":"BhGtCjjMFfm","y":"Z7tNj7h8y8s"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"4kSFcWXY1kxc3Hpg4MsRFG","ref":{"ref":{"name":"p"},"index":17},"pose":{"center":{"x":"BhaU3hZxatw","y":"Z7tNj7h8y8s"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"C6nfBM5AVtLShdneZKc72Z","ref":{"ref":{"name":"p"},"index":18},"pose":{"center":{"x":"Bht3tfQZv87","y":"Z7tNj7h8y8s"},"angle":"BmmLeNakMM1","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"BGci5hqhQLcn4XaaP23NzX","ref":{"ref":{"name":"p"},"index":23},"pose":{"center":{"x":"Bi8HxwdqmxT","y":"NQm6nKp8qFD"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"B3RrovgnUSjnUYcKERZEb","ref":{"ref":{"name":"p"},"index":24},"pose":{"center":{"x":"Bi8HxwdqmxT","y":"BgfiWp48bDR"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"A5YxZCsePKsCahVaRnSrjn","ref":{"ref":{"name":"p"},"index":25},"pose":{"center":{"x":"Bi8HxwdqmxT","y":"BhGtCjjMFfm"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"5UVtn8WhcCUrF1imUB9B5c","ref":{"ref":{"name":"p"},"index":26},"pose":{"center":{"x":"Bi8HxwdqmxT","y":"BhaU3hZxatw"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"ENTmJcBrjt9DmfR37FdEQW","ref":{"ref":{"name":"p"},"index":27},"pose":{"center":{"x":"Bi8HxwdqmxT","y":"Bht3tfQZv87"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"A7sE9dEGR88JQTWAxUfmMW","ref":{"ref":{"name":"p"},"index":22},"pose":{"center":{"x":"Bi8HxwdqmxT","y":"Z6RpJ8sGRTd"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"25CmWk3GaXyudFGgVeg9zT","ref":{"ref":{"name":"p"},"index":21},"pose":{"center":{"x":"Bi8HxwdqmxT","y":"Z72yz4YV5uy"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"tRVAnbEkQMJR9toFYxH2Y","ref":{"ref":{"name":"p"},"index":20},"pose":{"center":{"x":"Bi8HxwdqmxT","y":"Z7LZq2P6R99"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"iSPdYYoLMUFrfECtVbbw6","ref":{"ref":{"name":"p"},"index":19},"pose":{"center":{"x":"Bi8HxwdqmxT","y":"Z7e9fzDhkNK"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"EMsjqHXMWzCrP9A1bJCHys","ref":{"ref":{"name":"p"},"index":9},"pose":{"center":{"x":"Z7tPkGSyc8F","y":"Z7e9fzDhkNK"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"x8VjT1A6XpgprfTD7WEwE","ref":{"ref":{"name":"p"},"index":8},"pose":{"center":{"x":"Z7tPkGSyc8F","y":"Z7LZq2P6R99"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"AccF3YNg5414BqdWPcT43T","ref":{"ref":{"name":"p"},"index":7},"pose":{"center":{"x":"Z7tPkGSyc8F","y":"Z72yz4YV5uy"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"FcFQYGZbd2ypQhhBvLTcfy","ref":{"ref":{"name":"p"},"index":6},"pose":{"center":{"x":"Z7tPkGSyc8F","y":"Z6RpJ8sGRTd"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"8RtrLyWJnsRetdte9rJ4TH","ref":{"ref":{"name":"p"},"index":1},"pose":{"center":{"x":"Z7tPkGSyc8F","y":"Bht3tfQZv87"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"6eQ3kQHJgUbiwMUFBxZiq2","ref":{"ref":{"name":"p"},"index":2},"pose":{"center":{"x":"Z7tPkGSyc8F","y":"BhaU3hZxatw"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"33vGxvTePDAn6c6SYp1Kbx","ref":{"ref":{"name":"p"},"index":3},"pose":{"center":{"x":"Z7tPkGSyc8F","y":"BhGtCjjMFfm"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"6DsRgbfz5gefkV5Cs6W3G5","ref":{"ref":{"name":"p"},"index":4},"pose":{"center":{"x":"Z7tPkGSyc8F","y":"BgfiWp48bDR"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"4KFt6TJWBiwftqzpt1Xr12","ref":{"ref":{"name":"p"},"index":5},"pose":{"center":{"x":"Z7tPkGSyc8F","y":"NQm6nKp8qFD"},"angle":"BmAAxSuXgtf","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"9yxFqg3qXfG2xKXLeyjxft","ref":{"ref":{"name":"p"},"index":37},"pose":{"center":{"x":"11111111","y":"NQm6nKp8qFD"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"2LxwweqFNEEjCqsWtbXLw8","ref":{"ref":{"name":"p"},"index":2},"pose":{"center":{"x":"11111111","y":"Z6JwRb5PWdN"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"88yyoxSEmf4aUjJUGQRHbX","ref":{"ref":{"name":"p"},"index":1},"pose":{"center":{"x":"11111111","y":"BgYqeGGFgPA"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"DyMnAWs9qaaBrRyLsdDUGk","ref":{"ref":{"name":"p"},"index":4},"pose":{"center":{"x":"Z71zscDXH2w","y":"BhEMLztbBpK"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"BWEKdqfsPpBrvPBWpn8ZA2","ref":{"ref":{"name":"p"},"index":3},"pose":{"center":{"x":"BhQQhMEGtWT","y":"BhEMLztbBpK"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"5e5Ld1bqfWH42N6BrfmcUy","ref":{"ref":{"name":"p"},"index":2},"pose":{"center":{"x":"BhQQhMEGtWT","y":"Z6iR2eNux7R"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"8QhojHF2fzroox347dx9Kw","ref":{"ref":{"name":"p"},"index":1},"pose":{"center":{"x":"Z71zscDXH2w","y":"Z6iR2eNux7R"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"2LxwweqFNEEjCqsWtbXLw8","ref":{"ref":{"name":"p"},"index":2},"pose":{"center":{"x":"11111111","y":"Z6PgnM9p8ZN"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"88yyoxSEmf4aUjJUGQRHbX","ref":{"ref":{"name":"p"},"index":1},"pose":{"center":{"x":"11111111","y":"Bgdb12LgJKA"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"NPAaADWvFAh5Pttni6nm6","ref":{"ref":{"name":"p"},"index":2},"pose":{"center":{"x":"11111111","y":"Z6iBW4bc6Sp"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"69m3hpZazob4QbVDhEkQBW","ref":{"ref":{"name":"p"},"index":1},"pose":{"center":{"x":"11111111","y":"Bgx5ijnUGCc"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"249fMYoZnp83PEwU9hgbJp","ref":{"ref":{"name":"p"},"index":2},"pose":{"center":{"x":"11111111","y":"Z6hDQm2Uvyh"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"2dtsvGrvUzW47GKB9Whp5m","ref":{"ref":{"name":"p"},"index":1},"pose":{"center":{"x":"11111111","y":"Bgw7dSDM6jV"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"Gej4tp5h73rLSC7T9Y3aev","ref":{"ref":{"name":"p"},"index":5},"pose":{"center":{"x":"Bhpi7yoESoh","y":"Bi7dinHtoPu"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"CKURLeJJtDnZdaZNubf31w","ref":{"ref":{"name":"p"},"index":6},"pose":{"center":{"x":"BgqDELCyq43","y":"Bi7dinHtoPu"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"8PUWU9x1HYTQeLEKn9zHoo","ref":{"ref":{"name":"p"},"index":7},"pose":{"center":{"x":"Z6bK1f27fJF","y":"Bi7dinHtoPu"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"8EeRoknV6x54y7F4NJpmeX","ref":{"ref":{"name":"p"},"index":8},"pose":{"center":{"x":"Z7aouJcNGu5","y":"Bi7dinHtoPu"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"5yU4RdGC2T7U8DNDgPvAFS","ref":{"ref":{"name":"p"},"index":4},"pose":{"center":{"x":"Bhpi7yoESoh","y":"Z7sjW772dZh"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"FGCBL9dGqLSUprFP68B9of","ref":{"ref":{"name":"p"},"index":3},"pose":{"center":{"x":"BgqDELCyq43","y":"Z7sjW772dZh"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"2DFtmf9Gxd3taKZnKhszUP","ref":{"ref":{"name":"p"},"index":2},"pose":{"center":{"x":"Z6bK1f27fJF","y":"Z7sjW772dZh"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"EH6S1TnCRw8fe4FZa7ekqW","ref":{"ref":{"name":"p"},"index":1},"pose":{"center":{"x":"Z7aouJcNGu5","y":"Z7sjW772dZh"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"CyV6Emr8QL3Tr2dtCRXJum","ref":{"ref":{"name":"p"},"index":2},"pose":{"center":{"x":"11111111","y":"Z6KHpcCAJFa"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"6Jhv1zHNyie2BpKYKWyx9F","ref":{"ref":{"name":"p"},"index":1},"pose":{"center":{"x":"11111111","y":"BgZC3HP2U1N"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"4ACz9ZHKTpLQiJvQppWKdf","ref":{"ref":{"name":"p"},"index":1},"pose":{"center":{"x":"BivT4DiC2BH","y":"Bj9ns1hjcWs"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"EqsbchJV3wDcJFdoRsgM9F","ref":{"ref":{"name":"p"},"index":2},"pose":{"center":{"x":"BiYUFWuvrc7","y":"Bj9ns1hjcWs"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"5ZytxRFdKgJUFipFzB7Bqn","ref":{"ref":{"name":"p"},"index":3},"pose":{"center":{"x":"BhoUjQtXh1Z","y":"Bj9ns1hjcWs"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"8nu2m7YQsFWeXc2VkmcRHB","ref":{"ref":{"name":"p"},"index":4},"pose":{"center":{"x":"Z6axcduLsgj","y":"Bj9ns1hjcWs"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"Cu8rc9vAmsCKTmyMSXHmQr","ref":{"ref":{"name":"p"},"index":5},"pose":{"center":{"x":"Z7z26aKLC9m","y":"Bj9ns1hjcWs"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"DoJCM1LP1MyRToJ88pWeto","ref":{"ref":{"name":"p"},"index":6},"pose":{"center":{"x":"Z8VeXwuPU2B","y":"Bj9ns1hjcWs"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"CL6n5UtMchhxs4VAExoUtF","ref":{"ref":{"name":"p"},"index":7},"pose":{"center":{"x":"Z8rkM6uifV9","y":"Bj9ns1hjcWs"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"AsBhLVKmpk6EFaffXQKh6Y","ref":{"ref":{"name":"p"},"index":8},"pose":{"center":{"x":"Z8zDnG98P1q","y":"Bj9ns1hjcWs"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"G9phhhUTXXVD7b6Mni79sc","ref":{"ref":{"name":"p"},"index":9},"pose":{"center":{"x":"BjCQZidjDNX","y":"Bj9ns1hjcWs"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"96rwTsoHr1oLXdHdGmuz3Q","ref":{"ref":{"name":"p"},"index":10},"pose":{"center":{"x":"Z95wEKngAQX","y":"Bj9ns1hjcWs"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"Usjz9PTceToyzanR4dQmN","ref":{"ref":{"name":"p"},"index":11},"pose":{"center":{"x":"Z9BDBcYFxnK","y":"Bj9ns1hjcWs"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"6EmQCkumhnwazZWi5MDkEs","ref":{"ref":{"name":"p"},"index":12},"pose":{"center":{"x":"Z9HKaaCB8WK","y":"Biv47Khpdps"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"Dj9cVTiijiXzvrku3kKmYm","ref":{"ref":{"name":"p"},"index":13},"pose":{"center":{"x":"Z9HKaaCB8WK","y":"Z8odKokNBZZ"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"2kTLWLRtV33rz9trVmSQet","ref":{"ref":{"name":"p"},"index":14},"pose":{"center":{"x":"BjXDoFP3JHD","y":"Z8pWKMYJ9dZ"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"TSDiDy6VLF3BhTAqCyKT1","ref":{"ref":{"name":"p"},"index":15},"pose":{"center":{"x":"BjMYtDfofbd","y":"BiuB7mutfks"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"7eLMrp81n94xgV3ZcqewUk","ref":{"ref":{"name":"p"},"index":2},"pose":{"center":{"x":"Z7pTp2X3iWT","y":"YzNzN8PEYhD"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"76bgGbRRSV5RstoEEsS35N","ref":{"ref":{"name":"p"},"index":3},"pose":{"center":{"x":"BiWBvgLsQKH","y":"BhyKLNnEQ1D"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"package-pad","id":"4M32voPjQ4ujDnVkcwNkbB","ref":{"ref":{"name":"p"},"index":1},"pose":{"center":{"x":"BiWBvgLsQKH","y":"Z7jR7hbNEB1"},"angle":"11111111","flip-x?":false},"side":"Top"}, + {"tag":"pad-def","id":"ByijqTpGAVzD9hdyzeizCR","name":"rectangle-smd-pad-2","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"9YMG5DTxzXCtgFtB2YkssL","name":"rectangle-smd-pad-1","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"5tH9dR9rt6RLoqN8hxMwxy","name":"rectangle-smd-pad-1","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"CbxqNNggPsVZwvYJPpqnyS","name":"TestPoint-Pad","shape":{"type":"circle","center":{"x":"11111111","y":"11111111"},"radius":"BhGtCjjMFfm"},"type":"SMD"}, + {"tag":"pad-def","id":"9VxsRdCqEvv7peG7NM5wE3","name":"rectangle-smd-pad","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"EYX3oy34yTxAbztGELmiBd","name":"rectangle-smd-pad","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"3SuVoBsk9ThMafscjEedTT","name":"SMD Pad","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"6atuTtyFZU48AKFxhNYejb","name":"rectangle-smd-pad-2","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"ENYMRJ6xdkfFE9fmeEQKiV","name":"rectangle-smd-pad-1","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"CqGQBdoktLtG5UpqFQ1aU6","name":"rectangle-smd-pad-1","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"FsyKeyEygi1xykZnkp59EW","name":"rectangle-smd-pad","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"2LsoCUBoqtzmRN8RSJ1RFG","name":"SMD Pad","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"4tSVMzLvGcFSpmW5ruNsYj","name":"rectangle-smd-pad","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"GeH6wepvk3oSCDswcMujRQ","name":"rectangle-smd-pad","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"3UqGYP6PmiULBMirwDtpgF","name":"SMD Pad","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"7rKM9MqK1hpvTPcjV3dt3q","name":"SMD Pad","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"ESyLpzk4Bm24Cam2fwvum4","name":"SMD Pad","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"9GjWQ4F8bAj5gWTP5h8gRj","name":"SMD Pad","shape":{"type":"error"},"type":"SMD"}, + {"tag":"pad-def","id":"2ZrGLNLJQz9xBEJ3CHYatK","name":"capsule-smd-pad","shape":{"type":"capsule","width":"BgmuVx7Kdok","height":"BhtqnTRJgn7","pose":{"center":{"x":"11111111","y":"NQm6nKp8qFD"},"angle":"11111111","flip-x?":false}},"type":"SMD"}, + {"tag":"pad-def","id":"9vYtcGtfkD1njJ7nfwp5Pb","name":"SMD Pad","shape":{"type":"error"},"type":"SMD"}, + {"tag":"package","id":"3nMAwnPEMTTghiJzvQuEyS","name":"0402","package-hash":-1305674863}, + {"tag":"package","id":"6RsuPH8NbwFHfrUREA2HkD","name":"NPTH","package-hash":-794959022}, + {"tag":"package","id":"QnsiHXKK2nbtfhBdD66J2","name":"testpad","package-hash":-1877204100}, + {"tag":"package","id":"An4o2xNFeTwu4FARfsC7ds","name":"0402","package-hash":1736743553}, + {"tag":"package","id":"CTucWsGHbQa7EiGa82c7YW","name":"USB-C-SMD_TYPE-C-31-G-03","package-hash":-112179819}, + {"tag":"package","id":"7X5YLoyaV8pjSTtoBbguEz","name":"QFN-36_L6.0-W6.0-P0.50-TL-EP4.1","package-hash":464406231}, + {"tag":"package","id":"6FoXpKMuEUcEa31mVZurHa","name":"0402","package-hash":813596607}, + {"tag":"package","id":"6n9ZFMrzvPH5LhDA2A3XAT","name":"CRYSTAL-SMD_4P-L3.2-W2.5-BL","package-hash":-1367547486}, + {"tag":"package","id":"SqnCmAk76hDeBTh51y1FZ","name":"jitx-sm-lp","package-hash":-552618301}, + {"tag":"package","id":"Gfgq3XkY3gfdEMNQQnJnvT","name":"0402","package-hash":709524151}, + {"tag":"package","id":"24mU64xBQAu7abAJ8qQpeW","name":"0603","package-hash":1949743362}, + {"tag":"package","id":"FojY5v25YV7yxNL71KvyGw","name":"0603","package-hash":789212372}, + {"tag":"package","id":"Jdz1ZREUiRhVoAS3xi4T7","name":"SOIC-8_L4.9-W3.9-P1.27-LS6.0-BL","package-hash":1696159863}, + {"tag":"package","id":"AKJwqHoiayEHZeT8eofJ2z","name":"0402","package-hash":-599931684}, + {"tag":"package","id":"ETxf7uYkBRtvAMZ5eePNej","name":"SD-SMD_SD-101","package-hash":1969033023}, + {"tag":"package","id":"GTmTqwndRUPT26duWivqqm","name":"TO-252-3_L6.5-W5.8-P4.58-BR","package-hash":-1359519690}, + {"tag":"def-pin","id":127}, + {"tag":"def-pin","id":86}, + {"tag":"def-pin","id":24}, + {"tag":"def-pin","id":4}, + {"tag":"def-pin","id":115}, + {"tag":"def-pin","id":66}, + {"tag":"def-pin","id":68}, + {"tag":"def-pin","id":107}, + {"tag":"def-pin","id":70}, + {"tag":"def-pin","id":26}, + {"tag":"def-pin","id":31}, + {"tag":"def-pin","id":101}, + {"tag":"def-pin","id":110}, + {"tag":"def-pin","id":56}, + {"tag":"def-pin","id":58}, + {"tag":"def-pin","id":60}, + {"tag":"def-pin","id":118}, + {"tag":"def-pin","id":16}, + {"tag":"def-pin","id":106}, + {"tag":"def-pin","id":97}, + {"tag":"def-pin","id":112}, + {"tag":"def-pin","id":121}, + {"tag":"def-pin","id":36}, + {"tag":"def-pin","id":82}, + {"tag":"def-pin","id":43}, + {"tag":"def-pin","id":84}, + {"tag":"def-pin","id":17}, + {"tag":"def-pin","id":21}, + {"tag":"def-pin","id":30}, + {"tag":"def-pin","id":71}, + {"tag":"def-pin","id":105}, + {"tag":"def-pin","id":73}, + {"tag":"def-pin","id":75}, + {"tag":"def-pin","id":125}, + {"tag":"def-pin","id":44}, + {"tag":"def-pin","id":19}, + {"tag":"def-pin","id":129}, + {"tag":"def-pin","id":14}, + {"tag":"def-pin","id":62}, + {"tag":"def-pin","id":64}, + {"tag":"def-pin","id":20}, + {"tag":"def-pin","id":22}, + {"tag":"def-pin","id":40}, + {"tag":"def-pin","id":95}, + {"tag":"def-pin","id":91}, + {"tag":"def-pin","id":100}, + {"tag":"def-pin","id":114}, + {"tag":"def-pin","id":15}, + {"tag":"def-pin","id":35}, + {"tag":"def-pin","id":49}, + {"tag":"def-pin","id":34}, + {"tag":"def-pin","id":51}, + {"tag":"def-pin","id":27}, + {"tag":"def-pin","id":32}, + {"tag":"def-pin","id":53}, + {"tag":"def-pin","id":117}, + {"tag":"def-pin","id":38}, + {"tag":"def-pin","id":109}, + {"tag":"def-pin","id":10}, + {"tag":"def-pin","id":39}, + {"tag":"def-pin","id":76}, + {"tag":"def-pin","id":78}, + {"tag":"def-pin","id":80}, + {"tag":"def-pin","id":92}, + {"tag":"def-pin","id":12}, + {"tag":"def-pin","id":120}, + {"tag":"def-pin","id":67}, + {"tag":"def-pin","id":123}, + {"tag":"def-pin","id":69}, + {"tag":"def-pin","id":13}, + {"tag":"def-pin","id":98}, + {"tag":"def-pin","id":37}, + {"tag":"def-pin","id":55}, + {"tag":"def-pin","id":104}, + {"tag":"def-pin","id":57}, + {"tag":"def-pin","id":1}, + {"tag":"def-pin","id":29}, + {"tag":"def-pin","id":124}, + {"tag":"def-pin","id":7}, + {"tag":"def-pin","id":59}, + {"tag":"def-pin","id":47}, + {"tag":"def-pin","id":128}, + {"tag":"def-pin","id":33}, + {"tag":"def-pin","id":9}, + {"tag":"def-pin","id":81}, + {"tag":"def-pin","id":83}, + {"tag":"def-pin","id":85}, + {"tag":"def-pin","id":25}, + {"tag":"def-pin","id":2}, + {"tag":"def-pin","id":11}, + {"tag":"def-pin","id":102}, + {"tag":"def-pin","id":111}, + {"tag":"def-pin","id":72}, + {"tag":"def-pin","id":116}, + {"tag":"def-pin","id":28}, + {"tag":"def-pin","id":96}, + {"tag":"def-pin","id":74}, + {"tag":"def-pin","id":94}, + {"tag":"def-pin","id":90}, + {"tag":"def-pin","id":119}, + {"tag":"def-pin","id":46}, + {"tag":"def-pin","id":5}, + {"tag":"def-pin","id":0}, + {"tag":"def-pin","id":88}, + {"tag":"def-pin","id":89}, + {"tag":"def-pin","id":23}, + {"tag":"def-pin","id":3}, + {"tag":"def-pin","id":61}, + {"tag":"def-pin","id":63}, + {"tag":"def-pin","id":87}, + {"tag":"def-pin","id":48}, + {"tag":"def-pin","id":65}, + {"tag":"def-pin","id":6}, + {"tag":"def-pin","id":108}, + {"tag":"def-pin","id":103}, + {"tag":"def-pin","id":122}, + {"tag":"def-pin","id":50}, + {"tag":"def-pin","id":52}, + {"tag":"def-pin","id":8}, + {"tag":"def-pin","id":54}, + {"tag":"def-pin","id":126}, + {"tag":"def-pin","id":45}, + {"tag":"def-pin","id":113}, + {"tag":"def-pin","id":93}, + {"tag":"def-pin","id":99}, + {"tag":"def-pin","id":77}, + {"tag":"def-pin","id":18}, + {"tag":"def-pin","id":79}, + {"tag":"def-pin","id":42}, + {"tag":"def-pin","id":41}, + {"tag":"component","id":"Db7hETyHfWF8dSyRX6WRVT","name":"Generic Mounting Hole","reference-prefix":"U"}, + {"tag":"component","id":"iP6L7364Bd5aJCtLVeS51","name":"my-resistor","reference-prefix":"R"}, + {"tag":"component","id":"7tgBFnrdabFgShDWJTfjju","name":"my-resistor","reference-prefix":"R"}, + {"tag":"component","id":"BrVKhF2j14MtWLpsJyJZPp","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"component","id":"Ce1KiA8n8mWbf4TktZgxTe","name":"my-resistor","reference-prefix":"R"}, + {"tag":"component","id":"49ckLSmHhX9zw6NJBqicJg","name":"my-resistor","reference-prefix":"R"}, + {"tag":"component","id":"3ut3gkiqUNJ5qxvbq22dd5","name":"my-resistor","reference-prefix":"R"}, + {"tag":"component","id":"9pFNXJXKj5jXediTRiXsT8","name":"C266601","reference-prefix":"Card"}, + {"tag":"component","id":"AkWDEaAcm1tQkhNQt6LkbW","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"component","id":"6nVTRwdPzwz1dbHxSAuiPZ","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"component","id":"2dnpU3ErHPq4WCHbRCEMjS","name":"C654991","reference-prefix":"XTAL"}, + {"tag":"component","id":"EpdzpvFwLd8Ywh7npkAh5V","name":"my-resistor","reference-prefix":"R"}, + {"tag":"component","id":"CZ44u98NqK9yFMoSXAxE7X","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"component","id":"FeMe1WwUKfQ3nWxxEBCtmR","name":"C840338","reference-prefix":"USB"}, + {"tag":"component","id":"BRXwLCGrq4CRSQSGs5KsSF","name":"LED-maker-ROYGBIV","reference-prefix":"LED"}, + {"tag":"component","id":"58vQGcqzeBKZUcCpNSp37e","name":"my-resistor","reference-prefix":"R"}, + {"tag":"component","id":"9Q3B7DSxHL3ETUkuhA7Rv1","name":"gen-testpad","reference-prefix":"U"}, + {"tag":"component","id":"GVgofqGRhE7nuiyo6ubZFD","name":"C442601","reference-prefix":"U"}, + {"tag":"component","id":"fryXKB8SKwNEUvtPDdbi9","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"component","id":"5nHFuYbKH2cKYjTmDrvq1w","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"component","id":"GVPknkp4LJFTom7oS7se87","name":"C118280","reference-prefix":"U"}, + {"tag":"component","id":"bHxRWEzDGdT6Lnv5uTCRe","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"component","id":"F7Zm7tffdGSG1x83j6j5dg","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"component","id":"Go1q54QG6UE5cNAXPi1HGe","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"component","id":"A2QXCG5pWXMXzbCUSKN8GA","name":"my-resistor","reference-prefix":"R"}, + {"tag":"component","id":"51m3sE1ig4FpnDDkEhCy23","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"component","id":"4mxWXtLURdFmcZ1DTjQ6RQ","name":"C633328","reference-prefix":"U"}, + {"tag":"component","id":"97YsZPsN9YL3sGwuRbbUL2","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"component","id":"DTTNbEaJKWdNBxL6Mudut1","name":"JITX","reference-prefix":"JITX"}, + {"tag":"component","id":"FtYyKJdp2V5UZg9MrPmReV","name":"my-resistor","reference-prefix":"R"}, + {"tag":"component","id":"FcoUDreLBna6ww5xkXhrBp","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"component","id":"E1s3CRGbtnmhYni3iEEFi3","name":"my-capacitor","reference-prefix":"C"}, + {"tag":"symbol","id":254}, + {"tag":"symbol","id":255}, + {"tag":"symbol","id":256}, + {"tag":"symbol","id":257}, + {"tag":"symbol","id":258}, + {"tag":"symbol","id":259}, + {"tag":"symbol","id":260}, + {"tag":"symbol","id":261}, + {"tag":"symbol","id":262}, + {"tag":"symbol","id":263}, + {"tag":"symbol","id":264}, + {"tag":"symbol","id":265}, + {"tag":"symbol","id":266}, + {"tag":"symbol","id":267}, + {"tag":"symbol","id":268}, + {"tag":"symbol","id":269}, + {"tag":"pin","id":"9WbgN49DYsmKvsHByMiMtW","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"CfPyd35i6FzhUffuUACTe1","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"DT7p3Wkjc6nziPgfRfnnK5","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"power"}},"field":{"name":"vdd"}}}, + {"tag":"pin","id":"APMh6kb9sQ9aVXGtBEJ9H3","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"conn"}},"field":{"name":"CLK"}}}, + {"tag":"pin","id":"5VRjwjs8Fx1tNWru8qo6XP","ref":{"ref":{"ref":{"name":"reg"},"field":{"name":"power-out"}},"field":{"name":"gnd"}}}, + {"tag":"pin","id":"DhCSUe1sn4TJowyNosJHJZ","ref":{"ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"data"}},"index":2},"field":{"name":"P"}}}, + {"tag":"pin","id":"EeGbiqZhWsmKmT6kCNJz5t","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb-in"}},"field":{"name":"data"}},"field":{"name":"N"}}}, + {"tag":"pin","id":"7YnYYc8i2AoVosKDj55732","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"conn"}},"field":{"name":"WP"}}}, + {"tag":"pin","id":"5bChcShWpT8qS5WQdY5KjN","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"sd-card-conn"}},"field":{"name":"CMD"}}}, + {"tag":"pin","id":"D13Br9DpFFMUdnNgMu4oto","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"DAT1"}}}, + {"tag":"pin","id":"8y12SmjjnoBocPfECLrqTr","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"sd-card-conn"}},"field":{"name":"DAT"}},"index":1}}, + {"tag":"pin","id":"D2qhSBtjAPGW7NpcY3egWR","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"VSS1"}}}, + {"tag":"pin","id":"B2J5ij72TkeWQWjFnf32n5","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"23Bt9uG4TNRPg8DWbPWrDo","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"CRD_PWR"}}}, + {"tag":"pin","id":"44hHmQU7zL7GeTqVQzC3yf","ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"eeprom"}},"field":{"name":"E1"}}}, + {"tag":"pin","id":"2D2N5Chqy9unTybVH24e8U","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"D2os9Qqi4ERox74HZtGXNw","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"RXD_SDA"}}}, + {"tag":"pin","id":"3rPRuPF5Jwm3GgNzmcnqSc","ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"eeprom"}},"field":{"name":"WC_NOT"}}}, + {"tag":"pin","id":"7tPQshXYB72sigUwopnuTu","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"DP1"}}}, + {"tag":"pin","id":"DFoMtTfdzrfSBEbYcYqKvA","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"VDD18PLL"}}}, + {"tag":"pin","id":"87hJx8eDSzoKU5FJeab2o6","ref":{"ref":{"ref":{"name":"status-led"},"field":{"name":"led"}},"field":{"name":"c"}}}, + {"tag":"pin","id":"VQ2bPyBxi9JFtTYKasZN2","ref":{"ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"4LE2HuNEv5fLTMamdYDn37","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"GND6"}}}, + {"tag":"pin","id":"2z3K6HddgeHuNaVea1LyUU","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_ALE_SD_D5_MS_D1"}}}, + {"tag":"pin","id":"184eWHvSsF8qHiq9LQWUvf","ref":{"ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"4XVqWYW9xHqoQfM4hiDWKz","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_D5_SD_D2"}}}, + {"tag":"pin","id":"5hBUoy2D2wMsQvN16hEu1v","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_nWE"}}}, + {"tag":"pin","id":"779WEUwehTnRozEHaHvWji","ref":{"ref":{"ref":{"name":"test-points"},"field":{"name":"tp"}},"index":3}}, + {"tag":"pin","id":"5Ztemf7V4JLHy3qXgtTe2S","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"BTiMGuN62ATHVWoCbhhmT7","ref":{"ref":{"ref":{"ref":{"name":"test-points"},"field":{"name":"point"}},"index":2},"field":{"name":"p"}}}, + {"tag":"pin","id":"4842wu49S1zjBAfW1Y4Hw4","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"power"}},"field":{"name":"gnd"}}}, + {"tag":"pin","id":"8G7oj6booNR1MCuDk6wmy7","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb-in"}},"field":{"name":"data"}},"field":{"name":"P"}}}, + {"tag":"pin","id":"D75uAYK1bKFK54hBvs9Gwb","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"sbu"}},"index":1}}, + {"tag":"pin","id":"42RThQxoTRzifkTzd8JQLz","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"DAT2"}}}, + {"tag":"pin","id":"AHDzLvPpduq3Fwt3jwFB87","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"3Tybb4Zv4kzgPcsTGPn93K","ref":{"ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"rx"}},"index":2},"field":{"name":"N"}}}, + {"tag":"pin","id":"FR8FGWTAWx9RuwBjWeLNHz","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"sd-card-conn"}},"field":{"name":"DAT"}},"index":2}}, + {"tag":"pin","id":"BBJ4xa8atnBuDwzYwD2Swa","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"VSS2"}}}, + {"tag":"pin","id":"2aXCXZ3EDZDoeMSuAoR56c","ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"power"}},"field":{"name":"vdd"}}}, + {"tag":"pin","id":"FB7RxYLzFx8W11KBcYB9nv","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"277ymguyfunp3xeMzgqkoh","ref":{"ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"tx"}},"index":2},"field":{"name":"N"}}}, + {"tag":"pin","id":"AqoA3xEAhq2iokeih6SHu4","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"GND"}}}, + {"tag":"pin","id":"85HQgozBLahmuB2fFbGa6Q","ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"eeprom"}},"field":{"name":"E2"}}}, + {"tag":"pin","id":"33pj57B3buenj7mGwvUNug","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-2"}},"field":{"name":"vbus"}},"field":{"name":"vdd"}}}, + {"tag":"pin","id":"8BETgZHa8gHnD3M3u6QoQf","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"SD_nCD"}}}, + {"tag":"pin","id":"3H3QT3ZYNPxxzRBJRGyWDP","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"GND0"}}}, + {"tag":"pin","id":"FE1jig2pJwVBmdfjkBPxoi","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"VDD330"}}}, + {"tag":"pin","id":"DhZWB1YfDsJJdNLJSr7B7T","ref":{"ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"A6HWL3Kcej6TvtkSE5P3B9","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"SSRXN1"}}}, + {"tag":"pin","id":"BS3ZjAuuHNvH3BXUyGamQo","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_CLE_SD_CMD_MS_D0"}}}, + {"tag":"pin","id":"EiVQtcS1yvdESnqKesnt5S","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_D6_SD_D3_MS_D3"}}}, + {"tag":"pin","id":"DeB929HVXFSDGDNMawL47B","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_nWP_SD_CLK_MS_BS"}}}, + {"tag":"pin","id":"3sNaTjnwsKFXUb3xYSF1bN","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"DoHnvhBGn4TUATsc2iFhC","ref":{"ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"conn"}},"field":{"name":"DAT"}},"index":0}}, + {"tag":"pin","id":"CPQb4sGNz6xHNCh1UaWTP3","ref":{"ref":{"ref":{"name":"reg"},"field":{"name":"reg"}},"field":{"name":"FIN"}}}, + {"tag":"pin","id":"2z31EYci2xN6V6mk36qyyw","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"vbus"}},"field":{"name":"vdd"}}}, + {"tag":"pin","id":"57w51FV1Riwa4Z3dSC8ugz","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"CD"}}}, + {"tag":"pin","id":"3fRFzPLWN4c8KNAtFn2r1E","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"AsguL4QmXoCP9AHMrtXcpR","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"sbu"}},"index":2}}, + {"tag":"pin","id":"CdGXxxjmptensebnmim39E","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"sd-card-conn"}},"field":{"name":"power"}},"field":{"name":"vdd"}}}, + {"tag":"pin","id":"CUCbwuTS8giDyxhsPjNGT3","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"SHELL0"}}}, + {"tag":"pin","id":"4vVDaQem42Z3vQpvrtjaHA","ref":{"ref":{"ref":{"ref":{"name":"reg"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"24gJNm4uiWnUnVnivP1KP7","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"Egj3xeqw8bDYFo8WBkiMHr","ref":{"ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"rx"}},"index":2},"field":{"name":"P"}}}, + {"tag":"pin","id":"4mEjZNz911hE2veStLE9yo","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"sd-card-conn"}},"field":{"name":"DAT"}},"index":3}}, + {"tag":"pin","id":"bKJLm756eu17KqKPvD7fL","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"WP"}}}, + {"tag":"pin","id":"AvcBRmZyxwuWaYmnEyTZ6y","ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"power"}},"field":{"name":"gnd"}}}, + {"tag":"pin","id":"GQ81dGuN4d9yKhXKWKMBuH","ref":{"ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"tx"}},"index":2},"field":{"name":"P"}}}, + {"tag":"pin","id":"3YHAYemPtGHrVehEq3n9Ga","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"LED"}}}, + {"tag":"pin","id":"7WPWy63fC1XmuxQ5W7mC3y","ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"eeprom"}},"field":{"name":"NC"}}}, + {"tag":"pin","id":"CmNfRcfk5od2sZLS4AMFpP","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-2"}},"field":{"name":"vbus"}},"field":{"name":"gnd"}}}, + {"tag":"pin","id":"2854s8fxu3p7VCiKXryr8a","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"TEST"}}}, + {"tag":"pin","id":"6WXF4tdzibmU3QAAkGmZSM","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"GND1"}}}, + {"tag":"pin","id":"G6kFwwGM5NBg2TRz7jcsfG","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"VDD331"}}}, + {"tag":"pin","id":"CCVrkKJvmHuyxpsDKd99Eu","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"SSRXP1"}}}, + {"tag":"pin","id":"CmBH4GY3PqKffEnZ8xo5BA","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_D0_SD_D6_MS_D7"}}}, + {"tag":"pin","id":"BCFGY5efK71HXjRJLxPNVg","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_D7_SD_D4_MS_D2"}}}, + {"tag":"pin","id":"BaQqiZhf7fzPcMVhPVFjV8","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"F4oKNpinJf1b3DmVGpNvNz","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"3xsachBtugDAmny7YFjTUv","ref":{"ref":{"ref":{"ref":{"name":"test-points"},"field":{"name":"point"}},"index":3},"field":{"name":"p"}}}, + {"tag":"pin","id":"6f9FR7wLwDCEKc8usfbek2","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"7sui1JYj3muQyiuMajjhU1","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"conn"}},"field":{"name":"CMD"}}}, + {"tag":"pin","id":"CpcQzrD8wxzmY7oua4uN8r","ref":{"ref":{"ref":{"name":"reg"},"field":{"name":"power-in"}},"field":{"name":"vdd"}}}, + {"tag":"pin","id":"9gGwkLDmZJAqjHfzNigUrz","ref":{"ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"data"}},"index":1},"field":{"name":"N"}}}, + {"tag":"pin","id":"5xeEYptBJYzUgfAQYzXRfT","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"i2c"}},"field":{"name":"sda"}}}, + {"tag":"pin","id":"E16Czh5sDF5KCKNdcmXXWj","ref":{"ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"conn"}},"field":{"name":"DAT"}},"index":1}}, + {"tag":"pin","id":"EnpXBWZSzDAMp6XEP1h7FN","ref":{"ref":{"ref":{"name":"reg"},"field":{"name":"reg"}},"field":{"name":"VCC"}}}, + {"tag":"pin","id":"83jAUgzKQB84GWkC2X11D4","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"DiRckmLVorNW2kP6EdX23b","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"vbus"}},"field":{"name":"gnd"}}}, + {"tag":"pin","id":"bncwRTbFJVfyPf1GB9u7U","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb-in"}},"field":{"name":"vbus"}},"field":{"name":"vdd"}}}, + {"tag":"pin","id":"DYANuVfc2zF8qNaPKDaKh1","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"CD_DAT3"}}}, + {"tag":"pin","id":"4xqmHPcrykC5ipyaNXcVAL","ref":{"ref":{"ref":{"ref":{"name":"reg"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"4DobcdUSUfn6ajQHVQGeEp","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"25Nap8otkzSMNH7215RqGH","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"sd-card-conn"}},"field":{"name":"power"}},"field":{"name":"gnd"}}}, + {"tag":"pin","id":"54wJaJXFy9CQvxEyYqRKhf","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"SHELL1"}}}, + {"tag":"pin","id":"BrvpWkJGuzCBf3r7kVNJo4","ref":{"ref":{"ref":{"ref":{"name":"reg"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"6968mitPMQDxc4CpNfQYYS","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"sd-card-conn"}},"field":{"name":"CD"}}}, + {"tag":"pin","id":"5RCgeDJeUtDRD7STqBfnac","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"MS_INS"}}}, + {"tag":"pin","id":"3oyh9oYcL3Q3mvdYeiTynK","ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"eeprom"}},"field":{"name":"SCL"}}}, + {"tag":"pin","id":"8BxBKM5g59aSHaDuQ7Z8U6","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-2"}},"field":{"name":"id"}}}, + {"tag":"pin","id":"2hvnmgsFJQhYgQrToJojcb","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"TXD_SCK_MS_SKT_SEL"}}}, + {"tag":"pin","id":"8PunXKCsQUeKuCbr4KntQY","ref":{"ref":{"name":"status-led"},"field":{"name":"in"}}}, + {"tag":"pin","id":"7rrM7rHEb472PcXrniAkgc","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"GND2"}}}, + {"tag":"pin","id":"BK7fxLYivXnhdnTzpuqESL","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"VDD332"}}}, + {"tag":"pin","id":"7UnVFrTtHCEAfuWy8Qyj35","ref":{"ref":{"ref":{"ref":{"name":"status-led"},"field":{"name":"ballast-res"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"FpMPxqqWKai7uUQ7o95nrz","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"SSTXN1"}}}, + {"tag":"pin","id":"3psZnnbnj2KLbd4tyvUaqX","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_D1_SD_D7_MS_D6"}}}, + {"tag":"pin","id":"7948RDWWTzK9dfRer7rhNt","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"xtal"}},"field":{"name":"GND0"}}}, + {"tag":"pin","id":"5aCEMRq7f2bMZZQqumCVSu","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_nB_R"}}}, + {"tag":"pin","id":"17pdzod64CL5zaF2zXeKxt","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"Bnma4VLaxTrrUPYmYTMVZM","ref":{"ref":{"ref":{"ref":{"name":"test-points"},"field":{"name":"point"}},"index":0},"field":{"name":"p"}}}, + {"tag":"pin","id":"5qVRVEcfCGoyMLYtc3EHxm","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"BzykxomQv8fBJsHsULMLWw","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"4JFZct6tKK9BthSHRS7QNT","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"5arXjj7DjvuWP3G3Qy5NeG","ref":{"ref":{"ref":{"name":"reg"},"field":{"name":"power-in"}},"field":{"name":"gnd"}}}, + {"tag":"pin","id":"FqZp6QumQQS6aKhmEmMxR3","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"2SwCyMjvCnW5LR2bxCaoYj","ref":{"ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"data"}},"index":1},"field":{"name":"P"}}}, + {"tag":"pin","id":"8DAscPKubVjNrxeLQeX3QW","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"i2c"}},"field":{"name":"scl"}}}, + {"tag":"pin","id":"A1d2dKdiqXwnqsVLNZjbub","ref":{"ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"conn"}},"field":{"name":"DAT"}},"index":2}}, + {"tag":"pin","id":"5o3HsqtVKhtZcR8CjD2ahn","ref":{"ref":{"ref":{"name":"reg"},"field":{"name":"reg"}},"field":{"name":"VOUT"}}}, + {"tag":"pin","id":"7Wbnw9X9Azst4PPDBFaSSg","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"3Ptgi3Z3YsNbNcuVSh2r8c","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb-in"}},"field":{"name":"vbus"}},"field":{"name":"gnd"}}}, + {"tag":"pin","id":"25jqKP7wGB1hHFnHajrz6j","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"CLK"}}}, + {"tag":"pin","id":"GfTkMWsbEoko71aefPJW2A","ref":{"ref":{"ref":{"ref":{"name":"reg"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"5VovU7LRgXhitCgnxMbdGq","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"sd-card-conn"}},"field":{"name":"CLK"}}}, + {"tag":"pin","id":"A78Yibo7QcpndY2scY495S","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"SHELL2"}}}, + {"tag":"pin","id":"952fSiZTkDf71mNC9ucWV5","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"sd-card-conn"}},"field":{"name":"WP"}}}, + {"tag":"pin","id":"AoY5i2BXKixk89thuA7Vpb","ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"i2c"}},"field":{"name":"sda"}}}, + {"tag":"pin","id":"GhZzRu1QS2cRUHcDxFeSLn","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"NC"}}}, + {"tag":"pin","id":"yBtYiRsKFMvckFgHeFP6i","ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"eeprom"}},"field":{"name":"SDA"}}}, + {"tag":"pin","id":"56RDse2xYH1tFwvGSrwszn","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"USB+"}}}, + {"tag":"pin","id":"CE4Pt5Zz9un4Nst6MEyHf1","ref":{"ref":{"name":"status-led"},"field":{"name":"out"}}}, + {"tag":"pin","id":"EhQ9xRJUNNcPLV2trriLMz","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"GND3"}}}, + {"tag":"pin","id":"25ReKJPGqpZDDKYdXEX5ks","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"VDDA33"}}}, + {"tag":"pin","id":"jLMtwr8MfU9qAmA7mhVCM","ref":{"ref":{"ref":{"ref":{"name":"status-led"},"field":{"name":"ballast-res"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"9aHF6CUi5tTYZVP3QP8wxR","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"SSTXP1"}}}, + {"tag":"pin","id":"5YhZZLv58HXQszMsLjk6wF","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_D2_SD_D0_MS_D4"}}}, + {"tag":"pin","id":"AUG7o4u3QLU1ZJUvbgw9sa","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"xtal"}},"field":{"name":"GND1"}}}, + {"tag":"pin","id":"FjUW9hEBbJycC2Gp72cP7j","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_nCD"}}}, + {"tag":"pin","id":"A2feHRZ2SdgNdDgbCD5zzQ","ref":{"ref":{"ref":{"name":"test-points"},"field":{"name":"tp"}},"index":0}}, + {"tag":"pin","id":"6Gex9EhRrSp4XFMxu1fUXA","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"DfNNaXMJNnrQUeZPZtWnzf","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"D2NH6Z35uUyENstm5H4cmT","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"DsVRy52GsE9UAfjS5ACQQ5","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"CSy24Pr1JfHAASVs2yHtzs","ref":{"ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"conn"}},"field":{"name":"power"}},"field":{"name":"vdd"}}}, + {"tag":"pin","id":"4337KB2qcyTLx3u6qfd9sc","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"1upDCgEx1so6cXARxUb1J","ref":{"ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"conn"}},"field":{"name":"DAT"}},"index":3}}, + {"tag":"pin","id":"7sbxYsP487NYRFpB9CcMNq","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"cc"}},"index":1}}, + {"tag":"pin","id":"Gg69dMd8cg1MZ18V7MAiuu","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb-in"}},"field":{"name":"id"}}}, + {"tag":"pin","id":"36gsRq1mvk2kJ7qfrkVgmm","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"CMD"}}}, + {"tag":"pin","id":"7heRTn7cBBoFc3wxwhYs97","ref":{"ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"rx"}},"index":1},"field":{"name":"N"}}}, + {"tag":"pin","id":"7S7XEtXCqG8w92LnGSuAoA","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"SHELL3"}}}, + {"tag":"pin","id":"5QxVYXsHeR2X5iad8t9V78","ref":{"ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"tx"}},"index":1},"field":{"name":"N"}}}, + {"tag":"pin","id":"DeKUJ4n4RMSFYakXhW9Re1","ref":{"ref":{"name":"media-controller"},"field":{"name":"LED"}}}, + {"tag":"pin","id":"8SbcWuyvCf9gzjJ565rEXW","ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"i2c"}},"field":{"name":"scl"}}}, + {"tag":"pin","id":"Bo4r9MopfUiC9CSLGRdk3k","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-2"}},"field":{"name":"data"}},"field":{"name":"N"}}}, + {"tag":"pin","id":"9tfHWjUpAy1itVaqpVaBWa","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"RBIAS"}}}, + {"tag":"pin","id":"7KLQwfxKeZrd3L7e18zRBr","ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"eeprom"}},"field":{"name":"VCC"}}}, + {"tag":"pin","id":"9WUHkS75DiJP5JBe8vS1nS","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"9Awpf4Q7fzGzjeSNKEzpSr","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"CC1"}}}, + {"tag":"pin","id":"7zqHcbRU8gUZhDnqFh62hN","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"USB-"}}}, + {"tag":"pin","id":"AtaGrkHsjZ2Y7e5qaQknaf","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"GND4"}}}, + {"tag":"pin","id":"DNcS4v9wwLjfny7YPiREoV","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"XTAL1_CLKIN"}}}, + {"tag":"pin","id":"tQKQDnj6DJEdkWjYWjXLL","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"VBUS0"}}}, + {"tag":"pin","id":"92nBH8B9kCbgEtrPKHqeHU","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_D3_SD_D1_MS_D5"}}}, + {"tag":"pin","id":"4iBBVVSD1Y3DAT6X9vi2x4","ref":{"ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"9uZMz6vqHJ1uNtj86m8pf7","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"xtal"}},"field":{"name":"IN"}}}, + {"tag":"pin","id":"G7uMRVZSTiYG2ELP29iTeF","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_nCE"}}}, + {"tag":"pin","id":"G5J2R3zxj5KsSiLDkhSkhp","ref":{"ref":{"ref":{"name":"test-points"},"field":{"name":"tp"}},"index":1}}, + {"tag":"pin","id":"CLMSWV8xzuNonh8RQ8m4yz","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"DD3didSr1qqJrSWMBwcYZJ","ref":{"ref":{"ref":{"ref":{"name":"test-points"},"field":{"name":"point"}},"index":1},"field":{"name":"p"}}}, + {"tag":"pin","id":"EtizFU9Y2EQ3VaxYAZpCXK","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"Ar4Z2CXKpNY9HuNbnZQynZ","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"2kcMjd8btRSdQG4pxm6dsV","ref":{"ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"conn"}},"field":{"name":"power"}},"field":{"name":"gnd"}}}, + {"tag":"pin","id":"ACTgpyru4KvR1mppxcqyej","ref":{"ref":{"ref":{"name":"reg"},"field":{"name":"power-out"}},"field":{"name":"vdd"}}}, + {"tag":"pin","id":"5N3pj5n32K3r3VBLJQTDAw","ref":{"ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"data"}},"index":2},"field":{"name":"N"}}}, + {"tag":"pin","id":"9N1LZVwwxNR9c7nfSB18vh","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"conn"}},"field":{"name":"CD"}}}, + {"tag":"pin","id":"FKYWLC7ntPV1BBLcF57Bpv","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"cc"}},"index":2}}, + {"tag":"pin","id":"NpkWPyQ2HbGLHzHQqdhp6","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"DAT0"}}}, + {"tag":"pin","id":"f6R2Lr3WxXLncV5sKKaQa","ref":{"ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"rx"}},"index":1},"field":{"name":"P"}}}, + {"tag":"pin","id":"AuP4wkTtUAQbUiGT3P4gV9","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"sd-card-conn"}},"field":{"name":"DAT"}},"index":0}}, + {"tag":"pin","id":"CrZi1jX1LBeU5XzWo2Nbrx","ref":{"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"field":{"name":"VDD"}}}, + {"tag":"pin","id":"WHcgmcj9euviCZT4bDLS3","ref":{"ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-c"}},"field":{"name":"tx"}},"index":1},"field":{"name":"P"}}}, + {"tag":"pin","id":"CSfP1ctjtt8LGDhDLycPZr","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"4gqPhHX2zz26jVUoCdA6hZ","ref":{"ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"usb-2"}},"field":{"name":"data"}},"field":{"name":"P"}}}, + {"tag":"pin","id":"JHRHWGiTF5TTd8q8uEXuL","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"RESET_N"}}}, + {"tag":"pin","id":"GNZG7RwFN8NdHpkQz2qpmq","ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"eeprom"}},"field":{"name":"VSS"}}}, + {"tag":"pin","id":"DKf7YPAuciGQR3Ax5PSEci","ref":{"ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"9tkWdT1wHayfHVdPjNCwkp","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"DN1"}}}, + {"tag":"pin","id":"EqFTGRsHFbuGdUQHHzC7a9","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"VDD18"}}}, + {"tag":"pin","id":"EbuCfXA4ZtgWgfsHsZYTax","ref":{"ref":{"ref":{"name":"status-led"},"field":{"name":"led"}},"field":{"name":"a"}}}, + {"tag":"pin","id":"AmmGoogduACgzAdEpd74ZP","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"GND5"}}}, + {"tag":"pin","id":"9V2UzEWDFs5SmUMGzcJZjJ","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"XTAL2"}}}, + {"tag":"pin","id":"BojYHKhb4qvvKaZPrT2Tae","ref":{"ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":1}}, + {"tag":"pin","id":"3NX5ocwjVexDKP6HUefroh","ref":{"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"field":{"name":"VBUS1"}}}, + {"tag":"pin","id":"61QJQLupTAUJc9v92jucvz","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_D4_SD_WP_MS_SCLK"}}}, + {"tag":"pin","id":"8Qf3z2y8iLKXEBiryNfvTg","ref":{"ref":{"ref":{"ref":{"name":"eeprom"},"field":{"name":"rid"}},"field":{"name":"p"}},"index":2}}, + {"tag":"pin","id":"7ufe2X3ZQP9Sdwn1S6wSpA","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"xtal"}},"field":{"name":"OUT"}}}, + {"tag":"pin","id":"7fKuydWPboB5K2mB1vwvFy","ref":{"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"field":{"name":"xD_nRE"}}}, + {"tag":"pin","id":"dTB1mTNUgi3v11gxkGrhi","ref":{"ref":{"ref":{"name":"test-points"},"field":{"name":"tp"}},"index":2}}, + {"tag":"net","id":130,"ref?":null}, + {"tag":"net","id":131,"ref?":null}, + {"tag":"net","id":132,"ref?":null}, + {"tag":"net","id":133,"ref?":null}, + {"tag":"net","id":134,"ref?":null}, + {"tag":"net","id":135,"ref?":null}, + {"tag":"net","id":136,"ref?":null}, + {"tag":"net","id":137,"ref?":null}, + {"tag":"net","id":138,"ref?":{"name":"vdd50"}}, + {"tag":"net","id":139,"ref?":null}, + {"tag":"net","id":140,"ref?":null}, + {"tag":"net","id":141,"ref?":null}, + {"tag":"net","id":142,"ref?":null}, + {"tag":"net","id":143,"ref?":null}, + {"tag":"net","id":144,"ref?":null}, + {"tag":"net","id":145,"ref?":null}, + {"tag":"net","id":146,"ref?":null}, + {"tag":"net","id":147,"ref?":null}, + {"tag":"net","id":148,"ref?":null}, + {"tag":"net","id":149,"ref?":null}, + {"tag":"net","id":150,"ref?":null}, + {"tag":"net","id":151,"ref?":null}, + {"tag":"net","id":152,"ref?":null}, + {"tag":"net","id":153,"ref?":null}, + {"tag":"net","id":154,"ref?":null}, + {"tag":"net","id":155,"ref?":null}, + {"tag":"net","id":156,"ref?":null}, + {"tag":"net","id":157,"ref?":null}, + {"tag":"net","id":158,"ref?":{"name":"vdd33"}}, + {"tag":"net","id":159,"ref?":null}, + {"tag":"net","id":160,"ref?":null}, + {"tag":"net","id":161,"ref?":null}, + {"tag":"net","id":162,"ref?":null}, + {"tag":"net","id":163,"ref?":null}, + {"tag":"net","id":164,"ref?":null}, + {"tag":"net","id":165,"ref?":null}, + {"tag":"net","id":166,"ref?":null}, + {"tag":"net","id":167,"ref?":null}, + {"tag":"net","id":168,"ref?":null}, + {"tag":"net","id":169,"ref?":null}, + {"tag":"net","id":170,"ref?":null}, + {"tag":"net","id":171,"ref?":null}, + {"tag":"net","id":172,"ref?":null}, + {"tag":"net","id":173,"ref?":null}, + {"tag":"net","id":174,"ref?":null}, + {"tag":"net","id":175,"ref?":null}, + {"tag":"net","id":176,"ref?":null}, + {"tag":"net","id":177,"ref?":null}, + {"tag":"net","id":178,"ref?":null}, + {"tag":"net","id":179,"ref?":null}, + {"tag":"net","id":180,"ref?":{"name":"gnd"}}, + {"tag":"net","id":181,"ref?":null}, + {"tag":"net","id":182,"ref?":null}, + {"tag":"net","id":183,"ref?":null}, + {"tag":"net","id":184,"ref?":null}, + {"tag":"net","id":185,"ref?":null}, + {"tag":"net","id":186,"ref?":null}, + {"tag":"net","id":187,"ref?":null}, + {"tag":"net","id":188,"ref?":null}, + {"tag":"net","id":189,"ref?":null}, + {"tag":"net","id":190,"ref?":null}, + {"tag":"net","id":191,"ref?":null}, + {"tag":"net","id":192,"ref?":null}, + {"tag":"net","id":193,"ref?":null}, + {"tag":"net","id":194,"ref?":null}, + {"tag":"net","id":195,"ref?":null}, + {"tag":"net","id":196,"ref?":null}, + {"tag":"net","id":197,"ref?":null}, + {"tag":"net","id":198,"ref?":null}, + {"tag":"net","id":199,"ref?":null}, + {"tag":"net","id":200,"ref?":null}, + {"tag":"net","id":201,"ref?":null}, + {"tag":"net","id":202,"ref?":null}, + {"tag":"net","id":203,"ref?":null}, + {"tag":"net","id":204,"ref?":null}, + {"tag":"net","id":205,"ref?":null}, + {"tag":"net","id":206,"ref?":null}, + {"tag":"net","id":207,"ref?":null}, + {"tag":"net","id":208,"ref?":null}, + {"tag":"net","id":209,"ref?":null}, + {"tag":"net","id":210,"ref?":null}, + {"tag":"net","id":211,"ref?":null}, + {"tag":"net","id":212,"ref?":null}, + {"tag":"net","id":213,"ref?":null}, + {"tag":"net","id":214,"ref?":null}, + {"tag":"net","id":215,"ref?":null}, + {"tag":"net","id":216,"ref?":null}, + {"tag":"net","id":217,"ref?":null}, + {"tag":"net","id":218,"ref?":null}, + {"tag":"net","id":219,"ref?":null}, + {"tag":"net","id":220,"ref?":null}, + {"tag":"net","id":221,"ref?":null}, + {"tag":"net","id":222,"ref?":null}, + {"tag":"net","id":223,"ref?":null}, + {"tag":"net","id":224,"ref?":null}, + {"tag":"net","id":225,"ref?":null}, + {"tag":"net","id":226,"ref?":null}, + {"tag":"net","id":227,"ref?":null}, + {"tag":"net","id":228,"ref?":null}, + {"tag":"net","id":229,"ref?":null}, + {"tag":"net","id":230,"ref?":null}, + {"tag":"net","id":231,"ref?":null}, + {"tag":"net","id":232,"ref?":null}, + {"tag":"net","id":233,"ref?":null}, + {"tag":"net","id":234,"ref?":null}, + {"tag":"net","id":235,"ref?":null}, + {"tag":"net","id":236,"ref?":null}, + {"tag":"net","id":237,"ref?":null}, + {"tag":"net","id":238,"ref?":null}, + {"tag":"net","id":239,"ref?":null}, + {"tag":"net","id":240,"ref?":null}, + {"tag":"net","id":241,"ref?":null}, + {"tag":"net","id":242,"ref?":null}, + {"tag":"net","id":243,"ref?":null}, + {"tag":"net","id":244,"ref?":null}, + {"tag":"net","id":245,"ref?":null}, + {"tag":"net","id":246,"ref?":null}, + {"tag":"net","id":247,"ref?":null}, + {"tag":"net","id":248,"ref?":null}, + {"tag":"net","id":249,"ref?":null}, + {"tag":"net","id":250,"ref?":null}, + {"tag":"net","id":251,"ref?":null}, + {"tag":"net","id":252,"ref?":null}, + {"tag":"net","id":253,"ref?":null}, + {"tag":"component-inst","id":"A3h29Z2RECjLiMZL85ZfCZ","public?":false,"ref":{"ref":{"name":"status-led"},"field":{"name":"ballast-res"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"7R2Z1QpznMLufj2rsUw5q5","public?":false,"ref":{"ref":{"name":"status-led"},"field":{"name":"led"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"5nc5vqcQUq4T65QATrHbs6","public?":false,"ref":{"ref":{"name":"sd-connector"},"field":{"name":"sd"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"B2rjcDuioM877xmyYkTmXo","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"rid"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"75dACL9SDaiVFRXgczJdD8","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"8WBCGnBP9JAB789hNHWyB5","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"8m61X3RXkyLesExgz2wrGA","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"xtal"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"4TMLddbiXPVWvD7NSw5XXn","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"77nSKnDe7MeGYsyZMCwcxr","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"9usVbKZ7QpQqddvQtPgJBc","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"2TBC8iDFgxVtTGP3hGv5pw","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"GaQT6sXk2tqEU4pJDUnwwA","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"6UkTHKpQvqmDsqkXeN9e3R","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"5DjR2uZVerwXVQtxsGGubf","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"EcLdz4H3yjpw2x6PqBebdD","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"cap"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"DmR6sNit5G9pTyKT3TBeQc","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"rid"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"8VvLEdgpKAQe7YfsFDSzgh","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"rid"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"FEr47X6dCYqq2xKBb1kRFq","public?":false,"ref":{"ref":{"name":"media-controller"},"field":{"name":"usb2240"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"GRxng3pSHKQ3xM4RUKMbtX","public?":false,"ref":{"ref":{"ref":{"name":"test-points"},"field":{"name":"point"}},"index":3},"schematic-groups":[{"name":"test"}],"explicit-designator":null}, + {"tag":"component-inst","id":"6WpfMibZFsfK3UeazZfhA1","public?":false,"ref":{"ref":{"ref":{"name":"test-points"},"field":{"name":"point"}},"index":2},"schematic-groups":[{"name":"test"}],"explicit-designator":null}, + {"tag":"component-inst","id":"CUU84XFACmadAff3nCSfRp","public?":false,"ref":{"ref":{"ref":{"name":"test-points"},"field":{"name":"point"}},"index":1},"schematic-groups":[{"name":"test"}],"explicit-designator":null}, + {"tag":"component-inst","id":"D89ACc7xJQykdg4Dh1A3V7","public?":false,"ref":{"ref":{"ref":{"name":"test-points"},"field":{"name":"point"}},"index":0},"schematic-groups":[{"name":"test"}],"explicit-designator":null}, + {"tag":"component-inst","id":"F5rDN37d9RGPY6jnzVyguZ","public?":false,"ref":{"ref":{"name":"eeprom"},"field":{"name":"rid"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"FhHXn7W3gZ51Woya9HJoph","public?":false,"ref":{"ref":{"name":"eeprom"},"field":{"name":"rid"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"9XasTANj64vB9ZvTFDT3zo","public?":false,"ref":{"ref":{"name":"eeprom"},"field":{"name":"rid"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"7YP3vuY4RRXx4AhWfiNqKS","public?":false,"ref":{"ref":{"name":"eeprom"},"field":{"name":"eeprom"}},"schematic-groups":[{"name":"data"}],"explicit-designator":null}, + {"tag":"component-inst","id":"656q9PiEkQzQr9tinkLxrZ","public?":false,"ref":{"ref":{"name":"reg"},"field":{"name":"cap"}},"schematic-groups":[{"name":"Vin"}],"explicit-designator":null}, + {"tag":"component-inst","id":"EVnbJQbBxw1eUEYRni6Wch","public?":false,"ref":{"ref":{"name":"reg"},"field":{"name":"cap"}},"schematic-groups":[{"name":"Vin"}],"explicit-designator":null}, + {"tag":"component-inst","id":"3HfeEALJYFNctitkdZqmhv","public?":false,"ref":{"ref":{"name":"reg"},"field":{"name":"reg"}},"schematic-groups":[{"name":"Vin"}],"explicit-designator":null}, + {"tag":"component-inst","id":"2TtfCo3u1C369a3Dc36cPQ","public?":false,"ref":{"ref":{"name":"usb"},"field":{"name":"rid"}},"schematic-groups":[{"name":"Vin"}],"explicit-designator":null}, + {"tag":"component-inst","id":"FshjgLMYkKo69oJh6uLstr","public?":false,"ref":{"ref":{"name":"usb"},"field":{"name":"cap"}},"schematic-groups":[{"name":"Vin"}],"explicit-designator":null}, + {"tag":"component-inst","id":"AnFmVeWs5C1x5ZuHHpf6vV","public?":false,"ref":{"ref":{"name":"usb"},"field":{"name":"rid"}},"schematic-groups":[{"name":"Vin"}],"explicit-designator":null}, + {"tag":"component-inst","id":"FT4pxFBh14a61jaK6UdDfM","public?":false,"ref":{"ref":{"name":"usb"},"field":{"name":"conn"}},"schematic-groups":[{"name":"Vin"}],"explicit-designator":null}, + {"tag":"component-inst","id":"2i6B2MSQaRVS6gpF35Rqmx","public?":false,"ref":{"name":"logo"},"schematic-groups":[],"explicit-designator":null}, + {"tag":"component-inst","id":"6gubidcNTxtTSuXPZQKXUm","public?":false,"ref":{"name":"hole"},"schematic-groups":[],"explicit-designator":null}, + {"tag":"component-inst","id":"PciZ3xURTHGr48a7y5NRz","public?":false,"ref":{"name":"hole"},"schematic-groups":[],"explicit-designator":null}, + {"tag":"module-inst","id":"47jZR3aQdgMwt1d5ioSUUG","public?":false,"ref":{"name":"status-led"},"schematic-groups":[],"def-name":"module"}, + {"tag":"module-inst","id":"6YqcNXu6ArR48oqFoyuAAF","public?":false,"ref":{"name":"sd-connector"},"schematic-groups":[],"def-name":"sd-connector"}, + {"tag":"module-inst","id":"9wrpABkM2A6wAcmzpQXaWM","public?":false,"ref":{"name":"media-controller"},"schematic-groups":[],"def-name":"media-controller"}, + {"tag":"module-inst","id":"4m1RjvLofxg9CSb2wvbcqP","public?":false,"ref":{"name":"test-points"},"schematic-groups":[],"def-name":"test-points"}, + {"tag":"module-inst","id":"qibhMUFXdUcBYh52d2qfy","public?":false,"ref":{"name":"eeprom"},"schematic-groups":[],"def-name":"eeprom"}, + {"tag":"module-inst","id":"FvcA53GAZiezkh8KVA1tyb","public?":false,"ref":{"name":"reg"},"schematic-groups":[],"def-name":"voltage-regulator"}, + {"tag":"module-inst","id":"7chV5y7rZv1JE76RykH387","public?":false,"ref":{"name":"usb"},"schematic-groups":[],"def-name":"usb-2-on-usb-c-male"}, + {"tag":"top-module-inst","id":"38HrsE5q9UtHPnuxhH4W3N","def-name":"sd-card-reader"} + ] +} \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/fp-info-cache b/sd_card_reader/designs/jitx-design/kicad/fp-info-cache new file mode 100644 index 0000000..573541a --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/fp-info-cache @@ -0,0 +1 @@ +0 diff --git a/sd_card_reader/designs/jitx-design/kicad/fp-lib-table b/sd_card_reader/designs/jitx-design/kicad/fp-lib-table new file mode 100644 index 0000000..060da11 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/fp-lib-table @@ -0,0 +1,4 @@ +(fp_lib_table + (version 7) + (lib (name jitx-design)(type KiCad)(uri "$(KIPRJMOD)/jitx-design.pretty")(options "")(descr "")) +) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design-2.kicad_sch b/sd_card_reader/designs/jitx-design/kicad/jitx-design-2.kicad_sch new file mode 100644 index 0000000..c61ec3d --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design-2.kicad_sch @@ -0,0 +1,2677 @@ + +(kicad_sch + (version 20230121) + (generator jitx) + (uuid 27564917-eb46-5190-1aa0-82aeb524e22f) + (paper "A") + + + (lib_symbols + + (symbol "vdd50" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "vdd50" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "vdd50_1_0" + + (pin power_in line (at 0.0 0.0 90) (length 0.0) + (name "vdd50" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "gnd" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "gnd" (id 1) (at -2.54 -2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "gnd_1_0" + + (pin power_in line (at 0.0 0.0 270) (length 0.0) + (name "gnd" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 -1.27)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.27) (xy 1.27 -1.27)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.762 -1.778) (xy 0.762 -1.778)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.254 -2.286) (xy 0.254 -2.286)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "vdd33" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "vdd33" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "vdd33_1_0" + + (pin power_in line (at 0.0 0.0 90) (length 0.0) + (name "vdd33" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "test_point_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "test_point_sym" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "test_point_sym_1_0" + + (pin unspecified line (at 2.54 0.0 180) (length 0.0) + (name "p" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -0.635 0.0) (xy 2.54 0.0)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "unplated_hole_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "unplated_hole_sym" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "unplated_hole_sym_1_0" + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -1.27 0.0) (radius 1.143) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "BD433M5FP_CE2" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "BD433M5FP_CE2" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "BD433M5FP_CE2_1_0" + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 0.0 0) (length 2.54000508001016) + (name "FIN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "VOUT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ALTIUM_POWER_ARROW" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ALTIUM_POWER_ARROW" (id 1) (at 2.54 -0.508 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ALTIUM_POWER_ARROW_1_0" + + (pin unspecified line (at 0.0 0.0 0) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 1.27 0.0)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.794 0.0) (xy 1.27 0.762) (xy 1.27 -0.762) (xy 2.794 0.0)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "TYPE_C_31_G_03" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 18.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "TYPE_C_31_G_03" (id 1) (at 0.0 17.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "TYPE_C_31_G_03_1_0" + + (pin unspecified line (at 2.54 -22.86 90) (length 5.08001016002032) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -22.86 90) (length 5.08001016002032) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 2.54 20.32 270) (length 5.08001016002032) + (name "GND2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 20.32 270) (length 5.08001016002032) + (name "GND3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 12.7 180) (length 2.54000508001016) + (name "GND4" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 10.16 180) (length 2.54000508001016) + (name "SSRXP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 7.62 180) (length 2.54000508001016) + (name "SSRXN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 5.08 180) (length 2.54000508001016) + (name "VBUS0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 -15.24 0) (length 2.54000508001016) + (name "GND5" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 -2.54 0) (length 2.54000508001016) + (name "DN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 0.0 0) (length 2.54000508001016) + (name "DP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 2.54 0) (length 2.54000508001016) + (name "CC1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 5.08 0) (length 2.54000508001016) + (name "VBUS1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 7.62 0) (length 2.54000508001016) + (name "SSTXN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 10.16 0) (length 2.54000508001016) + (name "SSTXP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 12.7 0) (length 2.54000508001016) + (name "GND6" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -11.4300228600457 -17.7800355600711) (end 13.9700279400559 15.240030480061) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -10.1600203200406 13.9700279400559) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "JITX_symbol" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 3.902 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + + (property "Value" "JITX_symbol" (id 1) (at -2.54 2.84 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "JITX_symbol_1_0" + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045) (xy 10.64306775 2.736906) (xy 9.40420775 2.7367485) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 9.6444795 5.3075045) (xy 11.204365675778 7.41173405617841)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 11.204365675778 7.41173405617841) (mid 11.5715164132218 7.68647346428221) (end 12.02033525 7.780511) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 12.02033525 7.780511) (xy 10.7521741568897 7.77915244080762)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 10.7521741568897 7.77915244080762) (mid 10.3244289019203 7.71659474940583) (end 9.95883526617392 7.48589849585123) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.95883526617392 7.48589849585123) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 4.80545275 2.7367835) (xy 5.52213025 2.736801) (xy 6.09744275 6.006396) (xy 7.04751775 6.007796) (xy 7.17619525 6.746366) (xy 6.22827275 6.7467685) (xy 6.35336275 7.4639535) (xy 5.63701775 7.463901) (xy 4.80545275 2.7367835)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.81951158629631 7.46403410472138) (mid 4.56761122169657 7.38909574502682) (end 4.39731705832001 7.1889221969265) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.39731705832001 7.1889221969265) (xy 4.39731771337896 7.18892347769723)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.39731771337896 7.18892347769723) (mid 4.37903669579069 6.93835280018836) (end 4.54329029777422 6.74824595058332) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.54329029777422 6.74824595058332) (xy 4.54329042972881 6.74824604286013)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.54329042972881 6.74824604286013) (mid 4.8347064457627 6.7584952028342) (end 5.05014573460892 6.95500029819479) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.05014573460892 6.95500029819479) (xy 5.0501454400865 6.95500033093321)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 5.0501454400865 6.95500033093321) (mid 5.11292088648779 7.19473733498076) (end 4.98779016906679 7.4086459400865) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.98779016906679 7.4086459400865) (xy 4.98779016800714 7.40864611461444)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.98779016800714 7.40864611461444) (mid 4.90690057503162 7.44621327349144) (end 4.81951161284777 7.46403424333775) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.81951161284777 7.46403424333775) (xy 4.81951158629631 7.46403410472138)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 3.89443775 6.3231635) (xy 3.17699025 6.3231985)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.17699025 6.3231985) (xy 2.52209151060913 2.60191506576061)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 2.52209151060913 2.60191506576061) (mid 2.05675349031717 1.92653195318543) (end 1.2808715 1.660658) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 1.2808715 1.660658) (xy 1.16204986761718 0.946150157081704)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 1.16204986761718 0.946150157081704) (mid 2.47433952610446 1.46740670189427) (end 3.24900260539611 2.64796150657934) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.24900260539611 2.64796150657934) (xy 3.89443775 6.3231635)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.6536755 2.739566) (mid 4.47355971115545 2.84819051977396) (end 4.42300775 3.05236075) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.42300775 3.05236075) (xy 4.93274772036982 5.99834598533872)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.93274772036982 5.99834598533872) (mid 4.87164254214732 6.21359196465728) (end 4.67623276466128 6.32258597036982) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.67623276466128 6.32258597036982) (xy 4.03524193183806 6.32123973631567)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.03524193183806 6.32123973631567) (mid 4.22213158850411 6.21328643348833) (end 4.27976525 6.005296) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.27976525 6.005296) (xy 3.7661802699951 3.02495606296363)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 3.7661802699951 3.02495606296363) (mid 3.84086820737184 2.8260933338554) (end 4.03429774834461 2.73828851794516) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.03429774834461 2.73828851794516) (xy 4.6536755 2.739566)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.6444795 5.3075045) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 8.68532525 7.776591)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.68532525 7.776591) (xy 7.36731275 7.777781)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 7.36731275 7.777781) (xy 8.31381775 5.253301)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.31381775 5.253301) (xy 6.69911401210568 3.12239450877699)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 6.69911401210568 3.12239450877699) (mid 6.34438927313888 2.86083653042072) (end 5.92142775 2.7369585) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.92142775 2.7369585) (xy 7.20697795987015 2.73714213727357)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 7.20697795987015 2.73714213727357) (mid 7.6509829133912 2.835530220617) (end 8.01080546865927 3.11364592030973) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.01080546865927 3.11364592030973) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ALTIUM_POWER_GND_POWER" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ALTIUM_POWER_GND_POWER" (id 1) (at 2.54 -1.016 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ALTIUM_POWER_GND_POWER_1_0" + + (pin unspecified line (at 0.0 0.0 0) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 1.27 0.0)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -1.397) (xy 1.27 1.397)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.69545 -1.0922) (xy 1.69545 1.0922)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.11455 -0.762) (xy 2.11455 0.762)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.54 -0.4572) (xy 2.54 0.4572)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "SD_101" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 20.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "SD_101" (id 1) (at 0.0 19.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "SD_101_1_0" + + (pin unspecified line (at -16.51 17.78 0) (length 2.54000508001016) + (name "CD_DAT3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 15.24 0) (length 2.54000508001016) + (name "CMD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 12.7 0) (length 2.54000508001016) + (name "VSS1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 10.16 0) (length 2.54000508001016) + (name "VDD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 7.62 0) (length 2.54000508001016) + (name "CLK" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 5.08 0) (length 2.54000508001016) + (name "VSS2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 2.54 0) (length 2.54000508001016) + (name "DAT0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 0.0 0) (length 2.54000508001016) + (name "DAT1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -2.54 0) (length 2.54000508001016) + (name "DAT2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -5.08 0) (length 2.54000508001016) + (name "CD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -7.62 0) (length 2.54000508001016) + (name "WP" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -10.16 0) (length 2.54000508001016) + (name "SHELL0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -12.7 0) (length 2.54000508001016) + (name "SHELL1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -15.24 0) (length 2.54000508001016) + (name "SHELL2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -17.78 0) (length 2.54000508001016) + (name "SHELL3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -13.9700279400559 -20.3200406400813) (end 16.510033020066 20.3200406400813) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -13.3350266700533 19.6850393700787) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "M24C04_WMN6TP" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 6.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "M24C04_WMN6TP" (id 1) (at 0.0 5.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "M24C04_WMN6TP_1_0" + + (pin unspecified line (at -10.16 3.81 0) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 1.27 0) (length 2.54000508001016) + (name "E1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 -1.27 0) (length 2.54000508001016) + (name "E2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 -3.81 0) (length 2.54000508001016) + (name "VSS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 -3.81 180) (length 2.54000508001016) + (name "SDA" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 -1.27 180) (length 2.54000508001016) + (name "SCL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 1.27 180) (length 2.54000508001016) + (name "WC_NOT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 3.81 180) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -7.62001524003048 -6.85801371602743) (end 7.62001524003048 6.85801371602743) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "Sym7B024000Q01" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "Sym7B024000Q01" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "Sym7B024000Q01_1_0" + + (pin unspecified line (at 7.62 -2.54 180) (length 2.54000508001016) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 7.62 2.54 180) (length 2.54000508001016) + (name "OUT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "IN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -0.508001016002032 -1.77800355600711) (end 0.508001016002032 1.77800355600711) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 -3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 5.08001016002032 2.54000508001016) (xy 2.54000508001016 2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 2.54000508001016) (xy 2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 -0.0) (xy 1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -5.08001016002032 -2.54000508001016) (xy -2.54000508001016 -2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -2.54000508001016) (xy -2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -0.0) (xy -1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27000254000508 -1.77800355600711) (xy 1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -1.27000254000508 -1.77800355600711) (xy -1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "diode_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "diode_sym" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "diode_sym_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "a" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "c" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (circle (center 0.0 0.0) (radius 1.905) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27 0.254) (xy 2.286 -0.762)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -0.508) (xy 2.286 -1.524)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -0.762) (xy 2.286 -0.762) (xy 2.286 -0.381)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -1.524) (xy 2.286 -1.524) (xy 2.286 -1.143)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 2.54) (xy 0.0 1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.016) (xy 1.27 1.016) (xy -1.27 1.016) (xy 0.0 -1.016)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.016) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.016) (xy 1.27 -1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "supply_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "supply_sym" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "supply_sym_1_0" + + (pin unspecified line (at 0.0 0.0 90) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ground_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ground_sym" (id 1) (at -2.54 -2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ground_sym_1_0" + + (pin unspecified line (at 0.0 0.0 270) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 -1.27)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.27) (xy 1.27 -1.27)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.762 -1.778) (xy 0.762 -1.778)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.254 -2.286) (xy 0.254 -2.286)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + + (property "Value" "" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.5 0.5)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.5 0.5)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "capacitor_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "capacitor_sym" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "capacitor_sym_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "USB2240_AEZG_06" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 25.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "USB2240_AEZG_06" (id 1) (at 0.0 24.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "USB2240_AEZG_06_1_0" + + (pin unspecified line (at -39.37 20.32 0) (length 2.54000508001016) + (name "LED" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 17.78 0) (length 2.54000508001016) + (name "USB+" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 15.24 0) (length 2.54000508001016) + (name "USB-" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 12.7 0) (length 2.54000508001016) + (name "xD_D3_SD_D1_MS_D5" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 10.16 0) (length 2.54000508001016) + (name "xD_D2_SD_D0_MS_D4" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 7.62 0) (length 2.54000508001016) + (name "VDD330" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 5.08 0) (length 2.54000508001016) + (name "xD_D1_SD_D7_MS_D6" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 2.54 0) (length 2.54000508001016) + (name "xD_D0_SD_D6_MS_D7" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 0.0 0) (length 2.54000508001016) + (name "xD_nWP_SD_CLK_MS_BS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -2.54 0) (length 2.54000508001016) + (name "xD_ALE_SD_D5_MS_D1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -5.08 0) (length 2.54000508001016) + (name "xD_CLE_SD_CMD_MS_D0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -7.62 0) (length 2.54000508001016) + (name "xD_nWE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -10.16 0) (length 2.54000508001016) + (name "VDD18" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -12.7 0) (length 2.54000508001016) + (name "VDD331" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -15.24 0) (length 2.54000508001016) + (name "xD_nCE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -17.78 0) (length 2.54000508001016) + (name "xD_nRE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -20.32 0) (length 2.54000508001016) + (name "xD_nB_R" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -22.86 0) (length 2.54000508001016) + (name "RESET_N" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -22.86 180) (length 2.54000508001016) + (name "xD_nCD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -20.32 180) (length 2.54000508001016) + (name "xD_D7_SD_D4_MS_D2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -17.78 180) (length 2.54000508001016) + (name "CRD_PWR" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -15.24 180) (length 2.54000508001016) + (name "VDD332" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -12.7 180) (length 2.54000508001016) + (name "xD_D6_SD_D3_MS_D3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -10.16 180) (length 2.54000508001016) + (name "MS_INS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -7.62 180) (length 2.54000508001016) + (name "xD_D5_SD_D2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -5.08 180) (length 2.54000508001016) + (name "SD_nCD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -2.54 180) (length 2.54000508001016) + (name "RXD_SDA" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 0.0 180) (length 2.54000508001016) + (name "TEST" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 2.54 180) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 5.08 180) (length 2.54000508001016) + (name "xD_D4_SD_WP_MS_SCLK" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 7.62 180) (length 2.54000508001016) + (name "TXD_SCK_MS_SKT_SEL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 10.16 180) (length 2.54000508001016) + (name "XTAL2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 12.7 180) (length 2.54000508001016) + (name "XTAL1_CLKIN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 15.24 180) (length 2.54000508001016) + (name "VDD18PLL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 17.78 180) (length 2.54000508001016) + (name "RBIAS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 20.32 180) (length 2.54000508001016) + (name "VDDA33" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 22.86 180) (length 2.54000508001016) + (name "GND" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -36.8300736601473 -25.4000508001016) (end 36.8300736601473 25.4000508001016) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -35.5600711201422 21.5900431800864) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "resistor_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "resistor_sym" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "resistor_sym_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "gen_testpad" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "gen_testpad" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "gen_testpad_1_0" + + (pin unspecified line (at 2.54 0.0 180) (length 0.0) + (name "p" (effects (font (size 0.0 0.0)))) + (number "tp" (effects (font (size 0.0 0.0)))) + ) + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -0.635 0.0) (xy 2.54 0.0)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "JITX" + (in_bom yes) (on_board yes) + + (property "Reference" "JITX" (id 0) (at -2.54 3.902 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + + (property "Value" "JITX" (id 1) (at -2.54 2.84 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "JITX_1_0" + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045) (xy 10.64306775 2.736906) (xy 9.40420775 2.7367485) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 9.6444795 5.3075045) (xy 11.204365675778 7.41173405617841)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 11.204365675778 7.41173405617841) (mid 11.5715164132218 7.68647346428221) (end 12.02033525 7.780511) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 12.02033525 7.780511) (xy 10.7521741568897 7.77915244080762)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 10.7521741568897 7.77915244080762) (mid 10.3244289019203 7.71659474940583) (end 9.95883526617392 7.48589849585123) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.95883526617392 7.48589849585123) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 4.80545275 2.7367835) (xy 5.52213025 2.736801) (xy 6.09744275 6.006396) (xy 7.04751775 6.007796) (xy 7.17619525 6.746366) (xy 6.22827275 6.7467685) (xy 6.35336275 7.4639535) (xy 5.63701775 7.463901) (xy 4.80545275 2.7367835)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.81951158629631 7.46403410472138) (mid 4.56761122169657 7.38909574502682) (end 4.39731705832001 7.1889221969265) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.39731705832001 7.1889221969265) (xy 4.39731771337896 7.18892347769723)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.39731771337896 7.18892347769723) (mid 4.37903669579069 6.93835280018836) (end 4.54329029777422 6.74824595058332) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.54329029777422 6.74824595058332) (xy 4.54329042972881 6.74824604286013)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.54329042972881 6.74824604286013) (mid 4.8347064457627 6.7584952028342) (end 5.05014573460892 6.95500029819479) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.05014573460892 6.95500029819479) (xy 5.0501454400865 6.95500033093321)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 5.0501454400865 6.95500033093321) (mid 5.11292088648779 7.19473733498076) (end 4.98779016906679 7.4086459400865) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.98779016906679 7.4086459400865) (xy 4.98779016800714 7.40864611461444)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.98779016800714 7.40864611461444) (mid 4.90690057503162 7.44621327349144) (end 4.81951161284777 7.46403424333775) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.81951161284777 7.46403424333775) (xy 4.81951158629631 7.46403410472138)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 3.89443775 6.3231635) (xy 3.17699025 6.3231985)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.17699025 6.3231985) (xy 2.52209151060913 2.60191506576061)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 2.52209151060913 2.60191506576061) (mid 2.05675349031717 1.92653195318543) (end 1.2808715 1.660658) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 1.2808715 1.660658) (xy 1.16204986761718 0.946150157081704)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 1.16204986761718 0.946150157081704) (mid 2.47433952610446 1.46740670189427) (end 3.24900260539611 2.64796150657934) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.24900260539611 2.64796150657934) (xy 3.89443775 6.3231635)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.6536755 2.739566) (mid 4.47355971115545 2.84819051977396) (end 4.42300775 3.05236075) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.42300775 3.05236075) (xy 4.93274772036982 5.99834598533872)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.93274772036982 5.99834598533872) (mid 4.87164254214732 6.21359196465728) (end 4.67623276466128 6.32258597036982) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.67623276466128 6.32258597036982) (xy 4.03524193183806 6.32123973631567)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.03524193183806 6.32123973631567) (mid 4.22213158850411 6.21328643348833) (end 4.27976525 6.005296) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.27976525 6.005296) (xy 3.7661802699951 3.02495606296363)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 3.7661802699951 3.02495606296363) (mid 3.84086820737184 2.8260933338554) (end 4.03429774834461 2.73828851794516) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.03429774834461 2.73828851794516) (xy 4.6536755 2.739566)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.6444795 5.3075045) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 8.68532525 7.776591)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.68532525 7.776591) (xy 7.36731275 7.777781)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 7.36731275 7.777781) (xy 8.31381775 5.253301)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.31381775 5.253301) (xy 6.69911401210568 3.12239450877699)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 6.69911401210568 3.12239450877699) (mid 6.34438927313888 2.86083653042072) (end 5.92142775 2.7369585) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.92142775 2.7369585) (xy 7.20697795987015 2.73714213727357)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 7.20697795987015 2.73714213727357) (mid 7.6509829133912 2.835530220617) (end 8.01080546865927 3.11364592030973) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.01080546865927 3.11364592030973) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_1" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_1" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_1_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_2" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_2" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_2_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C118280" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 6.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C118280" (id 1) (at 0.0 5.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C118280_1_0" + + (pin unspecified line (at -10.16 3.81 0) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 1.27 0) (length 2.54000508001016) + (name "E1" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 -1.27 0) (length 2.54000508001016) + (name "E2" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 -3.81 0) (length 2.54000508001016) + (name "VSS" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 -3.81 180) (length 2.54000508001016) + (name "SDA" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 -1.27 180) (length 2.54000508001016) + (name "SCL" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 1.27 180) (length 2.54000508001016) + (name "WC_NOT" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 3.81 180) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -7.62001524003048 -6.85801371602743) (end 7.62001524003048 6.85801371602743) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_3" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_3" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_3_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C442601" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C442601" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C442601_1_0" + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 0.0 0) (length 2.54000508001016) + (name "FIN" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "VOUT" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "LED_maker_ROYGBIV" + (in_bom yes) (on_board yes) + + (property "Reference" "LED" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "LED_maker_ROYGBIV" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "LED_maker_ROYGBIV_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "a" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "c" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (circle (center 0.0 0.0) (radius 1.905) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27 0.254) (xy 2.286 -0.762)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -0.508) (xy 2.286 -1.524)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -0.762) (xy 2.286 -0.762) (xy 2.286 -0.381)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -1.524) (xy 2.286 -1.524) (xy 2.286 -1.143)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 2.54) (xy 0.0 1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.016) (xy 1.27 1.016) (xy -1.27 1.016) (xy 0.0 -1.016)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.016) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.016) (xy 1.27 -1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_4" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_4" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_4_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_1" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_1" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_1_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_5" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_5" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_5_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C654991" + (in_bom yes) (on_board yes) + + (property "Reference" "X" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C654991" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C654991_1_0" + + (pin unspecified line (at 7.62 -2.54 180) (length 2.54000508001016) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 7.62 2.54 180) (length 2.54000508001016) + (name "OUT" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "IN" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -0.508001016002032 -1.77800355600711) (end 0.508001016002032 1.77800355600711) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 -3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 5.08001016002032 2.54000508001016) (xy 2.54000508001016 2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 2.54000508001016) (xy 2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 -0.0) (xy 1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -5.08001016002032 -2.54000508001016) (xy -2.54000508001016 -2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -2.54000508001016) (xy -2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -0.0) (xy -1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27000254000508 -1.77800355600711) (xy 1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -1.27000254000508 -1.77800355600711) (xy -1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "C840338" + (in_bom yes) (on_board yes) + + (property "Reference" "USB" (id 0) (at 0.0 18.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C840338" (id 1) (at 0.0 17.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C840338_1_0" + + (pin unspecified line (at 2.54 -22.86 90) (length 5.08001016002032) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 0.0 -22.86 90) (length 5.08001016002032) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 2.54 20.32 270) (length 5.08001016002032) + (name "GND2" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 0.0 20.32 270) (length 5.08001016002032) + (name "GND3" (effects (font (size 1.0 1.0)))) + (number "16" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 12.7 180) (length 2.54000508001016) + (name "GND4" (effects (font (size 1.0 1.0)))) + (number "B12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 10.16 180) (length 2.54000508001016) + (name "SSRXP1" (effects (font (size 1.0 1.0)))) + (number "B11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 7.62 180) (length 2.54000508001016) + (name "SSRXN1" (effects (font (size 1.0 1.0)))) + (number "B10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 5.08 180) (length 2.54000508001016) + (name "VBUS0" (effects (font (size 1.0 1.0)))) + (number "B9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 -15.24 0) (length 2.54000508001016) + (name "GND5" (effects (font (size 1.0 1.0)))) + (number "A12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 -2.54 0) (length 2.54000508001016) + (name "DN1" (effects (font (size 1.0 1.0)))) + (number "A7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 0.0 0) (length 2.54000508001016) + (name "DP1" (effects (font (size 1.0 1.0)))) + (number "A6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 2.54 0) (length 2.54000508001016) + (name "CC1" (effects (font (size 1.0 1.0)))) + (number "A5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 5.08 0) (length 2.54000508001016) + (name "VBUS1" (effects (font (size 1.0 1.0)))) + (number "A4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 7.62 0) (length 2.54000508001016) + (name "SSTXN1" (effects (font (size 1.0 1.0)))) + (number "A3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 10.16 0) (length 2.54000508001016) + (name "SSTXP1" (effects (font (size 1.0 1.0)))) + (number "A2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 12.7 0) (length 2.54000508001016) + (name "GND6" (effects (font (size 1.0 1.0)))) + (number "A1" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -11.4300228600457 -17.7800355600711) (end 13.9700279400559 15.240030480061) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -10.1600203200406 13.9700279400559) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_6" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_6" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_6_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C266601" + (in_bom yes) (on_board yes) + + (property "Reference" "Card" (id 0) (at 0.0 20.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C266601" (id 1) (at 0.0 19.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C266601_1_0" + + (pin unspecified line (at -16.51 17.78 0) (length 2.54000508001016) + (name "CD_DAT3" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 15.24 0) (length 2.54000508001016) + (name "CMD" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 12.7 0) (length 2.54000508001016) + (name "VSS1" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 10.16 0) (length 2.54000508001016) + (name "VDD" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 7.62 0) (length 2.54000508001016) + (name "CLK" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 5.08 0) (length 2.54000508001016) + (name "VSS2" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 2.54 0) (length 2.54000508001016) + (name "DAT0" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 0.0 0) (length 2.54000508001016) + (name "DAT1" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -2.54 0) (length 2.54000508001016) + (name "DAT2" (effects (font (size 1.0 1.0)))) + (number "9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -5.08 0) (length 2.54000508001016) + (name "CD" (effects (font (size 1.0 1.0)))) + (number "10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -7.62 0) (length 2.54000508001016) + (name "WP" (effects (font (size 1.0 1.0)))) + (number "11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -10.16 0) (length 2.54000508001016) + (name "SHELL0" (effects (font (size 1.0 1.0)))) + (number "12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -12.7 0) (length 2.54000508001016) + (name "SHELL1" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -15.24 0) (length 2.54000508001016) + (name "SHELL2" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -17.78 0) (length 2.54000508001016) + (name "SHELL3" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -13.9700279400559 -20.3200406400813) (end 16.510033020066 20.3200406400813) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -13.3350266700533 19.6850393700787) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor_2" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_2" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_2_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C174142" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + + (property "Value" "C174142" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C174142_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.5 0.5)))) + (number "1" (effects (font (size 0.5 0.5)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.5 0.5)))) + (number "2" (effects (font (size 0.5 0.5)))) + ) + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor_3" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_3" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_3_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_7" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_7" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_7_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_8" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_8" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_8_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_4" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_4" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_4_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_5" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_5" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_5_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C633328" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 25.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C633328" (id 1) (at 0.0 24.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C633328_1_0" + + (pin unspecified line (at -39.37 20.32 0) (length 2.54000508001016) + (name "LED" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 17.78 0) (length 2.54000508001016) + (name "USB+" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 15.24 0) (length 2.54000508001016) + (name "USB-" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 12.7 0) (length 2.54000508001016) + (name "xD_D3_SD_D1_MS_D5" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 10.16 0) (length 2.54000508001016) + (name "xD_D2_SD_D0_MS_D4" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 7.62 0) (length 2.54000508001016) + (name "VDD330" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 5.08 0) (length 2.54000508001016) + (name "xD_D1_SD_D7_MS_D6" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 2.54 0) (length 2.54000508001016) + (name "xD_D0_SD_D6_MS_D7" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 0.0 0) (length 2.54000508001016) + (name "xD_nWP_SD_CLK_MS_BS" (effects (font (size 1.0 1.0)))) + (number "9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -2.54 0) (length 2.54000508001016) + (name "xD_ALE_SD_D5_MS_D1" (effects (font (size 1.0 1.0)))) + (number "10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -5.08 0) (length 2.54000508001016) + (name "xD_CLE_SD_CMD_MS_D0" (effects (font (size 1.0 1.0)))) + (number "11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -7.62 0) (length 2.54000508001016) + (name "xD_nWE" (effects (font (size 1.0 1.0)))) + (number "12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -10.16 0) (length 2.54000508001016) + (name "VDD18" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -12.7 0) (length 2.54000508001016) + (name "VDD331" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -15.24 0) (length 2.54000508001016) + (name "xD_nCE" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -17.78 0) (length 2.54000508001016) + (name "xD_nRE" (effects (font (size 1.0 1.0)))) + (number "16" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -20.32 0) (length 2.54000508001016) + (name "xD_nB_R" (effects (font (size 1.0 1.0)))) + (number "17" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -22.86 0) (length 2.54000508001016) + (name "RESET_N" (effects (font (size 1.0 1.0)))) + (number "18" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -22.86 180) (length 2.54000508001016) + (name "xD_nCD" (effects (font (size 1.0 1.0)))) + (number "19" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -20.32 180) (length 2.54000508001016) + (name "xD_D7_SD_D4_MS_D2" (effects (font (size 1.0 1.0)))) + (number "20" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -17.78 180) (length 2.54000508001016) + (name "CRD_PWR" (effects (font (size 1.0 1.0)))) + (number "21" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -15.24 180) (length 2.54000508001016) + (name "VDD332" (effects (font (size 1.0 1.0)))) + (number "22" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -12.7 180) (length 2.54000508001016) + (name "xD_D6_SD_D3_MS_D3" (effects (font (size 1.0 1.0)))) + (number "23" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -10.16 180) (length 2.54000508001016) + (name "MS_INS" (effects (font (size 1.0 1.0)))) + (number "24" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -7.62 180) (length 2.54000508001016) + (name "xD_D5_SD_D2" (effects (font (size 1.0 1.0)))) + (number "25" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -5.08 180) (length 2.54000508001016) + (name "SD_nCD" (effects (font (size 1.0 1.0)))) + (number "26" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -2.54 180) (length 2.54000508001016) + (name "RXD_SDA" (effects (font (size 1.0 1.0)))) + (number "27" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 0.0 180) (length 2.54000508001016) + (name "TEST" (effects (font (size 1.0 1.0)))) + (number "28" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 2.54 180) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "29" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 5.08 180) (length 2.54000508001016) + (name "xD_D4_SD_WP_MS_SCLK" (effects (font (size 1.0 1.0)))) + (number "30" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 7.62 180) (length 2.54000508001016) + (name "TXD_SCK_MS_SKT_SEL" (effects (font (size 1.0 1.0)))) + (number "31" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 10.16 180) (length 2.54000508001016) + (name "XTAL2" (effects (font (size 1.0 1.0)))) + (number "32" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 12.7 180) (length 2.54000508001016) + (name "XTAL1_CLKIN" (effects (font (size 1.0 1.0)))) + (number "33" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 15.24 180) (length 2.54000508001016) + (name "VDD18PLL" (effects (font (size 1.0 1.0)))) + (number "34" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 17.78 180) (length 2.54000508001016) + (name "RBIAS" (effects (font (size 1.0 1.0)))) + (number "35" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 20.32 180) (length 2.54000508001016) + (name "VDDA33" (effects (font (size 1.0 1.0)))) + (number "36" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 22.86 180) (length 2.54000508001016) + (name "GND" (effects (font (size 1.0 1.0)))) + (number "37" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -36.8300736601473 -25.4000508001016) (end 36.8300736601473 25.4000508001016) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -35.5600711201422 21.5900431800864) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_9" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_9" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_9_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_6" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_6" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_6_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_7" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_7" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_7_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "Generic_Mounting_Hole" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "Generic_Mounting_Hole" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "Generic_Mounting_Hole_1_0" + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -1.27 0.0) (radius 1.143) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_10" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_10" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_10_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_11" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_11" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_11_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_12" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_12" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_12_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + ) + (wire (pts (xy 87.63 104.14) (xy 88.9 104.14)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 2b82050b-3d81-13a1-2b08-cbb7a2459793)) + (wire (pts (xy 87.63 106.68) (xy 88.9 106.68)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid dc2b5ec4-2ac5-053c-1694-b7f273fbb947)) + (wire (pts (xy 87.63 109.22) (xy 88.9 109.22)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid d7441fd9-ed4a-242a-26d5-ffd378bc50a1)) + (wire (pts (xy 87.63 111.76) (xy 88.9 111.76)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid abc48612-1ac1-03ab-6184-955945243d23)) + (wire (pts (xy 57.15 132.08) (xy 55.88 132.08)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid fbc91465-1531-c176-c792-61d6b349ddfe)) + (wire (pts (xy 57.15 119.38) (xy 55.88 119.38)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 4bb72a17-ee1b-95d1-05c0-359aef2aa898)) + (wire (pts (xy 57.15 116.84) (xy 55.88 116.84)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid fed82206-8221-53f2-4dfb-c3d65e3bc691)) + (wire (pts (xy 57.15 114.3) (xy 55.88 114.3)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid dcecd43d-0418-307d-0311-0e3522554b38)) + (wire (pts (xy 57.15 111.76) (xy 55.88 111.76)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid a387c7ab-4203-205b-992b-8c7d252cf306)) + (wire (pts (xy 57.15 109.22) (xy 55.88 109.22)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid d9011996-4958-b524-d437-da4fa7815390)) + (wire (pts (xy 57.15 106.68) (xy 55.88 106.68)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 2445749e-755f-c3f1-38cd-f490e0dff169)) + (wire (pts (xy 57.15 104.14) (xy 55.88 104.14)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 3f4aa8e9-a9e1-36e0-18d6-c64ae270bf14)) + (wire (pts (xy 73.66 95.25) (xy 93.98 95.25)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid e80c286b-57d7-f0e5-6295-c25ff68b9f90)) + (wire (pts (xy 73.66 96.52) (xy 73.66 95.25)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid ba897d8e-c2b8-1828-bf75-3123d117c394)) + (wire (pts (xy 93.98 142.24) (xy 93.98 95.25)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 84b227a1-5103-f0b3-1f0a-fce4e1896a29)) + (wire (pts (xy 73.66 142.24) (xy 73.66 139.7)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid e686d370-03a4-46a1-c993-2f5013a1562c)) + (wire (pts (xy 50.8 93.98) (xy 90.17 93.98)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 3d8d80ea-4324-1bab-ab0b-11bfed455210)) + (wire (pts (xy 88.9 111.76) (xy 90.17 111.76)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 0ed75bab-49b6-8b80-4585-9da0e89684e5)) + (wire (pts (xy 50.8 111.76) (xy 55.88 111.76)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 75a2b228-0e50-0e47-b01b-edd69816a69c)) + (wire (pts (xy 50.8 111.76) (xy 50.8 93.98)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 8da97ea9-6761-170a-232c-2979f96bde1b)) + (wire (pts (xy 90.17 111.76) (xy 90.17 92.71)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid ac23cde2-9bce-36d1-b9a7-a258fa4edd02)) + (wire (pts (xy 50.8 114.3) (xy 55.88 114.3)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid a41186df-5944-7854-7f00-47a614acc130)) + (wire (pts (xy 50.8 142.24) (xy 50.8 114.3)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 2c2366e1-2ec8-d4cb-63c1-31f076ea1e3b)) + (wire (pts (xy 48.26 95.25) (xy 71.12 95.25)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid ee57f4ff-c79b-51ad-c9cf-1a76e4e1906e)) + (wire (pts (xy 48.26 148.59) (xy 93.98 148.59)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 37a79177-d3c8-f702-8602-b58b900e00fb)) + (wire (pts (xy 88.9 104.14) (xy 91.44 104.14)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 2b7c7bdd-d60d-bcde-9fb0-2e8d8afae1de)) + (wire (pts (xy 48.26 104.14) (xy 55.88 104.14)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 9f14226e-bee3-5144-dcec-31a1baf1b04f)) + (wire (pts (xy 48.26 132.08) (xy 55.88 132.08)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid c43cdffa-fe6e-b177-5b77-d87822296539)) + (wire (pts (xy 48.26 140.97) (xy 71.12 140.97)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 935f5794-0c22-91be-1457-382ff89cdef5)) + (wire (pts (xy 48.26 148.59) (xy 48.26 95.25)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 644476e5-0971-9107-e47c-b65e6328ec43)) + (wire (pts (xy 93.98 148.59) (xy 93.98 147.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 6b739fad-76c3-8a0d-5d32-f409b3b191a5)) + (wire (pts (xy 91.44 148.59) (xy 91.44 104.14)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 070aed4b-dc83-8c34-50c6-279c56a0a7b0)) + (wire (pts (xy 71.12 96.52) (xy 71.12 95.25)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid ec9dd610-f2f7-a817-d7da-8a28ed873305)) + (wire (pts (xy 71.12 140.97) (xy 71.12 139.7)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid e92e286b-1846-75d0-bddd-44c6ef0bd41e)) + (wire (pts (xy 73.66 148.59) (xy 73.66 147.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 60a55d3e-eb92-c3db-75bf-2f14005ccd82)) + (wire (pts (xy 49.53 149.86) (xy 49.53 148.59)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 542ae4d4-1cdc-74ca-94b9-4ec043e25773)) + (wire (pts (xy 50.8 148.59) (xy 50.8 147.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 5a316fca-12eb-2f35-13b4-f78da20202a5)) + (wire (pts (xy 100.33 133.35) (xy 118.11 133.35)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 6270d4ff-f9ac-092e-3cf4-8ab8e1d98d06)) + (wire (pts (xy 100.33 138.43) (xy 101.6 138.43)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 94595696-c4f9-0961-3b77-8ae5a0faac45)) + (wire (pts (xy 118.11 142.24) (xy 118.11 132.08)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 4602ee9b-adc5-3b8b-2ead-f51464ec05d2)) + (wire (pts (xy 100.33 138.43) (xy 100.33 133.35)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 31b347d8-a106-ce3a-a3a2-ea9c49315e1e)) + (wire (pts (xy 121.92 142.24) (xy 121.92 140.97)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid da197434-444f-4e70-9c26-2734578f4586)) + (wire (pts (xy 99.06 143.51) (xy 101.6 143.51)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 7c744de1-e0d9-842c-bf17-6bc37e39e76b)) + (wire (pts (xy 99.06 143.51) (xy 99.06 132.08)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid b93b9119-be8a-52ea-84e4-879c39878e6c)) + (wire (pts (xy 100.33 140.97) (xy 101.6 140.97)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 5de36a13-56ae-1333-2d4c-a70a9f0837c6)) + (wire (pts (xy 100.33 148.59) (xy 121.92 148.59)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 1c112ab4-ea79-3f0c-600d-ad767cb2c14b)) + (wire (pts (xy 118.11 148.59) (xy 118.11 147.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 684da84c-cd24-fd6b-0944-776ece9ba5f6)) + (wire (pts (xy 121.92 149.86) (xy 121.92 147.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 616ee677-1649-3455-e105-aff1582c1c0f)) + (wire (pts (xy 100.33 148.59) (xy 100.33 140.97)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid acf51cd6-f694-4cd3-fc2d-19c985d5a7ea)) + (polyline (pts (xy 45.72 87.63) (xy 125.73 87.63)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid 401b5d10-9ef9-1753-7df5-83510a6de0be)) + (polyline (pts (xy 45.72 154.94) (xy 125.73 154.94)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid 178ec76e-341e-be1d-a926-aeb2d8da66db)) + (polyline (pts (xy 45.72 154.94) (xy 45.72 87.63)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid 42818a81-34ae-ac73-c880-d3b86b0c7513)) + (polyline (pts (xy 125.73 154.94) (xy 125.73 87.63)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid 14f257a3-ec02-2133-f8f8-c8351933dc14)) + (polyline (pts (xy 69.85 54.61) (xy 87.63 54.61)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid 4966511e-2f30-7eeb-3f66-0dbbad6f3047)) + (polyline (pts (xy 69.85 76.2) (xy 87.63 76.2)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid cd4bdb59-5663-5542-91c2-4b6541a7762c)) + (polyline (pts (xy 69.85 76.2) (xy 69.85 54.61)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid 0bf39884-d41c-f268-9500-5b2baf5119f7)) + (polyline (pts (xy 87.63 76.2) (xy 87.63 54.61)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid c7c157be-ee67-9c05-859e-4e289981e30c)) +(junction (at 90.17 93.98) (diameter 0.762) (color 0 0 0 0 ) (uuid 84b84e21-565a-81b9-62cc-da578359758e)) +(junction (at 91.44 148.59) (diameter 0.762) (color 0 0 0 0 ) (uuid 33dc48af-0cbe-25b8-5d31-1ec0d3ef7c03)) +(junction (at 73.66 148.59) (diameter 0.762) (color 0 0 0 0 ) (uuid 64b50317-2556-e185-f919-14b0fb436ef1)) +(junction (at 49.53 148.59) (diameter 0.762) (color 0 0 0 0 ) (uuid d89eba60-8f62-2fd6-8661-01169fc6491d)) +(junction (at 50.8 148.59) (diameter 0.762) (color 0 0 0 0 ) (uuid 94afa124-c850-7c7a-3cff-49d423c5ec46)) +(junction (at 48.26 104.14) (diameter 0.762) (color 0 0 0 0 ) (uuid 62f82bc9-4e96-57bc-b1a4-cbdee4137b8c)) +(junction (at 48.26 132.08) (diameter 0.762) (color 0 0 0 0 ) (uuid 81a4dad4-fff6-574b-d50d-455ca0023ee7)) +(junction (at 48.26 140.97) (diameter 0.762) (color 0 0 0 0 ) (uuid 9a903cc9-52a0-6602-68a6-fad8884283d2)) +(junction (at 118.11 133.35) (diameter 0.762) (color 0 0 0 0 ) (uuid 8db2114d-7c96-9496-ca19-11fbce72b741)) +(junction (at 118.11 148.59) (diameter 0.762) (color 0 0 0 0 ) (uuid 2ea109d8-bf86-9fcb-dac6-bd7d69faad7a)) +(junction (at 121.92 148.59) (diameter 0.762) (color 0 0 0 0 ) (uuid d2143240-d14c-0214-f8db-7f0b7149728f)) + + (global_label "USB-" (shape passive) (at 55.88 119.38 180) + (effects (font (size 0.762 0.762)) (justify right )) + (uuid 2ef225f4-8bbf-24b3-e790-a89e69ba1b10) + ) + + (global_label "USB+" (shape passive) (at 55.88 116.84 180) + (effects (font (size 0.762 0.762)) (justify right )) + (uuid 563e739f-233f-d878-3b53-039e109b8096) + ) + + (label "Vin" (at 45.72 87.63 0) + (effects (font (size 0.762 0.762)) (justify left bottom )) + (uuid d6b8664c-98c3-84c5-34cc-867d6202da10) + ) + + (symbol (lib_id "Generic_Mounting_Hole") (at 74.93 62.23 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3d4a288b-c27b-20ea-eeba-e018ecd7323e) + (property "Reference" "U1" (id 0) (at 72.39 60.325 0.0) (effects (font (size 0.762 0.762)) (justify right ))) + (property "Value" "" (id 1) (at 74.93 62.23 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:NPTH" (id 2) (at 74.93 62.23 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (at 74.93 62.23 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "hole" (id 4) (at 74.93 62.23 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "2.3mm mounting hole" (id 5) (at 74.93 62.23 0.0) (effects (font (size 0.762 0.762)) hide)) + + + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "U1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_resistor_5") (at 50.8 144.78 180.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid b0520205-a0b3-d844-6465-08d72f29a616) + (property "Reference" "R9" (id 0) (at 49.53 143.51 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "5K1" (id 1) (at 49.53 146.05 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402" (id 2) (at 50.8 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://industrial.panasonic.com/cdbs/www-data/pdf/RDM0000/AOA0000C307.pdf" (id 3) (at 50.8 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "usb_rid" (id 4) (at 50.8 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "RES SMD 5.1K OHM 0.5% 1/16W 0402" (id 5) (at 50.8 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Panasonic Electronic Components" (id 6) (at 50.8 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "ERA-2AED512X" (id 7) (at 50.8 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "R" (id 8) (at 50.8 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 65d5f996-569e-3649-6441-9002494dd854)) + (pin "2" (uuid fff44b48-653f-4eaa-ea47-34c8062970cd)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "R9") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "Generic_Mounting_Hole") (at 74.93 58.42 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid e15b9077-b3ae-744d-0be4-8f31a545f13c) + (property "Reference" "U2" (id 0) (at 72.39 56.515 0.0) (effects (font (size 0.762 0.762)) (justify right ))) + (property "Value" "" (id 1) (at 74.93 58.42 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:NPTH" (id 2) (at 74.93 58.42 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (at 74.93 58.42 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "hole" (id 4) (at 74.93 58.42 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "2.3mm mounting hole" (id 5) (at 74.93 58.42 0.0) (effects (font (size 0.762 0.762)) hide)) + + + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "U2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "JITX") (at 72.39 73.66 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f5f48572-76ad-8026-bb32-b14e853729f8) + (property "Reference" "JITX1" (id 0) (at 69.85 69.758 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Value" "non-BOM" (id 1) (at 69.85 70.82 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Footprint" "jitx-design:JITX_SM_LP" (id 2) (at 72.39 73.66 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (at 72.39 73.66 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "logo" (id 4) (at 72.39 73.66 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "JITX Logo" (id 5) (at 72.39 73.66 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "non-BOM" (id 6) (at 72.39 73.66 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "non-BOM" (id 7) (at 72.39 73.66 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "JITX" (id 8) (at 72.39 73.66 0.0) (effects (font (size 0.762 0.762)) hide)) + + + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "JITX1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor_1") (at 121.92 144.78 180.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 12b93713-6ac2-5f48-55a0-facf50353923) + (property "Reference" "C3" (id 0) (at 120.65 143.51 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "100n" (id 1) (at 120.65 146.05 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_4" (id 2) (at 121.92 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "//media.digikey.com/pdf/Data%20Sheets/Samsung%20PDFs/CL05A104KA5NNNC.pdf" (id 3) (at 121.92 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "reg_cap" (id 4) (at 121.92 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Samsung Electro-Mechanics" (id 5) (at 121.92 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "CL05A104KA5NNNC" (id 6) (at 121.92 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 121.92 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C100072" (id 8) (at 121.92 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 7d33cf2d-9f6d-923e-58bd-cd7e8a40c6bc)) + (pin "2" (uuid c8fa8d5e-8172-c9fc-d680-ee44e5dc0cc0)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "C3") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor_5") (at 93.98 144.78 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 6deb0713-28ab-4660-5ce3-8c724b3da3ba) + (property "Reference" "C1" (id 0) (at 95.25 143.51 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "100n" (id 1) (at 95.25 146.05 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_4" (id 2) (at 93.98 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "//media.digikey.com/pdf/Data%20Sheets/Samsung%20PDFs/CL05A104KA5NNNC.pdf" (id 3) (at 93.98 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "usb_cap" (id 4) (at 93.98 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Samsung Electro-Mechanics" (id 5) (at 93.98 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "CL05A104KA5NNNC" (id 6) (at 93.98 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 93.98 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C100072" (id 8) (at 93.98 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 564929e8-13e1-8fa4-f241-7860ead95d4a)) + (pin "2" (uuid 7d38f3f9-83ad-b850-abfd-10dd6f9f669f)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "C1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "C840338") (at 71.12 116.84 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid d5b762fb-1219-2d1d-65c6-e829e1971630) + (property "Reference" "USB1" (id 0) (at 71.12 98.599969519939 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Value" "TYPE-C-31-G-03" (id 1) (at 71.12 99.599969519939 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Footprint" "jitx-design:USB_C_SMD_TYPE_C_31_G_03" (id 2) (at 71.12 116.84 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://datasheet.lcsc.com/lcsc/2108131930_Korean-Hroparts-Elec-TYPE-C-31-G-03_C840338.pdf" (id 3) (at 71.12 116.84 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "usb_conn" (id 4) (at 71.12 116.84 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "1 Surface Mount Male Type-C SMD USB Connectors ROHS" (id 5) (at 71.12 116.84 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Korean Hroparts Elec" (id 6) (at 71.12 116.84 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "TYPE-C-31-G-03" (id 7) (at 71.12 116.84 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "USB" (id 8) (at 71.12 116.84 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C840338" (id 9) (at 71.12 116.84 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "GND0" (uuid 16630610-2461-fba9-4a82-085794c40bbb)) + (pin "GND1" (uuid 06ae2fdf-28f7-ba7b-4747-b7471603fbf4)) + (pin "GND2" (uuid 87b0f30b-dacb-32c9-a3c6-0a87f72dc10c)) + (pin "GND3" (uuid d544e771-9da8-b85f-9e91-fd52516e1977)) + (pin "GND4" (uuid 9c99caf7-2a08-51a9-1287-e68f5ed46d81)) + (pin "SSRXP1" (uuid 2e5fccd7-39bc-ddb5-a708-fa5cde4a4804)) + (pin "SSRXN1" (uuid fdf3b8d0-7f7b-38ef-82b3-ea5f07b86601)) + (pin "VBUS0" (uuid 4cf597b0-dcc9-3259-dabf-bf8d7d31c3be)) + (pin "GND5" (uuid 4dae7619-0810-83cc-3260-9c22c22d6d10)) + (pin "DN1" (uuid aa28c730-a714-7ed9-8c51-52c713cbc5ff)) + (pin "DP1" (uuid ac9a7ed1-b9fd-5fee-1df9-20f9485a61a3)) + (pin "CC1" (uuid f403c321-239d-d108-9a92-dc7a6084387c)) + (pin "VBUS1" (uuid 6b17cca8-1399-7ac1-d4c7-e64964e957be)) + (pin "SSTXN1" (uuid 47591e03-0a65-0bda-6b4e-766dae1d46cc)) + (pin "SSTXP1" (uuid dde381e2-dce8-3b6e-a518-81e61e8f7dff)) + (pin "GND6" (uuid 8b527076-d236-d87b-ab42-23cb4ebf8aa2)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "USB1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor_10") (at 118.11 144.78 180.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 98eaab0f-0545-3292-8deb-4e324908ff75) + (property "Reference" "C2" (id 0) (at 116.84 143.51 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "100n" (id 1) (at 116.84 146.05 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_4" (id 2) (at 118.11 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "//media.digikey.com/pdf/Data%20Sheets/Samsung%20PDFs/CL05A104KA5NNNC.pdf" (id 3) (at 118.11 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "reg_cap" (id 4) (at 118.11 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Samsung Electro-Mechanics" (id 5) (at 118.11 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "CL05A104KA5NNNC" (id 6) (at 118.11 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 118.11 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C100072" (id 8) (at 118.11 144.78 180.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 3c1979d5-abfa-d924-b28e-3dceaf95f8e7)) + (pin "2" (uuid 9db42cec-a446-1ee7-5369-e70f0eefdab2)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "C2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_resistor_7") (at 73.66 144.78 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 24eeb98f-1012-2f7b-d6c7-2f0de9df888c) + (property "Reference" "R1" (id 0) (at 74.93 143.51 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "100K" (id 1) (at 74.93 146.05 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402" (id 2) (at 73.66 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://www.yageo.com/upload/media/product/productsearch/datasheet/rchip/PYu-RC_Group_51_RoHS_L_11.pdf" (id 3) (at 73.66 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "usb_rid" (id 4) (at 73.66 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "RES SMD 100K OHM 0.5% 1/16W 0402" (id 5) (at 73.66 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "YAGEO" (id 6) (at 73.66 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "RC0402DR-07100KL" (id 7) (at 73.66 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "R" (id 8) (at 73.66 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C138080" (id 9) (at 73.66 144.78 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 1c30f77e-49f3-c453-24e9-fb15b257e9e3)) + (pin "2" (uuid 1839e880-bac2-c796-efd0-02e4f89bf430)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "R1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "C442601") (at 109.22 140.97 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 0562b750-03e8-fee7-fa34-0c7f97254869) + (property "Reference" "U3" (id 0) (at 109.22 135.42999491999 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Value" "BD433M5FP-CE2" (id 1) (at 109.22 136.42999491999 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Footprint" "jitx-design:TO_252_3_L6_5_W5_8_P4_58_BR" (id 2) (at 109.22 140.97 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (at 109.22 140.97 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "reg_reg" (id 4) (at 109.22 140.97 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "500mA 60dB@(120Hz) 750mV@(300mA) Fixed 3.3V~3.3V Positive 1 42V TO-252-3 Linear Voltage Regulators (LDO) ROHS" (id 5) (at 109.22 140.97 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "ROHM Semicon" (id 6) (at 109.22 140.97 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "BD433M5FP-CE2" (id 7) (at 109.22 140.97 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "U" (id 8) (at 109.22 140.97 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C442601" (id 9) (at 109.22 140.97 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "VCC" (uuid a8ed58be-3651-b7af-eb3d-3cf4929c8a02)) + (pin "FIN" (uuid 1d7c1211-cbfc-88ca-9258-d715ec844816)) + (pin "VOUT" (uuid cb18b9a4-f53e-56fa-2668-f434f88b0a34)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "U3") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "vdd50") (at 90.17 92.71 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid b69d8410-fb28-6d26-ef6f-d52da5da5a4a) + (property "Reference" "#PWR?" (id 0) (at 90.17 92.71 0) (effects hide)) + (property "Value" "vdd50" (id 1) (at 87.63 90.17 0.0) (effects (font (size 0.762 0.762)))) + (property "Footprint" "" (id 2) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (effects (font (size 0.762 0.762)) hide)) + (pin "~" (uuid eb95b405-70f6-9f33-f5c1-e8e4f07206c4)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "#PWR?") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "gnd") (at 49.53 149.86 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f0c93a30-bb0a-82ce-d44a-77ede6579c8a) + (property "Reference" "#PWR?" (id 0) (at 49.53 149.86 0) (effects hide)) + (property "Value" "gnd" (id 1) (at 46.99 152.4 0.0) (effects (font (size 0.762 0.762)))) + (property "Footprint" "" (id 2) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (effects (font (size 0.762 0.762)) hide)) + (pin "~" (uuid 60a25317-5391-1bae-38d0-a7550f78f7b5)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "#PWR?") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "vdd50") (at 118.11 132.08 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 48e4ec3c-69a6-2bd4-a1da-3dfdd4758cc8) + (property "Reference" "#PWR?" (id 0) (at 118.11 132.08 0) (effects hide)) + (property "Value" "vdd50" (id 1) (at 115.57 129.54 0.0) (effects (font (size 0.762 0.762)))) + (property "Footprint" "" (id 2) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (effects (font (size 0.762 0.762)) hide)) + (pin "~" (uuid b28b1c15-6212-23fe-f728-815d8b7219c5)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "#PWR?") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "vdd33") (at 121.92 140.97 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 81b24f8f-d5d9-d0ad-0e01-d45293633dd8) + (property "Reference" "#PWR?" (id 0) (at 121.92 140.97 0) (effects hide)) + (property "Value" "vdd33" (id 1) (at 119.38 138.43 0.0) (effects (font (size 0.762 0.762)))) + (property "Footprint" "" (id 2) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (effects (font (size 0.762 0.762)) hide)) + (pin "~" (uuid c952544b-9b69-b057-e066-809739c72d1f)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "#PWR?") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "vdd33") (at 99.06 132.08 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid fd970d56-4f6e-3f38-84e1-b8f8ce15f1ac) + (property "Reference" "#PWR?" (id 0) (at 99.06 132.08 0) (effects hide)) + (property "Value" "vdd33" (id 1) (at 96.52 129.54 0.0) (effects (font (size 0.762 0.762)))) + (property "Footprint" "" (id 2) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (effects (font (size 0.762 0.762)) hide)) + (pin "~" (uuid 4f5ef25e-0815-5853-ab7e-afaaf0f1eaab)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "#PWR?") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "gnd") (at 121.92 149.86 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid e3b3cc63-a6e5-c1a7-47ba-cb1e8eb7b486) + (property "Reference" "#PWR?" (id 0) (at 121.92 149.86 0) (effects hide)) + (property "Value" "gnd" (id 1) (at 119.38 152.4 0.0) (effects (font (size 0.762 0.762)))) + (property "Footprint" "" (id 2) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (effects (font (size 0.762 0.762)) hide)) + (pin "~" (uuid a46ae306-42e5-8e21-d28d-8728978b61cc)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/769e5753-ecff-ff7d-9bbd-16372ff6c879" + (reference "#PWR?") (unit 1) + ) + ) + ) + ) + +) diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design-3.kicad_sch b/sd_card_reader/designs/jitx-design/kicad/jitx-design-3.kicad_sch new file mode 100644 index 0000000..2ffc599 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design-3.kicad_sch @@ -0,0 +1,3122 @@ + +(kicad_sch + (version 20230121) + (generator jitx) + (uuid c46a72d5-bb3e-5017-7c9a-96775082d0c5) + (paper "A") + + + (lib_symbols + + (symbol "vdd50" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "vdd50" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "vdd50_1_0" + + (pin power_in line (at 0.0 0.0 90) (length 0.0) + (name "vdd50" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "gnd" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "gnd" (id 1) (at -2.54 -2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "gnd_1_0" + + (pin power_in line (at 0.0 0.0 270) (length 0.0) + (name "gnd" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 -1.27)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.27) (xy 1.27 -1.27)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.762 -1.778) (xy 0.762 -1.778)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.254 -2.286) (xy 0.254 -2.286)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "vdd33" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "vdd33" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "vdd33_1_0" + + (pin power_in line (at 0.0 0.0 90) (length 0.0) + (name "vdd33" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "test_point_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "test_point_sym" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "test_point_sym_1_0" + + (pin unspecified line (at 2.54 0.0 180) (length 0.0) + (name "p" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -0.635 0.0) (xy 2.54 0.0)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "unplated_hole_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "unplated_hole_sym" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "unplated_hole_sym_1_0" + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -1.27 0.0) (radius 1.143) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "BD433M5FP_CE2" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "BD433M5FP_CE2" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "BD433M5FP_CE2_1_0" + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 0.0 0) (length 2.54000508001016) + (name "FIN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "VOUT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ALTIUM_POWER_ARROW" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ALTIUM_POWER_ARROW" (id 1) (at 2.54 -0.508 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ALTIUM_POWER_ARROW_1_0" + + (pin unspecified line (at 0.0 0.0 0) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 1.27 0.0)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.794 0.0) (xy 1.27 0.762) (xy 1.27 -0.762) (xy 2.794 0.0)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "TYPE_C_31_G_03" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 18.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "TYPE_C_31_G_03" (id 1) (at 0.0 17.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "TYPE_C_31_G_03_1_0" + + (pin unspecified line (at 2.54 -22.86 90) (length 5.08001016002032) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -22.86 90) (length 5.08001016002032) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 2.54 20.32 270) (length 5.08001016002032) + (name "GND2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 20.32 270) (length 5.08001016002032) + (name "GND3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 12.7 180) (length 2.54000508001016) + (name "GND4" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 10.16 180) (length 2.54000508001016) + (name "SSRXP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 7.62 180) (length 2.54000508001016) + (name "SSRXN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 5.08 180) (length 2.54000508001016) + (name "VBUS0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 -15.24 0) (length 2.54000508001016) + (name "GND5" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 -2.54 0) (length 2.54000508001016) + (name "DN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 0.0 0) (length 2.54000508001016) + (name "DP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 2.54 0) (length 2.54000508001016) + (name "CC1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 5.08 0) (length 2.54000508001016) + (name "VBUS1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 7.62 0) (length 2.54000508001016) + (name "SSTXN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 10.16 0) (length 2.54000508001016) + (name "SSTXP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 12.7 0) (length 2.54000508001016) + (name "GND6" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -11.4300228600457 -17.7800355600711) (end 13.9700279400559 15.240030480061) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -10.1600203200406 13.9700279400559) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "JITX_symbol" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 3.902 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + + (property "Value" "JITX_symbol" (id 1) (at -2.54 2.84 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "JITX_symbol_1_0" + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045) (xy 10.64306775 2.736906) (xy 9.40420775 2.7367485) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 9.6444795 5.3075045) (xy 11.204365675778 7.41173405617841)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 11.204365675778 7.41173405617841) (mid 11.5715164132218 7.68647346428221) (end 12.02033525 7.780511) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 12.02033525 7.780511) (xy 10.7521741568897 7.77915244080762)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 10.7521741568897 7.77915244080762) (mid 10.3244289019203 7.71659474940583) (end 9.95883526617392 7.48589849585123) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.95883526617392 7.48589849585123) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 4.80545275 2.7367835) (xy 5.52213025 2.736801) (xy 6.09744275 6.006396) (xy 7.04751775 6.007796) (xy 7.17619525 6.746366) (xy 6.22827275 6.7467685) (xy 6.35336275 7.4639535) (xy 5.63701775 7.463901) (xy 4.80545275 2.7367835)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.81951158629631 7.46403410472138) (mid 4.56761122169657 7.38909574502682) (end 4.39731705832001 7.1889221969265) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.39731705832001 7.1889221969265) (xy 4.39731771337896 7.18892347769723)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.39731771337896 7.18892347769723) (mid 4.37903669579069 6.93835280018836) (end 4.54329029777422 6.74824595058332) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.54329029777422 6.74824595058332) (xy 4.54329042972881 6.74824604286013)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.54329042972881 6.74824604286013) (mid 4.8347064457627 6.7584952028342) (end 5.05014573460892 6.95500029819479) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.05014573460892 6.95500029819479) (xy 5.0501454400865 6.95500033093321)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 5.0501454400865 6.95500033093321) (mid 5.11292088648779 7.19473733498076) (end 4.98779016906679 7.4086459400865) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.98779016906679 7.4086459400865) (xy 4.98779016800714 7.40864611461444)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.98779016800714 7.40864611461444) (mid 4.90690057503162 7.44621327349144) (end 4.81951161284777 7.46403424333775) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.81951161284777 7.46403424333775) (xy 4.81951158629631 7.46403410472138)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 3.89443775 6.3231635) (xy 3.17699025 6.3231985)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.17699025 6.3231985) (xy 2.52209151060913 2.60191506576061)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 2.52209151060913 2.60191506576061) (mid 2.05675349031717 1.92653195318543) (end 1.2808715 1.660658) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 1.2808715 1.660658) (xy 1.16204986761718 0.946150157081704)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 1.16204986761718 0.946150157081704) (mid 2.47433952610446 1.46740670189427) (end 3.24900260539611 2.64796150657934) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.24900260539611 2.64796150657934) (xy 3.89443775 6.3231635)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.6536755 2.739566) (mid 4.47355971115545 2.84819051977396) (end 4.42300775 3.05236075) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.42300775 3.05236075) (xy 4.93274772036982 5.99834598533872)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.93274772036982 5.99834598533872) (mid 4.87164254214732 6.21359196465728) (end 4.67623276466128 6.32258597036982) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.67623276466128 6.32258597036982) (xy 4.03524193183806 6.32123973631567)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.03524193183806 6.32123973631567) (mid 4.22213158850411 6.21328643348833) (end 4.27976525 6.005296) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.27976525 6.005296) (xy 3.7661802699951 3.02495606296363)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 3.7661802699951 3.02495606296363) (mid 3.84086820737184 2.8260933338554) (end 4.03429774834461 2.73828851794516) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.03429774834461 2.73828851794516) (xy 4.6536755 2.739566)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.6444795 5.3075045) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 8.68532525 7.776591)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.68532525 7.776591) (xy 7.36731275 7.777781)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 7.36731275 7.777781) (xy 8.31381775 5.253301)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.31381775 5.253301) (xy 6.69911401210568 3.12239450877699)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 6.69911401210568 3.12239450877699) (mid 6.34438927313888 2.86083653042072) (end 5.92142775 2.7369585) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.92142775 2.7369585) (xy 7.20697795987015 2.73714213727357)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 7.20697795987015 2.73714213727357) (mid 7.6509829133912 2.835530220617) (end 8.01080546865927 3.11364592030973) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.01080546865927 3.11364592030973) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ALTIUM_POWER_GND_POWER" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ALTIUM_POWER_GND_POWER" (id 1) (at 2.54 -1.016 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ALTIUM_POWER_GND_POWER_1_0" + + (pin unspecified line (at 0.0 0.0 0) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 1.27 0.0)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -1.397) (xy 1.27 1.397)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.69545 -1.0922) (xy 1.69545 1.0922)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.11455 -0.762) (xy 2.11455 0.762)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.54 -0.4572) (xy 2.54 0.4572)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "SD_101" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 20.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "SD_101" (id 1) (at 0.0 19.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "SD_101_1_0" + + (pin unspecified line (at -16.51 17.78 0) (length 2.54000508001016) + (name "CD_DAT3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 15.24 0) (length 2.54000508001016) + (name "CMD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 12.7 0) (length 2.54000508001016) + (name "VSS1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 10.16 0) (length 2.54000508001016) + (name "VDD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 7.62 0) (length 2.54000508001016) + (name "CLK" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 5.08 0) (length 2.54000508001016) + (name "VSS2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 2.54 0) (length 2.54000508001016) + (name "DAT0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 0.0 0) (length 2.54000508001016) + (name "DAT1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -2.54 0) (length 2.54000508001016) + (name "DAT2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -5.08 0) (length 2.54000508001016) + (name "CD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -7.62 0) (length 2.54000508001016) + (name "WP" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -10.16 0) (length 2.54000508001016) + (name "SHELL0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -12.7 0) (length 2.54000508001016) + (name "SHELL1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -15.24 0) (length 2.54000508001016) + (name "SHELL2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -17.78 0) (length 2.54000508001016) + (name "SHELL3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -13.9700279400559 -20.3200406400813) (end 16.510033020066 20.3200406400813) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -13.3350266700533 19.6850393700787) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "M24C04_WMN6TP" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 6.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "M24C04_WMN6TP" (id 1) (at 0.0 5.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "M24C04_WMN6TP_1_0" + + (pin unspecified line (at -10.16 3.81 0) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 1.27 0) (length 2.54000508001016) + (name "E1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 -1.27 0) (length 2.54000508001016) + (name "E2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 -3.81 0) (length 2.54000508001016) + (name "VSS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 -3.81 180) (length 2.54000508001016) + (name "SDA" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 -1.27 180) (length 2.54000508001016) + (name "SCL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 1.27 180) (length 2.54000508001016) + (name "WC_NOT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 3.81 180) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -7.62001524003048 -6.85801371602743) (end 7.62001524003048 6.85801371602743) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "Sym7B024000Q01" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "Sym7B024000Q01" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "Sym7B024000Q01_1_0" + + (pin unspecified line (at 7.62 -2.54 180) (length 2.54000508001016) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 7.62 2.54 180) (length 2.54000508001016) + (name "OUT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "IN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -0.508001016002032 -1.77800355600711) (end 0.508001016002032 1.77800355600711) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 -3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 5.08001016002032 2.54000508001016) (xy 2.54000508001016 2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 2.54000508001016) (xy 2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 -0.0) (xy 1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -5.08001016002032 -2.54000508001016) (xy -2.54000508001016 -2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -2.54000508001016) (xy -2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -0.0) (xy -1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27000254000508 -1.77800355600711) (xy 1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -1.27000254000508 -1.77800355600711) (xy -1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "diode_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "diode_sym" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "diode_sym_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "a" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "c" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (circle (center 0.0 0.0) (radius 1.905) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27 0.254) (xy 2.286 -0.762)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -0.508) (xy 2.286 -1.524)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -0.762) (xy 2.286 -0.762) (xy 2.286 -0.381)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -1.524) (xy 2.286 -1.524) (xy 2.286 -1.143)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 2.54) (xy 0.0 1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.016) (xy 1.27 1.016) (xy -1.27 1.016) (xy 0.0 -1.016)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.016) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.016) (xy 1.27 -1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "supply_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "supply_sym" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "supply_sym_1_0" + + (pin unspecified line (at 0.0 0.0 90) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ground_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ground_sym" (id 1) (at -2.54 -2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ground_sym_1_0" + + (pin unspecified line (at 0.0 0.0 270) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 -1.27)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.27) (xy 1.27 -1.27)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.762 -1.778) (xy 0.762 -1.778)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.254 -2.286) (xy 0.254 -2.286)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + + (property "Value" "" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.5 0.5)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.5 0.5)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "capacitor_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "capacitor_sym" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "capacitor_sym_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "USB2240_AEZG_06" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 25.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "USB2240_AEZG_06" (id 1) (at 0.0 24.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "USB2240_AEZG_06_1_0" + + (pin unspecified line (at -39.37 20.32 0) (length 2.54000508001016) + (name "LED" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 17.78 0) (length 2.54000508001016) + (name "USB+" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 15.24 0) (length 2.54000508001016) + (name "USB-" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 12.7 0) (length 2.54000508001016) + (name "xD_D3_SD_D1_MS_D5" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 10.16 0) (length 2.54000508001016) + (name "xD_D2_SD_D0_MS_D4" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 7.62 0) (length 2.54000508001016) + (name "VDD330" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 5.08 0) (length 2.54000508001016) + (name "xD_D1_SD_D7_MS_D6" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 2.54 0) (length 2.54000508001016) + (name "xD_D0_SD_D6_MS_D7" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 0.0 0) (length 2.54000508001016) + (name "xD_nWP_SD_CLK_MS_BS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -2.54 0) (length 2.54000508001016) + (name "xD_ALE_SD_D5_MS_D1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -5.08 0) (length 2.54000508001016) + (name "xD_CLE_SD_CMD_MS_D0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -7.62 0) (length 2.54000508001016) + (name "xD_nWE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -10.16 0) (length 2.54000508001016) + (name "VDD18" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -12.7 0) (length 2.54000508001016) + (name "VDD331" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -15.24 0) (length 2.54000508001016) + (name "xD_nCE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -17.78 0) (length 2.54000508001016) + (name "xD_nRE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -20.32 0) (length 2.54000508001016) + (name "xD_nB_R" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -22.86 0) (length 2.54000508001016) + (name "RESET_N" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -22.86 180) (length 2.54000508001016) + (name "xD_nCD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -20.32 180) (length 2.54000508001016) + (name "xD_D7_SD_D4_MS_D2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -17.78 180) (length 2.54000508001016) + (name "CRD_PWR" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -15.24 180) (length 2.54000508001016) + (name "VDD332" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -12.7 180) (length 2.54000508001016) + (name "xD_D6_SD_D3_MS_D3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -10.16 180) (length 2.54000508001016) + (name "MS_INS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -7.62 180) (length 2.54000508001016) + (name "xD_D5_SD_D2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -5.08 180) (length 2.54000508001016) + (name "SD_nCD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -2.54 180) (length 2.54000508001016) + (name "RXD_SDA" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 0.0 180) (length 2.54000508001016) + (name "TEST" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 2.54 180) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 5.08 180) (length 2.54000508001016) + (name "xD_D4_SD_WP_MS_SCLK" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 7.62 180) (length 2.54000508001016) + (name "TXD_SCK_MS_SKT_SEL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 10.16 180) (length 2.54000508001016) + (name "XTAL2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 12.7 180) (length 2.54000508001016) + (name "XTAL1_CLKIN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 15.24 180) (length 2.54000508001016) + (name "VDD18PLL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 17.78 180) (length 2.54000508001016) + (name "RBIAS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 20.32 180) (length 2.54000508001016) + (name "VDDA33" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 22.86 180) (length 2.54000508001016) + (name "GND" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -36.8300736601473 -25.4000508001016) (end 36.8300736601473 25.4000508001016) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -35.5600711201422 21.5900431800864) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "resistor_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "resistor_sym" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "resistor_sym_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "gen_testpad" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "gen_testpad" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "gen_testpad_1_0" + + (pin unspecified line (at 2.54 0.0 180) (length 0.0) + (name "p" (effects (font (size 0.0 0.0)))) + (number "tp" (effects (font (size 0.0 0.0)))) + ) + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -0.635 0.0) (xy 2.54 0.0)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "JITX" + (in_bom yes) (on_board yes) + + (property "Reference" "JITX" (id 0) (at -2.54 3.902 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + + (property "Value" "JITX" (id 1) (at -2.54 2.84 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "JITX_1_0" + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045) (xy 10.64306775 2.736906) (xy 9.40420775 2.7367485) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 9.6444795 5.3075045) (xy 11.204365675778 7.41173405617841)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 11.204365675778 7.41173405617841) (mid 11.5715164132218 7.68647346428221) (end 12.02033525 7.780511) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 12.02033525 7.780511) (xy 10.7521741568897 7.77915244080762)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 10.7521741568897 7.77915244080762) (mid 10.3244289019203 7.71659474940583) (end 9.95883526617392 7.48589849585123) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.95883526617392 7.48589849585123) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 4.80545275 2.7367835) (xy 5.52213025 2.736801) (xy 6.09744275 6.006396) (xy 7.04751775 6.007796) (xy 7.17619525 6.746366) (xy 6.22827275 6.7467685) (xy 6.35336275 7.4639535) (xy 5.63701775 7.463901) (xy 4.80545275 2.7367835)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.81951158629631 7.46403410472138) (mid 4.56761122169657 7.38909574502682) (end 4.39731705832001 7.1889221969265) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.39731705832001 7.1889221969265) (xy 4.39731771337896 7.18892347769723)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.39731771337896 7.18892347769723) (mid 4.37903669579069 6.93835280018836) (end 4.54329029777422 6.74824595058332) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.54329029777422 6.74824595058332) (xy 4.54329042972881 6.74824604286013)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.54329042972881 6.74824604286013) (mid 4.8347064457627 6.7584952028342) (end 5.05014573460892 6.95500029819479) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.05014573460892 6.95500029819479) (xy 5.0501454400865 6.95500033093321)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 5.0501454400865 6.95500033093321) (mid 5.11292088648779 7.19473733498076) (end 4.98779016906679 7.4086459400865) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.98779016906679 7.4086459400865) (xy 4.98779016800714 7.40864611461444)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.98779016800714 7.40864611461444) (mid 4.90690057503162 7.44621327349144) (end 4.81951161284777 7.46403424333775) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.81951161284777 7.46403424333775) (xy 4.81951158629631 7.46403410472138)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 3.89443775 6.3231635) (xy 3.17699025 6.3231985)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.17699025 6.3231985) (xy 2.52209151060913 2.60191506576061)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 2.52209151060913 2.60191506576061) (mid 2.05675349031717 1.92653195318543) (end 1.2808715 1.660658) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 1.2808715 1.660658) (xy 1.16204986761718 0.946150157081704)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 1.16204986761718 0.946150157081704) (mid 2.47433952610446 1.46740670189427) (end 3.24900260539611 2.64796150657934) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.24900260539611 2.64796150657934) (xy 3.89443775 6.3231635)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.6536755 2.739566) (mid 4.47355971115545 2.84819051977396) (end 4.42300775 3.05236075) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.42300775 3.05236075) (xy 4.93274772036982 5.99834598533872)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.93274772036982 5.99834598533872) (mid 4.87164254214732 6.21359196465728) (end 4.67623276466128 6.32258597036982) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.67623276466128 6.32258597036982) (xy 4.03524193183806 6.32123973631567)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.03524193183806 6.32123973631567) (mid 4.22213158850411 6.21328643348833) (end 4.27976525 6.005296) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.27976525 6.005296) (xy 3.7661802699951 3.02495606296363)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 3.7661802699951 3.02495606296363) (mid 3.84086820737184 2.8260933338554) (end 4.03429774834461 2.73828851794516) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.03429774834461 2.73828851794516) (xy 4.6536755 2.739566)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.6444795 5.3075045) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 8.68532525 7.776591)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.68532525 7.776591) (xy 7.36731275 7.777781)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 7.36731275 7.777781) (xy 8.31381775 5.253301)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.31381775 5.253301) (xy 6.69911401210568 3.12239450877699)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 6.69911401210568 3.12239450877699) (mid 6.34438927313888 2.86083653042072) (end 5.92142775 2.7369585) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.92142775 2.7369585) (xy 7.20697795987015 2.73714213727357)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 7.20697795987015 2.73714213727357) (mid 7.6509829133912 2.835530220617) (end 8.01080546865927 3.11364592030973) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.01080546865927 3.11364592030973) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_1" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_1" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_1_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_2" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_2" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_2_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C118280" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 6.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C118280" (id 1) (at 0.0 5.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C118280_1_0" + + (pin unspecified line (at -10.16 3.81 0) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 1.27 0) (length 2.54000508001016) + (name "E1" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 -1.27 0) (length 2.54000508001016) + (name "E2" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 -3.81 0) (length 2.54000508001016) + (name "VSS" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 -3.81 180) (length 2.54000508001016) + (name "SDA" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 -1.27 180) (length 2.54000508001016) + (name "SCL" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 1.27 180) (length 2.54000508001016) + (name "WC_NOT" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 3.81 180) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -7.62001524003048 -6.85801371602743) (end 7.62001524003048 6.85801371602743) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_3" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_3" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_3_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C442601" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C442601" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C442601_1_0" + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 0.0 0) (length 2.54000508001016) + (name "FIN" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "VOUT" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "LED_maker_ROYGBIV" + (in_bom yes) (on_board yes) + + (property "Reference" "LED" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "LED_maker_ROYGBIV" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "LED_maker_ROYGBIV_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "a" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "c" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (circle (center 0.0 0.0) (radius 1.905) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27 0.254) (xy 2.286 -0.762)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -0.508) (xy 2.286 -1.524)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -0.762) (xy 2.286 -0.762) (xy 2.286 -0.381)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -1.524) (xy 2.286 -1.524) (xy 2.286 -1.143)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 2.54) (xy 0.0 1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.016) (xy 1.27 1.016) (xy -1.27 1.016) (xy 0.0 -1.016)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.016) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.016) (xy 1.27 -1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_4" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_4" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_4_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_1" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_1" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_1_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_5" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_5" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_5_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C654991" + (in_bom yes) (on_board yes) + + (property "Reference" "X" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C654991" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C654991_1_0" + + (pin unspecified line (at 7.62 -2.54 180) (length 2.54000508001016) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 7.62 2.54 180) (length 2.54000508001016) + (name "OUT" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "IN" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -0.508001016002032 -1.77800355600711) (end 0.508001016002032 1.77800355600711) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 -3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 5.08001016002032 2.54000508001016) (xy 2.54000508001016 2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 2.54000508001016) (xy 2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 -0.0) (xy 1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -5.08001016002032 -2.54000508001016) (xy -2.54000508001016 -2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -2.54000508001016) (xy -2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -0.0) (xy -1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27000254000508 -1.77800355600711) (xy 1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -1.27000254000508 -1.77800355600711) (xy -1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "C840338" + (in_bom yes) (on_board yes) + + (property "Reference" "USB" (id 0) (at 0.0 18.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C840338" (id 1) (at 0.0 17.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C840338_1_0" + + (pin unspecified line (at 2.54 -22.86 90) (length 5.08001016002032) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 0.0 -22.86 90) (length 5.08001016002032) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 2.54 20.32 270) (length 5.08001016002032) + (name "GND2" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 0.0 20.32 270) (length 5.08001016002032) + (name "GND3" (effects (font (size 1.0 1.0)))) + (number "16" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 12.7 180) (length 2.54000508001016) + (name "GND4" (effects (font (size 1.0 1.0)))) + (number "B12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 10.16 180) (length 2.54000508001016) + (name "SSRXP1" (effects (font (size 1.0 1.0)))) + (number "B11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 7.62 180) (length 2.54000508001016) + (name "SSRXN1" (effects (font (size 1.0 1.0)))) + (number "B10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 5.08 180) (length 2.54000508001016) + (name "VBUS0" (effects (font (size 1.0 1.0)))) + (number "B9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 -15.24 0) (length 2.54000508001016) + (name "GND5" (effects (font (size 1.0 1.0)))) + (number "A12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 -2.54 0) (length 2.54000508001016) + (name "DN1" (effects (font (size 1.0 1.0)))) + (number "A7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 0.0 0) (length 2.54000508001016) + (name "DP1" (effects (font (size 1.0 1.0)))) + (number "A6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 2.54 0) (length 2.54000508001016) + (name "CC1" (effects (font (size 1.0 1.0)))) + (number "A5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 5.08 0) (length 2.54000508001016) + (name "VBUS1" (effects (font (size 1.0 1.0)))) + (number "A4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 7.62 0) (length 2.54000508001016) + (name "SSTXN1" (effects (font (size 1.0 1.0)))) + (number "A3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 10.16 0) (length 2.54000508001016) + (name "SSTXP1" (effects (font (size 1.0 1.0)))) + (number "A2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 12.7 0) (length 2.54000508001016) + (name "GND6" (effects (font (size 1.0 1.0)))) + (number "A1" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -11.4300228600457 -17.7800355600711) (end 13.9700279400559 15.240030480061) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -10.1600203200406 13.9700279400559) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_6" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_6" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_6_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C266601" + (in_bom yes) (on_board yes) + + (property "Reference" "Card" (id 0) (at 0.0 20.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C266601" (id 1) (at 0.0 19.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C266601_1_0" + + (pin unspecified line (at -16.51 17.78 0) (length 2.54000508001016) + (name "CD_DAT3" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 15.24 0) (length 2.54000508001016) + (name "CMD" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 12.7 0) (length 2.54000508001016) + (name "VSS1" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 10.16 0) (length 2.54000508001016) + (name "VDD" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 7.62 0) (length 2.54000508001016) + (name "CLK" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 5.08 0) (length 2.54000508001016) + (name "VSS2" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 2.54 0) (length 2.54000508001016) + (name "DAT0" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 0.0 0) (length 2.54000508001016) + (name "DAT1" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -2.54 0) (length 2.54000508001016) + (name "DAT2" (effects (font (size 1.0 1.0)))) + (number "9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -5.08 0) (length 2.54000508001016) + (name "CD" (effects (font (size 1.0 1.0)))) + (number "10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -7.62 0) (length 2.54000508001016) + (name "WP" (effects (font (size 1.0 1.0)))) + (number "11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -10.16 0) (length 2.54000508001016) + (name "SHELL0" (effects (font (size 1.0 1.0)))) + (number "12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -12.7 0) (length 2.54000508001016) + (name "SHELL1" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -15.24 0) (length 2.54000508001016) + (name "SHELL2" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -17.78 0) (length 2.54000508001016) + (name "SHELL3" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -13.9700279400559 -20.3200406400813) (end 16.510033020066 20.3200406400813) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -13.3350266700533 19.6850393700787) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor_2" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_2" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_2_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C174142" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + + (property "Value" "C174142" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C174142_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.5 0.5)))) + (number "1" (effects (font (size 0.5 0.5)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.5 0.5)))) + (number "2" (effects (font (size 0.5 0.5)))) + ) + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor_3" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_3" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_3_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_7" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_7" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_7_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_8" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_8" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_8_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_4" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_4" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_4_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_5" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_5" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_5_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C633328" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 25.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C633328" (id 1) (at 0.0 24.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C633328_1_0" + + (pin unspecified line (at -39.37 20.32 0) (length 2.54000508001016) + (name "LED" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 17.78 0) (length 2.54000508001016) + (name "USB+" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 15.24 0) (length 2.54000508001016) + (name "USB-" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 12.7 0) (length 2.54000508001016) + (name "xD_D3_SD_D1_MS_D5" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 10.16 0) (length 2.54000508001016) + (name "xD_D2_SD_D0_MS_D4" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 7.62 0) (length 2.54000508001016) + (name "VDD330" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 5.08 0) (length 2.54000508001016) + (name "xD_D1_SD_D7_MS_D6" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 2.54 0) (length 2.54000508001016) + (name "xD_D0_SD_D6_MS_D7" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 0.0 0) (length 2.54000508001016) + (name "xD_nWP_SD_CLK_MS_BS" (effects (font (size 1.0 1.0)))) + (number "9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -2.54 0) (length 2.54000508001016) + (name "xD_ALE_SD_D5_MS_D1" (effects (font (size 1.0 1.0)))) + (number "10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -5.08 0) (length 2.54000508001016) + (name "xD_CLE_SD_CMD_MS_D0" (effects (font (size 1.0 1.0)))) + (number "11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -7.62 0) (length 2.54000508001016) + (name "xD_nWE" (effects (font (size 1.0 1.0)))) + (number "12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -10.16 0) (length 2.54000508001016) + (name "VDD18" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -12.7 0) (length 2.54000508001016) + (name "VDD331" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -15.24 0) (length 2.54000508001016) + (name "xD_nCE" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -17.78 0) (length 2.54000508001016) + (name "xD_nRE" (effects (font (size 1.0 1.0)))) + (number "16" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -20.32 0) (length 2.54000508001016) + (name "xD_nB_R" (effects (font (size 1.0 1.0)))) + (number "17" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -22.86 0) (length 2.54000508001016) + (name "RESET_N" (effects (font (size 1.0 1.0)))) + (number "18" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -22.86 180) (length 2.54000508001016) + (name "xD_nCD" (effects (font (size 1.0 1.0)))) + (number "19" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -20.32 180) (length 2.54000508001016) + (name "xD_D7_SD_D4_MS_D2" (effects (font (size 1.0 1.0)))) + (number "20" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -17.78 180) (length 2.54000508001016) + (name "CRD_PWR" (effects (font (size 1.0 1.0)))) + (number "21" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -15.24 180) (length 2.54000508001016) + (name "VDD332" (effects (font (size 1.0 1.0)))) + (number "22" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -12.7 180) (length 2.54000508001016) + (name "xD_D6_SD_D3_MS_D3" (effects (font (size 1.0 1.0)))) + (number "23" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -10.16 180) (length 2.54000508001016) + (name "MS_INS" (effects (font (size 1.0 1.0)))) + (number "24" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -7.62 180) (length 2.54000508001016) + (name "xD_D5_SD_D2" (effects (font (size 1.0 1.0)))) + (number "25" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -5.08 180) (length 2.54000508001016) + (name "SD_nCD" (effects (font (size 1.0 1.0)))) + (number "26" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -2.54 180) (length 2.54000508001016) + (name "RXD_SDA" (effects (font (size 1.0 1.0)))) + (number "27" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 0.0 180) (length 2.54000508001016) + (name "TEST" (effects (font (size 1.0 1.0)))) + (number "28" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 2.54 180) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "29" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 5.08 180) (length 2.54000508001016) + (name "xD_D4_SD_WP_MS_SCLK" (effects (font (size 1.0 1.0)))) + (number "30" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 7.62 180) (length 2.54000508001016) + (name "TXD_SCK_MS_SKT_SEL" (effects (font (size 1.0 1.0)))) + (number "31" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 10.16 180) (length 2.54000508001016) + (name "XTAL2" (effects (font (size 1.0 1.0)))) + (number "32" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 12.7 180) (length 2.54000508001016) + (name "XTAL1_CLKIN" (effects (font (size 1.0 1.0)))) + (number "33" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 15.24 180) (length 2.54000508001016) + (name "VDD18PLL" (effects (font (size 1.0 1.0)))) + (number "34" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 17.78 180) (length 2.54000508001016) + (name "RBIAS" (effects (font (size 1.0 1.0)))) + (number "35" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 20.32 180) (length 2.54000508001016) + (name "VDDA33" (effects (font (size 1.0 1.0)))) + (number "36" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 22.86 180) (length 2.54000508001016) + (name "GND" (effects (font (size 1.0 1.0)))) + (number "37" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -36.8300736601473 -25.4000508001016) (end 36.8300736601473 25.4000508001016) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -35.5600711201422 21.5900431800864) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_9" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_9" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_9_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_6" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_6" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_6_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_7" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_7" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_7_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "Generic_Mounting_Hole" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "Generic_Mounting_Hole" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "Generic_Mounting_Hole_1_0" + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -1.27 0.0) (radius 1.143) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_10" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_10" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_10_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_11" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_11" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_11_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_12" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_12" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_12_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + ) + (wire (pts (xy 73.66 25.4) (xy 73.66 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 42a30956-f3ab-475f-49f3-44c71dcf7b60)) + (wire (pts (xy 71.12 25.4) (xy 71.12 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid d06d155a-6c1a-f92c-3e2e-76aeb4bf210d)) + (wire (pts (xy 68.58 25.4) (xy 68.58 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid fbbeeeb4-0104-00b9-3dd0-f7d89f650b31)) + (wire (pts (xy 66.04 25.4) (xy 66.04 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 17535ee2-777d-3777-34df-539b551ac14e)) + (wire (pts (xy 63.5 25.4) (xy 63.5 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 73addc8a-b4ae-ca47-a26a-c8a9f82987e5)) + (wire (pts (xy 60.96 25.4) (xy 60.96 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 256b5ab9-7b74-29e4-9c1a-925ad42a7517)) + (wire (pts (xy 58.42 25.4) (xy 58.42 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 6d44023b-ce9c-88ef-63bb-e7ac3c4d1132)) + (wire (pts (xy 55.88 25.4) (xy 55.88 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid cfbaf4af-9df4-0b0b-0637-527e20c907bb)) + (wire (pts (xy 53.34 25.4) (xy 53.34 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid b0381874-e6c9-645c-25af-c7d3b3cdf9fe)) + (wire (pts (xy 50.8 25.4) (xy 50.8 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 43a15b6e-0012-d248-4150-58bc673894b6)) + (wire (pts (xy 48.26 25.4) (xy 48.26 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 305cbae5-bbce-800d-5009-7034988a1c8b)) + (wire (pts (xy 45.72 25.4) (xy 45.72 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid dde3acd8-bf23-e50b-01ca-c9e7399fa132)) + (wire (pts (xy 43.18 25.4) (xy 43.18 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 31eedf15-8866-a387-33d0-b71e16dadf6e)) + (wire (pts (xy 40.64 25.4) (xy 40.64 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid c750bcbe-402b-5f9c-68c1-223ea6228c1e)) + (wire (pts (xy 38.1 25.4) (xy 38.1 24.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 97366ae4-9da9-6fe4-9554-2692f6a87381)) + (wire (pts (xy 29.21 91.44) (xy 49.53 91.44)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 86b6769d-22de-7968-2874-421f099e40fc)) + (wire (pts (xy 29.21 8.89) (xy 58.42 8.89)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid b3615f54-6266-d1c9-ec31-6a931412fb4b)) + (wire (pts (xy 58.42 24.13) (xy 58.42 8.89)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 3eabe863-66ad-41db-d0cb-e70314a449a8)) + (wire (pts (xy 29.21 91.44) (xy 29.21 8.89)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 0aff7fc6-1edc-cd83-b31c-0c91081c0e66)) + (wire (pts (xy 44.45 60.96) (xy 132.08 60.96)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid d6fb66ac-0fd2-4176-dc63-132b3c989a13)) + (wire (pts (xy 128.27 81.28) (xy 132.08 81.28)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid d981c7ba-56c0-e5c3-39c6-72ecc25918d7)) + (wire (pts (xy 46.99 93.98) (xy 49.53 93.98)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid cb0814e2-171f-6c58-5a40-1e80462634ac)) + (wire (pts (xy 46.99 114.3) (xy 49.53 114.3)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid b40674b8-676b-13ea-e9e9-86a0a584c078)) + (wire (pts (xy 128.27 116.84) (xy 132.08 116.84)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 521ab83c-0927-0423-9fb4-62ff44d7aabc)) + (wire (pts (xy 104.14 19.05) (xy 132.08 19.05)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 8c0baa44-2dbc-e77b-3e7a-44b9819276a7)) + (wire (pts (xy 100.33 25.4) (xy 101.6 25.4)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid e6379c49-dd78-3982-ee2e-82c55ac7d09a)) + (wire (pts (xy 185.42 62.23) (xy 185.42 8.89)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 396d7780-097b-062d-ce0f-43e9524eb2ec)) + (wire (pts (xy 151.13 73.66) (xy 151.13 62.23)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 6398f08c-0001-cc41-4b06-7456f9edd5da)) + (wire (pts (xy 146.05 72.39) (xy 146.05 62.23)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid e2fa1691-d655-b59e-fcfe-e709c0212de2)) + (wire (pts (xy 132.08 116.84) (xy 132.08 19.05)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 294ca8a1-3458-f4fd-7040-f80d4ef2f541)) + (wire (pts (xy 119.38 60.96) (xy 119.38 59.69)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 218e2876-868e-496c-8359-780191896fae)) + (wire (pts (xy 115.57 60.96) (xy 115.57 59.69)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 14f8343d-bf65-6bf6-4bcf-987431fddab2)) + (wire (pts (xy 111.76 60.96) (xy 111.76 59.69)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 81cce0b4-e292-0a39-164d-b35852846111)) + (wire (pts (xy 107.95 60.96) (xy 107.95 59.69)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 688a77d9-eb6b-b925-bed7-0e1c90813f1a)) + (wire (pts (xy 104.14 21.59) (xy 104.14 19.05)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid f60f2307-92d5-6a19-5f75-95ab8023a72d)) + (wire (pts (xy 101.6 60.96) (xy 101.6 25.4)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 1cc39c3b-dd27-b8e8-4b12-383953f50332)) + (wire (pts (xy 46.99 114.3) (xy 46.99 60.96)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid efb4f0e2-0924-8a03-cfba-609443d0f7d6)) + (wire (pts (xy 44.45 72.39) (xy 44.45 60.96)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 01ac23ba-ab0d-34d2-110c-2e5baef817fe)) + (wire (pts (xy 132.08 62.23) (xy 185.42 62.23)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 9969179f-821e-2f41-86ca-e1d5520e48c5)) + (wire (pts (xy 128.27 91.44) (xy 176.53 91.44)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid d59b58e1-46bf-c385-b4a0-a4eea871a9bf)) + (wire (pts (xy 171.45 147.32) (xy 172.72 147.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid d57399b5-95dc-8337-4b67-17682f06c15c)) + (wire (pts (xy 176.53 132.08) (xy 176.53 91.44)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 4a3e7240-f558-6c76-7b4c-acdba4899aff)) + (wire (pts (xy 172.72 147.32) (xy 172.72 91.44)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid fb32f24a-3e9a-aaef-11f7-1b83cd6f6f2b)) + (wire (pts (xy 152.4 134.62) (xy 152.4 91.44)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid c573c5e6-b6b9-e595-dc41-4fd7c78ebb87)) + (wire (pts (xy 48.26 69.85) (xy 139.7 69.85)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid caf9656e-1c83-8478-ed9b-4f98e1fa9a04)) + (wire (pts (xy 48.26 101.6) (xy 49.53 101.6)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 135537d7-3807-4721-636d-f26b391b9d63)) + (wire (pts (xy 63.5 6.35) (xy 139.7 6.35)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid f6bcd88b-0a76-1626-4f2d-30e26cbe2fd9)) + (wire (pts (xy 139.7 69.85) (xy 139.7 6.35)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 4990c389-ae78-52b1-1df5-7556ac86f27a)) + (wire (pts (xy 63.5 24.13) (xy 63.5 6.35)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 893fe80c-949c-95f7-cebf-24afa41a5633)) + (wire (pts (xy 48.26 101.6) (xy 48.26 69.85)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid e8ad35a5-0dac-790f-0ef5-f5ebf9485cb9)) + (wire (pts (xy 44.45 124.46) (xy 49.53 124.46)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid fc7bd40b-5b7e-acd5-ae38-ef216e7c2a7e)) + (wire (pts (xy 43.18 133.35) (xy 45.72 133.35)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 831ab8eb-a0f8-1a7c-70e9-0cdda62e8038)) + (wire (pts (xy 45.72 133.35) (xy 45.72 124.46)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 358ee617-38d9-276c-ab82-3a67053f6b4b)) + (wire (pts (xy 44.45 124.46) (xy 44.45 77.47)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 479ba9a7-a047-ca33-e81e-334f88cf8d03)) + (wire (pts (xy 43.18 133.35) (xy 43.18 132.08)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid f111409c-d4b3-94a9-1e4e-5bf0a96cb25d)) + (wire (pts (xy 128.27 114.3) (xy 137.16 114.3)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid cbb27ca6-84e4-f77a-b5fd-4cb5f9a1c7f3)) + (wire (pts (xy 73.66 17.78) (xy 137.16 17.78)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid c4d6727b-270c-5051-a819-123c9473e0ca)) + (wire (pts (xy 137.16 114.3) (xy 137.16 17.78)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid d9707c7b-c283-e14f-da52-5b27ac7f15ed)) + (wire (pts (xy 73.66 24.13) (xy 73.66 17.78)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid eb6b70d4-4895-49a9-768e-7ecc8c0458eb)) + (wire (pts (xy 128.27 88.9) (xy 129.54 88.9)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 63d58bda-1dd7-ea72-5a32-81c924f13147)) + (wire (pts (xy 129.54 142.24) (xy 176.53 142.24)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 4e84f4ca-4e20-08fb-0dfb-df3345bb5f1d)) + (wire (pts (xy 129.54 152.4) (xy 156.21 152.4)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid b3987c16-9145-bb44-ba76-5f0968eb1d80)) + (wire (pts (xy 176.53 142.24) (xy 176.53 137.16)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 3a584546-027d-5912-f93d-a9f5546cde73)) + (wire (pts (xy 175.26 144.78) (xy 175.26 142.24)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 7b8fa1bd-2705-4637-364b-2570f877a17a)) + (wire (pts (xy 129.54 152.4) (xy 129.54 88.9)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 5d9a4ae7-921d-ee4a-0e7d-7a5ad06cb80b)) + (wire (pts (xy 27.94 106.68) (xy 49.53 106.68)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 3b629278-67da-a3b7-5768-e9cc834c20ed)) + (wire (pts (xy 27.94 7.62) (xy 71.12 7.62)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 23eaa51d-4414-4f26-5967-48d0fccf0548)) + (wire (pts (xy 71.12 24.13) (xy 71.12 7.62)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 35d81f2e-2783-f683-69b6-4b70b8b9bb8a)) + (wire (pts (xy 27.94 106.68) (xy 27.94 7.62)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 1d282c3d-e1fe-163c-3e76-a3b53287425c)) + (wire (pts (xy 78.74 33.02) (xy 80.01 33.02)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 36b4d687-84ab-b3b3-538b-29dad6a76053)) + (wire (pts (xy 82.55 45.72) (xy 130.81 45.72)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid b279a130-1c72-0705-285b-2bbb093c0c51)) + (wire (pts (xy 128.27 78.74) (xy 130.81 78.74)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 893ee505-a519-dc4b-b098-927603ebe8e8)) + (wire (pts (xy 33.02 111.76) (xy 43.18 111.76)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 739456d7-5b38-1197-2fd1-bd6003e7a049)) + (wire (pts (xy 128.27 101.6) (xy 130.81 101.6)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 2710b291-9114-02ff-2188-aa6637024598)) + (wire (pts (xy 130.81 110.49) (xy 184.15 110.49)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid cd72d82c-bbc7-4f73-c929-3d719291a07b)) + (wire (pts (xy 33.02 125.73) (xy 36.83 125.73)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 54a3e5c4-a7c6-4bb1-1b62-80d813ea74b7)) + (wire (pts (xy 152.4 140.97) (xy 154.94 140.97)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 1ea09940-e562-effa-e892-fe5ad12e13ed)) + (wire (pts (xy 130.81 147.32) (xy 156.21 147.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 64c0d931-6a3f-90ba-b8cb-d5b564c58953)) + (wire (pts (xy 175.26 151.13) (xy 186.69 151.13)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 6577e4bd-4f8c-89ac-700e-f43d476d3d2d)) + (wire (pts (xy 171.45 152.4) (xy 186.69 152.4)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 291d4833-1b03-f1ee-e86d-f77d48df4e94)) + (wire (pts (xy 33.02 20.32) (xy 186.69 20.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 494145df-2e6d-0f0c-ebe0-97d0adba9bee)) + (wire (pts (xy 186.69 152.4) (xy 186.69 20.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 66d4c131-31d3-09df-ef20-c16ed572d5b2)) + (wire (pts (xy 184.15 110.49) (xy 184.15 107.95)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 489e5ae1-50ca-e184-45ea-4a962b97b2b2)) + (wire (pts (xy 180.34 102.87) (xy 180.34 20.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 873be419-575e-223e-dd23-061cc6525d8b)) + (wire (pts (xy 175.26 151.13) (xy 175.26 149.86)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 2c53c86b-2f71-7ff7-88a2-6d117e56c654)) + (wire (pts (xy 154.94 140.97) (xy 154.94 110.49)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid b1e64ff5-77c7-96e9-8dc5-d0646f6efa27)) + (wire (pts (xy 152.4 140.97) (xy 152.4 139.7)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 72b993db-2638-e0a8-9adf-6baf8ee160c8)) + (wire (pts (xy 130.81 147.32) (xy 130.81 20.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 670b72cf-67ef-f1a3-194d-80aadb79d309)) + (wire (pts (xy 119.38 54.61) (xy 119.38 45.72)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 85df7079-9a23-51bd-f263-7f4c1d4fa53e)) + (wire (pts (xy 115.57 54.61) (xy 115.57 45.72)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 8ffd43ac-6619-4bc3-70d1-32bb9e19bcf3)) + (wire (pts (xy 111.76 54.61) (xy 111.76 45.72)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid fb0dd6c2-06e5-8eec-6601-e86889114df2)) + (wire (pts (xy 107.95 54.61) (xy 107.95 45.72)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid dda76ac0-10c5-ad15-8d1f-706fe933c410)) + (wire (pts (xy 82.55 46.99) (xy 82.55 45.72)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 042cc238-85ec-8300-e122-287d90dace06)) + (wire (pts (xy 78.74 33.02) (xy 78.74 20.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 1389c834-84ca-0b39-19be-946531520b9c)) + (wire (pts (xy 68.58 24.13) (xy 68.58 20.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 9b3f248e-6d28-c8e5-b879-5039bcaad69e)) + (wire (pts (xy 60.96 24.13) (xy 60.96 20.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 2fa001f2-7827-bfc1-e04d-2b9e5f8f7d0f)) + (wire (pts (xy 45.72 24.13) (xy 45.72 20.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 4177fddd-9575-740c-fedf-0b73e81dc483)) + (wire (pts (xy 43.18 24.13) (xy 43.18 20.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid a29b4d81-295e-4e92-4a0b-d06942221206)) + (wire (pts (xy 43.18 127.0) (xy 43.18 111.76)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 1f25a63b-20b2-3948-04c7-09fdc491f99a)) + (wire (pts (xy 40.64 24.13) (xy 40.64 20.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 4c496f28-8ee7-7d29-007d-4c6e00c7a66e)) + (wire (pts (xy 40.64 113.03) (xy 40.64 111.76)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 7516150d-34c4-20e4-be82-54c815f4af55)) + (wire (pts (xy 38.1 24.13) (xy 38.1 20.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid fd20812e-5642-b42e-3908-7db2cda52238)) + (wire (pts (xy 36.83 125.73) (xy 36.83 124.46)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 9b1e881c-736d-504e-7471-52130fb4c0c8)) + (wire (pts (xy 35.56 168.91) (xy 35.56 125.73)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 7102bd86-ed73-b45b-f520-ff195a302e78)) + (wire (pts (xy 33.02 125.73) (xy 33.02 20.32)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 0f5b2a63-cb88-2364-4d32-0a28568bb76f)) + (wire (pts (xy 128.27 83.82) (xy 184.15 83.82)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 60fc3220-9e63-4a90-c819-d160f02bf6bd)) + (wire (pts (xy 184.15 102.87) (xy 184.15 83.82)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid db24da56-e232-427b-094c-4ee7513bada2)) + (wire (pts (xy 100.33 33.02) (xy 134.62 33.02)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 5adae525-9264-a18d-4bc0-6143cd566aaf)) + (wire (pts (xy 128.27 104.14) (xy 151.13 104.14)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid d2a00d5f-0b55-3968-9b62-0535f471019c)) + (wire (pts (xy 151.13 104.14) (xy 151.13 78.74)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 3113e0f9-7419-c6b0-bd63-deeb0c67d58a)) + (wire (pts (xy 134.62 104.14) (xy 134.62 33.02)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid ca62056e-9935-efdd-f40b-25c727c3d615)) + (wire (pts (xy 38.1 81.28) (xy 49.53 81.28)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 64a15b41-3040-981f-97f8-0d4b5baeec2c)) + (wire (pts (xy 38.1 96.52) (xy 38.1 81.28)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 72772a8f-3564-6961-842c-ba1cfb1122f9)) + (wire (pts (xy 128.27 96.52) (xy 140.97 96.52)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 5a81d3d8-be70-b424-f6da-4f13acc604ec)) + (wire (pts (xy 48.26 5.08) (xy 140.97 5.08)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 8e8759fa-6463-2d59-2d8d-cf7b3e6671ce)) + (wire (pts (xy 140.97 96.52) (xy 140.97 5.08)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 5d417b4f-4c9e-f5fa-6f25-7afc72303842)) + (wire (pts (xy 48.26 24.13) (xy 48.26 5.08)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 0024bd12-b39d-167c-7f9b-42ce0c8c02a1)) + (wire (pts (xy 128.27 86.36) (xy 133.35 86.36)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 862f72dc-4727-9482-6f66-5aa810edab54)) + (wire (pts (xy 133.35 111.76) (xy 180.34 111.76)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid eadb4f32-4c46-8e75-b07b-54da6216851a)) + (wire (pts (xy 180.34 111.76) (xy 180.34 107.95)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 2ffcbd4e-4a1f-5c65-1f2d-4b139413a12a)) + (wire (pts (xy 133.35 111.76) (xy 133.35 86.36)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid a080027b-12b2-1dda-44a2-710b9c5d3582)) + (wire (pts (xy 128.27 106.68) (xy 142.24 106.68)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 4b9fe3ed-869e-a102-041d-1998ffedc129)) + (wire (pts (xy 50.8 0.0) (xy 142.24 0.0)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid beaf7c2b-49c2-292c-e5eb-5897baf64143)) + (wire (pts (xy 142.24 106.68) (xy 142.24 0.0)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 00b4fe70-aefc-6890-30a5-067522c7ddd6)) + (wire (pts (xy 50.8 24.13) (xy 50.8 0.0)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid cf334f35-53f4-a515-a7f9-6f51ad9cc7f3)) + (wire (pts (xy 36.83 102.87) (xy 38.1 102.87)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid e621f6e3-2e23-e936-a876-b7ccab045b6f)) + (wire (pts (xy 38.1 102.87) (xy 38.1 101.6)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid c9c7e68b-e682-2d81-7062-b4855da7ce5f)) + (wire (pts (xy 36.83 119.38) (xy 36.83 102.87)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 4fb10d47-f591-69cd-b1e5-9ae87c17434d)) + (wire (pts (xy 82.55 53.34) (xy 138.43 53.34)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid eace0afa-dc52-f0a1-8b80-7dd15153e486)) + (wire (pts (xy 128.27 119.38) (xy 138.43 119.38)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 839c7f9a-a23a-faa5-5dc2-4b88a75fc24b)) + (wire (pts (xy 66.04 16.51) (xy 138.43 16.51)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 5ed5023d-001e-1be0-eb6a-eb0f0887d7c2)) + (wire (pts (xy 138.43 119.38) (xy 138.43 16.51)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 64baa4c4-53d3-a822-b74d-a71ef658fc8a)) + (wire (pts (xy 82.55 53.34) (xy 82.55 52.07)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 38ebbbe4-b84a-6d8c-1d2b-9d7562ea05dc)) + (wire (pts (xy 66.04 24.13) (xy 66.04 16.51)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 29efb483-dceb-fe85-868b-b3c6453df15d)) + (wire (pts (xy 128.27 109.22) (xy 143.51 109.22)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 38dcf934-6e02-1510-2a53-4a02d207642a)) + (wire (pts (xy 53.34 3.81) (xy 143.51 3.81)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 746f63c0-fd71-6df6-e817-5da821f74467)) + (wire (pts (xy 143.51 109.22) (xy 143.51 3.81)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 58fd8402-a7ae-c8c5-bfe7-32483b30113b)) + (wire (pts (xy 53.34 24.13) (xy 53.34 3.81)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 447a785a-7c82-f016-212d-72098550f79d)) + (wire (pts (xy 100.33 30.48) (xy 135.89 30.48)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 80356aa1-ffd9-b5e0-0e5d-68e053a8d07e)) + (wire (pts (xy 128.27 93.98) (xy 146.05 93.98)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 7c6aef13-5e8d-d3fd-6af2-833c12746b73)) + (wire (pts (xy 146.05 93.98) (xy 146.05 77.47)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 65d97bd1-a9d1-c1a3-c040-202a3ce81a8d)) + (wire (pts (xy 135.89 93.98) (xy 135.89 30.48)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 424266f4-c74f-571c-09b5-79aa8f4d1d49)) + (wire (pts (xy 48.26 111.76) (xy 49.53 111.76)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid ccd03a40-5820-dca4-d10f-820326dfcdc9)) + (wire (pts (xy 40.64 119.38) (xy 48.26 119.38)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 167bac6f-1567-170d-3ae3-d12b9c94ccfa)) + (wire (pts (xy 48.26 119.38) (xy 48.26 111.76)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid cab5ce81-c7a1-f9d3-5ce3-9e6a18432d66)) + (wire (pts (xy 40.64 119.38) (xy 40.64 118.11)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid bb2eea9a-27b8-801a-dde3-0cdc1aa4657c)) + (wire (pts (xy 31.75 88.9) (xy 49.53 88.9)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 9091a92e-7124-1a48-8a26-2482f0a574b8)) + (wire (pts (xy 31.75 19.05) (xy 55.88 19.05)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 1f07936c-b5fc-353e-8286-930a7a2d66ef)) + (wire (pts (xy 55.88 24.13) (xy 55.88 19.05)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid f6877967-9922-5fd3-fb21-3b5644113cf9)) + (wire (pts (xy 31.75 88.9) (xy 31.75 19.05)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid a3f42e40-71ee-087f-8dc4-7f5d3f1ef656)) + (wire (pts (xy 100.33 27.94) (xy 104.14 27.94)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 5e338382-7605-03c7-555b-ec40f8c6591e)) + (wire (pts (xy 104.14 27.94) (xy 104.14 26.67)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 0d8c8ee9-d53d-6ec9-244d-9edcc864278b)) + (polyline (pts (xy 25.4 -2.54) (xy 189.23 -2.54)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid 40c6a0c8-858a-c0f1-96a3-5e73f419d8f3)) + (polyline (pts (xy 25.4 173.99) (xy 189.23 173.99)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid 16a5904e-021a-0815-6e72-8c9c94eba279)) + (polyline (pts (xy 25.4 173.99) (xy 25.4 -2.54)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid b564cd2b-bec8-3bb3-486d-5ac16eeb1475)) + (polyline (pts (xy 189.23 173.99) (xy 189.23 -2.54)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid 5ebcbbfa-daf7-ea1c-a61e-8745a9f2f270)) +(junction (at 132.08 60.96) (diameter 0.762) (color 0 0 0 0 ) (uuid 64baa26d-8dc5-ddd4-be51-064bd08fc9c2)) +(junction (at 119.38 60.96) (diameter 0.762) (color 0 0 0 0 ) (uuid 25ac0862-2129-33b9-b1f6-5d8d64aeeee9)) +(junction (at 115.57 60.96) (diameter 0.762) (color 0 0 0 0 ) (uuid b069e491-85fe-5290-3bb8-e482097719d4)) +(junction (at 111.76 60.96) (diameter 0.762) (color 0 0 0 0 ) (uuid 3b7caa57-87a8-bdfa-8e14-dfed6b43762f)) +(junction (at 107.95 60.96) (diameter 0.762) (color 0 0 0 0 ) (uuid 3980fe98-144e-8ed2-ee5a-931c1da9caa7)) +(junction (at 101.6 60.96) (diameter 0.762) (color 0 0 0 0 ) (uuid 72936fb7-9e87-6422-132e-b601d5891e01)) +(junction (at 46.99 60.96) (diameter 0.762) (color 0 0 0 0 ) (uuid e6920c41-b2a1-35a6-82a0-5806b8eec40d)) +(junction (at 132.08 81.28) (diameter 0.762) (color 0 0 0 0 ) (uuid c29814a3-9f1c-8b03-5dc8-7c53791fbe20)) +(junction (at 46.99 93.98) (diameter 0.762) (color 0 0 0 0 ) (uuid 657e1e75-a40c-c4a5-4eac-d4dee80c92fe)) +(junction (at 151.13 62.23) (diameter 0.762) (color 0 0 0 0 ) (uuid 6ef80d6c-5f75-7d0d-575e-66a256fecbb2)) +(junction (at 146.05 62.23) (diameter 0.762) (color 0 0 0 0 ) (uuid 543cf10f-b125-3728-6435-cfc3bf96e88a)) +(junction (at 132.08 62.23) (diameter 0.762) (color 0 0 0 0 ) (uuid 35c9240a-bb4e-02d5-a584-41276cb23c3b)) +(junction (at 172.72 91.44) (diameter 0.762) (color 0 0 0 0 ) (uuid 2cbbef27-d4df-6dbe-f0d8-cad4d5204826)) +(junction (at 152.4 91.44) (diameter 0.762) (color 0 0 0 0 ) (uuid 8e89d098-5412-46dd-e8c2-440f5c2588ec)) +(junction (at 45.72 124.46) (diameter 0.762) (color 0 0 0 0 ) (uuid 4cd25802-6b26-2d06-396d-3b1a84df69bd)) +(junction (at 175.26 142.24) (diameter 0.762) (color 0 0 0 0 ) (uuid bdcc6354-837a-950e-40e0-5eab41cdf1e3)) +(junction (at 129.54 142.24) (diameter 0.762) (color 0 0 0 0 ) (uuid ad84a85d-c67d-a8ec-94e7-5a59425c1b61)) +(junction (at 130.81 45.72) (diameter 0.762) (color 0 0 0 0 ) (uuid e24ae778-09e5-cfc0-785b-2cdd986ba2f8)) +(junction (at 119.38 45.72) (diameter 0.762) (color 0 0 0 0 ) (uuid 3461b500-09b2-13ff-224e-8cc519edcbbf)) +(junction (at 115.57 45.72) (diameter 0.762) (color 0 0 0 0 ) (uuid a1d0e198-7c21-cc5c-2658-a69adce558ac)) +(junction (at 111.76 45.72) (diameter 0.762) (color 0 0 0 0 ) (uuid 5dac0839-a04c-4a8c-9892-1323739378e6)) +(junction (at 107.95 45.72) (diameter 0.762) (color 0 0 0 0 ) (uuid 8affdf8f-0413-3466-eae8-46b44c9797fa)) +(junction (at 130.81 78.74) (diameter 0.762) (color 0 0 0 0 ) (uuid 1c3a5bfa-4c22-b433-28b4-f17ab7e951ee)) +(junction (at 40.64 111.76) (diameter 0.762) (color 0 0 0 0 ) (uuid b90cdbe3-27f2-5b51-cda2-d45b174d3be4)) +(junction (at 33.02 111.76) (diameter 0.762) (color 0 0 0 0 ) (uuid da0253ec-f46c-6e5d-d649-ce1db3a6a6bb)) +(junction (at 130.81 101.6) (diameter 0.762) (color 0 0 0 0 ) (uuid 4b6ac415-4f10-0d05-bca2-1d2033543eda)) +(junction (at 154.94 110.49) (diameter 0.762) (color 0 0 0 0 ) (uuid 8ef56ab3-673c-71e2-aee3-21a096ecc8bd)) +(junction (at 130.81 110.49) (diameter 0.762) (color 0 0 0 0 ) (uuid c51fe64f-2423-8257-e3fc-49105c22223d)) +(junction (at 35.56 125.73) (diameter 0.762) (color 0 0 0 0 ) (uuid b4768c38-f57a-bf1d-5ee0-e8cc07a30911)) +(junction (at 186.69 151.13) (diameter 0.762) (color 0 0 0 0 ) (uuid 0e91f56d-82b0-3d9a-1d82-8cc5e4f14642)) +(junction (at 180.34 20.32) (diameter 0.762) (color 0 0 0 0 ) (uuid 18bbe4eb-7d26-ef53-3bad-64d8d64e4d13)) +(junction (at 130.81 20.32) (diameter 0.762) (color 0 0 0 0 ) (uuid a3d0ad8d-3671-0d83-765d-271b813af94e)) +(junction (at 78.74 20.32) (diameter 0.762) (color 0 0 0 0 ) (uuid c50284d1-0296-5484-4aa9-d02794e5ef93)) +(junction (at 68.58 20.32) (diameter 0.762) (color 0 0 0 0 ) (uuid 5c0fddeb-9655-7277-f671-b4ae3c4c4ae0)) +(junction (at 60.96 20.32) (diameter 0.762) (color 0 0 0 0 ) (uuid 78bf0c8f-8e4b-3804-ddaa-68e37afa51b1)) +(junction (at 45.72 20.32) (diameter 0.762) (color 0 0 0 0 ) (uuid ccaca762-a540-74b1-6ba1-852d4ce37ced)) +(junction (at 43.18 20.32) (diameter 0.762) (color 0 0 0 0 ) (uuid 4e1440c3-4883-55f9-d0f0-167ed3b8f632)) +(junction (at 40.64 20.32) (diameter 0.762) (color 0 0 0 0 ) (uuid 0e895c8d-40fa-49ca-c7d9-756896d0901b)) +(junction (at 38.1 20.32) (diameter 0.762) (color 0 0 0 0 ) (uuid 3d61c344-9496-13dd-ce9b-8f857b3cb629)) +(junction (at 134.62 104.14) (diameter 0.762) (color 0 0 0 0 ) (uuid 70eb22f0-9349-2f8f-9f67-7f15eeec10cf)) +(junction (at 138.43 53.34) (diameter 0.762) (color 0 0 0 0 ) (uuid 3dd4dd42-1452-4745-b855-34bcb8027849)) +(junction (at 135.89 93.98) (diameter 0.762) (color 0 0 0 0 ) (uuid 4bfaccf0-9b5b-3aa1-a79c-a5b7040765ef)) + + (no_connect (at 80.01 25.4) (uuid 81077123-90ac-f8da-5ff3-ce170b38882e)) + + (no_connect (at 80.01 27.94) (uuid 6baf0dd3-5263-1a32-b3a4-e1ecb3bc0fbf)) + + (no_connect (at 80.01 30.48) (uuid 4e17c134-b7d6-20d0-c510-c26fc2c840d6)) + + (no_connect (at 49.53 96.52) (uuid d3a7450b-49c4-1732-5840-88fd4756bb5f)) + + (no_connect (at 49.53 99.06) (uuid 5eda8d96-ecd0-ec0d-c319-21a16375b128)) + + (no_connect (at 49.53 104.14) (uuid 326e4a84-7621-9f1f-e5bd-7cda3bc55af4)) + + (no_connect (at 49.53 109.22) (uuid 563134ec-fec6-12d3-af90-1413cbbfc527)) + + (no_connect (at 49.53 119.38) (uuid 77f8151e-0739-bfb2-9770-34dd8a51a1aa)) + + (no_connect (at 49.53 121.92) (uuid fb2e2203-21bc-2a9d-51bf-b807a330ccdd)) + + (no_connect (at 128.27 124.46) (uuid 88a66087-d971-4bb0-6fa0-71971fe3f781)) + + (no_connect (at 128.27 121.92) (uuid 4382de02-9d5a-ac53-ee77-cf44d80e7fd3)) + + (no_connect (at 128.27 111.76) (uuid a4c6647a-b3b3-56da-7047-3735149e4fe5)) + + (no_connect (at 128.27 99.06) (uuid 6efd97e7-1528-91f2-2a21-9501f6fabf20)) + + (global_label "USB-" (shape passive) (at 49.53 86.36 180) + (effects (font (size 0.762 0.762)) (justify right )) + (uuid c96d68f2-da66-eb6f-84d0-83bf6a1393bf) + ) + + (global_label "TXD_SCK_MS_SKT_SEL" (shape passive) (at 128.27 93.98 0) + (effects (font (size 0.762 0.762)) (justify left )) + (uuid d580f4c1-44c1-7a26-2311-12eaf1769e84) + ) + + (global_label "RXD_SDA" (shape passive) (at 128.27 104.14 0) + (effects (font (size 0.762 0.762)) (justify left )) + (uuid 7f604503-9439-6381-7cd9-1467a8d7daf2) + ) + + (global_label "USB+" (shape passive) (at 49.53 83.82 180) + (effects (font (size 0.762 0.762)) (justify right )) + (uuid 98558469-0445-2ddf-b953-c9aa8fcf5e66) + ) + + (label "data" (at 25.4 -2.54 0) + (effects (font (size 0.762 0.762)) (justify left bottom )) + (uuid 5dc9e697-4227-d54e-f3e4-92c494e39f8c) + ) + + (symbol (lib_id "C174142") (at 38.1 99.06 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid d0bf8f63-2571-4982-6c18-5898c6afdb28) + (property "Reference" "R8" (id 0) (at 40.64 97.79 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Value" "100R" (id 1) (at 40.64 100.33 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Footprint" "jitx-design:R0402" (id 2) (at 38.1 99.06 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://datasheet.lcsc.com/lcsc/1810251713_HKR-Hong-Kong-Resistors-RCT02100RJLF_C174142.pdf" (id 3) (at 38.1 99.06 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "status-led_ballast-res" (id 4) (at 38.1 99.06 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "62.5mW ±5% 100Ω 0402 Chip Resistor - Surface Mount ROHS" (id 5) (at 38.1 99.06 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "HKR(Hong Kong Resistors)" (id 6) (at 38.1 99.06 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "RCT02100RJLF" (id 7) (at 38.1 99.06 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "R" (id 8) (at 38.1 99.06 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C174142" (id 9) (at 38.1 99.06 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid b159d476-3a77-38da-e8ef-d87416f7b474)) + (pin "2" (uuid 12ec30f9-34db-ad3f-f0bd-4bf62c067cb3)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "R8") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor_3") (at 152.4 137.16 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 7ce48ab6-9478-cca9-c5f2-c15724f10594) + (property "Reference" "C13" (id 0) (at 153.67 135.89 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "27p" (id 1) (at 153.67 138.43 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_4" (id 2) (at 152.4 137.16 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://api.kemet.com/component-edge/download/datasheet/C0402C270J5GACTU.pdf" (id 3) (at 152.4 137.16 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_cap" (id 4) (at 152.4 137.16 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "KEMET" (id 5) (at 152.4 137.16 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "C0402C270J5GACTU" (id 6) (at 152.4 137.16 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 152.4 137.16 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C2169825" (id 8) (at 152.4 137.16 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 375b9bea-66e0-98ae-0611-48887758421a)) + (pin "2" (uuid a73c6464-14fa-96f4-7f98-a8c047c225c3)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "C13") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "C118280") (at 90.17 29.21 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid d7717d6d-442c-ddd4-3453-4b1061a4344e) + (property "Reference" "U4" (id 0) (at 90.17 22.3999923799848 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Value" "M24C04-WMN6TP" (id 1) (at 90.17 23.3999923799848 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Footprint" "jitx-design:SOIC_8_L4_9_W3_9_P1_27_LS6_0_BL" (id 2) (at 90.17 29.21 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://datasheet.lcsc.com/lcsc/1809151914_STMicroelectronics-M24C04-WMN6TP_C118280.pdf" (id 3) (at 90.17 29.21 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "eeprom_eeprom" (id 4) (at 90.17 29.21 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "4Kbit I2C SOIC-8 EEPROM ROHS" (id 5) (at 90.17 29.21 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "STMicroelectronics" (id 6) (at 90.17 29.21 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "M24C04-WMN6TP" (id 7) (at 90.17 29.21 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "U" (id 8) (at 90.17 29.21 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C118280" (id 9) (at 90.17 29.21 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "NC" (uuid 13827ca8-d6ea-fc82-07fa-6b47ef4997b7)) + (pin "E1" (uuid edb1b235-5a56-98dc-abcc-1b07a63d7dc5)) + (pin "E2" (uuid 67dc0759-9b80-45fb-0673-89fc780e8a56)) + (pin "VSS" (uuid fbbbbe22-cf0e-42f4-ea0a-c4d849fb1b5a)) + (pin "SDA" (uuid 770a7f1e-ab7b-983e-63e1-d0db8c280e50)) + (pin "SCL" (uuid 3eb6b6ed-1890-2d04-7243-f1daaacf1a44)) + (pin "WC_NOT" (uuid 3d4fd826-e50a-dcd2-b335-644ca50c97dc)) + (pin "VCC" (uuid ec1ec8e0-701d-662c-bdde-41e49fda84ed)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "U4") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_resistor_3") (at 176.53 134.62 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 29db95fa-831b-bc8b-e60e-d8793651231d) + (property "Reference" "R7" (id 0) (at 177.8 133.35 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "1M" (id 1) (at 177.8 135.89 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402" (id 2) (at 176.53 134.62 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "http://www.calchipelectronics.com/pdf/rm_series.pdf" (id 3) (at 176.53 134.62 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_rid" (id 4) (at 176.53 134.62 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "RES SMD 1M OHM 1% 1/16W 0402" (id 5) (at 176.53 134.62 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "CAL-CHIP ELECTRONICS, INC." (id 6) (at 176.53 134.62 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "RM04F1004CT" (id 7) (at 176.53 134.62 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "R" (id 8) (at 176.53 134.62 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C4148816" (id 9) (at 176.53 134.62 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid e55e5cad-45c0-836f-abac-fb00480ff9d2)) + (pin "2" (uuid a4c7ecfd-f1f1-b986-379c-4d68d5537f0f)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "R7") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor_2") (at 82.55 49.53 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid cf96f38a-38ed-a2d5-6397-0bdbc1744d3a) + (property "Reference" "C11" (id 0) (at 83.82 48.26 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "4.7u" (id 1) (at 83.82 50.8 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_1" (id 2) (at 82.55 49.53 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "http://www.calchipelectronics.com/pdf/gmc_series.pdf" (id 3) (at 82.55 49.53 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_cap" (id 4) (at 82.55 49.53 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "CAL-CHIP ELECTRONICS, INC." (id 5) (at 82.55 49.53 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "GMC04X5R475M6R3NT" (id 6) (at 82.55 49.53 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 82.55 49.53 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C3880325" (id 8) (at 82.55 49.53 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 549349e8-b70d-7d1b-9341-5ebde9b68fea)) + (pin "2" (uuid 424f50f6-0ee6-1294-3bc3-c13c94e02fd6)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "C11") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor_4") (at 111.76 57.15 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 548e2bf3-dae0-a443-8537-cacdc4ee6f05) + (property "Reference" "C7" (id 0) (at 113.03 55.88 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "1u" (id 1) (at 113.03 58.42 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_4" (id 2) (at 111.76 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://page.venkel.com/hubfs/Resources/Datasheets/C-Series.pdf" (id 3) (at 111.76 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_cap" (id 4) (at 111.76 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Venkel" (id 5) (at 111.76 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "C0402X5R250-105MNP" (id 6) (at 111.76 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 111.76 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C3853687" (id 8) (at 111.76 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 35d0816e-d285-ceb4-b0c3-badc5bd18091)) + (pin "2" (uuid e5af65b8-dae9-050d-9c5f-e9badf82dc8c)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "C7") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_resistor") (at 44.45 74.93 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 96c850de-4fee-2f9b-b102-fbcfeb8819a8) + (property "Reference" "R6" (id 0) (at 45.72 73.66 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "10K" (id 1) (at 45.72 76.2 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_2" (id 2) (at 44.45 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://page.venkel.com/hubfs/Resources/Datasheets/TFCR-Series.pdf" (id 3) (at 44.45 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_rid" (id 4) (at 44.45 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "RES 10K OHM 1% 1/16W 0402" (id 5) (at 44.45 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Venkel" (id 6) (at 44.45 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "TFCR0402-16W-E-1002FT" (id 7) (at 44.45 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "R" (id 8) (at 44.45 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C4101506" (id 9) (at 44.45 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid c46e3dd8-6d9e-341d-e72c-2517ae318f26)) + (pin "2" (uuid 43aa466c-cf18-4531-f88c-6e6da6cd70c9)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "R6") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_resistor_4") (at 104.14 24.13 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 17acdce1-0097-4166-c8e9-5d2305140aa4) + (property "Reference" "R4" (id 0) (at 105.41 22.86 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "5K" (id 1) (at 105.41 25.4 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402" (id 2) (at 104.14 24.13 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://www.yageo.com/upload/media/product/productsearch/datasheet/rchip/PYu-RC_Group_51_RoHS_L_11.pdf" (id 3) (at 104.14 24.13 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "eeprom_rid" (id 4) (at 104.14 24.13 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "RES SMD 5K OHM 1% 1/16W 0402" (id 5) (at 104.14 24.13 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "YAGEO" (id 6) (at 104.14 24.13 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "RC0402FR-075KL" (id 7) (at 104.14 24.13 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "R" (id 8) (at 104.14 24.13 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C477765" (id 9) (at 104.14 24.13 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid f5f27803-47ba-b1a8-7190-d686fbf307cb)) + (pin "2" (uuid 7fd2dc78-cbde-89d8-a511-0d7bbd070b70)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "R4") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor_12") (at 175.26 147.32 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 0f7f268a-279a-a630-75a7-5eedf080e9c4) + (property "Reference" "C12" (id 0) (at 176.53 146.05 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "27p" (id 1) (at 176.53 148.59 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_4" (id 2) (at 175.26 147.32 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://api.kemet.com/component-edge/download/datasheet/C0402C270J5GACTU.pdf" (id 3) (at 175.26 147.32 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_cap" (id 4) (at 175.26 147.32 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "KEMET" (id 5) (at 175.26 147.32 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "C0402C270J5GACTU" (id 6) (at 175.26 147.32 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 175.26 147.32 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C2169825" (id 8) (at 175.26 147.32 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 552fe50a-dae4-6a36-2bbc-c00e8963c325)) + (pin "2" (uuid 021dd3ca-9320-cf9c-a0c9-d85a03618c81)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "C12") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor_11") (at 115.57 57.15 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid e280fbf5-64a1-78c4-ab4d-5b0ad245c9d2) + (property "Reference" "C10" (id 0) (at 116.84 55.88 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "1u" (id 1) (at 116.84 58.42 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_4" (id 2) (at 115.57 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://page.venkel.com/hubfs/Resources/Datasheets/C-Series.pdf" (id 3) (at 115.57 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_cap" (id 4) (at 115.57 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Venkel" (id 5) (at 115.57 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "C0402X5R250-105MNP" (id 6) (at 115.57 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 115.57 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C3853687" (id 8) (at 115.57 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 2a816df5-e25a-0618-183c-e27ef631c68a)) + (pin "2" (uuid af0a4768-ee91-fca0-db1d-c7fb126a9c42)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "C10") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor") (at 180.34 105.41 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 919c2ceb-d651-59eb-d815-ce7d91e092ce) + (property "Reference" "C6" (id 0) (at 181.61 104.14 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "1u" (id 1) (at 181.61 106.68 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_4" (id 2) (at 180.34 105.41 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155C81E105ME11-01.pdf" (id 3) (at 180.34 105.41 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_cap" (id 4) (at 180.34 105.41 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Murata Electronics" (id 5) (at 180.34 105.41 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "GRM155C81E105ME11D" (id 6) (at 180.34 105.41 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 180.34 105.41 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C783277" (id 8) (at 180.34 105.41 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 4e40d16c-dfa6-910e-acfe-8b402a6f16b6)) + (pin "2" (uuid e57b5d64-6e35-edd8-32ff-2f784fa334d6)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "C6") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_resistor_6") (at 184.15 105.41 180.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 0f3f66fc-032f-e351-77b1-8429b1530b52) + (property "Reference" "R5" (id 0) (at 182.88 104.14 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "12K" (id 1) (at 182.88 106.68 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_3" (id 2) (at 184.15 105.41 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://www.yageo.com/upload/media/product/productsearch/datasheet/rchip/PYu-AF_51_RoHS_L_6.pdf" (id 3) (at 184.15 105.41 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_rid" (id 4) (at 184.15 105.41 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "RES SMD 12K OHM 1% 1/16W 0402" (id 5) (at 184.15 105.41 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "YAGEO" (id 6) (at 184.15 105.41 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "AF0402FR-0712KL" (id 7) (at 184.15 105.41 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "R" (id 8) (at 184.15 105.41 180.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C1882582" (id 9) (at 184.15 105.41 180.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid b9ee2c8b-6b74-4c07-a39b-51a026335fd9)) + (pin "2" (uuid 14195d4f-62e2-e540-1cf1-2c314bfbd3b5)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "R5") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "C633328") (at 88.9 101.6 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 57c784a0-702b-ab2e-1bce-f6a1842cb201) + (property "Reference" "U5" (id 0) (at 88.9 75.7399542799085 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Value" "USB2240-AEZG-06" (id 1) (at 88.9 76.7399542799085 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Footprint" "jitx-design:QFN_36_L6_0_W6_0_P0_50_TL_EP4_1" (id 2) (at 88.9 101.6 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://datasheet.lcsc.com/lcsc/2202140030_Microchip-Tech-USB2240-AEZG-06_C633328.pdf" (id 3) (at 88.9 101.6 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_usb2240" (id 4) (at 88.9 101.6 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" " QFN-36-EP(6x6) Interface - Specialized ROHS" (id 5) (at 88.9 101.6 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Microchip Tech" (id 6) (at 88.9 101.6 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "USB2240-AEZG-06" (id 7) (at 88.9 101.6 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "U" (id 8) (at 88.9 101.6 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C633328" (id 9) (at 88.9 101.6 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "LED" (uuid 9a7a959e-3806-43e2-4d92-a4756c9df52d)) + (pin "USB+" (uuid 51a5705a-1912-5702-634d-c515a053a2d8)) + (pin "USB-" (uuid 1d83b9fd-d4b8-7060-b934-af27852d25ad)) + (pin "xD_D3_SD_D1_MS_D5" (uuid e3f0b653-05fa-c3f3-8e42-298aaf0045e6)) + (pin "xD_D2_SD_D0_MS_D4" (uuid cbe0b976-ffee-70e9-ea42-491112283002)) + (pin "VDD330" (uuid a5bc595e-3494-c11d-c0e0-d11da8ae3cf7)) + (pin "xD_D1_SD_D7_MS_D6" (uuid c9c98a49-ff85-0861-1076-1f6deda91bdf)) + (pin "xD_D0_SD_D6_MS_D7" (uuid 3c065116-f0ad-69a2-7556-ae45991d583e)) + (pin "xD_nWP_SD_CLK_MS_BS" (uuid 27b0a65b-2dd6-a83a-40d3-f90dfd183f23)) + (pin "xD_ALE_SD_D5_MS_D1" (uuid 2444e327-14cd-96e9-65c1-e204970db5aa)) + (pin "xD_CLE_SD_CMD_MS_D0" (uuid b6559b36-5a86-8928-afb9-14c23b61248c)) + (pin "xD_nWE" (uuid 47720e5f-fcfa-004b-7a8f-eb9dd758f3a9)) + (pin "VDD18" (uuid 4e2fea2d-44be-a93b-8d14-cc20828f0459)) + (pin "VDD331" (uuid 98aa7983-8dfb-0c13-1db3-0c570a10dc65)) + (pin "xD_nCE" (uuid 7e32568f-842e-3ceb-5f42-986c37bc3ced)) + (pin "xD_nRE" (uuid 0ba99381-0c6f-a8e5-51c7-1e86613fa286)) + (pin "xD_nB_R" (uuid 904cc6e1-873c-8e3d-56f7-7c4934faf423)) + (pin "RESET_N" (uuid 720b96e4-d43d-b1b4-3552-79099ff88566)) + (pin "xD_nCD" (uuid ba61abfc-043f-459b-c06c-f6940096a0c2)) + (pin "xD_D7_SD_D4_MS_D2" (uuid fc03f091-90c4-0fd1-90e5-8eaab88c2725)) + (pin "CRD_PWR" (uuid fa0bcad2-b883-22f4-3270-1f0278ca395d)) + (pin "VDD332" (uuid 9be0b2de-eeb2-9472-a9f4-0022b62b13a6)) + (pin "xD_D6_SD_D3_MS_D3" (uuid 2d29f0be-1374-8af7-82e3-72f1941bb194)) + (pin "MS_INS" (uuid 7f49f55f-c479-b69f-7bf8-8eb57f091cba)) + (pin "xD_D5_SD_D2" (uuid c26076b6-a289-92bf-6bc0-e786ba05de81)) + (pin "SD_nCD" (uuid ae3e2e32-08a0-004a-1724-c3fee5fcbd12)) + (pin "RXD_SDA" (uuid f8132ef7-fe32-8457-a835-835afbbbae2c)) + (pin "TEST" (uuid 194ab75e-7de7-10cd-3531-76541fd14b9e)) + (pin "NC" (uuid 30c63760-0cc9-4542-08fe-065c296b31d7)) + (pin "xD_D4_SD_WP_MS_SCLK" (uuid 120d76fe-1ac3-81db-01a0-5c8864e386e4)) + (pin "TXD_SCK_MS_SKT_SEL" (uuid 121d879e-dbf3-1281-3ca6-e6820b3b7137)) + (pin "XTAL2" (uuid 97661c75-846f-e4ef-142e-ee906662881c)) + (pin "XTAL1_CLKIN" (uuid d93bdc02-1bdd-378f-a11f-b31283efc2d3)) + (pin "VDD18PLL" (uuid 66489dd6-73ce-8941-040e-4340c431807e)) + (pin "RBIAS" (uuid 9fdd5a84-3c21-1715-0c20-4e94f027cc8d)) + (pin "VDDA33" (uuid c544f2ed-d9c4-dda7-a271-3b96ccfc663a)) + (pin "GND" (uuid c2195f51-af95-603b-cc17-b763ec872aff)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "U5") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_resistor_2") (at 146.05 74.93 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 5b1e792f-2f34-c5ea-8542-d2dc40c4f8ac) + (property "Reference" "R3" (id 0) (at 147.32 73.66 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "5K" (id 1) (at 147.32 76.2 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402" (id 2) (at 146.05 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://www.yageo.com/upload/media/product/productsearch/datasheet/rchip/PYu-RC_Group_51_RoHS_L_11.pdf" (id 3) (at 146.05 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "eeprom_rid" (id 4) (at 146.05 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "RES SMD 5K OHM 1% 1/16W 0402" (id 5) (at 146.05 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "YAGEO" (id 6) (at 146.05 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "RC0402FR-075KL" (id 7) (at 146.05 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "R" (id 8) (at 146.05 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C477765" (id 9) (at 146.05 74.93 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 07682643-48ce-a867-c4c0-3d5cdbc94d4a)) + (pin "2" (uuid 22f59029-3fba-ea58-5874-5c33e6d263c1)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "R3") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "LED_maker_ROYGBIV") (at 36.83 121.92 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid d902e1dc-d84c-b3b7-ad5f-7e8501130a02) + (property "Reference" "LED1" (id 0) (at 39.37 120.65 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Value" "19-21/R6C-FP1Q2L/3T" (id 1) (at 39.37 123.19 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Footprint" "jitx-design:Pkg0603" (id 2) (at 36.83 121.92 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (at 36.83 121.92 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "status-led_led" (id 4) (at 36.83 121.92 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "Everlight Elec 0603 various color SMD LEDs" (id 5) (at 36.83 121.92 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Everlight Elec" (id 6) (at 36.83 121.92 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "19-21/R6C-FP1Q2L/3T" (id 7) (at 36.83 121.92 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "LED" (id 8) (at 36.83 121.92 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C93128" (id 9) (at 36.83 121.92 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "a" (uuid 62cfedb0-e312-510b-7ca0-0904378eeac3)) + (pin "c" (uuid 0eb97e7c-1e98-0824-f802-9a45015e80fa)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "LED1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "C266601") (at 55.88 41.91 270.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 00b4b12b-5ae6-ab7f-700c-e0ddde2fefdf) + (property "Reference" "Card1" (id 0) (at 35.0999644399289 41.91 90.0) (effects (font (size 0.762 0.762)) (justify right ))) + (property "Value" "SD-101" (id 1) (at 36.0999644399289 41.91 90.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:SD_SMD_SD_101" (id 2) (at 55.88 41.91 90.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://datasheet.lcsc.com/lcsc/2109061830_XUNPU-SD-101_C266601.pdf" (id 3) (at 55.88 41.91 90.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "sd-connector_sd" (id 4) (at 55.88 41.91 270.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "-25℃~+85℃ 2.8mm silver Deck Standard SD card 260℃ C5191 Pluggable SMD SD Card Connectors ROHS" (id 5) (at 55.88 41.91 270.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "XUNPU" (id 6) (at 55.88 41.91 270.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "SD-101" (id 7) (at 55.88 41.91 270.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "Card" (id 8) (at 55.88 41.91 270.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C266601" (id 9) (at 55.88 41.91 270.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "CD_DAT3" (uuid 03aa77a0-f39f-6572-81c7-9ed174103b1a)) + (pin "CMD" (uuid 62b76d0b-a882-e49d-9871-371a0aa0174f)) + (pin "VSS1" (uuid 89faa46e-5039-5660-2f7b-5970a4951727)) + (pin "VDD" (uuid b4f3dca1-0843-33cb-3b26-f6ec7c64e682)) + (pin "CLK" (uuid 6d0cee27-2371-00ef-5aae-a2b3a40b36a4)) + (pin "VSS2" (uuid 1e735992-df4f-4981-6db3-b8b4bed2bd94)) + (pin "DAT0" (uuid 34074dad-7a5f-932a-b46b-6aaa8664651f)) + (pin "DAT1" (uuid 71faaf59-d7f0-cb4a-e055-821004225cc2)) + (pin "DAT2" (uuid dff6fea1-b532-cb2f-2c00-ef5040ca6e9d)) + (pin "CD" (uuid d507aa67-a35f-e207-fdb7-b194d4fe0fe7)) + (pin "WP" (uuid 0bb2b76d-e4e1-9418-d659-d03a9a6a0b5e)) + (pin "SHELL0" (uuid fda716e1-4939-28f2-a6f3-b6dfbbecba04)) + (pin "SHELL1" (uuid 491c84a3-444b-b1a8-a8ff-d5f4774189dd)) + (pin "SHELL2" (uuid 826b7238-a53f-ad23-77fe-4d03b0f4593b)) + (pin "SHELL3" (uuid 0308516d-e427-c543-fea9-1789e2b14e31)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "Card1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "C654991") (at 163.83 149.86 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 7a9aab96-3710-317a-c602-40c7f1c70e33) + (property "Reference" "X1" (id 0) (at 163.83 144.31999491999 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Value" "7B024000Q01" (id 1) (at 163.83 145.31999491999 0.0) (effects (font (size 0.762 0.762)) (justify left bottom ))) + (property "Footprint" "jitx-design:CRYSTAL_SMD_4P_L3_2_W2_5_BL" (id 2) (at 163.83 149.86 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://datasheet.lcsc.com/lcsc/2202231530_HD-7B024000Q01_C654991.pdf" (id 3) (at 163.83 149.86 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_xtal" (id 4) (at 163.83 149.86 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "24MHz SMD Crystal Resonator 18pF ±10ppm ±20ppm SMD3225-4P Crystals ROHS" (id 5) (at 163.83 149.86 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "HD" (id 6) (at 163.83 149.86 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "7B024000Q01" (id 7) (at 163.83 149.86 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "X" (id 8) (at 163.83 149.86 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C654991" (id 9) (at 163.83 149.86 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "GND0" (uuid 44f44bfe-f964-74dd-839f-63131a8aab27)) + (pin "GND1" (uuid 58646b20-171b-3ede-5569-dd681d566938)) + (pin "OUT" (uuid 34ce8b11-22ac-e23d-3592-47cf0e5ed10c)) + (pin "IN" (uuid f88edd82-a063-62db-fd48-44e873b765b3)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "X1") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor_8") (at 119.38 57.15 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 278efe8f-2b22-3272-1747-ac7e7ed33d65) + (property "Reference" "C9" (id 0) (at 120.65 55.88 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "1u" (id 1) (at 120.65 58.42 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_4" (id 2) (at 119.38 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://page.venkel.com/hubfs/Resources/Datasheets/C-Series.pdf" (id 3) (at 119.38 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_cap" (id 4) (at 119.38 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Venkel" (id 5) (at 119.38 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "C0402X5R250-105MNP" (id 6) (at 119.38 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 119.38 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C3853687" (id 8) (at 119.38 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 14ade4ae-f855-a7c6-1fab-648dd30c19f8)) + (pin "2" (uuid 15ad2ffc-3572-e090-f7d3-9fe3b6f07b4b)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "C9") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor_9") (at 40.64 115.57 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid ac04a15c-c9c5-8bb3-3b5e-fd044f4018ef) + (property "Reference" "C5" (id 0) (at 41.91 114.3 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "1u" (id 1) (at 41.91 116.84 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_4" (id 2) (at 40.64 115.57 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155C81E105ME11-01.pdf" (id 3) (at 40.64 115.57 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_cap" (id 4) (at 40.64 115.57 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Murata Electronics" (id 5) (at 40.64 115.57 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "GRM155C81E105ME11D" (id 6) (at 40.64 115.57 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 40.64 115.57 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C783277" (id 8) (at 40.64 115.57 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 81bd4074-6996-10f2-b840-39e36eb5f891)) + (pin "2" (uuid 5908d5f7-c4ad-e88e-25f2-ec075050126a)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "C5") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_resistor_1") (at 151.13 76.2 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3f0e49d2-85ed-0b40-5e80-097e080c8605) + (property "Reference" "R2" (id 0) (at 152.4 74.93 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "5K" (id 1) (at 152.4 77.47 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402" (id 2) (at 151.13 76.2 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://www.yageo.com/upload/media/product/productsearch/datasheet/rchip/PYu-RC_Group_51_RoHS_L_11.pdf" (id 3) (at 151.13 76.2 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "eeprom_rid" (id 4) (at 151.13 76.2 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Description" "RES SMD 5K OHM 1% 1/16W 0402" (id 5) (at 151.13 76.2 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "YAGEO" (id 6) (at 151.13 76.2 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "RC0402FR-075KL" (id 7) (at 151.13 76.2 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "R" (id 8) (at 151.13 76.2 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C477765" (id 9) (at 151.13 76.2 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 8b7f80ea-1c32-145c-c9ce-acc9b32a30e4)) + (pin "2" (uuid 46e5e307-231a-00d3-69dd-621540b2ba61)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "R2") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor_6") (at 107.95 57.15 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 659c1893-4eef-a40a-1278-e3dbf31a8f0f) + (property "Reference" "C8" (id 0) (at 109.22 55.88 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "1u" (id 1) (at 109.22 58.42 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_4" (id 2) (at 107.95 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://page.venkel.com/hubfs/Resources/Datasheets/C-Series.pdf" (id 3) (at 107.95 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_cap" (id 4) (at 107.95 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Venkel" (id 5) (at 107.95 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "C0402X5R250-105MNP" (id 6) (at 107.95 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 107.95 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C3853687" (id 8) (at 107.95 57.15 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 2253ade9-edf5-212a-8476-644da93f48fa)) + (pin "2" (uuid 9c69f4f6-075e-ad96-c625-538841ae99c9)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "C8") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "my_capacitor_7") (at 43.18 129.54 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid d169b019-eda7-256d-e9dd-836b6775431e) + (property "Reference" "C4" (id 0) (at 44.45 128.27 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "1u" (id 1) (at 44.45 130.81 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:Pkg0402_4" (id 2) (at 43.18 129.54 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "https://ds.yuden.co.jp/TYCOMPAS/ut/detail?pn=EMK105BJ105KV-F &u=M" (id 3) (at 43.18 129.54 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "media-controller_cap" (id 4) (at 43.18 129.54 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Manufacturer" "Taiyo Yuden" (id 5) (at 43.18 129.54 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "MPN" "EMK105BJ105KV-F" (id 6) (at 43.18 129.54 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Reference-prefix" "C" (id 7) (at 43.18 129.54 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "LCSC" "C92755" (id 8) (at 43.18 129.54 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "1" (uuid 44f628b6-d6fa-2c30-d50c-b5beff6d9502)) + (pin "2" (uuid 47ca9346-80b6-a33c-1f81-3d2c6b708ec6)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "C4") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "vdd33") (at 185.42 8.89 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid d4d9baa8-8492-652a-e013-59366ac2a253) + (property "Reference" "#PWR?" (id 0) (at 185.42 8.89 0) (effects hide)) + (property "Value" "vdd33" (id 1) (at 182.88 6.35 0.0) (effects (font (size 0.762 0.762)))) + (property "Footprint" "" (id 2) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (effects (font (size 0.762 0.762)) hide)) + (pin "~" (uuid a052372f-567a-9c96-04be-93bcb1830546)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "#PWR?") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "gnd") (at 35.56 168.91 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 1252625e-a17c-999b-043e-081706feef21) + (property "Reference" "#PWR?" (id 0) (at 35.56 168.91 0) (effects hide)) + (property "Value" "gnd" (id 1) (at 33.02 171.45 0.0) (effects (font (size 0.762 0.762)))) + (property "Footprint" "" (id 2) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (effects (font (size 0.762 0.762)) hide)) + (pin "~" (uuid 663ab407-eb48-8a5e-d581-12d42db14f0b)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/7821f7a4-2252-574c-ca60-454d6810d138" + (reference "#PWR?") (unit 1) + ) + ) + ) + ) + +) diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design-4.kicad_sch b/sd_card_reader/designs/jitx-design/kicad/jitx-design-4.kicad_sch new file mode 100644 index 0000000..3a5fa3e --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design-4.kicad_sch @@ -0,0 +1,2374 @@ + +(kicad_sch + (version 20230121) + (generator jitx) + (uuid 251d2f37-0c16-f48d-d2cb-31d1e2af284f) + (paper "A") + + + (lib_symbols + + (symbol "vdd50" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "vdd50" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "vdd50_1_0" + + (pin power_in line (at 0.0 0.0 90) (length 0.0) + (name "vdd50" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "gnd" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "gnd" (id 1) (at -2.54 -2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "gnd_1_0" + + (pin power_in line (at 0.0 0.0 270) (length 0.0) + (name "gnd" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 -1.27)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.27) (xy 1.27 -1.27)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.762 -1.778) (xy 0.762 -1.778)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.254 -2.286) (xy 0.254 -2.286)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "vdd33" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "vdd33" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "vdd33_1_0" + + (pin power_in line (at 0.0 0.0 90) (length 0.0) + (name "vdd33" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "test_point_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "test_point_sym" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "test_point_sym_1_0" + + (pin unspecified line (at 2.54 0.0 180) (length 0.0) + (name "p" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -0.635 0.0) (xy 2.54 0.0)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "unplated_hole_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "unplated_hole_sym" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "unplated_hole_sym_1_0" + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -1.27 0.0) (radius 1.143) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "BD433M5FP_CE2" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "BD433M5FP_CE2" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "BD433M5FP_CE2_1_0" + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 0.0 0) (length 2.54000508001016) + (name "FIN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "VOUT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ALTIUM_POWER_ARROW" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ALTIUM_POWER_ARROW" (id 1) (at 2.54 -0.508 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ALTIUM_POWER_ARROW_1_0" + + (pin unspecified line (at 0.0 0.0 0) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 1.27 0.0)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.794 0.0) (xy 1.27 0.762) (xy 1.27 -0.762) (xy 2.794 0.0)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "TYPE_C_31_G_03" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 18.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "TYPE_C_31_G_03" (id 1) (at 0.0 17.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "TYPE_C_31_G_03_1_0" + + (pin unspecified line (at 2.54 -22.86 90) (length 5.08001016002032) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -22.86 90) (length 5.08001016002032) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 2.54 20.32 270) (length 5.08001016002032) + (name "GND2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 20.32 270) (length 5.08001016002032) + (name "GND3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 12.7 180) (length 2.54000508001016) + (name "GND4" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 10.16 180) (length 2.54000508001016) + (name "SSRXP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 7.62 180) (length 2.54000508001016) + (name "SSRXN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 5.08 180) (length 2.54000508001016) + (name "VBUS0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 -15.24 0) (length 2.54000508001016) + (name "GND5" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 -2.54 0) (length 2.54000508001016) + (name "DN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 0.0 0) (length 2.54000508001016) + (name "DP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 2.54 0) (length 2.54000508001016) + (name "CC1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 5.08 0) (length 2.54000508001016) + (name "VBUS1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 7.62 0) (length 2.54000508001016) + (name "SSTXN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 10.16 0) (length 2.54000508001016) + (name "SSTXP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 12.7 0) (length 2.54000508001016) + (name "GND6" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -11.4300228600457 -17.7800355600711) (end 13.9700279400559 15.240030480061) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -10.1600203200406 13.9700279400559) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "JITX_symbol" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 3.902 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + + (property "Value" "JITX_symbol" (id 1) (at -2.54 2.84 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "JITX_symbol_1_0" + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045) (xy 10.64306775 2.736906) (xy 9.40420775 2.7367485) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 9.6444795 5.3075045) (xy 11.204365675778 7.41173405617841)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 11.204365675778 7.41173405617841) (mid 11.5715164132218 7.68647346428221) (end 12.02033525 7.780511) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 12.02033525 7.780511) (xy 10.7521741568897 7.77915244080762)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 10.7521741568897 7.77915244080762) (mid 10.3244289019203 7.71659474940583) (end 9.95883526617392 7.48589849585123) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.95883526617392 7.48589849585123) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 4.80545275 2.7367835) (xy 5.52213025 2.736801) (xy 6.09744275 6.006396) (xy 7.04751775 6.007796) (xy 7.17619525 6.746366) (xy 6.22827275 6.7467685) (xy 6.35336275 7.4639535) (xy 5.63701775 7.463901) (xy 4.80545275 2.7367835)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.81951158629631 7.46403410472138) (mid 4.56761122169657 7.38909574502682) (end 4.39731705832001 7.1889221969265) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.39731705832001 7.1889221969265) (xy 4.39731771337896 7.18892347769723)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.39731771337896 7.18892347769723) (mid 4.37903669579069 6.93835280018836) (end 4.54329029777422 6.74824595058332) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.54329029777422 6.74824595058332) (xy 4.54329042972881 6.74824604286013)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.54329042972881 6.74824604286013) (mid 4.8347064457627 6.7584952028342) (end 5.05014573460892 6.95500029819479) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.05014573460892 6.95500029819479) (xy 5.0501454400865 6.95500033093321)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 5.0501454400865 6.95500033093321) (mid 5.11292088648779 7.19473733498076) (end 4.98779016906679 7.4086459400865) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.98779016906679 7.4086459400865) (xy 4.98779016800714 7.40864611461444)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.98779016800714 7.40864611461444) (mid 4.90690057503162 7.44621327349144) (end 4.81951161284777 7.46403424333775) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.81951161284777 7.46403424333775) (xy 4.81951158629631 7.46403410472138)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 3.89443775 6.3231635) (xy 3.17699025 6.3231985)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.17699025 6.3231985) (xy 2.52209151060913 2.60191506576061)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 2.52209151060913 2.60191506576061) (mid 2.05675349031717 1.92653195318543) (end 1.2808715 1.660658) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 1.2808715 1.660658) (xy 1.16204986761718 0.946150157081704)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 1.16204986761718 0.946150157081704) (mid 2.47433952610446 1.46740670189427) (end 3.24900260539611 2.64796150657934) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.24900260539611 2.64796150657934) (xy 3.89443775 6.3231635)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.6536755 2.739566) (mid 4.47355971115545 2.84819051977396) (end 4.42300775 3.05236075) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.42300775 3.05236075) (xy 4.93274772036982 5.99834598533872)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.93274772036982 5.99834598533872) (mid 4.87164254214732 6.21359196465728) (end 4.67623276466128 6.32258597036982) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.67623276466128 6.32258597036982) (xy 4.03524193183806 6.32123973631567)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.03524193183806 6.32123973631567) (mid 4.22213158850411 6.21328643348833) (end 4.27976525 6.005296) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.27976525 6.005296) (xy 3.7661802699951 3.02495606296363)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 3.7661802699951 3.02495606296363) (mid 3.84086820737184 2.8260933338554) (end 4.03429774834461 2.73828851794516) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.03429774834461 2.73828851794516) (xy 4.6536755 2.739566)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.6444795 5.3075045) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 8.68532525 7.776591)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.68532525 7.776591) (xy 7.36731275 7.777781)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 7.36731275 7.777781) (xy 8.31381775 5.253301)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.31381775 5.253301) (xy 6.69911401210568 3.12239450877699)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 6.69911401210568 3.12239450877699) (mid 6.34438927313888 2.86083653042072) (end 5.92142775 2.7369585) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.92142775 2.7369585) (xy 7.20697795987015 2.73714213727357)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 7.20697795987015 2.73714213727357) (mid 7.6509829133912 2.835530220617) (end 8.01080546865927 3.11364592030973) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.01080546865927 3.11364592030973) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ALTIUM_POWER_GND_POWER" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ALTIUM_POWER_GND_POWER" (id 1) (at 2.54 -1.016 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ALTIUM_POWER_GND_POWER_1_0" + + (pin unspecified line (at 0.0 0.0 0) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 1.27 0.0)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -1.397) (xy 1.27 1.397)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.69545 -1.0922) (xy 1.69545 1.0922)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.11455 -0.762) (xy 2.11455 0.762)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.54 -0.4572) (xy 2.54 0.4572)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "SD_101" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 20.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "SD_101" (id 1) (at 0.0 19.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "SD_101_1_0" + + (pin unspecified line (at -16.51 17.78 0) (length 2.54000508001016) + (name "CD_DAT3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 15.24 0) (length 2.54000508001016) + (name "CMD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 12.7 0) (length 2.54000508001016) + (name "VSS1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 10.16 0) (length 2.54000508001016) + (name "VDD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 7.62 0) (length 2.54000508001016) + (name "CLK" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 5.08 0) (length 2.54000508001016) + (name "VSS2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 2.54 0) (length 2.54000508001016) + (name "DAT0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 0.0 0) (length 2.54000508001016) + (name "DAT1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -2.54 0) (length 2.54000508001016) + (name "DAT2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -5.08 0) (length 2.54000508001016) + (name "CD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -7.62 0) (length 2.54000508001016) + (name "WP" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -10.16 0) (length 2.54000508001016) + (name "SHELL0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -12.7 0) (length 2.54000508001016) + (name "SHELL1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -15.24 0) (length 2.54000508001016) + (name "SHELL2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -17.78 0) (length 2.54000508001016) + (name "SHELL3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -13.9700279400559 -20.3200406400813) (end 16.510033020066 20.3200406400813) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -13.3350266700533 19.6850393700787) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "M24C04_WMN6TP" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 6.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "M24C04_WMN6TP" (id 1) (at 0.0 5.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "M24C04_WMN6TP_1_0" + + (pin unspecified line (at -10.16 3.81 0) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 1.27 0) (length 2.54000508001016) + (name "E1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 -1.27 0) (length 2.54000508001016) + (name "E2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 -3.81 0) (length 2.54000508001016) + (name "VSS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 -3.81 180) (length 2.54000508001016) + (name "SDA" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 -1.27 180) (length 2.54000508001016) + (name "SCL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 1.27 180) (length 2.54000508001016) + (name "WC_NOT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 3.81 180) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -7.62001524003048 -6.85801371602743) (end 7.62001524003048 6.85801371602743) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "Sym7B024000Q01" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "Sym7B024000Q01" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "Sym7B024000Q01_1_0" + + (pin unspecified line (at 7.62 -2.54 180) (length 2.54000508001016) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 7.62 2.54 180) (length 2.54000508001016) + (name "OUT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "IN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -0.508001016002032 -1.77800355600711) (end 0.508001016002032 1.77800355600711) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 -3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 5.08001016002032 2.54000508001016) (xy 2.54000508001016 2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 2.54000508001016) (xy 2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 -0.0) (xy 1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -5.08001016002032 -2.54000508001016) (xy -2.54000508001016 -2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -2.54000508001016) (xy -2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -0.0) (xy -1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27000254000508 -1.77800355600711) (xy 1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -1.27000254000508 -1.77800355600711) (xy -1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "diode_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "diode_sym" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "diode_sym_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "a" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "c" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (circle (center 0.0 0.0) (radius 1.905) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27 0.254) (xy 2.286 -0.762)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -0.508) (xy 2.286 -1.524)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -0.762) (xy 2.286 -0.762) (xy 2.286 -0.381)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -1.524) (xy 2.286 -1.524) (xy 2.286 -1.143)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 2.54) (xy 0.0 1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.016) (xy 1.27 1.016) (xy -1.27 1.016) (xy 0.0 -1.016)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.016) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.016) (xy 1.27 -1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "supply_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "supply_sym" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "supply_sym_1_0" + + (pin unspecified line (at 0.0 0.0 90) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ground_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ground_sym" (id 1) (at -2.54 -2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ground_sym_1_0" + + (pin unspecified line (at 0.0 0.0 270) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 -1.27)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.27) (xy 1.27 -1.27)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.762 -1.778) (xy 0.762 -1.778)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.254 -2.286) (xy 0.254 -2.286)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + + (property "Value" "" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.5 0.5)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.5 0.5)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "capacitor_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "capacitor_sym" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "capacitor_sym_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "USB2240_AEZG_06" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 25.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "USB2240_AEZG_06" (id 1) (at 0.0 24.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "USB2240_AEZG_06_1_0" + + (pin unspecified line (at -39.37 20.32 0) (length 2.54000508001016) + (name "LED" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 17.78 0) (length 2.54000508001016) + (name "USB+" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 15.24 0) (length 2.54000508001016) + (name "USB-" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 12.7 0) (length 2.54000508001016) + (name "xD_D3_SD_D1_MS_D5" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 10.16 0) (length 2.54000508001016) + (name "xD_D2_SD_D0_MS_D4" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 7.62 0) (length 2.54000508001016) + (name "VDD330" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 5.08 0) (length 2.54000508001016) + (name "xD_D1_SD_D7_MS_D6" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 2.54 0) (length 2.54000508001016) + (name "xD_D0_SD_D6_MS_D7" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 0.0 0) (length 2.54000508001016) + (name "xD_nWP_SD_CLK_MS_BS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -2.54 0) (length 2.54000508001016) + (name "xD_ALE_SD_D5_MS_D1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -5.08 0) (length 2.54000508001016) + (name "xD_CLE_SD_CMD_MS_D0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -7.62 0) (length 2.54000508001016) + (name "xD_nWE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -10.16 0) (length 2.54000508001016) + (name "VDD18" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -12.7 0) (length 2.54000508001016) + (name "VDD331" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -15.24 0) (length 2.54000508001016) + (name "xD_nCE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -17.78 0) (length 2.54000508001016) + (name "xD_nRE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -20.32 0) (length 2.54000508001016) + (name "xD_nB_R" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -22.86 0) (length 2.54000508001016) + (name "RESET_N" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -22.86 180) (length 2.54000508001016) + (name "xD_nCD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -20.32 180) (length 2.54000508001016) + (name "xD_D7_SD_D4_MS_D2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -17.78 180) (length 2.54000508001016) + (name "CRD_PWR" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -15.24 180) (length 2.54000508001016) + (name "VDD332" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -12.7 180) (length 2.54000508001016) + (name "xD_D6_SD_D3_MS_D3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -10.16 180) (length 2.54000508001016) + (name "MS_INS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -7.62 180) (length 2.54000508001016) + (name "xD_D5_SD_D2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -5.08 180) (length 2.54000508001016) + (name "SD_nCD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -2.54 180) (length 2.54000508001016) + (name "RXD_SDA" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 0.0 180) (length 2.54000508001016) + (name "TEST" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 2.54 180) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 5.08 180) (length 2.54000508001016) + (name "xD_D4_SD_WP_MS_SCLK" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 7.62 180) (length 2.54000508001016) + (name "TXD_SCK_MS_SKT_SEL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 10.16 180) (length 2.54000508001016) + (name "XTAL2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 12.7 180) (length 2.54000508001016) + (name "XTAL1_CLKIN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 15.24 180) (length 2.54000508001016) + (name "VDD18PLL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 17.78 180) (length 2.54000508001016) + (name "RBIAS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 20.32 180) (length 2.54000508001016) + (name "VDDA33" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 22.86 180) (length 2.54000508001016) + (name "GND" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -36.8300736601473 -25.4000508001016) (end 36.8300736601473 25.4000508001016) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -35.5600711201422 21.5900431800864) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "resistor_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "resistor_sym" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "resistor_sym_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "gen_testpad" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "gen_testpad" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "gen_testpad_1_0" + + (pin unspecified line (at 2.54 0.0 180) (length 0.0) + (name "p" (effects (font (size 0.0 0.0)))) + (number "tp" (effects (font (size 0.0 0.0)))) + ) + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -0.635 0.0) (xy 2.54 0.0)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "JITX" + (in_bom yes) (on_board yes) + + (property "Reference" "JITX" (id 0) (at -2.54 3.902 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + + (property "Value" "JITX" (id 1) (at -2.54 2.84 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "JITX_1_0" + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045) (xy 10.64306775 2.736906) (xy 9.40420775 2.7367485) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 9.6444795 5.3075045) (xy 11.204365675778 7.41173405617841)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 11.204365675778 7.41173405617841) (mid 11.5715164132218 7.68647346428221) (end 12.02033525 7.780511) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 12.02033525 7.780511) (xy 10.7521741568897 7.77915244080762)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 10.7521741568897 7.77915244080762) (mid 10.3244289019203 7.71659474940583) (end 9.95883526617392 7.48589849585123) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.95883526617392 7.48589849585123) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 4.80545275 2.7367835) (xy 5.52213025 2.736801) (xy 6.09744275 6.006396) (xy 7.04751775 6.007796) (xy 7.17619525 6.746366) (xy 6.22827275 6.7467685) (xy 6.35336275 7.4639535) (xy 5.63701775 7.463901) (xy 4.80545275 2.7367835)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.81951158629631 7.46403410472138) (mid 4.56761122169657 7.38909574502682) (end 4.39731705832001 7.1889221969265) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.39731705832001 7.1889221969265) (xy 4.39731771337896 7.18892347769723)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.39731771337896 7.18892347769723) (mid 4.37903669579069 6.93835280018836) (end 4.54329029777422 6.74824595058332) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.54329029777422 6.74824595058332) (xy 4.54329042972881 6.74824604286013)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.54329042972881 6.74824604286013) (mid 4.8347064457627 6.7584952028342) (end 5.05014573460892 6.95500029819479) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.05014573460892 6.95500029819479) (xy 5.0501454400865 6.95500033093321)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 5.0501454400865 6.95500033093321) (mid 5.11292088648779 7.19473733498076) (end 4.98779016906679 7.4086459400865) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.98779016906679 7.4086459400865) (xy 4.98779016800714 7.40864611461444)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.98779016800714 7.40864611461444) (mid 4.90690057503162 7.44621327349144) (end 4.81951161284777 7.46403424333775) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.81951161284777 7.46403424333775) (xy 4.81951158629631 7.46403410472138)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 3.89443775 6.3231635) (xy 3.17699025 6.3231985)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.17699025 6.3231985) (xy 2.52209151060913 2.60191506576061)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 2.52209151060913 2.60191506576061) (mid 2.05675349031717 1.92653195318543) (end 1.2808715 1.660658) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 1.2808715 1.660658) (xy 1.16204986761718 0.946150157081704)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 1.16204986761718 0.946150157081704) (mid 2.47433952610446 1.46740670189427) (end 3.24900260539611 2.64796150657934) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.24900260539611 2.64796150657934) (xy 3.89443775 6.3231635)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.6536755 2.739566) (mid 4.47355971115545 2.84819051977396) (end 4.42300775 3.05236075) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.42300775 3.05236075) (xy 4.93274772036982 5.99834598533872)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.93274772036982 5.99834598533872) (mid 4.87164254214732 6.21359196465728) (end 4.67623276466128 6.32258597036982) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.67623276466128 6.32258597036982) (xy 4.03524193183806 6.32123973631567)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.03524193183806 6.32123973631567) (mid 4.22213158850411 6.21328643348833) (end 4.27976525 6.005296) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.27976525 6.005296) (xy 3.7661802699951 3.02495606296363)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 3.7661802699951 3.02495606296363) (mid 3.84086820737184 2.8260933338554) (end 4.03429774834461 2.73828851794516) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.03429774834461 2.73828851794516) (xy 4.6536755 2.739566)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.6444795 5.3075045) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 8.68532525 7.776591)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.68532525 7.776591) (xy 7.36731275 7.777781)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 7.36731275 7.777781) (xy 8.31381775 5.253301)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.31381775 5.253301) (xy 6.69911401210568 3.12239450877699)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 6.69911401210568 3.12239450877699) (mid 6.34438927313888 2.86083653042072) (end 5.92142775 2.7369585) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.92142775 2.7369585) (xy 7.20697795987015 2.73714213727357)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 7.20697795987015 2.73714213727357) (mid 7.6509829133912 2.835530220617) (end 8.01080546865927 3.11364592030973) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.01080546865927 3.11364592030973) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_1" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_1" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_1_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_2" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_2" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_2_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C118280" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 6.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C118280" (id 1) (at 0.0 5.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C118280_1_0" + + (pin unspecified line (at -10.16 3.81 0) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 1.27 0) (length 2.54000508001016) + (name "E1" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 -1.27 0) (length 2.54000508001016) + (name "E2" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 -3.81 0) (length 2.54000508001016) + (name "VSS" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 -3.81 180) (length 2.54000508001016) + (name "SDA" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 -1.27 180) (length 2.54000508001016) + (name "SCL" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 1.27 180) (length 2.54000508001016) + (name "WC_NOT" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 3.81 180) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -7.62001524003048 -6.85801371602743) (end 7.62001524003048 6.85801371602743) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_3" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_3" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_3_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C442601" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C442601" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C442601_1_0" + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 0.0 0) (length 2.54000508001016) + (name "FIN" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "VOUT" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "LED_maker_ROYGBIV" + (in_bom yes) (on_board yes) + + (property "Reference" "LED" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "LED_maker_ROYGBIV" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "LED_maker_ROYGBIV_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "a" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "c" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (circle (center 0.0 0.0) (radius 1.905) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27 0.254) (xy 2.286 -0.762)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -0.508) (xy 2.286 -1.524)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -0.762) (xy 2.286 -0.762) (xy 2.286 -0.381)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -1.524) (xy 2.286 -1.524) (xy 2.286 -1.143)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 2.54) (xy 0.0 1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.016) (xy 1.27 1.016) (xy -1.27 1.016) (xy 0.0 -1.016)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.016) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.016) (xy 1.27 -1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_4" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_4" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_4_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_1" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_1" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_1_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_5" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_5" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_5_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C654991" + (in_bom yes) (on_board yes) + + (property "Reference" "X" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C654991" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C654991_1_0" + + (pin unspecified line (at 7.62 -2.54 180) (length 2.54000508001016) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 7.62 2.54 180) (length 2.54000508001016) + (name "OUT" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "IN" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -0.508001016002032 -1.77800355600711) (end 0.508001016002032 1.77800355600711) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 -3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 5.08001016002032 2.54000508001016) (xy 2.54000508001016 2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 2.54000508001016) (xy 2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 -0.0) (xy 1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -5.08001016002032 -2.54000508001016) (xy -2.54000508001016 -2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -2.54000508001016) (xy -2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -0.0) (xy -1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27000254000508 -1.77800355600711) (xy 1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -1.27000254000508 -1.77800355600711) (xy -1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "C840338" + (in_bom yes) (on_board yes) + + (property "Reference" "USB" (id 0) (at 0.0 18.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C840338" (id 1) (at 0.0 17.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C840338_1_0" + + (pin unspecified line (at 2.54 -22.86 90) (length 5.08001016002032) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 0.0 -22.86 90) (length 5.08001016002032) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 2.54 20.32 270) (length 5.08001016002032) + (name "GND2" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 0.0 20.32 270) (length 5.08001016002032) + (name "GND3" (effects (font (size 1.0 1.0)))) + (number "16" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 12.7 180) (length 2.54000508001016) + (name "GND4" (effects (font (size 1.0 1.0)))) + (number "B12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 10.16 180) (length 2.54000508001016) + (name "SSRXP1" (effects (font (size 1.0 1.0)))) + (number "B11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 7.62 180) (length 2.54000508001016) + (name "SSRXN1" (effects (font (size 1.0 1.0)))) + (number "B10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 5.08 180) (length 2.54000508001016) + (name "VBUS0" (effects (font (size 1.0 1.0)))) + (number "B9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 -15.24 0) (length 2.54000508001016) + (name "GND5" (effects (font (size 1.0 1.0)))) + (number "A12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 -2.54 0) (length 2.54000508001016) + (name "DN1" (effects (font (size 1.0 1.0)))) + (number "A7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 0.0 0) (length 2.54000508001016) + (name "DP1" (effects (font (size 1.0 1.0)))) + (number "A6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 2.54 0) (length 2.54000508001016) + (name "CC1" (effects (font (size 1.0 1.0)))) + (number "A5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 5.08 0) (length 2.54000508001016) + (name "VBUS1" (effects (font (size 1.0 1.0)))) + (number "A4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 7.62 0) (length 2.54000508001016) + (name "SSTXN1" (effects (font (size 1.0 1.0)))) + (number "A3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 10.16 0) (length 2.54000508001016) + (name "SSTXP1" (effects (font (size 1.0 1.0)))) + (number "A2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 12.7 0) (length 2.54000508001016) + (name "GND6" (effects (font (size 1.0 1.0)))) + (number "A1" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -11.4300228600457 -17.7800355600711) (end 13.9700279400559 15.240030480061) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -10.1600203200406 13.9700279400559) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_6" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_6" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_6_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C266601" + (in_bom yes) (on_board yes) + + (property "Reference" "Card" (id 0) (at 0.0 20.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C266601" (id 1) (at 0.0 19.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C266601_1_0" + + (pin unspecified line (at -16.51 17.78 0) (length 2.54000508001016) + (name "CD_DAT3" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 15.24 0) (length 2.54000508001016) + (name "CMD" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 12.7 0) (length 2.54000508001016) + (name "VSS1" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 10.16 0) (length 2.54000508001016) + (name "VDD" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 7.62 0) (length 2.54000508001016) + (name "CLK" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 5.08 0) (length 2.54000508001016) + (name "VSS2" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 2.54 0) (length 2.54000508001016) + (name "DAT0" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 0.0 0) (length 2.54000508001016) + (name "DAT1" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -2.54 0) (length 2.54000508001016) + (name "DAT2" (effects (font (size 1.0 1.0)))) + (number "9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -5.08 0) (length 2.54000508001016) + (name "CD" (effects (font (size 1.0 1.0)))) + (number "10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -7.62 0) (length 2.54000508001016) + (name "WP" (effects (font (size 1.0 1.0)))) + (number "11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -10.16 0) (length 2.54000508001016) + (name "SHELL0" (effects (font (size 1.0 1.0)))) + (number "12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -12.7 0) (length 2.54000508001016) + (name "SHELL1" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -15.24 0) (length 2.54000508001016) + (name "SHELL2" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -17.78 0) (length 2.54000508001016) + (name "SHELL3" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -13.9700279400559 -20.3200406400813) (end 16.510033020066 20.3200406400813) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -13.3350266700533 19.6850393700787) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor_2" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_2" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_2_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C174142" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + + (property "Value" "C174142" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C174142_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.5 0.5)))) + (number "1" (effects (font (size 0.5 0.5)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.5 0.5)))) + (number "2" (effects (font (size 0.5 0.5)))) + ) + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor_3" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_3" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_3_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_7" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_7" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_7_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_8" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_8" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_8_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_4" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_4" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_4_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_5" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_5" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_5_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C633328" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 25.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C633328" (id 1) (at 0.0 24.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C633328_1_0" + + (pin unspecified line (at -39.37 20.32 0) (length 2.54000508001016) + (name "LED" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 17.78 0) (length 2.54000508001016) + (name "USB+" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 15.24 0) (length 2.54000508001016) + (name "USB-" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 12.7 0) (length 2.54000508001016) + (name "xD_D3_SD_D1_MS_D5" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 10.16 0) (length 2.54000508001016) + (name "xD_D2_SD_D0_MS_D4" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 7.62 0) (length 2.54000508001016) + (name "VDD330" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 5.08 0) (length 2.54000508001016) + (name "xD_D1_SD_D7_MS_D6" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 2.54 0) (length 2.54000508001016) + (name "xD_D0_SD_D6_MS_D7" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 0.0 0) (length 2.54000508001016) + (name "xD_nWP_SD_CLK_MS_BS" (effects (font (size 1.0 1.0)))) + (number "9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -2.54 0) (length 2.54000508001016) + (name "xD_ALE_SD_D5_MS_D1" (effects (font (size 1.0 1.0)))) + (number "10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -5.08 0) (length 2.54000508001016) + (name "xD_CLE_SD_CMD_MS_D0" (effects (font (size 1.0 1.0)))) + (number "11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -7.62 0) (length 2.54000508001016) + (name "xD_nWE" (effects (font (size 1.0 1.0)))) + (number "12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -10.16 0) (length 2.54000508001016) + (name "VDD18" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -12.7 0) (length 2.54000508001016) + (name "VDD331" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -15.24 0) (length 2.54000508001016) + (name "xD_nCE" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -17.78 0) (length 2.54000508001016) + (name "xD_nRE" (effects (font (size 1.0 1.0)))) + (number "16" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -20.32 0) (length 2.54000508001016) + (name "xD_nB_R" (effects (font (size 1.0 1.0)))) + (number "17" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -22.86 0) (length 2.54000508001016) + (name "RESET_N" (effects (font (size 1.0 1.0)))) + (number "18" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -22.86 180) (length 2.54000508001016) + (name "xD_nCD" (effects (font (size 1.0 1.0)))) + (number "19" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -20.32 180) (length 2.54000508001016) + (name "xD_D7_SD_D4_MS_D2" (effects (font (size 1.0 1.0)))) + (number "20" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -17.78 180) (length 2.54000508001016) + (name "CRD_PWR" (effects (font (size 1.0 1.0)))) + (number "21" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -15.24 180) (length 2.54000508001016) + (name "VDD332" (effects (font (size 1.0 1.0)))) + (number "22" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -12.7 180) (length 2.54000508001016) + (name "xD_D6_SD_D3_MS_D3" (effects (font (size 1.0 1.0)))) + (number "23" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -10.16 180) (length 2.54000508001016) + (name "MS_INS" (effects (font (size 1.0 1.0)))) + (number "24" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -7.62 180) (length 2.54000508001016) + (name "xD_D5_SD_D2" (effects (font (size 1.0 1.0)))) + (number "25" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -5.08 180) (length 2.54000508001016) + (name "SD_nCD" (effects (font (size 1.0 1.0)))) + (number "26" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -2.54 180) (length 2.54000508001016) + (name "RXD_SDA" (effects (font (size 1.0 1.0)))) + (number "27" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 0.0 180) (length 2.54000508001016) + (name "TEST" (effects (font (size 1.0 1.0)))) + (number "28" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 2.54 180) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "29" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 5.08 180) (length 2.54000508001016) + (name "xD_D4_SD_WP_MS_SCLK" (effects (font (size 1.0 1.0)))) + (number "30" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 7.62 180) (length 2.54000508001016) + (name "TXD_SCK_MS_SKT_SEL" (effects (font (size 1.0 1.0)))) + (number "31" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 10.16 180) (length 2.54000508001016) + (name "XTAL2" (effects (font (size 1.0 1.0)))) + (number "32" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 12.7 180) (length 2.54000508001016) + (name "XTAL1_CLKIN" (effects (font (size 1.0 1.0)))) + (number "33" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 15.24 180) (length 2.54000508001016) + (name "VDD18PLL" (effects (font (size 1.0 1.0)))) + (number "34" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 17.78 180) (length 2.54000508001016) + (name "RBIAS" (effects (font (size 1.0 1.0)))) + (number "35" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 20.32 180) (length 2.54000508001016) + (name "VDDA33" (effects (font (size 1.0 1.0)))) + (number "36" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 22.86 180) (length 2.54000508001016) + (name "GND" (effects (font (size 1.0 1.0)))) + (number "37" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -36.8300736601473 -25.4000508001016) (end 36.8300736601473 25.4000508001016) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -35.5600711201422 21.5900431800864) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_9" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_9" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_9_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_6" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_6" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_6_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_7" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_7" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_7_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "Generic_Mounting_Hole" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "Generic_Mounting_Hole" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "Generic_Mounting_Hole_1_0" + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -1.27 0.0) (radius 1.143) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_10" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_10" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_10_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_11" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_11" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_11_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_12" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_12" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_12_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + ) + (wire (pts (xy 40.64 140.97) (xy 40.64 139.7)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid 0ef0513d-15f3-15c2-6816-0fce000ca92d)) + (wire (pts (xy 45.72 143.51) (xy 45.72 142.24)) (stroke (width 0.127) (type default) (color 0 0 0 0)) (uuid c68646f6-c2a9-2601-dafd-86ea10efaa56)) + (polyline (pts (xy 36.83 134.62) (xy 63.5 134.62)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid 1fec1b55-84b4-be37-6833-ecd6e7d64c0e)) + (polyline (pts (xy 36.83 158.75) (xy 63.5 158.75)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid 3fae9608-b079-dc8c-db2e-5b740403947b)) + (polyline (pts (xy 36.83 158.75) (xy 36.83 134.62)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid a013867d-6612-55cd-93e9-28d7f477fdde)) + (polyline (pts (xy 63.5 158.75) (xy 63.5 134.62)) (stroke (width 0.127) (type dot) (color 0 0 0 0)) (uuid 4a39a58b-b87b-4e11-3d18-9261587b0a49)) + + (global_label "TXD_SCK_MS_SKT_SEL" (shape passive) (at 44.45 154.94 0) + (effects (font (size 0.762 0.762)) (justify left )) + (uuid 228b1444-65b7-1260-253e-ac49213135a0) + ) + + (global_label "RXD_SDA" (shape passive) (at 44.45 149.86 0) + (effects (font (size 0.762 0.762)) (justify left )) + (uuid 054d8394-f1e2-d72a-80cb-527e74d8e00b) + ) + + (label "test" (at 36.83 134.62 0) + (effects (font (size 0.762 0.762)) (justify left bottom )) + (uuid 7e622b23-5284-f5a6-0289-f8debce72a6b) + ) + + (symbol (lib_id "gen_testpad") (at 45.72 139.7 270.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 799576cf-a21c-cfbd-d1b2-944d1f5ac013) + (property "Reference" "U7" (id 0) (at 43.815 142.24 90.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "" (id 1) (at 45.72 139.7 90.0) (effects (font (size 0.762 0.762)) )) + (property "Footprint" "jitx-design:TESTPAD" (id 2) (at 45.72 139.7 90.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (at 45.72 139.7 90.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "test-points_point1" (id 4) (at 45.72 139.7 270.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "p" (uuid f05d2f43-99fd-344f-6aec-89e0bc15c7ef)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/eaa54a66-2ef3-f9f9-2de2-c2b1b388013e" + (reference "U7") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "gen_testpad") (at 41.91 149.86 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid e4fdb168-ea1b-7ef5-90cc-9c265538fd11) + (property "Reference" "U8" (id 0) (at 39.37 147.955 0.0) (effects (font (size 0.762 0.762)) (justify right ))) + (property "Value" "" (id 1) (at 41.91 149.86 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:TESTPAD" (id 2) (at 41.91 149.86 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (at 41.91 149.86 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "test-points_point2" (id 4) (at 41.91 149.86 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "p" (uuid b7b5badc-dcb5-86c5-2a91-9c1120656cd5)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/eaa54a66-2ef3-f9f9-2de2-c2b1b388013e" + (reference "U8") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "gen_testpad") (at 41.91 154.94 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid a99fff7e-2c6c-243c-eacd-dde7ea4ba022) + (property "Reference" "U9" (id 0) (at 39.37 153.035 0.0) (effects (font (size 0.762 0.762)) (justify right ))) + (property "Value" "" (id 1) (at 41.91 154.94 0.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Footprint" "jitx-design:TESTPAD" (id 2) (at 41.91 154.94 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (at 41.91 154.94 0.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "test-points_point3" (id 4) (at 41.91 154.94 0.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "p" (uuid dfbce22a-42e9-56ce-356a-c61081a3cf41)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/eaa54a66-2ef3-f9f9-2de2-c2b1b388013e" + (reference "U9") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "gen_testpad") (at 40.64 143.51 90.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 01ff9af3-0704-a86f-52e3-da2b4aef460d) + (property "Reference" "U6" (id 0) (at 40.64 143.51 270.0) (effects (font (size 0.762 0.762)) (justify left ))) + (property "Value" "" (id 1) (at 42.545 140.97 270.0) (effects (font (size 0.762 0.762)) )) + (property "Footprint" "jitx-design:TESTPAD" (id 2) (at 40.64 143.51 270.0) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (at 40.64 143.51 270.0) (effects (font (size 0.762 0.762)) hide)) + (property "Name" "test-points_point0" (id 4) (at 40.64 143.51 90.0) (effects (font (size 0.762 0.762)) hide)) + + (pin "p" (uuid f1767536-e8c6-5969-cd6f-89c151abbc90)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/eaa54a66-2ef3-f9f9-2de2-c2b1b388013e" + (reference "U6") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "vdd33") (at 40.64 139.7 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 9c6668c0-70a9-4497-80ec-b7bab51b2ec6) + (property "Reference" "#PWR?" (id 0) (at 40.64 139.7 0) (effects hide)) + (property "Value" "vdd33" (id 1) (at 38.1 137.16 0.0) (effects (font (size 0.762 0.762)))) + (property "Footprint" "" (id 2) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (effects (font (size 0.762 0.762)) hide)) + (pin "~" (uuid c64659fe-88dc-ec5c-f85e-3a39a1371c0f)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/eaa54a66-2ef3-f9f9-2de2-c2b1b388013e" + (reference "#PWR?") (unit 1) + ) + ) + ) + ) + + (symbol (lib_id "gnd") (at 45.72 143.51 0.0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f6e5f01a-3dfa-2fb6-809f-4c6b52c76db0) + (property "Reference" "#PWR?" (id 0) (at 45.72 143.51 0) (effects hide)) + (property "Value" "gnd" (id 1) (at 43.18 146.05 0.0) (effects (font (size 0.762 0.762)))) + (property "Footprint" "" (id 2) (effects (font (size 0.762 0.762)) hide)) + (property "Datasheet" "" (id 3) (effects (font (size 0.762 0.762)) hide)) + (pin "~" (uuid 9cd98767-d995-96f9-ef80-f85b6368ba25)) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913/eaa54a66-2ef3-f9f9-2de2-c2b1b388013e" + (reference "#PWR?") (unit 1) + ) + ) + ) + ) + +) diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.kicad_pcb b/sd_card_reader/designs/jitx-design/kicad/jitx-design.kicad_pcb new file mode 100644 index 0000000..f36d55d --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.kicad_pcb @@ -0,0 +1,8958 @@ +(kicad_pcb (version 20221018) (generator pcbnew) + + (general + (thickness 1.6) + ) + + (paper "A") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user "Board Edge") + ) + + (setup + (stackup + (layer "dielectric 1" (type "core") (thickness 0.01778) (material "unknown") (epsilon_r 3.9) (loss_tangent 0.02)) + (layer "F.Cu" (type "copper") (thickness 0.03556)) + (layer "dielectric 2" (type "core") (thickness 1.46812) (material "unknown") (epsilon_r 4.26) (loss_tangent 0.02)) + (layer "B.Cu" (type "copper") (thickness 0.03556)) + (layer "dielectric 3" (type "core") (thickness 0.01778) (material "unknown") (epsilon_r 3.9) (loss_tangent 0.02)) + (copper_finish "None") + (dielectric_constraints no) + ) + (pad_to_mask_clearance 0.051) + (pcbplotparams + (layerselection 0x0000030_80000001) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros false) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 6) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (dxfpolygonmode true) + (dxfimperialunits true) + (dxfusepcbnewfont true) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (sketchpadsonfab false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + + (net 0 "") + (net 1 "gnd") + (net 2 "USB+") + (net 3 "RXD_SDA") + (net 4 "vdd33") + (net 5 "USB-") + (net 6 "vdd50") + (net 7 "TXD_SCK_MS_SKT_SEL") + (net 8 "Net-(USB1-GND2)") + (net 9 "Net-(U5-RESET_N)") + (net 10 "Net-(U5-VDD18)") + (net 11 "Net-(U5-VDD18PLL)") + (net 12 "Net-(Card1-VDD)") + (net 13 "Net-(U5-XTAL1_CLKIN)") + (net 14 "Net-(U5-XTAL2)") + (net 15 "Net-(Card1-CD_DAT3)") + (net 16 "Net-(Card1-CMD)") + (net 17 "Net-(Card1-CLK)") + (net 18 "Net-(Card1-DAT0)") + (net 19 "Net-(Card1-DAT1)") + (net 20 "Net-(Card1-DAT2)") + (net 21 "Net-(Card1-CD)") + (net 22 "Net-(Card1-WP)") + (net 23 "Net-(LED1-a)") + (net 24 "Net-(USB1-GND0)") + (net 25 "Net-(U4-WC_NOT)") + (net 26 "Net-(U5-RBIAS)") + (net 27 "Net-(U5-LED)") + (net 28 "Net-(USB1-CC1)") + (net 29 "unconnected-(U4-NC-Pad1)") + (net 30 "unconnected-(U4-E1-Pad2)") + (net 31 "unconnected-(U4-E2-Pad3)") + (net 32 "unconnected-(U5-xD_D1_SD_D7_MS_D6-Pad7)") + (net 33 "unconnected-(U5-xD_D0_SD_D6_MS_D7-Pad8)") + (net 34 "unconnected-(U5-xD_ALE_SD_D5_MS_D1-Pad10)") + (net 35 "unconnected-(U5-xD_nWE-Pad12)") + (net 36 "unconnected-(U5-xD_nCE-Pad15)") + (net 37 "unconnected-(U5-xD_nRE-Pad16)") + (net 38 "unconnected-(U5-xD_nB_R-Pad17)") + (net 39 "unconnected-(U5-xD_nCD-Pad19)") + (net 40 "unconnected-(U5-xD_D7_SD_D4_MS_D2-Pad20)") + (net 41 "unconnected-(U5-MS_INS-Pad24)") + (net 42 "unconnected-(U5-NC-Pad29)") + (net 43 "unconnected-(USB1-SSTXP1-PadA2)") + (net 44 "unconnected-(USB1-SSTXN1-PadA3)") + (net 45 "unconnected-(USB1-SSRXN1-PadB10)") + (net 46 "unconnected-(USB1-SSRXP1-PadB11)") + + (footprint "jitx-design:R0402" (layer "F.Cu") + (tstamp 0aa2573e-6d7b-a487-1d1a-76bb47481b65) + (at 141.126658 106.840352) + (property "Description" "62.5mW ±5% 100Ω 0402 Chip Resistor - Surface Mount ROHS") + (property "LCSC" "C174142") + (property "MPN" "RCT02100RJLF") + (property "Manufacturer" "HKR(Hong Kong Resistors)") + (property "Name" "status-led_ballast-res") + (property "Reference-prefix" "R") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/d0bf8f63-2571-4982-6c18-5898c6afdb28") + (fp_text reference "R8" (at 1.113342 -1.430352) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1)) (justify right)) + (tstamp 80a796a2-35c7-f764-e1c1-6b984472e52a) + ) + (fp_text value "100R" (at -1.5 -1.2041) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.1)) (justify left)) + (tstamp 6aa2a363-ecc4-856c-89ac-e91b8872ce1a) + ) + (fp_poly + (pts + (xy -0.135 0.2305) + (xy -0.135 -0.2295) + (xy -0.175 -0.2695) + (xy -0.676 -0.2695) + (xy -0.716 -0.2295) + (xy -0.716 0.2305) + (xy -0.676 0.2705) + (xy -0.175 0.2705) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp d0ead4cf-086d-44b8-821b-47a9013f3662)) + (fp_poly + (pts + (xy 0.135 0.2305) + (xy 0.135 -0.2295) + (xy 0.175 -0.2695) + (xy 0.676 -0.2695) + (xy 0.716 -0.2295) + (xy 0.716 0.2305) + (xy 0.676 0.2705) + (xy 0.175 0.2705) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 63e9cc31-34b5-4387-a178-5189aa056239)) + (fp_line (start -0.944 -0.4985) (end -0.226 -0.4985) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 8434049e-5ef0-deb8-519d-8de643581237)) + (fp_line (start -0.944 0.4985) (end -0.944 -0.4985) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 8491a979-d234-a220-e048-994c470ccc34)) + (fp_line (start -0.226 0.4985) (end -0.944 0.4985) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 4862c00b-c0f2-057e-0865-d6a8c825a80c)) + (fp_line (start 0.226 0.4985) (end 0.944 0.4985) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp d095b2e9-e18b-9ac1-1093-147a759ae85a)) + (fp_line (start 0.944 -0.4985) (end 0.226 -0.4985) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp f844dfab-d124-2af9-7180-baadf3719641)) + (fp_line (start 0.944 0.4985) (end 0.944 -0.4985) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp dbec94c2-2ffa-5b34-7f9c-91fe89eb9305)) + (fp_line (start -0.944 -0.4985) (end -0.944 0.4985) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 781ea36d-31b8-75d9-14d7-2e783f5255b8)) + (fp_line (start -0.944 0.4985) (end 0.944 0.4985) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9b3559f-3a9b-ac7f-1468-53c5bec68dcd)) + (fp_line (start 0.944 -0.4985) (end -0.944 -0.4985) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92769464-9c25-374b-2c60-a65597b1a9c5)) + (fp_line (start 0.944 0.4985) (end 0.944 -0.4985) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9df24adb-f3b3-7144-ee15-c7d805bbd1a3)) + (fp_poly + (pts + (xy -0.47 0.2505) + (xy -0.470576 0.244647) + (xy -0.472284 0.239019) + (xy -0.475056 0.233833) + (xy -0.478787 0.229287) + (xy -0.483333 0.225556) + (xy -0.488519 0.222784) + (xy -0.494147 0.221076) + (xy -0.5 0.2205) + (xy -0.505853 0.221076) + (xy -0.511481 0.222784) + (xy -0.516667 0.225556) + (xy -0.521213 0.229287) + (xy -0.524944 0.233833) + (xy -0.527716 0.239019) + (xy -0.529424 0.244647) + (xy -0.53 0.2505) + (xy -0.529424 0.256353) + (xy -0.527716 0.261981) + (xy -0.524944 0.267167) + (xy -0.521213 0.271713) + (xy -0.516667 0.275444) + (xy -0.511481 0.278216) + (xy -0.505853 0.279924) + (xy -0.5 0.2805) + (xy -0.494147 0.279924) + (xy -0.488519 0.278216) + (xy -0.483333 0.275444) + (xy -0.478787 0.271713) + (xy -0.475056 0.267167) + (xy -0.472284 0.261981) + (xy -0.470576 0.256353) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp e7381f27-d305-478b-985a-4f5c6e82c1c6)) + (pad "1" smd rect (at -0.433 0.0005) (size 0.566 0.54) (layers "F.Cu" "F.Mask") + (net 27 "Net-(U5-LED)") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 44ee8c5b-1521-296b-b949-dbd4665a4916)) + (pad "2" smd rect (at 0.433 0.0005) (size 0.566 0.54) (layers "F.Cu" "F.Mask") + (net 23 "Net-(LED1-a)") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 701f738f-15ce-8a14-4bab-aaf142fb8a86)) + ) + + (footprint "jitx-design:Pkg0402_3" (layer "F.Cu") + (tstamp 0e09548b-c7e2-dfab-d18b-b1ba4622b8e8) + (at 138.129245 110.030331) + (property "Description" "RES SMD 12K OHM 1% 1/16W 0402") + (property "LCSC" "C1882582") + (property "MPN" "AF0402FR-0712KL") + (property "Manufacturer" "YAGEO") + (property "Name" "media-controller_rid") + (property "Reference-prefix" "R") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/0f3f66fc-032f-e351-77b1-8429b1530b52") + (fp_text reference "R5" (at 1.062755 1.221669 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 50fc7a12-5d16-197c-9c5b-6ce2a1901e41) + ) + (fp_text value "12K" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp acb2451c-9759-69e8-c065-72df6d206f6d) + ) + (fp_line (start -0.45 -0.7925) (end -0.45 0.7925) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1681cb4e-b855-e7bf-79b5-d3490a40cb4d)) + (fp_line (start -0.45 0.7925) (end 0.45 0.7925) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f07abc55-6759-205c-7240-b21231d9586b)) + (fp_line (start 0.45 -0.7925) (end -0.45 -0.7925) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5273fa3-1032-3794-498b-29f5fbdc14d1)) + (fp_line (start 0.45 0.7925) (end 0.45 -0.7925) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2cf254b7-7e89-0b75-b71f-ec9eab7158dc)) + (pad "1" smd rect (at 0 -0.456111) (size 0.6 0.372778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 26 "Net-(U5-RBIAS)") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 0c8770f5-dc5c-0015-ef76-13ae2f5c3ef3)) + (pad "2" smd rect (at 0 0.456111) (size 0.6 0.372778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 9fbf8975-1a96-9331-8761-f68da0801e2a)) + ) + + (footprint "jitx-design:Pkg0402_4" (layer "F.Cu") + (tstamp 131351fe-d9a0-e3cf-f4ab-1b3110438742) + (at 142.582061 110.835572 -90) + (property "LCSC" "C100072") + (property "MPN" "CL05A104KA5NNNC") + (property "Manufacturer" "Samsung Electro-Mechanics") + (property "Name" "reg_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-2.kicad_sch") + (property "Sheetname" "2: usb_conn") + (path "/769e5753-ecff-ff7d-9bbd-16372ff6c879/12b93713-6ac2-5f48-55a0-facf50353923") + (fp_text reference "C3" (at -1.107572 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp a893e79f-0a08-b0c4-41f8-cb96793321e8) + ) + (fp_text value "100n" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 98b18ac2-0952-a215-9817-8e8b5e639058) + ) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 533d6ca5-0a17-826f-f654-87672f6446e4)) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae3150cc-bac7-6244-e91f-cea269d27b22)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 375f00f0-ea10-8783-22dd-3a885dd1f999)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1ebb1f8-3da2-7f60-caca-2d246bd13d0f)) + (pad "1" smd rect (at 0 -0.478611 270) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 3a2a2efc-9930-8913-299a-189edba820eb)) + (pad "2" smd rect (at 0 0.478611 270) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "vdd33") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp be36bbc4-da8a-cb8f-f751-8d8fedba5d19)) + ) + + (footprint "jitx-design:TO_252_3_L6_5_W5_8_P4_58_BR" (layer "F.Cu") + (tstamp 1e38670d-3f62-fb53-737f-79a91c8268dd) + (at 144.360119 117.147721 90) + (property "Description" "500mA 60dB@(120Hz) 750mV@(300mA) Fixed 3.3V~3.3V Positive 1 42V TO-252-3 Linear Voltage Regulators (LDO) ROHS") + (property "LCSC" "C442601") + (property "MPN" "BD433M5FP-CE2") + (property "Manufacturer" "ROHM Semicon") + (property "Name" "reg_reg") + (property "Reference-prefix" "U") + (property "Sheetfile" "jitx-design-2.kicad_sch") + (property "Sheetname" "2: usb_conn") + (path "/769e5753-ecff-ff7d-9bbd-16372ff6c879/0562b750-03e8-fee7-fa34-0c7f97254869") + (fp_text reference "U3" (at -0.200279 -4.152119 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1)) (justify left)) + (tstamp 4c75f4b7-ef7d-77dc-fed1-05df6bcd472e) + ) + (fp_text value "BD433M5FP-CE2" (at -1.5 -4.0821 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.1)) (justify left)) + (tstamp c460ed4e-df98-7ea7-4c47-454e482c36a5) + ) + (fp_line (start -4.1105 -3.3765) (end 2.1415 -3.3765) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 087b94bf-46a1-ded2-1025-a4d09e6b8bf0)) + (fp_line (start -4.1105 3.3765) (end 2.1415 3.3765) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp ca3e5b25-03e0-820a-9b6c-9a4084966f04)) + (fp_line (start 2.1415 3.3765) (end 2.1415 -3.3765) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 232aeb96-59b1-289a-e8a0-a99ac20e0fa9)) + (fp_line (start -4.1105 -3.3765) (end -4.1105 3.3765) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67c522d0-15d8-0b01-12f7-0c75556ea878)) + (fp_line (start -4.1105 3.3765) (end 4.1105 3.3765) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dcdeb3b3-4551-aea4-ce5e-75344721e671)) + (fp_line (start 4.1105 -3.3765) (end -4.1105 -3.3765) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ebe54b6-04c0-3cb6-c7c6-8eac05553c57)) + (fp_line (start 4.1105 3.3765) (end 4.1105 -3.3765) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea36301b-06f1-7ee7-944d-9d216bc71704)) + (fp_poly + (pts + (xy 4.1105 2.2865) + (xy 4.104736 2.227973) + (xy 4.087664 2.171695) + (xy 4.059941 2.119829) + (xy 4.022632 2.074368) + (xy 3.977171 2.037059) + (xy 3.925305 2.009336) + (xy 3.869027 1.992264) + (xy 3.8105 1.9865) + (xy 3.751973 1.992264) + (xy 3.695695 2.009336) + (xy 3.643829 2.037059) + (xy 3.598368 2.074368) + (xy 3.561059 2.119829) + (xy 3.533336 2.171695) + (xy 3.516264 2.227973) + (xy 3.5105 2.2865) + (xy 3.516264 2.345027) + (xy 3.533336 2.401305) + (xy 3.561059 2.453171) + (xy 3.598368 2.498632) + (xy 3.643829 2.535941) + (xy 3.695695 2.563664) + (xy 3.751973 2.580736) + (xy 3.8105 2.5865) + (xy 3.869027 2.580736) + (xy 3.925305 2.563664) + (xy 3.977171 2.535941) + (xy 4.022632 2.498632) + (xy 4.059941 2.453171) + (xy 4.087664 2.401305) + (xy 4.104736 2.345027) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp b6ea12dc-9774-4840-a1b9-d54c88f22d9d)) + (fp_poly + (pts + (xy 4.7955 3.2995) + (xy 4.794924 3.293647) + (xy 4.793216 3.288019) + (xy 4.790444 3.282833) + (xy 4.786713 3.278287) + (xy 4.782167 3.274556) + (xy 4.776981 3.271784) + (xy 4.771353 3.270076) + (xy 4.7655 3.2695) + (xy 4.759647 3.270076) + (xy 4.754019 3.271784) + (xy 4.748833 3.274556) + (xy 4.744287 3.278287) + (xy 4.740556 3.282833) + (xy 4.737784 3.288019) + (xy 4.736076 3.293647) + (xy 4.7355 3.2995) + (xy 4.736076 3.305353) + (xy 4.737784 3.310981) + (xy 4.740556 3.316167) + (xy 4.744287 3.320713) + (xy 4.748833 3.324444) + (xy 4.754019 3.327216) + (xy 4.759647 3.328924) + (xy 4.7655 3.3295) + (xy 4.771353 3.328924) + (xy 4.776981 3.327216) + (xy 4.782167 3.324444) + (xy 4.786713 3.320713) + (xy 4.790444 3.316167) + (xy 4.793216 3.310981) + (xy 4.794924 3.305353) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp c6d1ca4d-2f36-4971-9c9f-7cfb0e8c7482)) + (pad "1" smd rect (at 4.1105 2.2995 90) (size 2.218 1.064) (layers "F.Cu" "F.Paste" "F.Mask") + (net 6 "vdd50") (pinfunction "VCC") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 616e96f2-ec0a-d146-c582-3670d9ba8b79)) + (pad "2" smd rect (at -2.5865 0.0005 90) (size 5.204 5.554) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "FIN") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 28290440-e53a-8d3e-5292-1d29d7b1d94d)) + (pad "3" smd rect (at 4.1105 -2.2995 90) (size 2.218 1.064) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "vdd33") (pinfunction "VOUT") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 2eef0b46-dfa1-e364-4e13-3ef4bf1efd73)) + ) + + (footprint "jitx-design:Pkg0402" (layer "F.Cu") + (tstamp 1eacb397-cf97-adeb-50d2-2363ba7b34ac) + (at 133.71677 114.068215 -90) + (property "Description" "RES SMD 1M OHM 1% 1/16W 0402") + (property "LCSC" "C4148816") + (property "MPN" "RM04F1004CT") + (property "Manufacturer" "CAL-CHIP ELECTRONICS, INC.") + (property "Name" "media-controller_rid") + (property "Reference-prefix" "R") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/29db95fa-831b-bc8b-e60e-d8793651231d") + (fp_text reference "R7" (at 0.993785 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 5174f62f-f76a-a543-abb7-3953a5516742) + ) + (fp_text value "1M" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp b55431d5-4c9f-50ab-c460-f3b3dfc76835) + ) + (fp_line (start -0.45 -0.8) (end -0.45 0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp acc26b9c-6d79-f59b-8d05-eeba0f77bbd8)) + (fp_line (start -0.45 0.8) (end 0.45 0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 19197bf5-9be6-d09a-13f9-c9a9bfb97cd8)) + (fp_line (start 0.45 -0.8) (end -0.45 -0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 706c4dc5-e47b-65cd-a7e5-252f27062d27)) + (fp_line (start 0.45 0.8) (end 0.45 -0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cd82795e-5c50-f228-0734-9adfd33fe102)) + (pad "1" smd rect (at 0 -0.459861 270) (size 0.6 0.380278) (layers "F.Cu" "F.Paste" "F.Mask") + (net 13 "Net-(U5-XTAL1_CLKIN)") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp bb6c5153-ff5f-5f00-9c32-638ac8aeddbc)) + (pad "2" smd rect (at 0 0.459861 270) (size 0.6 0.380278) (layers "F.Cu" "F.Paste" "F.Mask") + (net 14 "Net-(U5-XTAL2)") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp d73ad2d7-ddca-db74-8b67-9a286e8be808)) + ) + + (footprint "jitx-design:TESTPAD" (layer "F.Cu") + (tstamp 21889bce-95d1-665a-c773-928fcecd1705) + (at 126.85967 98.770685) + (property "Name" "test-points_point0") + (property "Sheetfile" "jitx-design-4.kicad_sch") + (property "Sheetname" "4: test-points_point1") + (path "/eaa54a66-2ef3-f9f9-2de2-c2b1b388013e/01ff9af3-0704-a86f-52e3-da2b4aef460d") + (fp_text reference "U6" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 0ba62d00-2ac3-2965-65d0-03c107232dbe) + ) + (fp_text value "~" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 04d104ad-fe7e-d405-3244-0d7d33f30d77) + ) + (pad "tp" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 4 "vdd33") (pinfunction "p") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 3683d497-0fa5-7436-0142-bb776db78f05)) + ) + + (footprint "jitx-design:Pkg0402_2" (layer "F.Cu") + (tstamp 34d8b413-e6ff-6f8f-42c9-daf1c6aac1d0) + (at 134.955734 97.122587 90) + (property "Description" "RES 10K OHM 1% 1/16W 0402") + (property "LCSC" "C4101506") + (property "MPN" "TFCR0402-16W-E-1002FT") + (property "Manufacturer" "Venkel") + (property "Name" "media-controller_rid") + (property "Reference-prefix" "R") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/96c850de-4fee-2f9b-b102-fbcfeb8819a8") + (fp_text reference "R6" (at 0.95 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 2660b953-4cda-b014-afa5-fa5c9deb2129) + ) + (fp_text value "10K" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 43a683cb-ebf7-a029-add7-633e1db33922) + ) + (fp_line (start -0.45 -0.7875) (end -0.45 0.7875) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e9053e66-eb25-7ec7-9137-14eb23b2a4ac)) + (fp_line (start -0.45 0.7875) (end 0.45 0.7875) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7cc8e383-0838-2b60-88f2-b71956b32961)) + (fp_line (start 0.45 -0.7875) (end -0.45 -0.7875) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9dddee58-0cfe-a091-f3b6-56e494185814)) + (fp_line (start 0.45 0.7875) (end 0.45 -0.7875) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5c55466-24c9-dd9f-2086-39a355ce86bb)) + (pad "1" smd rect (at 0 -0.453611 90) (size 0.6 0.367778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 9 "Net-(U5-RESET_N)") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 9d70d315-2f40-3254-c1e4-ceb439a1c643)) + (pad "2" smd rect (at 0 0.453611 90) (size 0.6 0.367778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "vdd33") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp ee9f8ab8-01a4-d197-01b5-f7af95d90114)) + ) + + (footprint "jitx-design:CRYSTAL_SMD_4P_L3_2_W2_5_BL" (layer "F.Cu") + (tstamp 36f233c7-dbde-34d8-7e45-88e0d680e952) + (at 135.237506 111.360485 90) + (property "Description" "24MHz SMD Crystal Resonator 18pF ±10ppm ±20ppm SMD3225-4P Crystals ROHS") + (property "LCSC" "C654991") + (property "MPN" "7B024000Q01") + (property "Manufacturer" "HD") + (property "Name" "media-controller_xtal") + (property "Reference-prefix" "X") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/7a9aab96-3710-317a-c602-40c7f1c70e33") + (fp_text reference "X1" (at -1.5 -3.4986 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1)) (justify left)) + (tstamp 73525dd9-ca2f-1492-1172-908c302c410c) + ) + (fp_text value "7B024000Q01" (at -1.5 -2.4986 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.1)) (justify left)) + (tstamp bbeb8eab-af18-1264-ddb9-c28459eba388) + ) + (fp_line (start -2.143 0.136) (end -2.143 1.793) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp d3bc540c-97c1-5e9f-6e05-d183a6eaa613)) + (fp_line (start -2.143 1.793) (end -0.286 1.793) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp d894d8f3-ed7e-1f85-7047-076c9be86e0a)) + (fp_line (start -1.915 -1.793) (end 2.143 -1.793) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 5ae75229-9769-0f25-0a31-8c385f44e9e5)) + (fp_line (start -1.915 1.564) (end -1.915 -1.793) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp f497aed9-85b4-fa55-5d90-139e7a82b9ef)) + (fp_line (start 2.143 -1.793) (end 2.143 1.564) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 93f34ce6-b383-6403-61f8-fa56d4ed11f7)) + (fp_line (start 2.143 1.564) (end -1.915 1.564) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 6a711d75-384d-9747-de68-68d98b9a01ab)) + (fp_line (start -2.143 -1.793) (end -2.143 1.793) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9cca1197-8042-b60f-ed50-9c7efadd6436)) + (fp_line (start -2.143 1.793) (end 2.143 1.793) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06cdceea-f94f-3cda-b6be-52f32610d124)) + (fp_line (start 2.143 -1.793) (end -2.143 -1.793) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f1d53cd-d975-0db4-47ba-e76b91b217b9)) + (fp_line (start 2.143 1.793) (end 2.143 -1.793) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c596ea59-132b-f57f-8a8a-de62b4c7a7c8)) + (fp_poly + (pts + (xy -1.456 1.136) + (xy -1.456576 1.130147) + (xy -1.458284 1.124519) + (xy -1.461056 1.119333) + (xy -1.464787 1.114787) + (xy -1.469333 1.111056) + (xy -1.474519 1.108284) + (xy -1.480147 1.106576) + (xy -1.486 1.106) + (xy -1.491853 1.106576) + (xy -1.497481 1.108284) + (xy -1.502667 1.111056) + (xy -1.507213 1.114787) + (xy -1.510944 1.119333) + (xy -1.513716 1.124519) + (xy -1.515424 1.130147) + (xy -1.516 1.136) + (xy -1.515424 1.141853) + (xy -1.513716 1.147481) + (xy -1.510944 1.152667) + (xy -1.507213 1.157213) + (xy -1.502667 1.160944) + (xy -1.497481 1.163716) + (xy -1.491853 1.165424) + (xy -1.486 1.166) + (xy -1.480147 1.165424) + (xy -1.474519 1.163716) + (xy -1.469333 1.160944) + (xy -1.464787 1.157213) + (xy -1.461056 1.152667) + (xy -1.458284 1.147481) + (xy -1.456576 1.141853) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp c2b29b80-f202-45ac-a905-35b1596a9912)) + (fp_poly + (pts + (xy -0.849 0.775) + (xy -0.852459 0.739884) + (xy -0.862702 0.706117) + (xy -0.879335 0.674997) + (xy -0.901721 0.647721) + (xy -0.928997 0.625335) + (xy -0.960117 0.608702) + (xy -0.993884 0.598459) + (xy -1.029 0.595) + (xy -1.064116 0.598459) + (xy -1.097883 0.608702) + (xy -1.129003 0.625335) + (xy -1.156279 0.647721) + (xy -1.178665 0.674997) + (xy -1.195298 0.706117) + (xy -1.205541 0.739884) + (xy -1.209 0.775) + (xy -1.205541 0.810116) + (xy -1.195298 0.843883) + (xy -1.178665 0.875003) + (xy -1.156279 0.902279) + (xy -1.129003 0.924665) + (xy -1.097883 0.941298) + (xy -1.064116 0.951541) + (xy -1.029 0.955) + (xy -0.993884 0.951541) + (xy -0.960117 0.941298) + (xy -0.928997 0.924665) + (xy -0.901721 0.902279) + (xy -0.879335 0.875003) + (xy -0.862702 0.843883) + (xy -0.852459 0.810116) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp c3fbc7ea-832e-4d9c-bdd4-946ee27f7850)) + (pad "1" smd rect (at -0.986 0.736 90) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 13 "Net-(U5-XTAL1_CLKIN)") (pinfunction "IN") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 7dd72989-70e9-bb52-e212-00d9be677ff2)) + (pad "2" smd rect (at 1.214 0.736 90) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "GND0") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp a4345b49-9ecf-38a6-ef78-f9e3e63884f4)) + (pad "3" smd rect (at 1.214 -0.964 90) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 14 "Net-(U5-XTAL2)") (pinfunction "OUT") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 6b05e05c-3cb4-0bf8-79d6-502804e7787a)) + (pad "4" smd rect (at -0.986 -0.964 90) (size 1.4 1.2) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "GND1") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 47f39c0a-69e2-6a32-7d3a-96437230f586)) + ) + + (footprint "jitx-design:TESTPAD" (layer "F.Cu") + (tstamp 3c97145c-7faa-8e28-5dab-64ac64c90a3a) + (at 129.640552 96.501199 90) + (property "Name" "test-points_point2") + (property "Sheetfile" "jitx-design-4.kicad_sch") + (property "Sheetname" "4: test-points_point1") + (path "/eaa54a66-2ef3-f9f9-2de2-c2b1b388013e/e4fdb168-ea1b-7ef5-90cc-9c265538fd11") + (fp_text reference "U8" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 25957083-1a70-744c-163a-cd4dbc42d465) + ) + (fp_text value "~" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 2b9a5f83-64b9-8cad-af86-efe08776659f) + ) + (pad "tp" smd circle (at 0 0 90) (size 2 2) (layers "F.Cu" "F.Mask") + (net 3 "RXD_SDA") (pinfunction "p") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 5562af10-0b0d-b142-4fd0-7e995661eefe)) + ) + + (footprint "jitx-design:Pkg0402_4" (layer "F.Cu") + (tstamp 405fb730-f033-a1b4-ac66-d914abca6a25) + (at 137.0077 97.138773 -90) + (property "LCSC" "C3853687") + (property "MPN" "C0402X5R250-105MNP") + (property "Manufacturer" "Venkel") + (property "Name" "media-controller_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/659c1893-4eef-a40a-1278-e3dbf31a8f0f") + (fp_text reference "C8" (at -1.126773 0.1017) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp b3168131-3291-b2dc-756d-dcd26b474760) + ) + (fp_text value "1u" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 58f071b8-2f39-038b-8ea5-564a2aae8067) + ) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c961eb2-fd5a-7a31-ef85-4c3ad96cb597)) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 25be370d-8460-68fa-015a-e63b01c9c911)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a537ad36-0584-25e1-a6c0-dcab05543fae)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62098e38-5630-65cd-e62f-a9ea8f7df168)) + (pad "1" smd rect (at 0 -0.478611 270) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 68e6caed-19b9-5200-17ad-414f44e31a41)) + (pad "2" smd rect (at 0 0.478611 270) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "vdd33") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp a4bcf605-9ec9-ecee-5455-755a8af808e6)) + ) + + (footprint "jitx-design:Pkg0402" (layer "F.Cu") + (tstamp 450f1c38-f577-3e26-5761-73c0cc888cd3) + (at 148.106609 101.542377) + (property "Description" "RES SMD 100K OHM 0.5% 1/16W 0402") + (property "LCSC" "C138080") + (property "MPN" "RC0402DR-07100KL") + (property "Manufacturer" "YAGEO") + (property "Name" "usb_rid") + (property "Reference-prefix" "R") + (property "Sheetfile" "jitx-design-2.kicad_sch") + (property "Sheetname" "2: usb_conn") + (path "/769e5753-ecff-ff7d-9bbd-16372ff6c879/24eeb98f-1012-2f7b-d6c7-2f0de9df888c") + (fp_text reference "R1" (at 1.245391 0 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp b5d915a6-2f3f-f784-33c4-0ab3b48a81c6) + ) + (fp_text value "100K" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 6ad78343-86d4-5258-c304-6023b340e040) + ) + (fp_line (start -0.45 -0.8) (end -0.45 0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dc019a2-42f0-25bf-5f6d-c99e255ef97d)) + (fp_line (start -0.45 0.8) (end 0.45 0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80b35169-fcc1-371c-f786-319038eef74a)) + (fp_line (start 0.45 -0.8) (end -0.45 -0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 251d2a7a-fa3b-72a1-0353-59010147af20)) + (fp_line (start 0.45 0.8) (end 0.45 -0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp af3eba39-d9f8-de2f-3452-d653d1f6a327)) + (pad "1" smd rect (at 0 -0.459861) (size 0.6 0.380278) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 5725bae1-d543-e42e-8313-addd44c6258a)) + (pad "2" smd rect (at 0 0.459861) (size 0.6 0.380278) (layers "F.Cu" "F.Paste" "F.Mask") + (net 24 "Net-(USB1-GND0)") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp bd3f443f-c19e-e82e-bcab-2388d59bc569)) + ) + + (footprint "jitx-design:SOIC_8_L4_9_W3_9_P1_27_LS6_0_BL" (layer "F.Cu") + (tstamp 4ec2febc-914d-0e2d-bc67-d073a3bf19e6) + (at 128.372171 118.43973) + (property "Description" "4Kbit I2C SOIC-8 EEPROM ROHS") + (property "LCSC" "C118280") + (property "MPN" "M24C04-WMN6TP") + (property "Manufacturer" "STMicroelectronics") + (property "Name" "eeprom_eeprom") + (property "Reference-prefix" "U") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/d7717d6d-442c-ddd4-3453-4b1061a4344e") + (fp_text reference "U4" (at -1.5 -4.4781) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1)) (justify left)) + (tstamp bc8664eb-980b-639c-cc53-64c88971b7ac) + ) + (fp_text value "M24C04-WMN6TP" (at -1.5 -3.4781) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.1)) (justify left)) + (tstamp 7de2b7b2-27bb-c00f-b765-ec2c839bc4cc) + ) + (fp_line (start -2.526 -1.5215) (end 2.526 -1.5215) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 91c1be74-6dd8-9a46-eb33-7cac763bb5ec)) + (fp_line (start -2.526 1.5215) (end -2.526 -1.5215) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 3cbaea60-4dda-a540-c584-6a4a159d7fc2)) + (fp_line (start 2.526 -1.5215) (end 2.526 1.5215) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp 566b89d2-b5fe-68f7-0116-eeb3bc1fc025)) + (fp_line (start 2.526 1.5215) (end -2.526 1.5215) + (stroke (width 0.152) (type solid)) (layer "F.SilkS") (tstamp a38cfa18-d857-be2d-b301-17b30713d9bc)) + (fp_poly + (pts + (xy -2.501 2.7725) + (xy -2.503882 2.743236) + (xy -2.512418 2.715097) + (xy -2.52628 2.689164) + (xy -2.544934 2.666434) + (xy -2.567664 2.64778) + (xy -2.593597 2.633918) + (xy -2.621736 2.625382) + (xy -2.651 2.6225) + (xy -2.680264 2.625382) + (xy -2.708403 2.633918) + (xy -2.734336 2.64778) + (xy -2.757066 2.666434) + (xy -2.77572 2.689164) + (xy -2.789582 2.715097) + (xy -2.798118 2.743236) + (xy -2.801 2.7725) + (xy -2.798118 2.801764) + (xy -2.789582 2.829903) + (xy -2.77572 2.855836) + (xy -2.757066 2.878566) + (xy -2.734336 2.89722) + (xy -2.708403 2.911082) + (xy -2.680264 2.919618) + (xy -2.651 2.9225) + (xy -2.621736 2.919618) + (xy -2.593597 2.911082) + (xy -2.567664 2.89722) + (xy -2.544934 2.878566) + (xy -2.52628 2.855836) + (xy -2.512418 2.829903) + (xy -2.503882 2.801764) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 5fa66e5d-7d38-402d-8a50-ec4683e15c0a)) + (fp_poly + (pts + (xy -1.755 0.7695) + (xy -1.757882 0.740236) + (xy -1.766418 0.712097) + (xy -1.78028 0.686164) + (xy -1.798934 0.663434) + (xy -1.821664 0.64478) + (xy -1.847597 0.630918) + (xy -1.875736 0.622382) + (xy -1.905 0.6195) + (xy -1.934264 0.622382) + (xy -1.962403 0.630918) + (xy -1.988336 0.64478) + (xy -2.011066 0.663434) + (xy -2.02972 0.686164) + (xy -2.043582 0.712097) + (xy -2.052118 0.740236) + (xy -2.055 0.7695) + (xy -2.052118 0.798764) + (xy -2.043582 0.826903) + (xy -2.02972 0.852836) + (xy -2.011066 0.875566) + (xy -1.988336 0.89422) + (xy -1.962403 0.908082) + (xy -1.934264 0.916618) + (xy -1.905 0.9195) + (xy -1.875736 0.916618) + (xy -1.847597 0.908082) + (xy -1.821664 0.89422) + (xy -1.798934 0.875566) + (xy -1.78028 0.852836) + (xy -1.766418 0.826903) + (xy -1.757882 0.798764) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp f1594354-6092-4353-a39d-2fb6c6735572)) + (fp_line (start -2.526 -2.7725) (end -2.526 2.7725) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ebe09885-b835-d96f-d38e-cd02f88315a8)) + (fp_line (start -2.526 2.7725) (end 2.526 2.7725) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ecf77200-23e7-8615-446a-f31523fb6145)) + (fp_line (start 2.526 -2.7725) (end -2.526 -2.7725) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 973d5253-b36f-8f29-1b96-074675f7fd15)) + (fp_line (start 2.526 2.7725) (end 2.526 -2.7725) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8d9eb4a-d876-f5df-7a00-09e1f543c594)) + (fp_poly + (pts + (xy -2.42 3.0005) + (xy -2.420576 2.994647) + (xy -2.422284 2.989019) + (xy -2.425056 2.983833) + (xy -2.428787 2.979287) + (xy -2.433333 2.975556) + (xy -2.438519 2.972784) + (xy -2.444147 2.971076) + (xy -2.45 2.9705) + (xy -2.455853 2.971076) + (xy -2.461481 2.972784) + (xy -2.466667 2.975556) + (xy -2.471213 2.979287) + (xy -2.474944 2.983833) + (xy -2.477716 2.989019) + (xy -2.479424 2.994647) + (xy -2.48 3.0005) + (xy -2.479424 3.006353) + (xy -2.477716 3.011981) + (xy -2.474944 3.017167) + (xy -2.471213 3.021713) + (xy -2.466667 3.025444) + (xy -2.461481 3.028216) + (xy -2.455853 3.029924) + (xy -2.45 3.0305) + (xy -2.444147 3.029924) + (xy -2.438519 3.028216) + (xy -2.433333 3.025444) + (xy -2.428787 3.021713) + (xy -2.425056 3.017167) + (xy -2.422284 3.011981) + (xy -2.420576 3.006353) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp dd3e2486-755d-43bd-992c-1c46a516a5f8)) + (fp_poly + (pts + (xy -1.755 3.4005) + (xy -1.757882 3.371236) + (xy -1.766418 3.343097) + (xy -1.78028 3.317164) + (xy -1.798934 3.294434) + (xy -1.821664 3.27578) + (xy -1.847597 3.261918) + (xy -1.875736 3.253382) + (xy -1.905 3.2505) + (xy -1.934264 3.253382) + (xy -1.962403 3.261918) + (xy -1.988336 3.27578) + (xy -2.011066 3.294434) + (xy -2.02972 3.317164) + (xy -2.043582 3.343097) + (xy -2.052118 3.371236) + (xy -2.055 3.4005) + (xy -2.052118 3.429764) + (xy -2.043582 3.457903) + (xy -2.02972 3.483836) + (xy -2.011066 3.506566) + (xy -1.988336 3.52522) + (xy -1.962403 3.539082) + (xy -1.934264 3.547618) + (xy -1.905 3.5505) + (xy -1.875736 3.547618) + (xy -1.847597 3.539082) + (xy -1.821664 3.52522) + (xy -1.798934 3.506566) + (xy -1.78028 3.483836) + (xy -1.766418 3.457903) + (xy -1.757882 3.429764) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 80885fe6-d580-41a2-b7d0-eeaa36a68768)) + (pad "1" smd oval (at -1.905 2.7725) (size 0.588 2.045) (layers "F.Cu" "F.Paste" "F.Mask") + (net 29 "unconnected-(U4-NC-Pad1)") (pinfunction "NC") (pintype "unspecified+no_connect") (solder_mask_margin 0.051) (tstamp 1247c351-c5ac-cad5-037e-8a888f3be889)) + (pad "2" smd oval (at -0.635 2.7725) (size 0.588 2.045) (layers "F.Cu" "F.Paste" "F.Mask") + (net 30 "unconnected-(U4-E1-Pad2)") (pinfunction "E1") (pintype "unspecified+no_connect") (solder_mask_margin 0.051) (tstamp 8dcc9338-8b9a-575a-f322-79287a397dc3)) + (pad "3" smd oval (at 0.635 2.7725) (size 0.588 2.045) (layers "F.Cu" "F.Paste" "F.Mask") + (net 31 "unconnected-(U4-E2-Pad3)") (pinfunction "E2") (pintype "unspecified+no_connect") (solder_mask_margin 0.051) (tstamp 2a851114-a5e6-fb57-6f04-b512ad28c727)) + (pad "4" smd oval (at 1.905 2.7725) (size 0.588 2.045) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "VSS") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp f46487ac-1fa9-a7e2-2c89-177c89494205)) + (pad "5" smd oval (at 1.905 -2.7725) (size 0.588 2.045) (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "RXD_SDA") (pinfunction "SDA") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 42bfa030-9f09-f398-9b40-f339b57e1d22)) + (pad "6" smd oval (at 0.635 -2.7725) (size 0.588 2.045) (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "TXD_SCK_MS_SKT_SEL") (pinfunction "SCL") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 8136a1f2-6ae0-abae-53fa-e7527b5c9beb)) + (pad "7" smd oval (at -0.635 -2.7725) (size 0.588 2.045) (layers "F.Cu" "F.Paste" "F.Mask") + (net 25 "Net-(U4-WC_NOT)") (pinfunction "WC_NOT") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 084424ae-91da-75a2-fdd3-df0569233554)) + (pad "8" smd oval (at -1.905 -2.7725) (size 0.588 2.045) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "vdd33") (pinfunction "VCC") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 70ea2c9e-0fda-6597-3ff9-9261fb47e563)) + ) + + (footprint "jitx-design:Pkg0402_4" (layer "F.Cu") + (tstamp 51d5fb6c-187b-a32e-1a1c-cf1986c32516) + (at 137.482233 108.020212 180) + (property "LCSC" "C783277") + (property "MPN" "GRM155C81E105ME11D") + (property "Manufacturer" "Murata Electronics") + (property "Name" "media-controller_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/919c2ceb-d651-59eb-d815-ce7d91e092ce") + (fp_text reference "C6" (at 0.95 0 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 6a64258c-4275-1a7d-a5d9-ea37c4d164b9) + ) + (fp_text value "1u" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 472dd99d-aea3-5fee-2984-c9cb3d294226) + ) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76795a49-c395-44cb-4779-86d012168f92)) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d14767e4-4952-14b9-e32b-b64f84403793)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ecf80e48-332e-5f0c-a550-d784f0653f95)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cf66aa95-4a3f-6548-f459-5fcb75480652)) + (pad "1" smd rect (at 0 -0.478611 180) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp bba94df0-4743-a523-d132-0cf95e69d266)) + (pad "2" smd rect (at 0 0.478611 180) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 11 "Net-(U5-VDD18PLL)") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 91d88d5a-de0c-63f1-d478-946f01297b7f)) + ) + + (footprint "jitx-design:JITX_SM_LP" (layer "F.Cu") + (tstamp 52cf11c2-fe99-e0c6-f16b-d37151b0b5d1) + (at 130.633022 121.65639) + (property "Description" "JITX Logo") + (property "MPN" "non-BOM") + (property "Manufacturer" "non-BOM") + (property "Name" "logo") + (property "Reference-prefix" "JITX") + (property "Sheetfile" "jitx-design-2.kicad_sch") + (property "Sheetname" "2: usb_conn") + (path "/769e5753-ecff-ff7d-9bbd-16372ff6c879/f5f48572-76ad-8026-bb32-b14e853729f8") + (fp_text reference "JITX1" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp e57252ff-b729-213e-c0c4-df926504a235) + ) + (fp_text value "non-BOM" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 277216c8-14de-83a6-c1e6-31dfa7ff382a) + ) + (fp_poly + (pts + (xy 6.442652 -3.046488) + (xy 7.055886 -3.882962) + (xy 7.786452 -2.002316) + (xy 6.880104 -2.002201) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp d259b1d8-5fe3-448b-bd16-9d16d856dac8)) + (fp_poly + (pts + (xy 3.515662 -2.002227) + (xy 4.039982 -2.002239) + (xy 4.46088 -4.39427) + (xy 5.155953 -4.395294) + (xy 5.250093 -4.935631) + (xy 4.556595 -4.935926) + (xy 4.64811 -5.460617) + (xy 4.124034 -5.460579) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp d076d3ca-db9e-44b4-b0d9-3da0923bc562)) + (fp_poly + (pts + (xy 7.055886 -3.882962) + (xy 8.197097 -5.422413) + (xy 8.320405 -5.537606) + (xy 8.465704 -5.623412) + (xy 8.626118 -5.675773) + (xy 8.794059 -5.69221) + (xy 7.866274 -5.691216) + (xy 7.707407 -5.684731) + (xy 7.553336 -5.645449) + (xy 7.410758 -5.575076) + (xy 7.285869 -5.476672) + (xy 6.740606 -4.694569) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp e1b9ef33-146f-49c9-866e-c90047ba1791)) + (fp_poly + (pts + (xy 6.442652 -3.046488) + (xy 7.055886 -3.882962) + (xy 6.740606 -4.694569) + (xy 6.354171 -5.689342) + (xy 5.389915 -5.690213) + (xy 6.082376 -3.843307) + (xy 4.901062 -2.284339) + (xy 4.735321 -2.146495) + (xy 4.542172 -2.050766) + (xy 4.332107 -2.002355) + (xy 5.272614 -2.002489) + (xy 5.439005 -2.020543) + (xy 5.597447 -2.07447) + (xy 5.740305 -2.161669) + (xy 5.860693 -2.277939) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp cd12920c-e022-4f88-994c-fa068299f0b7)) + (fp_poly + (pts + (xy 2.849165 -4.626017) + (xy 2.324281 -4.626042) + (xy 1.845158 -1.903557) + (xy 1.767799 -1.715815) + (xy 1.652592 -1.548605) + (xy 1.504718 -1.409448) + (xy 1.330826 -1.3046) + (xy 1.138735 -1.238775) + (xy 0.937084 -1.214935) + (xy 0.850154 -0.692202) + (xy 1.194047 -0.752688) + (xy 1.518556 -0.881587) + (xy 1.810223 -1.073552) + (xy 2.056954 -1.320625) + (xy 2.248516 -1.612558) + (xy 2.376965 -1.937245) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 066a2fc6-a2f2-48ab-a831-67987bc4abf3)) + (fp_poly + (pts + (xy 3.525947 -5.460676) + (xy 3.448659 -5.451659) + (xy 3.37548 -5.42521) + (xy 3.310287 -5.382729) + (xy 3.256535 -5.326467) + (xy 3.21707 -5.259404) + (xy 3.217071 -5.259405) + (xy 3.200163 -5.215468) + (xy 3.192152 -5.169077) + (xy 3.193345 -5.122014) + (xy 3.203697 -5.076088) + (xy 3.222809 -5.033064) + (xy 3.249948 -4.994596) + (xy 3.28407 -4.962161) + (xy 3.323864 -4.937006) + (xy 3.384541 -4.923668) + (xy 3.446659 -4.922727) + (xy 3.507711 -4.934221) + (xy 3.565235 -4.957685) + (xy 3.616907 -4.992174) + (xy 3.660644 -5.036295) + (xy 3.694679 -5.088268) + (xy 3.721796 -5.133858) + (xy 3.73809 -5.184339) + (xy 3.742741 -5.23718) + (xy 3.735518 -5.289732) + (xy 3.716782 -5.339358) + (xy 3.687472 -5.383571) + (xy 3.64906 -5.420154) + (xy 3.589881 -5.447638) + (xy 3.525947 -5.460676) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 34f52956-b72b-44aa-80d2-dbf9030408a6)) + (fp_poly + (pts + (xy 3.404622 -2.004262) + (xy 3.361138 -2.015932) + (xy 3.321342 -2.036984) + (xy 3.287227 -2.066365) + (xy 3.260506 -2.1026) + (xy 3.242518 -2.143872) + (xy 3.234165 -2.188112) + (xy 3.235866 -2.233102) + (xy 3.608791 -4.388381) + (xy 3.608977 -4.436274) + (xy 3.598501 -4.483008) + (xy 3.577889 -4.52624) + (xy 3.548174 -4.5638) + (xy 3.510845 -4.593807) + (xy 3.467776 -4.614755) + (xy 3.421125 -4.625594) + (xy 2.952177 -4.624609) + (xy 2.996955 -4.613346) + (xy 3.038157 -4.592503) + (xy 3.073761 -4.563104) + (xy 3.102021 -4.526589) + (xy 3.121552 -4.48475) + (xy 3.131396 -4.439638) + (xy 3.13107 -4.393465) + (xy 2.755332 -2.213053) + (xy 2.757907 -2.173331) + (xy 2.768183 -2.134875) + (xy 2.785763 -2.099162) + (xy 2.809973 -2.067566) + (xy 2.839882 -2.041299) + (xy 2.874341 -2.021372) + (xy 2.912025 -2.008551) + (xy 2.951486 -2.003328) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 8489313a-72ab-4077-b166-09a12ff79da6)) + (fp_line (start 0.850145 -5.692202) (end 0.850145 -0.692202) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd7313e2-6b33-a591-6a0a-06dbcff9e196)) + (fp_line (start 0.850145 -0.692202) (end 8.794042 -0.692202) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 382450a8-60e7-d386-8b6b-2e0f3c568b8e)) + (fp_line (start 8.794042 -5.692202) (end 0.850145 -5.692202) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e6d5044-fa7e-2ba6-e64f-3e759b7dc536)) + (fp_line (start 8.794042 -0.692202) (end 8.794042 -5.692202) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45421311-14a9-cdbe-f8f1-7f2f3c53eaa1)) + ) + + (footprint "jitx-design:Pkg0402_4" (layer "F.Cu") + (tstamp 53803f49-2364-49c3-36ca-9460e7de65ac) + (at 135.253123 99.695657 -90) + (property "LCSC" "C92755") + (property "MPN" "EMK105BJ105KV-F") + (property "Manufacturer" "Taiyo Yuden") + (property "Name" "media-controller_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/d169b019-eda7-256d-e9dd-836b6775431e") + (fp_text reference "C4" (at -1.143657 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp a2c8294c-9235-35e8-0a3f-5848b8d8e119) + ) + (fp_text value "1u" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 16aec49b-7191-26b3-8f11-d5759220100e) + ) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33addde5-00b0-39b9-718d-77a012d12ca3)) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f47ad0a-c21e-b34d-0018-2f6a5d12567c)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ab7d960-b673-6ba4-82f1-81dcc00005db)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e01d629-ac84-0e1b-a246-5b651dd5cb7d)) + (pad "1" smd rect (at 0 -0.478611 270) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 335289ab-d13e-c34b-17db-ec5782242c55)) + (pad "2" smd rect (at 0 0.478611 270) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 9 "Net-(U5-RESET_N)") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 9eab10e8-7a2e-30b2-20b4-2d63b088a9ab)) + ) + + (footprint "jitx-design:Pkg0402_4" (layer "F.Cu") + (tstamp 57037787-ebd2-f206-a386-6f7e8d8d3faa) + (at 148.622184 114.694814) + (property "LCSC" "C100072") + (property "MPN" "CL05A104KA5NNNC") + (property "Manufacturer" "Samsung Electro-Mechanics") + (property "Name" "usb_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-2.kicad_sch") + (property "Sheetname" "2: usb_conn") + (path "/769e5753-ecff-ff7d-9bbd-16372ff6c879/6deb0713-28ab-4660-5ce3-8c724b3da3ba") + (fp_text reference "C1" (at 0.95 0 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 52a66b59-3e6c-2eaf-d8cd-ab7a0583a756) + ) + (fp_text value "100n" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 7182c02b-580d-89b2-27fd-14a3f15a053e) + ) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d7d50bf-18e0-8234-584c-6d0a8cbfe754)) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9429635c-bc33-550d-97b2-fadc76beac32)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d97fe724-ce6b-5e0e-ef35-981a2393e82e)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db88137c-e20d-455a-cd6a-dbba8c2ca01a)) + (pad "1" smd rect (at 0 -0.478611) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 8 "Net-(USB1-GND2)") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp de168d14-4734-bf7e-a6c6-e4b3c5355cc5)) + (pad "2" smd rect (at 0 0.478611) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp c0863d21-bbe0-481d-69f9-75c1f84a7f17)) + ) + + (footprint "jitx-design:Pkg0402_1" (layer "F.Cu") + (tstamp 69eb3086-b77e-d934-d661-3b29499f156f) + (at 132.381115 101.207532) + (property "LCSC" "C3880325") + (property "MPN" "GMC04X5R475M6R3NT") + (property "Manufacturer" "CAL-CHIP ELECTRONICS, INC.") + (property "Name" "media-controller_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/cf96f38a-38ed-a2d5-6397-0bdbc1744d3a") + (fp_text reference "C11" (at -1.063115 -0.369532 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp dccdd747-dbf0-217e-88bf-8fa9987e3fd0) + ) + (fp_text value "4.7u" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 8de92e7f-e1cc-477f-e781-1134123b9f56) + ) + (fp_line (start -0.45 -0.85) (end -0.45 0.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a306997-555c-d3d3-df2b-9a256e773981)) + (fp_line (start -0.45 0.85) (end 0.45 0.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 916fb0d2-9d2e-127e-d887-5930e49e2e18)) + (fp_line (start 0.45 -0.85) (end -0.45 -0.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bb9aed6e-bd44-8411-aa3f-50fc4dbc6489)) + (fp_line (start 0.45 0.85) (end 0.45 -0.85) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 616e1dc0-6cec-53e0-b14a-ee40b770968b)) + (pad "1" smd rect (at 0 -0.484861) (size 0.6 0.430278) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp d448c19a-15b1-293d-5c70-9b34c2755441)) + (pad "2" smd rect (at 0 0.484861) (size 0.6 0.430278) (layers "F.Cu" "F.Paste" "F.Mask") + (net 12 "Net-(Card1-VDD)") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 827dec4c-ed36-7fcc-1476-f5c4ce13676a)) + ) + + (footprint "jitx-design:Pkg0402_4" (layer "F.Cu") + (tstamp 7035e094-f88f-52c3-af25-915b6a5477f9) + (at 141.174252 103.134378 -90) + (property "LCSC" "C3853687") + (property "MPN" "C0402X5R250-105MNP") + (property "Manufacturer" "Venkel") + (property "Name" "media-controller_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/548e2bf3-dae0-a443-8537-cacdc4ee6f05") + (fp_text reference "C7" (at 0.95 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 45579659-8d8e-1ec6-da82-0fbbd1843096) + ) + (fp_text value "1u" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 14d0141a-a323-c2ea-e3d2-dafe8825ce78) + ) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5fc39f99-4fed-9747-3843-e9c9ca240a1d)) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 407eec90-652e-558f-8af8-ebc204294158)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf3ef0a3-55d9-e905-30c2-a9d2a1b8c25f)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab49b359-38de-c2cc-10a7-043025c4816b)) + (pad "1" smd rect (at 0 -0.478611 270) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 7972d457-ac90-9393-a67c-d7986a7be3ff)) + (pad "2" smd rect (at 0 0.478611 270) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "vdd33") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp d4d05524-8d8a-840a-a643-2cd087e6bdae)) + ) + + (footprint "jitx-design:NPTH" (layer "F.Cu") + (tstamp 82e090b6-13a3-0425-8a8a-712b08034bd2) + (at 150.05 97.45) + (property "Description" "2.3mm mounting hole") + (property "Name" "hole") + (property "Sheetfile" "jitx-design-2.kicad_sch") + (property "Sheetname" "2: usb_conn") + (path "/769e5753-ecff-ff7d-9bbd-16372ff6c879/3d4a288b-c27b-20ea-eeba-e018ecd7323e") + (fp_text reference "U1" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 7e369aeb-80f1-4b45-f705-08ac2cfaedad) + ) + (fp_text value "~" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 858febf5-f822-98c6-e1f0-d0ee8441b5ec) + ) + (fp_line (start -1.15 -1.15) (end -1.15 1.15) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp f291e344-51f0-bf5d-c2dd-59adf5291ea0)) + (fp_line (start -1.15 1.15) (end 1.15 1.15) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 1ef9b825-a4a5-c4cd-cb2a-2fd2f5c457ba)) + (fp_line (start 1.15 -1.15) (end -1.15 -1.15) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp bd684d76-cdfc-9833-aea3-d48ae59bbf89)) + (fp_line (start 1.15 1.15) (end 1.15 -1.15) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2e86bde7-bf32-6433-60e1-4ac935a67f4b)) + (fp_line (start -1.15 -1.15) (end -1.15 1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f675f4a-4999-0563-a36b-1646c3001763)) + (fp_line (start -1.15 1.15) (end 1.15 1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dfc1218-d1d0-c145-b705-86a9b1a4a393)) + (fp_line (start 1.15 -1.15) (end -1.15 -1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 654e1daf-9456-6904-3629-e3f08b8eb969)) + (fp_line (start 1.15 1.15) (end 1.15 -1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef6a297c-309c-5aad-80e4-bcb047265cd6)) + (pad "" np_thru_hole circle (at 0 0) (size 2.3 2.3) (drill 2.3) (layers "*.Mask") (tstamp 24abea80-2d89-5e31-b7c3-d0ee3bbbdb6c)) + (pad "" smd circle (at 0 0) (size 3.7 3.7) (layers "*.Mask") (tstamp b8c51d9e-15f8-5359-70ed-d337bda3b727)) + ) + + (footprint "jitx-design:Pkg0402_4" (layer "F.Cu") + (tstamp 85c85187-812a-a209-cc6e-ed405d4abe36) + (at 138.051738 112.571302 90) + (property "LCSC" "C2169825") + (property "MPN" "C0402C270J5GACTU") + (property "Manufacturer" "KEMET") + (property "Name" "media-controller_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/0f7f268a-279a-a630-75a7-5eedf080e9c4") + (fp_text reference "C12" (at -1.220698 0.378262) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 37dbc8a5-51e7-51cd-8099-21180853b4ba) + ) + (fp_text value "27p" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 9b945bef-4ac1-36eb-0a60-4563b7737094) + ) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a59ca19d-c1b0-7936-744c-cbd43adc68d5)) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 10ad4f4c-5d9b-32ac-1d67-6f430c95afe7)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1da0c886-bdd5-0b93-7a1e-e46276477b5f)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 632f135a-6d93-002b-9b86-f8d15c15675c)) + (pad "1" smd rect (at 0 -0.478611 90) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 13 "Net-(U5-XTAL1_CLKIN)") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 0d060c1f-129b-3b1e-6fdd-e671711ddd56)) + (pad "2" smd rect (at 0 0.478611 90) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 4b27efb0-98f8-455b-139f-f8beaa33db99)) + ) + + (footprint "jitx-design:Pkg0402_4" (layer "F.Cu") + (tstamp 9825710e-6ea1-2c41-6a5d-5a962c637d44) + (at 138.644942 108.070262 180) + (property "LCSC" "C3853687") + (property "MPN" "C0402X5R250-105MNP") + (property "Manufacturer" "Venkel") + (property "Name" "media-controller_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/e280fbf5-64a1-78c4-ab4d-5b0ad245c9d2") + (fp_text reference "C10" (at -1.055058 -0.641738 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 2c55b6ec-9548-cac6-1e29-42458a1a86a8) + ) + (fp_text value "1u" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 983af4e2-f5bb-ca9b-abf9-0f8637ec4435) + ) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f71f218f-944d-2647-4198-2031156fa0ff)) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7cf4fc8e-6c86-d013-1ffe-d12da177821b)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bd87e8e1-7882-050b-a90f-c64656385502)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a13fabc8-8c20-04c6-9748-7acb750ffb7c)) + (pad "1" smd rect (at 0 -0.478611 180) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 490aa5df-737a-7ab0-e6ec-8baf7bd7df40)) + (pad "2" smd rect (at 0 0.478611 180) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "vdd33") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 17c6159d-6cfd-84f3-bb30-c7c8baf4804b)) + ) + + (footprint "jitx-design:Pkg0603" (layer "F.Cu") + (tstamp 9a36a8ef-a931-47fa-a793-bba9e33f31a8) + (at 144.326658 106.840352 90) + (property "Description" "Everlight Elec 0603 various color SMD LEDs") + (property "LCSC" "C93128") + (property "MPN" "19-21/R6C-FP1Q2L/3T") + (property "Manufacturer" "Everlight Elec") + (property "Name" "status-led_led") + (property "Reference-prefix" "LED") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/d902e1dc-d84c-b3b7-ad5f-7e8501130a02") + (fp_text reference "LED1" (at 1.430352 1.977342) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1)) (justify right)) + (tstamp 821cf416-39da-805a-3e95-b0c07523f84c) + ) + (fp_text value "19-21/R6C-FP1Q2L/3T" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 8acf8bbc-a5fd-913b-1c75-f0e3f1c1f099) + ) + (fp_line (start -0.625 -1.125) (end -0.625 1.125) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5c76539-29e5-67ce-8a51-53bc0096ba1e)) + (fp_line (start -0.625 1.125) (end 0.625 1.125) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 71dcff78-0780-cbef-aa28-27366763d286)) + (fp_line (start 0.625 -1.125) (end -0.625 -1.125) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6eadaeee-e8d4-465a-817a-e9f5d64540a2)) + (fp_line (start 0.625 1.125) (end 0.625 -1.125) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8db8fb30-6e5b-93f6-6fa3-1bd83ab2dc80)) + (pad "1" smd rect (at 0 -0.718934 90) (size 0.95 0.512132) (layers "F.Cu" "F.Paste" "F.Mask") + (net 23 "Net-(LED1-a)") (pinfunction "a") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp d5f4d85b-0c1e-ee56-b392-2666b0e71dd2)) + (pad "2" smd rect (at 0 0.718934 90) (size 0.95 0.512132) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "c") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 4f4f41cf-54e5-247e-bb2f-55b9bf4d59af)) + ) + + (footprint "jitx-design:TESTPAD" (layer "F.Cu") + (tstamp a7b97921-5064-1443-7522-abc9e4f23655) + (at 129.639143 98.796163) + (property "Name" "test-points_point3") + (property "Sheetfile" "jitx-design-4.kicad_sch") + (property "Sheetname" "4: test-points_point1") + (path "/eaa54a66-2ef3-f9f9-2de2-c2b1b388013e/a99fff7e-2c6c-243c-eacd-dde7ea4ba022") + (fp_text reference "U9" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp c246984c-006e-382a-97ae-be69654dfed4) + ) + (fp_text value "~" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp a1b49d10-f2d4-bc0c-29f5-aab69604a9c8) + ) + (pad "tp" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 7 "TXD_SCK_MS_SKT_SEL") (pinfunction "p") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp c3e15a3c-2033-ae1c-6f9f-c341c25cd221)) + ) + + (footprint "jitx-design:Pkg0402_4" (layer "F.Cu") + (tstamp b014178e-fc6e-20ed-5156-ef95470fbd1d) + (at 137.089343 99.16764) + (property "LCSC" "C783277") + (property "MPN" "GRM155C81E105ME11D") + (property "Manufacturer" "Murata Electronics") + (property "Name" "media-controller_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/ac04a15c-c9c5-8bb3-3b5e-fd044f4018ef") + (fp_text reference "C5" (at 0.95 0 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 6007ae41-c6da-9882-dc62-a12355426777) + ) + (fp_text value "1u" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 9ca10124-1377-7d99-8080-64d21fe8fbdb) + ) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 324a08f7-acc3-d1e0-0a7e-e4f8997b042a)) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f7f7d3b2-72df-2deb-a114-8ac8e2c35f21)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52668b01-917c-bfae-86ba-fd71fd56e048)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec8b16a4-0d0e-6e9d-1c39-340bd07cf687)) + (pad "1" smd rect (at 0 -0.478611) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp be7b9068-2b4f-ed6c-76b5-12c768ae657f)) + (pad "2" smd rect (at 0 0.478611) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 10 "Net-(U5-VDD18)") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 51fc95e7-7f74-89c7-48a0-d57c73b285ce)) + ) + + (footprint "jitx-design:Pkg0402" (layer "F.Cu") + (tstamp b6a04efb-e177-7ad0-1772-811d90444aa0) + (at 126.307394 110.727391 90) + (property "Description" "RES SMD 5K OHM 1% 1/16W 0402") + (property "LCSC" "C477765") + (property "MPN" "RC0402FR-075KL") + (property "Manufacturer" "YAGEO") + (property "Name" "eeprom_rid") + (property "Reference-prefix" "R") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/3f0e49d2-85ed-0b40-5e80-097e080c8605") + (fp_text reference "R2" (at -1.032609 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 803983a7-24a0-0448-5ae5-6ba9012316a8) + ) + (fp_text value "5K" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 6f758f0d-0fcb-0430-3f81-ba3c333d7194) + ) + (fp_line (start -0.45 -0.8) (end -0.45 0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 59abffa2-eda0-6b96-4a48-2e7dff5cd121)) + (fp_line (start -0.45 0.8) (end 0.45 0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d85320c3-1588-caa5-0b94-fac10572abf3)) + (fp_line (start 0.45 -0.8) (end -0.45 -0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f8c4d86-a306-b013-e033-3ceeeb2151d5)) + (fp_line (start 0.45 0.8) (end 0.45 -0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3b91f32b-6c2f-f18d-0116-380c08bfcf0b)) + (pad "1" smd rect (at 0 -0.459861 90) (size 0.6 0.380278) (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "RXD_SDA") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 58292cea-a1a2-cd6d-8799-ee9b1da0cb04)) + (pad "2" smd rect (at 0 0.459861 90) (size 0.6 0.380278) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "vdd33") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 61322e0d-aff1-713b-e445-4cb1dce3c5f3)) + ) + + (footprint "jitx-design:Pkg0402_4" (layer "F.Cu") + (tstamp bb842b4e-94c5-5e3e-748c-7016030498a7) + (at 131.363078 103.715096 90) + (property "LCSC" "C3853687") + (property "MPN" "C0402X5R250-105MNP") + (property "Manufacturer" "Venkel") + (property "Name" "media-controller_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/278efe8f-2b22-3272-1747-ac7e7ed33d65") + (fp_text reference "C9" (at 0.95 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp ed265d5a-f035-143a-2162-b0d7bcbdb26c) + ) + (fp_text value "1u" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 7008fbcf-e709-03dc-cf57-66a9243d8efa) + ) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6bf9a4b-348d-adf1-f925-fb37babbb23d)) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1830ae05-9b03-d766-f8d6-b2770bcb3ff5)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 637e57c4-5f54-0bb4-fa06-0bbf62d3ba23)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81c86e84-5356-a53e-0dac-2aeea98c8186)) + (pad "1" smd rect (at 0 -0.478611 90) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 403be704-aa77-5e35-3e0a-f06646687c71)) + (pad "2" smd rect (at 0 0.478611 90) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "vdd33") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp a432b618-8361-a1cb-d341-e9af8d8618b0)) + ) + + (footprint "jitx-design:Pkg0402_4" (layer "F.Cu") + (tstamp bcaeef5b-49d7-3f53-e573-d073f8f45b4d) + (at 146.177984 110.839534 90) + (property "LCSC" "C100072") + (property "MPN" "CL05A104KA5NNNC") + (property "Manufacturer" "Samsung Electro-Mechanics") + (property "Name" "reg_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-2.kicad_sch") + (property "Sheetname" "2: usb_conn") + (path "/769e5753-ecff-ff7d-9bbd-16372ff6c879/98eaab0f-0545-3292-8deb-4e324908ff75") + (fp_text reference "C2" (at 0.95 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 2ae10a0a-115c-ae80-d675-212f8c91835a) + ) + (fp_text value "100n" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 94aa70a3-4db0-5fff-ff7a-25c169fbe7b2) + ) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34535135-76a6-7b86-e6d1-3190be174e7a)) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e7f75759-7378-f925-b235-83f2671fba3c)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8fdd170a-1c56-604a-8bbf-107745e3573d)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c86198be-3a76-9e06-c49f-e0e8e51b666e)) + (pad "1" smd rect (at 0 -0.478611 90) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 81737e40-56e3-9ce9-5293-bca855159067)) + (pad "2" smd rect (at 0 0.478611 90) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 6 "vdd50") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 561e307a-7d9e-ae86-5f88-bb1835df0dd1)) + ) + + (footprint "jitx-design:Pkg0402" (layer "F.Cu") + (tstamp c5b507ea-5c7c-d3db-9927-f60288edf7a3) + (at 128.662662 106.729721 90) + (property "Description" "RES SMD 5K OHM 1% 1/16W 0402") + (property "LCSC" "C477765") + (property "MPN" "RC0402FR-075KL") + (property "Manufacturer" "YAGEO") + (property "Name" "eeprom_rid") + (property "Reference-prefix" "R") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/17acdce1-0097-4166-c8e9-5d2305140aa4") + (fp_text reference "R4" (at 0.95 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp be4dbdef-b23b-b6cc-dba5-137211089aef) + ) + (fp_text value "5K" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp f32ff918-013c-bef3-649d-2fd69cec8146) + ) + (fp_line (start -0.45 -0.8) (end -0.45 0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 581150b7-33b2-8d6f-16a3-e60392b9a168)) + (fp_line (start -0.45 0.8) (end 0.45 0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ecc4d3f8-538c-4b70-1a77-8f7931ebe484)) + (fp_line (start 0.45 -0.8) (end -0.45 -0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c993449-86ca-aeb5-655c-43670a04c395)) + (fp_line (start 0.45 0.8) (end 0.45 -0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ee419c1-ec46-8445-ddbc-91523a7e3980)) + (pad "1" smd rect (at 0 -0.459861 90) (size 0.6 0.380278) (layers "F.Cu" "F.Paste" "F.Mask") + (net 25 "Net-(U4-WC_NOT)") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp b6ce7a55-6163-d196-f280-078d9def8d0d)) + (pad "2" smd rect (at 0 0.459861 90) (size 0.6 0.380278) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "vdd33") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 15650bcc-8f5b-fe93-6f5e-64ee23340504)) + ) + + (footprint "jitx-design:Pkg0402" (layer "F.Cu") + (tstamp d5fe272f-e7c2-1b7d-610d-c6ac5dedaf17) + (at 127.343111 108.885762 90) + (property "Description" "RES SMD 5K OHM 1% 1/16W 0402") + (property "LCSC" "C477765") + (property "MPN" "RC0402FR-075KL") + (property "Manufacturer" "YAGEO") + (property "Name" "eeprom_rid") + (property "Reference-prefix" "R") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/5b1e792f-2f34-c5ea-8542-d2dc40c4f8ac") + (fp_text reference "R3" (at 0.95 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp e9cd8d0a-bea2-b2e5-6c67-4dff58868231) + ) + (fp_text value "5K" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp cc7231a3-53f3-aeff-6254-8772655930e6) + ) + (fp_line (start -0.45 -0.8) (end -0.45 0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3396212d-10a1-a01e-0444-1a0c74e4d789)) + (fp_line (start -0.45 0.8) (end 0.45 0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 051254c4-84a8-d8a7-c0e2-ef07d8cd4f8d)) + (fp_line (start 0.45 -0.8) (end -0.45 -0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca4b3123-f068-64f3-b529-10a4e1d1ca5e)) + (fp_line (start 0.45 0.8) (end 0.45 -0.8) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b453a714-134d-3a4c-c303-04583dda9af5)) + (pad "1" smd rect (at 0 -0.459861 90) (size 0.6 0.380278) (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "TXD_SCK_MS_SKT_SEL") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp bd3ef20e-6456-100f-d438-ad46ac0b77d0)) + (pad "2" smd rect (at 0 0.459861 90) (size 0.6 0.380278) (layers "F.Cu" "F.Paste" "F.Mask") + (net 4 "vdd33") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp fb37d83c-035b-259e-18e7-cdbb11cc249b)) + ) + + (footprint "jitx-design:QFN_36_L6_0_W6_0_P0_50_TL_EP4_1" (layer "F.Cu") + (tstamp da42a465-6fec-c82f-78e6-a59e8fdccef4) + (at 136.595865 103.604046 180) + (property "Description" " QFN-36-EP(6x6) Interface - Specialized ROHS") + (property "LCSC" "C633328") + (property "MPN" "USB2240-AEZG-06") + (property "Manufacturer" "Microchip Tech") + (property "Name" "media-controller_usb2240") + (property "Reference-prefix" "U") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/57c784a0-702b-ab2e-1bce-f6a1842cb201") + (fp_text reference "U5" (at 4.261865 -1.297954 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1)) (justify right)) + (tstamp 2c050b2d-ebc4-7084-f33d-69c929d8befb) + ) + (fp_text value "USB2240-AEZG-06" (at -1.5 -3.9606) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.1)) (justify right)) + (tstamp 16d1a4c6-bd8a-62cd-36c6-b9cd7e62ecef) + ) + (fp_poly + (pts + (xy -3.255 -1.64) + (xy -3.255 -1.36) + (xy -2.365 -1.36) + (xy -2.365 -1.64) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 1f917bac-c384-432d-a457-c399ea53461a)) + (fp_poly + (pts + (xy -3.255 -1.14) + (xy -3.255 -0.86) + (xy -2.365 -0.86) + (xy -2.365 -1.14) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 019bf1ba-6059-4cdd-a0cf-2707552fb37a)) + (fp_poly + (pts + (xy -3.255 -0.64) + (xy -3.255 -0.36) + (xy -2.365 -0.36) + (xy -2.365 -0.64) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 47f45336-1edb-43a3-859d-7e11bb748148)) + (fp_poly + (pts + (xy -3.255 -0.14) + (xy -3.255 0.14) + (xy -2.365 0.14) + (xy -2.365 -0.14) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 0f46fb72-0d2d-4ed2-929d-de7d8e8c6ff5)) + (fp_poly + (pts + (xy -2.365 -1.86) + (xy -2.365 -2.14) + (xy -3.255 -2.14) + (xy -3.255 -1.86) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 0ef6098d-5ac0-4faf-9f74-7504648385a4)) + (fp_poly + (pts + (xy -2.365 0.64) + (xy -2.365 0.36) + (xy -3.255 0.36) + (xy -3.255 0.64) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 7a821e57-b5e7-439b-8532-13a09fa96752)) + (fp_poly + (pts + (xy -2.365 1.14) + (xy -2.365 0.86) + (xy -3.255 0.86) + (xy -3.255 1.14) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 12e0e643-93a6-4939-9df1-1da8494521a4)) + (fp_poly + (pts + (xy -2.365 1.64) + (xy -2.365 1.36) + (xy -3.255 1.36) + (xy -3.255 1.64) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 73a1a266-8007-4972-8055-2da4f8cd1b20)) + (fp_poly + (pts + (xy -2.365 2.14) + (xy -2.365 1.86) + (xy -3.255 1.86) + (xy -3.255 2.14) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 0c725b35-c453-4772-813e-47f531a0c6d4)) + (fp_poly + (pts + (xy -2.14 -3.255) + (xy -2.14 -2.365) + (xy -1.86 -2.365) + (xy -1.86 -3.255) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp a11d4bb9-ee0d-494c-b12d-10a14cd89e9c)) + (fp_poly + (pts + (xy -2.14 2.365) + (xy -2.14 3.255) + (xy -1.86 3.255) + (xy -1.86 2.365) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp c8a1e1eb-7363-4971-9289-1e27709e62f4)) + (fp_poly + (pts + (xy -1.64 -3.255) + (xy -1.64 -2.365) + (xy -1.36 -2.365) + (xy -1.36 -3.255) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp b76661ca-bf40-4e85-a736-9bbb296d4140)) + (fp_poly + (pts + (xy -1.64 -1.64) + (xy 1.64 -1.64) + (xy 1.64 1.64) + (xy -1.64 1.64) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 289e452b-dfe6-43d5-872b-7bc53882a92e)) + (fp_poly + (pts + (xy -1.64 2.365) + (xy -1.64 3.255) + (xy -1.36 3.255) + (xy -1.36 2.365) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 07c72650-6db2-44b4-9148-74b316570e4a)) + (fp_poly + (pts + (xy -1.14 -3.255) + (xy -1.14 -2.365) + (xy -0.86 -2.365) + (xy -0.86 -3.255) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 5814f331-4efc-492b-a15e-ae17f51e0816)) + (fp_poly + (pts + (xy -1.14 2.365) + (xy -1.14 3.255) + (xy -0.86 3.255) + (xy -0.86 2.365) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp d776b7fa-49e1-403a-bc0b-f1f8bc84d207)) + (fp_poly + (pts + (xy -0.64 -3.255) + (xy -0.64 -2.365) + (xy -0.36 -2.365) + (xy -0.36 -3.255) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 3eacbac4-27e6-4ade-b4ea-6482b0e6cef6)) + (fp_poly + (pts + (xy -0.64 2.365) + (xy -0.64 3.255) + (xy -0.36 3.255) + (xy -0.36 2.365) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 0ab70d5a-9a9e-4df8-bbce-d937cbbbfa01)) + (fp_poly + (pts + (xy -0.14 -3.255) + (xy -0.14 -2.365) + (xy 0.14 -2.365) + (xy 0.14 -3.255) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 83c5578d-dc96-48cb-aa93-b0b83f8555d9)) + (fp_poly + (pts + (xy 0.14 3.255) + (xy 0.14 2.365) + (xy -0.14 2.365) + (xy -0.14 3.255) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 23a2fd75-57d1-49e5-aaf0-fe814e1444d4)) + (fp_poly + (pts + (xy 0.36 -3.255) + (xy 0.36 -2.365) + (xy 0.64 -2.365) + (xy 0.64 -3.255) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 45a92cfb-2777-4e99-8bb7-f22668b10359)) + (fp_poly + (pts + (xy 0.36 2.365) + (xy 0.36 3.255) + (xy 0.64 3.255) + (xy 0.64 2.365) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp a3a0e801-b596-484c-9169-356ef767fb27)) + (fp_poly + (pts + (xy 0.86 2.365) + (xy 0.86 3.255) + (xy 1.14 3.255) + (xy 1.14 2.365) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 2a040b54-cc09-4d95-bf56-455cc6b01139)) + (fp_poly + (pts + (xy 1.14 -2.365) + (xy 1.14 -3.255) + (xy 0.86 -3.255) + (xy 0.86 -2.365) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp dd896f47-1fa7-4b23-bf1e-ca45369071d2)) + (fp_poly + (pts + (xy 1.64 -2.365) + (xy 1.64 -3.255) + (xy 1.36 -3.255) + (xy 1.36 -2.365) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp f3f7619c-e4dc-4ef7-ab21-509fd5e155ca)) + (fp_poly + (pts + (xy 1.64 3.255) + (xy 1.64 2.365) + (xy 1.36 2.365) + (xy 1.36 3.255) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 950331ec-8ef6-4ac1-86c3-e0a08f7591a7)) + (fp_poly + (pts + (xy 2.14 -2.365) + (xy 2.14 -3.255) + (xy 1.86 -3.255) + (xy 1.86 -2.365) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp f79d27b3-a43a-4122-91d1-249a03b7a0b5)) + (fp_poly + (pts + (xy 2.14 3.255) + (xy 2.14 2.365) + (xy 1.86 2.365) + (xy 1.86 3.255) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 4db51c2a-9385-44fa-a13c-b36529458c47)) + (fp_poly + (pts + (xy 2.365 0.36) + (xy 2.365 0.64) + (xy 3.255 0.64) + (xy 3.255 0.36) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp dc1d198e-11ef-4e59-93b3-cd8e6c3753e6)) + (fp_poly + (pts + (xy 2.365 0.86) + (xy 2.365 1.14) + (xy 3.255 1.14) + (xy 3.255 0.86) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 4058321b-1789-4c84-9710-2ac071415e51)) + (fp_poly + (pts + (xy 2.365 1.36) + (xy 2.365 1.64) + (xy 3.255 1.64) + (xy 3.255 1.36) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 7e01e22c-c2e7-46b2-a6f1-513ce23617c8)) + (fp_poly + (pts + (xy 2.365 1.86) + (xy 2.365 2.14) + (xy 3.255 2.14) + (xy 3.255 1.86) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp c18c6079-8088-44ed-b500-be914784de22)) + (fp_poly + (pts + (xy 3.255 -1.86) + (xy 3.255 -2.14) + (xy 2.365 -2.14) + (xy 2.365 -1.86) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 2d6af342-7497-467d-aed4-c19f653c3bf2)) + (fp_poly + (pts + (xy 3.255 -1.36) + (xy 3.255 -1.64) + (xy 2.365 -1.64) + (xy 2.365 -1.36) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp d3ed51ab-0cc2-4fd6-ab1f-2f55523e9e16)) + (fp_poly + (pts + (xy 3.255 -0.86) + (xy 3.255 -1.14) + (xy 2.365 -1.14) + (xy 2.365 -0.86) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 5b069d86-cced-42e0-9a82-4601bbe23698)) + (fp_poly + (pts + (xy 3.255 -0.36) + (xy 3.255 -0.64) + (xy 2.365 -0.64) + (xy 2.365 -0.36) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp c29053a2-355a-463b-99a4-51bd1e45a0c2)) + (fp_poly + (pts + (xy 3.255 0.14) + (xy 3.255 -0.14) + (xy 2.365 -0.14) + (xy 2.365 0.14) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Paste") (tstamp 4d38596b-06ec-4332-8588-5ef8183bf6da)) + (fp_line (start -3 -3) (end -3 -2.4) + (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f9255cf2-1083-b083-7b78-78992f0d1ec8)) + (fp_line (start -3 2.4) (end -3 3) + (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ab59b71d-f0f8-7813-6090-63af81f9b25e)) + (fp_line (start -3 3) (end -2.4 3) + (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 954c49f1-60d6-fa93-c20a-c2edb82868b2)) + (fp_line (start -2.4 -3) (end -3 -3) + (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 95200571-c804-93da-0634-80c54dd02103)) + (fp_line (start 2.4 3) (end 3 3) + (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp eed6091c-c38a-9d09-0422-305a478c606e)) + (fp_line (start 3 -3) (end 2.4 -3) + (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp eeaa12e0-3408-00da-7144-e3a5385403a8)) + (fp_line (start 3 -2.4) (end 3 -3) + (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f17c3ff3-f743-c7f1-439c-7a2da3aaa368)) + (fp_line (start 3 3) (end 3 2.4) + (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 720e4856-7008-8004-fbe0-aea03c1c6d14)) + (fp_poly + (pts + (xy -3.533 -2.54) + (xy -3.535882 -2.569264) + (xy -3.544418 -2.597403) + (xy -3.55828 -2.623336) + (xy -3.576934 -2.646066) + (xy -3.599664 -2.66472) + (xy -3.625597 -2.678582) + (xy -3.653736 -2.687118) + (xy -3.683 -2.69) + (xy -3.712264 -2.687118) + (xy -3.740403 -2.678582) + (xy -3.766336 -2.66472) + (xy -3.789066 -2.646066) + (xy -3.80772 -2.623336) + (xy -3.821582 -2.597403) + (xy -3.830118 -2.569264) + (xy -3.833 -2.54) + (xy -3.830118 -2.510736) + (xy -3.821582 -2.482597) + (xy -3.80772 -2.456664) + (xy -3.789066 -2.433934) + (xy -3.766336 -2.41528) + (xy -3.740403 -2.401418) + (xy -3.712264 -2.392882) + (xy -3.683 -2.39) + (xy -3.653736 -2.392882) + (xy -3.625597 -2.401418) + (xy -3.599664 -2.41528) + (xy -3.576934 -2.433934) + (xy -3.55828 -2.456664) + (xy -3.544418 -2.482597) + (xy -3.535882 -2.510736) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp de026386-5692-4727-8f5f-7308fd55c73b)) + (fp_line (start -3.255 -3.255) (end -3.255 3.255) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp edaa4be0-87ed-d0cb-5079-9281b52864bc)) + (fp_line (start -3.255 3.255) (end 3.255 3.255) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0c2b5a01-5658-8525-4a0e-12a67e529257)) + (fp_line (start 3.255 -3.255) (end -3.255 -3.255) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aae7dbbf-c169-4fa8-9b59-52e9e3fc70a8)) + (fp_line (start 3.255 3.255) (end 3.255 -3.255) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4cd7ff73-7f39-e676-f880-a87282783b3b)) + (fp_poly + (pts + (xy -3.025 -2.159) + (xy -3.027882 -2.188264) + (xy -3.036418 -2.216403) + (xy -3.05028 -2.242336) + (xy -3.068934 -2.265066) + (xy -3.091664 -2.28372) + (xy -3.117597 -2.297582) + (xy -3.145736 -2.306118) + (xy -3.175 -2.309) + (xy -3.204264 -2.306118) + (xy -3.232403 -2.297582) + (xy -3.258336 -2.28372) + (xy -3.281066 -2.265066) + (xy -3.29972 -2.242336) + (xy -3.313582 -2.216403) + (xy -3.322118 -2.188264) + (xy -3.325 -2.159) + (xy -3.322118 -2.129736) + (xy -3.313582 -2.101597) + (xy -3.29972 -2.075664) + (xy -3.281066 -2.052934) + (xy -3.258336 -2.03428) + (xy -3.232403 -2.020418) + (xy -3.204264 -2.011882) + (xy -3.175 -2.009) + (xy -3.145736 -2.011882) + (xy -3.117597 -2.020418) + (xy -3.091664 -2.03428) + (xy -3.068934 -2.052934) + (xy -3.05028 -2.075664) + (xy -3.036418 -2.101597) + (xy -3.027882 -2.129736) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 9e4cc5e2-1972-4ac3-8aa7-34457a29fe82)) + (fp_poly + (pts + (xy -2.97 -3.001) + (xy -2.970576 -3.006853) + (xy -2.972284 -3.012481) + (xy -2.975056 -3.017667) + (xy -2.978787 -3.022213) + (xy -2.983333 -3.025944) + (xy -2.988519 -3.028716) + (xy -2.994147 -3.030424) + (xy -3 -3.031) + (xy -3.005853 -3.030424) + (xy -3.011481 -3.028716) + (xy -3.016667 -3.025944) + (xy -3.021213 -3.022213) + (xy -3.024944 -3.017667) + (xy -3.027716 -3.012481) + (xy -3.029424 -3.006853) + (xy -3.03 -3.001) + (xy -3.029424 -2.995147) + (xy -3.027716 -2.989519) + (xy -3.024944 -2.984333) + (xy -3.021213 -2.979787) + (xy -3.016667 -2.976056) + (xy -3.011481 -2.973284) + (xy -3.005853 -2.971576) + (xy -3 -2.971) + (xy -2.994147 -2.971576) + (xy -2.988519 -2.973284) + (xy -2.983333 -2.976056) + (xy -2.978787 -2.979787) + (xy -2.975056 -2.984333) + (xy -2.972284 -2.989519) + (xy -2.970576 -2.995147) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "F.Fab") (tstamp 573b6f37-567a-4d29-9a96-3ee91f96c80c)) + (pad "1" smd rect (at -2.81 -2 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 27 "Net-(U5-LED)") (pinfunction "LED") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 6a52eb3b-703d-edc2-bd59-a0f1ffc26168)) + (pad "2" smd rect (at -2.81 -1.5 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 2 "USB+") (pinfunction "USB+") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp d92c37a0-be26-d17e-4299-644f9b2da7fd)) + (pad "3" smd rect (at -2.81 -1 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 5 "USB-") (pinfunction "USB-") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 1e928787-f3b6-e91e-78f5-3acdfcd71dd1)) + (pad "4" smd rect (at -2.81 -0.5 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 19 "Net-(Card1-DAT1)") (pinfunction "xD_D3_SD_D1_MS_D5") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 2ea0a970-c5f0-d1a0-605d-bef216b0e47e)) + (pad "5" smd rect (at -2.81 0 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 18 "Net-(Card1-DAT0)") (pinfunction "xD_D2_SD_D0_MS_D4") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 1fa0474d-93f2-af20-69cd-300914260944)) + (pad "6" smd rect (at -2.81 0.5 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 4 "vdd33") (pinfunction "VDD330") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 6e0e2d07-a7b5-2299-8ecc-976bf1c07028)) + (pad "7" smd rect (at -2.81 1 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 32 "unconnected-(U5-xD_D1_SD_D7_MS_D6-Pad7)") (pinfunction "xD_D1_SD_D7_MS_D6") (pintype "unspecified+no_connect") (solder_mask_margin 0.05) (tstamp 1dd82b77-2e8a-78ee-cacc-3b894441d4b7)) + (pad "8" smd rect (at -2.81 1.5 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 33 "unconnected-(U5-xD_D0_SD_D6_MS_D7-Pad8)") (pinfunction "xD_D0_SD_D6_MS_D7") (pintype "unspecified+no_connect") (solder_mask_margin 0.05) (tstamp 1de2248f-2573-30ee-14be-cf389c524c2b)) + (pad "9" smd rect (at -2.81 2 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 17 "Net-(Card1-CLK)") (pinfunction "xD_nWP_SD_CLK_MS_BS") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 16c5c429-73cd-baa7-5095-35c4323e8924)) + (pad "10" smd rect (at -2 2.809) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 34 "unconnected-(U5-xD_ALE_SD_D5_MS_D1-Pad10)") (pinfunction "xD_ALE_SD_D5_MS_D1") (pintype "unspecified+no_connect") (solder_mask_margin 0.05) (tstamp 312e88e1-280a-dd1b-f5c1-d46d202dfea5)) + (pad "11" smd rect (at -1.5 2.809) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 16 "Net-(Card1-CMD)") (pinfunction "xD_CLE_SD_CMD_MS_D0") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 1a9ee81d-97d4-2889-3b60-a2515bc32bd9)) + (pad "12" smd rect (at -1 2.809) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 35 "unconnected-(U5-xD_nWE-Pad12)") (pinfunction "xD_nWE") (pintype "unspecified+no_connect") (solder_mask_margin 0.05) (tstamp e6094d99-d1e6-7d26-808a-3e24d0f4f274)) + (pad "13" smd rect (at -0.5 2.809) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 10 "Net-(U5-VDD18)") (pinfunction "VDD18") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp fd8fb15a-b076-254d-eb5c-64ae6ce86fab)) + (pad "14" smd rect (at 0 2.809) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 4 "vdd33") (pinfunction "VDD331") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 110af9a0-7a41-a1c5-2d1e-41f6f8c6efb5)) + (pad "15" smd rect (at 0.5 2.809) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 36 "unconnected-(U5-xD_nCE-Pad15)") (pinfunction "xD_nCE") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 32140f8e-14d2-6da3-10fe-960bf1baedc4)) + (pad "16" smd rect (at 1 2.809) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 37 "unconnected-(U5-xD_nRE-Pad16)") (pinfunction "xD_nRE") (pintype "unspecified+no_connect") (solder_mask_margin 0.05) (tstamp 7497f6e6-6e38-6e54-a026-57cee2b120bb)) + (pad "17" smd rect (at 1.5 2.809) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 38 "unconnected-(U5-xD_nB_R-Pad17)") (pinfunction "xD_nB_R") (pintype "unspecified+no_connect") (solder_mask_margin 0.05) (tstamp f87c50ff-451b-9a93-11c9-4609ad7c7bd8)) + (pad "18" smd rect (at 2 2.809) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 9 "Net-(U5-RESET_N)") (pinfunction "RESET_N") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 6514f03d-b123-055f-fa19-7e3f69972725)) + (pad "19" smd rect (at 2.81 2 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 39 "unconnected-(U5-xD_nCD-Pad19)") (pinfunction "xD_nCD") (pintype "unspecified+no_connect") (solder_mask_margin 0.05) (tstamp a2c2edd8-b204-3c86-44e6-32562de53b42)) + (pad "20" smd rect (at 2.81 1.5 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 40 "unconnected-(U5-xD_D7_SD_D4_MS_D2-Pad20)") (pinfunction "xD_D7_SD_D4_MS_D2") (pintype "unspecified+no_connect") (solder_mask_margin 0.05) (tstamp 86244a89-7f2c-b1d3-68b4-c9ecb37c31b0)) + (pad "21" smd rect (at 2.81 1 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 12 "Net-(Card1-VDD)") (pinfunction "CRD_PWR") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 20ddf664-d0d0-a35e-4974-7812520a0c04)) + (pad "22" smd rect (at 2.81 0.5 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 4 "vdd33") (pinfunction "VDD332") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 2af8e975-10b3-ebff-993b-334562c83578)) + (pad "23" smd rect (at 2.81 0 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 15 "Net-(Card1-CD_DAT3)") (pinfunction "xD_D6_SD_D3_MS_D3") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 6436f1a3-903f-ea57-cff2-712c1543af7a)) + (pad "24" smd rect (at 2.81 -0.5 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 41 "unconnected-(U5-MS_INS-Pad24)") (pinfunction "MS_INS") (pintype "unspecified+no_connect") (solder_mask_margin 0.05) (tstamp 0851bd57-1d86-7712-681a-7dfb472fa979)) + (pad "25" smd rect (at 2.81 -1 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 20 "Net-(Card1-DAT2)") (pinfunction "xD_D5_SD_D2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp cf1bd674-4684-494f-524a-4c88b414064e)) + (pad "26" smd rect (at 2.81 -1.5 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 21 "Net-(Card1-CD)") (pinfunction "SD_nCD") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 4be3d56d-353b-3a27-8004-6c7a6876629e)) + (pad "27" smd rect (at 2.81 -2 270) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 3 "RXD_SDA") (pinfunction "RXD_SDA") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp b9c515ac-795e-ae69-f5f1-56a73c0d54ad)) + (pad "28" smd rect (at 2 -2.81) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 1 "gnd") (pinfunction "TEST") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp b69ff537-7b77-8bb6-ddef-4b96fed0a448)) + (pad "29" smd rect (at 1.5 -2.81) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 42 "unconnected-(U5-NC-Pad29)") (pinfunction "NC") (pintype "unspecified+no_connect") (solder_mask_margin 0.05) (tstamp 1e5f7ec5-dd74-9ab4-fda1-fc6149f6aa6c)) + (pad "30" smd rect (at 1 -2.81) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 22 "Net-(Card1-WP)") (pinfunction "xD_D4_SD_WP_MS_SCLK") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp cd463170-c289-b56e-cdae-f5cbb3941751)) + (pad "31" smd rect (at 0.5 -2.81) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 7 "TXD_SCK_MS_SKT_SEL") (pinfunction "TXD_SCK_MS_SKT_SEL") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 7ceb4441-9350-e9da-62db-5e03f7c1128c)) + (pad "32" smd rect (at 0 -2.81) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 14 "Net-(U5-XTAL2)") (pinfunction "XTAL2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 0bde24fe-a6f6-7985-9cd5-b144a550a785)) + (pad "33" smd rect (at -0.5 -2.81) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 13 "Net-(U5-XTAL1_CLKIN)") (pinfunction "XTAL1_CLKIN") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp c3df208f-c926-a111-186c-879d3f682cb5)) + (pad "34" smd rect (at -1 -2.81) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 11 "Net-(U5-VDD18PLL)") (pinfunction "VDD18PLL") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp dd4d48e9-003b-efc9-9222-7eb1ed4e041a)) + (pad "35" smd rect (at -1.5 -2.81) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 26 "Net-(U5-RBIAS)") (pinfunction "RBIAS") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp bff4aa7f-dd16-b162-9b51-c03ddd28ff93)) + (pad "36" smd rect (at -2 -2.81) (size 0.28 0.89) (layers "F.Cu" "F.Mask") + (net 4 "vdd33") (pinfunction "VDDA33") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 6bc45bbd-e85e-1b6c-1c1c-bbd36b3d21f2)) + (pad "37" smd rect (at 0 0 180) (size 4.1 4.1) (layers "F.Cu" "F.Mask") + (net 1 "gnd") (pinfunction "GND") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp de475963-2a83-4677-7940-c25dc282a67a)) + ) + + (footprint "jitx-design:TESTPAD" (layer "F.Cu") + (tstamp dc3f9dfd-6a92-4a5a-e243-fed2d78bafa0) + (at 126.85395 96.515848) + (property "Name" "test-points_point1") + (property "Sheetfile" "jitx-design-4.kicad_sch") + (property "Sheetname" "4: test-points_point1") + (path "/eaa54a66-2ef3-f9f9-2de2-c2b1b388013e/799576cf-a21c-cfbd-d1b2-944d1f5ac013") + (fp_text reference "U7" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp ad92a7b9-d6c9-ac62-d8b9-0674404398f7) + ) + (fp_text value "~" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 2071e342-601d-4fad-62fc-ce724607e7f8) + ) + (pad "tp" smd circle (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") + (net 1 "gnd") (pinfunction "p") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp e463cd25-035d-8a91-206e-7033a6ece8ab)) + ) + + (footprint "jitx-design:NPTH" (layer "F.Cu") + (tstamp f3e45f96-ea21-935f-f177-2a855b8cb86d) + (at 150.05 118.55) + (property "Description" "2.3mm mounting hole") + (property "Name" "hole") + (property "Sheetfile" "jitx-design-2.kicad_sch") + (property "Sheetname" "2: usb_conn") + (path "/769e5753-ecff-ff7d-9bbd-16372ff6c879/e15b9077-b3ae-744d-0be4-8f31a545f13c") + (fp_text reference "U2" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp f277e32f-5cd2-e00a-d6da-06cb98eccfea) + ) + (fp_text value "~" (at 0 0) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 9d8da951-9dec-188b-4f46-ab6c87ad1e7b) + ) + (fp_line (start -1.15 -1.15) (end -1.15 1.15) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp bc34978b-ec86-dece-c87c-4ba56f1b84e6)) + (fp_line (start -1.15 1.15) (end 1.15 1.15) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 1b5ce7a0-12a4-43cb-d7ed-f8e0f36c6273)) + (fp_line (start 1.15 -1.15) (end -1.15 -1.15) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4847343e-9ca1-280d-3b6f-25c2c6f65f25)) + (fp_line (start 1.15 1.15) (end 1.15 -1.15) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp a6aab639-543c-3662-f276-e1a9dde87baf)) + (fp_line (start -1.15 -1.15) (end -1.15 1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 484f15fc-3003-7143-41cc-e3e2e7434a71)) + (fp_line (start -1.15 1.15) (end 1.15 1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 758c0fdb-7aea-14fb-072f-40d5031515c0)) + (fp_line (start 1.15 -1.15) (end -1.15 -1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83969a23-71a6-c044-1b9c-6111af8e4050)) + (fp_line (start 1.15 1.15) (end 1.15 -1.15) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 097c7537-6fb8-ed3f-5988-680412eec1ac)) + (pad "" np_thru_hole circle (at 0 0) (size 2.3 2.3) (drill 2.3) (layers "*.Mask") (tstamp c9a51400-221f-12a8-2262-b4bb658f7fca)) + (pad "" smd circle (at 0 0) (size 3.7 3.7) (layers "*.Mask") (tstamp 9d24e036-3e2d-1d55-cf21-f7c912da1945)) + ) + + (footprint "jitx-design:Pkg0402_4" (layer "F.Cu") + (tstamp fd22d25f-656d-f954-2b32-d14fd19814db) + (at 133.69005 108.309522 -90) + (property "LCSC" "C2169825") + (property "MPN" "C0402C270J5GACTU") + (property "Manufacturer" "KEMET") + (property "Name" "media-controller_cap") + (property "Reference-prefix" "C") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/7ce48ab6-9478-cca9-c5f2-c15724f10594") + (fp_text reference "C13" (at 0.148478 2.37205) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 2a2d38d3-60e0-5189-96e5-d0220ecaae6b) + ) + (fp_text value "27p" (at 0 0 90) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp de7106e2-d8da-3267-55bf-43bc14d51df7) + ) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f4df064a-015d-52f6-3626-1c6d4df2b063)) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7af4a4dc-e6ac-3715-c1f3-5002c7ddb0a8)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb6c1777-0c4d-c862-ec1f-f926c8963f0f)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9639b08-033a-23d1-05f7-59a14150c3dc)) + (pad "1" smd rect (at 0 -0.478611 270) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 14 "Net-(U5-XTAL2)") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp e5d37a10-f981-ce13-4347-d7494d354d4d)) + (pad "2" smd rect (at 0 0.478611 270) (size 0.6 0.417778) (layers "F.Cu" "F.Paste" "F.Mask") + (net 1 "gnd") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp dc515b61-4423-1408-bdd0-28ebb564b54f)) + ) + + (footprint "jitx-design:USB_C_SMD_TYPE_C_31_G_03" (layer "B.Cu") + (tstamp 0bc15dfb-2e1f-a206-adbc-478d87180215) + (at 155.6 108 90) + (property "Description" "1 Surface Mount Male Type-C SMD USB Connectors ROHS") + (property "LCSC" "C840338") + (property "MPN" "TYPE-C-31-G-03") + (property "Manufacturer" "Korean Hroparts Elec") + (property "Name" "usb_conn") + (property "Reference-prefix" "USB") + (property "Sheetfile" "jitx-design-2.kicad_sch") + (property "Sheetname" "2: usb_conn") + (path "/769e5753-ecff-ff7d-9bbd-16372ff6c879/d5b762fb-1219-2d1d-65c6-e829e1971630") + (fp_text reference "USB1" (at 1.5 -8.5181 90) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.1)) (justify left mirror)) + (tstamp 113abb82-1a2c-5bd2-303f-1f51a82b3109) + ) + (fp_text value "TYPE-C-31-G-03" (at 1.5 -7.5181 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.1)) (justify left mirror)) + (tstamp b439d5eb-bda6-08cd-ef38-0ef219788362) + ) + (fp_line (start -4.15 6.7875) (end -4.15 -4.4315) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 6040d6fe-d24a-9382-e948-3d1cb8795443)) + (fp_line (start -3.075 -6.8125) (end -3.824 -6.8125) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 732f5a82-a900-e045-6eac-3daf23089a0c)) + (fp_line (start -3 6.5875) (end -3 -3.9125) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp b4863799-f943-c0d8-4c05-30d2095d5082)) + (fp_line (start 2.939 6.7875) (end 2.939 -3.9125) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 6373cc73-bb13-c34d-c69c-76565f2848f4)) + (fp_line (start 3.824 -6.8125) (end 3.075 -6.8125) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 16ca3a54-0220-433f-2a9b-8e045832846d)) + (fp_line (start 4.15 6.7875) (end -4.15 6.7875) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp ad84820c-13e5-5b43-6e26-90c373baec86)) + (fp_line (start 4.15 6.7875) (end 4.15 -4.4315) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 161c16fc-850c-d382-7ff2-cb9375ee8673)) + (fp_line (start -4.7 -6.8125) (end 4.7 -6.8125) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4d7c287c-a6d4-c12b-f88b-c1bcb3e47fb3)) + (fp_line (start -4.7 6.8125) (end -4.7 -6.8125) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2a63addc-26d8-4395-6a68-1022ed5d8f24)) + (fp_line (start 4.7 -6.8125) (end 4.7 6.8125) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9202a300-7f98-e44f-16ac-92965c74aa32)) + (fp_line (start 4.7 6.8125) (end -4.7 6.8125) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 3ae3047e-e1d7-81a8-a2c5-c31993a6b11c)) + (fp_poly + (pts + (xy -5.08 -6.8125) + (xy -5.079424 -6.818353) + (xy -5.077716 -6.823981) + (xy -5.074944 -6.829167) + (xy -5.071213 -6.833713) + (xy -5.066667 -6.837444) + (xy -5.061481 -6.840216) + (xy -5.055853 -6.841924) + (xy -5.05 -6.8425) + (xy -5.044147 -6.841924) + (xy -5.038519 -6.840216) + (xy -5.033333 -6.837444) + (xy -5.028787 -6.833713) + (xy -5.025056 -6.829167) + (xy -5.022284 -6.823981) + (xy -5.020576 -6.818353) + (xy -5.02 -6.8125) + (xy -5.020576 -6.806647) + (xy -5.022284 -6.801019) + (xy -5.025056 -6.795833) + (xy -5.028787 -6.791287) + (xy -5.033333 -6.787556) + (xy -5.038519 -6.784784) + (xy -5.044147 -6.783076) + (xy -5.05 -6.7825) + (xy -5.055853 -6.783076) + (xy -5.061481 -6.784784) + (xy -5.066667 -6.787556) + (xy -5.071213 -6.791287) + (xy -5.074944 -6.795833) + (xy -5.077716 -6.801019) + (xy -5.079424 -6.806647) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.Fab") (tstamp cab87176-cf02-420f-a388-7780b4804cd1)) + (fp_poly + (pts + (xy 2.517 -6.7625) + (xy 2.520843 -6.801518) + (xy 2.532224 -6.839037) + (xy 2.550706 -6.873614) + (xy 2.575579 -6.903921) + (xy 2.605886 -6.928794) + (xy 2.640463 -6.947276) + (xy 2.677982 -6.958657) + (xy 2.717 -6.9625) + (xy 2.756018 -6.958657) + (xy 2.793537 -6.947276) + (xy 2.828114 -6.928794) + (xy 2.858421 -6.903921) + (xy 2.883294 -6.873614) + (xy 2.901776 -6.839037) + (xy 2.913157 -6.801518) + (xy 2.917 -6.7625) + (xy 2.913157 -6.723482) + (xy 2.901776 -6.685963) + (xy 2.883294 -6.651386) + (xy 2.858421 -6.621079) + (xy 2.828114 -6.596206) + (xy 2.793537 -6.577724) + (xy 2.756018 -6.566343) + (xy 2.717 -6.5625) + (xy 2.677982 -6.566343) + (xy 2.640463 -6.577724) + (xy 2.605886 -6.596206) + (xy 2.575579 -6.621079) + (xy 2.550706 -6.651386) + (xy 2.532224 -6.685963) + (xy 2.520843 -6.723482) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.Fab") (tstamp 9ba027f5-6714-481d-99e0-fe204b86a468)) + (pad "13" smd rect (at 3.575 -5.2635 90) (size 0.5 1.2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "gnd") (pinfunction "GND1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 34d59c87-2710-fc6e-6f23-2363afcaa784)) + (pad "14" smd rect (at 4.7 -5.7125 90) (size 1.3 2.1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 24 "Net-(USB1-GND0)") (pinfunction "GND0") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 2235d275-ac8a-bba9-d3d3-0eb649264671)) + (pad "15" smd rect (at -4.7 -5.7125 90) (size 1.3 2.1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 8 "Net-(USB1-GND2)") (pinfunction "GND2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp ce7a19b5-9aa8-fbfb-1549-51d862a80589)) + (pad "16" smd rect (at -3.575 -5.2635 90) (size 0.5 1.2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "gnd") (pinfunction "GND3") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp cbd7623f-c227-f470-700d-ab79917e87f2)) + (pad "A1" smd rect (at -2.75 -6.1625 90) (size 0.3 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "gnd") (pinfunction "GND6") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 1ea84333-7d0d-2875-5e28-f733c7c25f20)) + (pad "A2" smd rect (at -2.25 -6.1625 90) (size 0.3 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 43 "unconnected-(USB1-SSTXP1-PadA2)") (pinfunction "SSTXP1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 3f740b70-cd73-20df-7204-7f58b9828331)) + (pad "A3" smd rect (at -1.75 -6.1625 90) (size 0.3 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 44 "unconnected-(USB1-SSTXN1-PadA3)") (pinfunction "SSTXN1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp b53ab21a-3107-a107-9b84-1e66a59e77f4)) + (pad "A4" smd rect (at -1.25 -6.1625 90) (size 0.3 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 6 "vdd50") (pinfunction "VBUS1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 7923060a-ac4c-fed2-616f-3e38c5c58d77)) + (pad "A5" smd rect (at 1.25 -6.1625 90) (size 0.3 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 28 "Net-(USB1-CC1)") (pinfunction "CC1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp deba79eb-4242-100d-0295-194c62f19b75)) + (pad "A6" smd rect (at 1.75 -6.1625 90) (size 0.3 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 2 "USB+") (pinfunction "DP1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 59fcc72e-1006-4413-0e69-9ce3de6eeca1)) + (pad "A7" smd rect (at 2.25 -6.1625 90) (size 0.3 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 5 "USB-") (pinfunction "DN1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 53cc8863-5108-fc8a-627a-e721754cfbbb)) + (pad "A12" smd rect (at 2.75 -6.1625 90) (size 0.3 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "gnd") (pinfunction "GND5") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 1927e7df-4184-3bd7-a256-9473bb4ae2a1)) + (pad "B9" smd rect (at 0.75 -6.1625 90) (size 0.3 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 6 "vdd50") (pinfunction "VBUS0") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp ab7c581b-8713-9560-87a0-9876283250b4)) + (pad "B10" smd rect (at 0.25 -6.1625 90) (size 0.3 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 45 "unconnected-(USB1-SSRXN1-PadB10)") (pinfunction "SSRXN1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 1e9476aa-b815-d921-b7eb-5380d7a79031)) + (pad "B11" smd rect (at -0.25 -6.1625 90) (size 0.3 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 46 "unconnected-(USB1-SSRXP1-PadB11)") (pinfunction "SSRXP1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 73747c6c-5cb2-8842-d220-b865c9d87a42)) + (pad "B12" smd rect (at -0.75 -6.1625 90) (size 0.3 1) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "gnd") (pinfunction "GND4") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 35f1ea05-4a52-98bd-fa4a-b7791aa1d0b6)) + ) + + (footprint "jitx-design:Pkg0402" (layer "B.Cu") + (tstamp 170c0ee1-15ab-c670-5b35-6c1a35ec409c) + (at 147.04219 107.938865 -90) + (property "Description" "RES SMD 5.1K OHM 0.5% 1/16W 0402") + (property "MPN" "ERA-2AED512X") + (property "Manufacturer" "Panasonic Electronic Components") + (property "Name" "usb_rid") + (property "Reference-prefix" "R") + (property "Sheetfile" "jitx-design-2.kicad_sch") + (property "Sheetname" "2: usb_conn") + (path "/769e5753-ecff-ff7d-9bbd-16372ff6c879/b0520205-a0b3-d844-6465-08d72f29a616") + (fp_text reference "R9" (at -0.95 0) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.1)) (justify mirror)) + (tstamp 272d21d0-9855-c1da-34e9-2ec21353c73c) + ) + (fp_text value "5K1" (at 0 0 90) (layer "B.SilkS") hide + (effects (font (size 1 1) (thickness 0.1)) (justify mirror)) + (tstamp dcff0b06-6cda-ff2d-136d-5de590929165) + ) + (fp_line (start -0.45 -0.8) (end 0.45 -0.8) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c0c51f0c-b1c5-358f-676f-b41ea5fcbcbb)) + (fp_line (start -0.45 0.8) (end -0.45 -0.8) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 826b0138-78df-5714-e014-54f762b583a1)) + (fp_line (start 0.45 -0.8) (end 0.45 0.8) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4ce50407-23ff-5abb-ffb7-cd47cc3ffa17)) + (fp_line (start 0.45 0.8) (end -0.45 0.8) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 34f88b31-357a-491c-4538-209bb7c4b3a7)) + (pad "1" smd rect (at 0 -0.459861 270) (size 0.6 0.380278) (layers "B.Cu" "B.Paste" "B.Mask") + (net 28 "Net-(USB1-CC1)") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 346bdfe5-50bf-68d9-2fd2-52360c7bd8a0)) + (pad "2" smd rect (at 0 0.459861 270) (size 0.6 0.380278) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "gnd") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.05) (tstamp 43b159f7-37a3-1459-67e3-18ad3075366b)) + ) + + (footprint "jitx-design:SD_SMD_SD_101" (layer "B.Cu") + (tstamp 787cde08-7ac9-ef98-1584-5513e4e14faa) + (at 134.5 108 -90) + (property "Description" "-25℃~+85℃ 2.8mm silver Deck Standard SD card 260℃ C5191 Pluggable SMD SD Card Connectors ROHS") + (property "LCSC" "C266601") + (property "MPN" "SD-101") + (property "Manufacturer" "XUNPU") + (property "Name" "sd-connector_sd") + (property "Reference-prefix" "Card") + (property "Sheetfile" "jitx-design-3.kicad_sch") + (property "Sheetname" "3: media-controller_usb2240") + (path "/7821f7a4-2252-574c-ca60-454d6810d138/00b4b12b-5ae6-ab7f-700c-e0ddde2fefdf") + (fp_text reference "Card1" (at 1.5 -10.4806 90) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.1)) (justify right mirror)) + (tstamp 1ca1c90b-01df-e720-fee6-9a67d694db40) + ) + (fp_text value "SD-101" (at 1.5 -9.4806 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.1)) (justify right mirror)) + (tstamp 60b996f5-df18-ab75-57c4-19e19b6f3aa2) + ) + (fp_line (start -13.2 -0.725) (end -11 -2.925) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 22d5e69b-56d5-1ffd-1c0e-fd5c419ec1fb)) + (fp_line (start -13.2 6.143) (end -13.2 -0.725) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp e8758a20-50bf-dca7-02a5-f0f8bea35ae7)) + (fp_line (start -12.669 8.775) (end 12.669 8.775) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 74cc5b9c-789f-64af-23f4-3c775a591395)) + (fp_line (start -11 -2.925) (end -11 -5.094) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 1403de3d-04ce-18bc-0780-65b8f2b1ba82)) + (fp_line (start -10.096 -7.725) (end -10.469 -7.725) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 38bf71ec-dfa5-46df-4c0d-8b3e79f3b2ba)) + (fp_line (start -7.596 -7.725) (end -8.645 -7.725) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp ab6af80f-5155-3d4c-12b3-1aa31622266d)) + (fp_line (start -5.096 -7.725) (end -6.144 -7.725) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp d0657773-aaff-6616-6b33-f78f6b8b1bc3)) + (fp_line (start -2.596 -7.725) (end -3.645 -7.725) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 0e2a4b93-02b1-f457-a040-f8658d832425)) + (fp_line (start -0.096 -7.725) (end -1.144 -7.725) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 0d50ec65-359a-a544-5898-bd42b6f06970)) + (fp_line (start 2.404 -7.725) (end 1.356 -7.725) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp ac8beb58-da30-e4a0-5a96-1b6cb93ac4f2)) + (fp_line (start 4.904 -7.725) (end 3.856 -7.725) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 5fc5a2eb-e656-1e5f-860b-72ce59041743)) + (fp_line (start 7.4 -7.725) (end 6.356 -7.725) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp fe60aad0-44f6-b8f9-b03f-2dd33f3fba25)) + (fp_line (start 13.2 6.044) (end 13.2 -5.194) + (stroke (width 0.254) (type solid)) (layer "B.SilkS") (tstamp 29d99e88-41a2-4592-160d-1b109ab230ad)) + (fp_line (start -13.65 -8.775) (end 13.65 -8.775) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e17604d7-514a-695f-86a2-94bae05e4e6b)) + (fp_line (start -13.65 8.775) (end -13.65 -8.775) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4939905d-23a4-67c6-d9e7-ea4e77b72acb)) + (fp_line (start 13.65 -8.775) (end 13.65 8.775) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 45924561-525d-2bd3-f3c1-5cba2fb32a45)) + (fp_line (start 13.65 8.775) (end -13.65 8.775) + (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8d8bd5af-ed8e-a64b-32ca-13cdfb9ec68d)) + (fp_poly + (pts + (xy -14.03 -8.925) + (xy -14.029424 -8.930853) + (xy -14.027716 -8.936481) + (xy -14.024944 -8.941667) + (xy -14.021213 -8.946213) + (xy -14.016667 -8.949944) + (xy -14.011481 -8.952716) + (xy -14.005853 -8.954424) + (xy -14 -8.955) + (xy -13.994147 -8.954424) + (xy -13.988519 -8.952716) + (xy -13.983333 -8.949944) + (xy -13.978787 -8.946213) + (xy -13.975056 -8.941667) + (xy -13.972284 -8.936481) + (xy -13.970576 -8.930853) + (xy -13.97 -8.925) + (xy -13.970576 -8.919147) + (xy -13.972284 -8.913519) + (xy -13.975056 -8.908333) + (xy -13.978787 -8.903787) + (xy -13.983333 -8.900056) + (xy -13.988519 -8.897284) + (xy -13.994147 -8.895576) + (xy -14 -8.895) + (xy -14.005853 -8.895576) + (xy -14.011481 -8.897284) + (xy -14.016667 -8.900056) + (xy -14.021213 -8.903787) + (xy -14.024944 -8.908333) + (xy -14.027716 -8.913519) + (xy -14.029424 -8.919147) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.Fab") (tstamp b8e80dca-360f-4f6a-a1e2-b134939cd306)) + (fp_poly + (pts + (xy -9.875 -5.725) + (xy -9.867794 -5.798159) + (xy -9.846455 -5.868506) + (xy -9.811801 -5.933339) + (xy -9.765165 -5.990165) + (xy -9.708339 -6.036801) + (xy -9.643506 -6.071455) + (xy -9.573159 -6.092794) + (xy -9.5 -6.1) + (xy -9.426841 -6.092794) + (xy -9.356494 -6.071455) + (xy -9.291661 -6.036801) + (xy -9.234835 -5.990165) + (xy -9.188199 -5.933339) + (xy -9.153545 -5.868506) + (xy -9.132206 -5.798159) + (xy -9.125 -5.725) + (xy -9.132206 -5.651841) + (xy -9.153545 -5.581494) + (xy -9.188199 -5.516661) + (xy -9.234835 -5.459835) + (xy -9.291661 -5.413199) + (xy -9.356494 -5.378545) + (xy -9.426841 -5.357206) + (xy -9.5 -5.35) + (xy -9.573159 -5.357206) + (xy -9.643506 -5.378545) + (xy -9.708339 -5.413199) + (xy -9.765165 -5.459835) + (xy -9.811801 -5.516661) + (xy -9.846455 -5.581494) + (xy -9.867794 -5.651841) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.Fab") (tstamp 3bb5b762-d66c-423e-885b-d9832677da90)) + (fp_poly + (pts + (xy 11.275 -5.775) + (xy 11.279323 -5.818895) + (xy 11.292127 -5.861104) + (xy 11.312919 -5.900003) + (xy 11.340901 -5.934099) + (xy 11.374997 -5.962081) + (xy 11.413896 -5.982873) + (xy 11.456105 -5.995677) + (xy 11.5 -6) + (xy 11.543895 -5.995677) + (xy 11.586104 -5.982873) + (xy 11.625003 -5.962081) + (xy 11.659099 -5.934099) + (xy 11.687081 -5.900003) + (xy 11.707873 -5.861104) + (xy 11.720677 -5.818895) + (xy 11.725 -5.775) + (xy 11.720677 -5.731105) + (xy 11.707873 -5.688896) + (xy 11.687081 -5.649997) + (xy 11.659099 -5.615901) + (xy 11.625003 -5.587919) + (xy 11.586104 -5.567127) + (xy 11.543895 -5.554323) + (xy 11.5 -5.55) + (xy 11.456105 -5.554323) + (xy 11.413896 -5.567127) + (xy 11.374997 -5.587919) + (xy 11.340901 -5.615901) + (xy 11.312919 -5.649997) + (xy 11.292127 -5.688896) + (xy 11.279323 -5.731105) + ) + + (stroke (width 0) (type solid)) (fill solid) (layer "B.Fab") (tstamp 6332df3a-a230-41d0-bf20-1770123f7be0)) + (pad "" np_thru_hole circle (at -9.5 -5.725) (size 1.7 1.7) (drill 1.7) (layers "*.Mask") (tstamp 22bcc066-7080-4740-2f18-24fa4270c74a)) + (pad "" np_thru_hole circle (at 11.5 -5.775) (size 1.2 1.2) (drill 1.2) (layers "*.Mask") (tstamp 83d2598e-33a7-5406-c291-781715e2972e)) + (pad "1" smd rect (at -6.87 -8.775 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 15 "Net-(Card1-CD_DAT3)") (pinfunction "CD_DAT3") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp df6cfe2b-e385-ff37-2d73-f3737a7990e8)) + (pad "2" smd rect (at -4.37 -8.775 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 16 "Net-(Card1-CMD)") (pinfunction "CMD") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 316654ec-70ac-af7b-5d99-12dfcb2bc78a)) + (pad "3" smd rect (at -1.87 -8.775 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "gnd") (pinfunction "VSS1") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 52e43430-3a35-3fc5-2b4d-73f4ad7b38ca)) + (pad "4" smd rect (at 0.63 -8.775 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 12 "Net-(Card1-VDD)") (pinfunction "VDD") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 4e919ebb-991e-da01-0dab-23f9685fd571)) + (pad "5" smd rect (at 3.13 -8.775 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 17 "Net-(Card1-CLK)") (pinfunction "CLK") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 0fc2b7e9-002b-0f7a-9f09-4d69181713db)) + (pad "6" smd rect (at 5.63 -8.775 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "gnd") (pinfunction "VSS2") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 62ac2dbe-0b06-59b6-e9f7-cece320d04c3)) + (pad "7" smd rect (at 8.06 -8.775 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 18 "Net-(Card1-DAT0)") (pinfunction "DAT0") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 1a9caed1-4d32-75a4-7ea3-32917949ee5a)) + (pad "8" smd rect (at 9.76 -8.775 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 19 "Net-(Card1-DAT1)") (pinfunction "DAT1") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 36890be0-4605-312c-a54d-6421fc0a5e24)) + (pad "9" smd rect (at -9.37 -8.775 270) (size 1 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 20 "Net-(Card1-DAT2)") (pinfunction "DAT2") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp ae651632-8b44-794f-1eb6-d2e705480565)) + (pad "10" smd rect (at 11.06 -8.775 270) (size 0.7 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 21 "Net-(Card1-CD)") (pinfunction "CD") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp f6982b31-d597-c0fb-790a-f0174ea312d6)) + (pad "11" smd rect (at 12.26 -8.775 270) (size 0.7 2) (layers "B.Cu" "B.Paste" "B.Mask") + (net 22 "Net-(Card1-WP)") (pinfunction "WP") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp f738a2f7-8abf-5edb-f6a7-f44e0f28d1a6)) + (pad "12" smd rect (at 13.65 -6.825 270) (size 1.5 2.8) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "gnd") (pinfunction "SHELL0") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp cf64768b-5bf8-a47b-5b06-e867778bf590)) + (pad "13" smd rect (at 13.65 7.675 270) (size 1.5 2.8) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "gnd") (pinfunction "SHELL1") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 7c90b6db-f2c5-822b-9cce-cef8aa59d3c8)) + (pad "14" smd rect (at -13.65 7.775 270) (size 1.5 2.8) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "gnd") (pinfunction "SHELL2") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 37f6933e-d3c9-4bf3-cc66-5ea40409174f)) + (pad "15" smd rect (at -11.45 -6.725 270) (size 1.5 2.8) (layers "B.Cu" "B.Paste" "B.Mask") + (net 1 "gnd") (pinfunction "SHELL3") (pintype "unspecified") (solder_mask_margin 0.051) (tstamp 4b49dbe8-e581-b86e-2f9f-70958a1e3b3a)) + ) + + (gr_line (start 149.5 95) (end 149.5 93) + (stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 0fc51061-5b15-731c-e5d8-6a6f6cfda492)) + (gr_line (start 151.1625 112.128) (end 162.4125 112.128) + (stroke (width 0.254) (type solid)) (layer "Edge.Cuts") (tstamp 2beea934-d10f-0996-98bf-2145308123f1)) + (gr_line (start 151.1555 103.88) (end 151.1555 112.13) + (stroke (width 0.254) (type solid)) (layer "Edge.Cuts") (tstamp 3614226d-d0fd-ab7f-de9a-e21a83bf67ee)) + (gr_line (start 149.5 121) (end 154.5 121) + (stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 3b30570b-ad5a-3fbd-2682-f498530ce2c4)) + (gr_line (start 149.5 123) (end 149.5 121) + (stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 762ecdab-5d7d-80dc-95e5-b382ddfa6b63)) + (gr_line (start 151.1585 103.878) (end 162.4085 103.878) + (stroke (width 0.254) (type solid)) (layer "Edge.Cuts") (tstamp 7984a1a6-38fc-43ac-b511-fb697cffb58d)) + (gr_line (start 149.5 93) (end 124.5 93) + (stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 947b6989-8279-1137-1c36-36b0eff034ac)) + (gr_line (start 124.5 93) (end 124.5 123) + (stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp a5a24eaa-9c92-622d-34fc-caa88e50a07b)) + (gr_line (start 154.5 95) (end 149.5 95) + (stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp ba060757-6b59-cc76-d207-ccf831394d55)) + (gr_line (start 154.5 121) (end 154.5 95) + (stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp c06fda55-2325-44b1-9625-a4ffeab456de)) + (gr_line (start 124.5 123) (end 149.5 123) + (stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp d19d58b3-551e-b06a-6dd1-8015625e7a2e)) + + (via (at 124.968 104.902) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 029da420-d239-4b6d-9471-8c31e594c4f1)) + (via (at 133.604 99.06) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 1880b2ed-d25e-47e0-baa7-f23d4e759a3b)) + (via (at 134.62 122.174) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 2d887b4f-bc77-41e7-965c-8ae85de79993)) + (via (at 135.636 122.174) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 37fcfe4a-1520-4c45-94c2-0985d32a8f95)) + (via (at 140.97 108.458) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 3b8695e5-b382-4d36-91c0-d407a6fbe32f)) + (via (at 145.862665 106.835359) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 1) (tstamp 487dc53c-9fd3-6b94-f295-fb0732d20b49)) + (via (at 145.034 97.536) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 4e4da4d2-fbbb-48e1-875b-d76ae5f9c657)) + (via (at 136.906 122.174) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 6c55d39b-66cd-492e-a86a-ba3f23b16981)) + (via (at 133.604 122.174) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 7269bdc4-649f-42bf-b411-6430d03ec01f)) + (via (at 127.254 104.648) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 80e41089-e4e0-4b09-99eb-d0199755db58)) + (via (at 124.968 107.95) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 89a18cbd-2772-4ab8-ba6f-e4859508a525)) + (via (at 140.208 110.744) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 8efb7c42-2ff3-4143-8591-9100046beab6)) + (via (at 124.968 106.934) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp a1a2d2e5-3987-4345-b5cf-909638b94e37)) + (via (at 124.968 105.918) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp c9814892-9af7-46a9-8cc0-774e103fdcbc)) + (via (at 135.382 98.298) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp d113c486-4d86-4af5-9013-91836f3d3a16)) + (via (at 135.128 111.252) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp d58f700d-38b8-408d-95b1-1b7c351e021e)) + (via (at 132.08 97.282) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp de74d22e-408c-4442-ada9-638ef42875c0)) + (via (at 128.016 97.79) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp dfa0075e-5264-4e45-a42f-a4bbb5b116b6)) + (via (at 126.238 107.442) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp f32fd77f-c49e-4f63-b990-f6b60285f922)) + (segment (start 139.405865 105.104046) (end 148.376429 106.44146) (width 0.09) (layer "F.Cu") (net 2) (tstamp d0ebd143-5c81-105c-1dae-4a5ad8df1a9b)) + (via (at 148.376429 106.44146) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 2) (tstamp 5ac27065-083b-b91f-254a-752ee3c36e96)) + (segment (start 149.4375 106.25) (end 148.376429 106.44146) (width 0.09) (layer "B.Cu") (net 2) (tstamp f0a822b4-edb1-f0cf-129e-b4efd2e32321)) + (segment (start 131.519888 104.106067) (end 132.63172 105.486058) (width 0.09) (layer "F.Cu") (net 3) (tstamp 00c1982d-50c7-d854-9d33-bcc9f571e86a)) + (segment (start 125.847533 110.727391) (end 125.648782 114.846323) (width 0.09) (layer "F.Cu") (net 3) (tstamp 0e9f9731-d4af-09bc-3362-00ef7d98b4b0)) + (segment (start 125.90407 116.994211) (end 126.008997 117.077888) (width 0.09) (layer "F.Cu") (net 3) (tstamp 1043b36e-b693-dce4-5c5e-4222a7045bde)) + (segment (start 129.640552 96.501199) (end 130.631807 98.225511) (width 0.09) (layer "F.Cu") (net 3) (tstamp 1652ace9-6a08-f8df-a5b7-42a20f212233)) + (segment (start 129.349966 116.68158) (end 130.277171 115.66723) (width 0.09) (layer "F.Cu") (net 3) (tstamp 1acae11e-07e1-f158-304a-1f4f3cbcf4c4)) + (segment (start 130.773422 98.639843) (end 131.425219 103.36936) (width 0.09) (layer "F.Cu") (net 3) (tstamp 1ea557be-919a-f21e-fd07-3d053c150690)) + (segment (start 127.487341 95.340672) (end 129.640552 96.501199) (width 0.09) (layer "F.Cu") (net 3) (tstamp 25ff8ad3-8099-4882-bae3-468bb67a6226)) + (segment (start 125.524674 98.774072) (end 125.518954 96.519235) (width 0.09) (layer "F.Cu") (net 3) (tstamp 28ace850-75ab-e604-889c-5b492d195bd0)) + (segment (start 126.219506 117.179264) (end 126.350348 117.209128) (width 0.09) (layer "F.Cu") (net 3) (tstamp 45e92f16-c716-11f6-1dab-888a83a77aea)) + (segment (start 125.847533 110.727391) (end 125.525157 98.806775) (width 0.09) (layer "F.Cu") (net 3) (tstamp 5713de34-8fd2-fcdb-a9b3-a8c6e7298fd5)) + (segment (start 125.648171 114.871626) (end 125.648171 116.462833) (width 0.09) (layer "F.Cu") (net 3) (tstamp 5e35f17a-f463-fb11-2bb9-80ac517ca922)) + (segment (start 129.22842 116.780792) (end 129.333347 116.697115) (width 0.09) (layer "F.Cu") (net 3) (tstamp 84fe95ca-88a3-47ea-8d8e-8d61d858f617)) + (segment (start 132.967211 105.638102) (end 133.785865 105.604046) (width 0.09) (layer "F.Cu") (net 3) (tstamp 8c6918e0-a164-53a8-14bc-6446af82a414)) + (segment (start 126.545715 117.216382) (end 129.028864 116.840659) (width 0.09) (layer "F.Cu") (net 3) (tstamp ad0a1105-073d-e326-10ac-8bd63701a039)) + (segment (start 125.700163 116.690622) (end 125.758393 116.811539) (width 0.09) (layer "F.Cu") (net 3) (tstamp ad7840f0-7e37-58cf-9ada-47759d71cce8)) + (segment (start 129.039437 116.838655) (end 129.170279 116.808791) (width 0.09) (layer "F.Cu") (net 3) (tstamp c8bdffab-7ed1-1a9f-e3d0-61ba8e7ef349)) + (segment (start 131.42684 103.383268) (end 131.488456 104.028872) (width 0.09) (layer "F.Cu") (net 3) (tstamp fd34f1cb-9eae-0888-c049-e730c711630c)) + (arc (start 125.648782 114.846323) (mid 125.648324 114.858971) (end 125.648171 114.871626) (width 0.09) (layer "F.Cu") (net 3) (tstamp 114177c5-ec55-e8f8-9717-832de2197325)) + (arc (start 131.488456 104.028872) (mid 131.498506 104.069777) (end 131.519888 104.106067) (width 0.09) (layer "F.Cu") (net 3) (tstamp 5b66b926-e676-966f-fe8e-c820abf76c17)) + (arc (start 129.170279 116.808791) (mid 129.200927 116.798067) (end 129.22842 116.780792) (width 0.09) (layer "F.Cu") (net 3) (tstamp 66e6db57-c27e-b0d5-a421-12049ac1abcc)) + (arc (start 131.425219 103.36936) (mid 131.426102 103.376306) (end 131.42684 103.383268) (width 0.09) (layer "F.Cu") (net 3) (tstamp 70bf1f5f-bc1c-f753-21d0-a97d1d428606)) + (arc (start 129.333347 116.697115) (mid 129.341962 116.689674) (end 129.349966 116.68158) (width 0.09) (layer "F.Cu") (net 3) (tstamp 8dd3f196-f992-191b-24e4-ffb8fb887fc5)) + (arc (start 125.518954 96.519235) (mid 126.168154 95.370462) (end 127.487341 95.340672) (width 0.09) (layer "F.Cu") (net 3) (tstamp 9122c62d-021b-271d-3fb5-4a1ad6feb80d)) + (arc (start 125.758393 116.811539) (mid 125.82094 116.911082) (end 125.90407 116.994211) (width 0.09) (layer "F.Cu") (net 3) (tstamp 9c0936fc-d74d-0874-4c03-7ce1d7ea85dd)) + (arc (start 129.028864 116.840659) (mid 129.034169 116.839755) (end 129.039437 116.838655) (width 0.09) (layer "F.Cu") (net 3) (tstamp 9c54b0f1-0fed-c6d7-d83b-3931e42a9105)) + (arc (start 126.008997 117.077888) (mid 126.10854 117.140435) (end 126.219506 117.179264) (width 0.09) (layer "F.Cu") (net 3) (tstamp a6c82069-d479-51b3-d2e7-0dfdfc98538c)) + (arc (start 125.648171 116.462833) (mid 125.661334 116.579657) (end 125.700163 116.690622) (width 0.09) (layer "F.Cu") (net 3) (tstamp b2c10077-e9b5-3458-611e-a2906030bf25)) + (arc (start 132.63172 105.486058) (mid 132.781381 105.601984) (end 132.967211 105.638102) (width 0.09) (layer "F.Cu") (net 3) (tstamp cccb87bb-ee63-d0d6-b612-0f27c7a90d5b)) + (arc (start 125.525157 98.806775) (mid 125.524815 98.790425) (end 125.524674 98.774072) (width 0.09) (layer "F.Cu") (net 3) (tstamp d65b76d2-b3db-42b5-d7e2-9fa10ddae6e9)) + (arc (start 126.350348 117.209128) (mid 126.447691 117.221929) (end 126.545715 117.216382) (width 0.09) (layer "F.Cu") (net 3) (tstamp e48bf451-0043-c069-c749-446b14ad7e46)) + (arc (start 130.631807 98.225511) (mid 130.722604 98.425845) (end 130.773422 98.639843) (width 0.09) (layer "F.Cu") (net 3) (tstamp f852f11c-f29e-ecc3-7370-f163eac3a70a)) + (segment (start 134.318234 96.532087) (end 134.686011 96.532087) (width 0.381) (layer "F.Cu") (net 4) (tstamp 073e2233-6270-98fc-608a-d3485e3de39c)) + (segment (start 134.888907 96.614684) (end 135.409345 97.122587) (width 0.381) (layer "F.Cu") (net 4) (tstamp 077d1965-e938-a647-c227-35ea524c0232)) + (segment (start 136.498843 99.85514) (end 136.498843 98.48014) (width 0.381) (layer "F.Cu") (net 4) (tstamp 0bdb3d86-c18c-ef45-636f-60e9638abc71)) + (segment (start 140.663412 101.140182) (end 136.529089 97.138773) (width 0.381) (layer "F.Cu") (net 4) (tstamp 0e7bb055-97b3-1846-7d53-c22b7027d196)) + (segment (start 131.832794 100.356777) (end 134.069913 96.671832) (width 0.381) (layer "F.Cu") (net 4) (tstamp 0fb3ecff-8646-84a8-e637-61717aa1cf6e)) + (segment (start 131.841689 103.715096) (end 131.790731 101.915756) (width 0.381) (layer "F.Cu") (net 4) (tstamp 1e09cbd3-f815-4f0a-f609-29c7e362b0f5)) + (segment (start 136.498917 98.473575) (end 136.529089 97.138773) (width 0.381) (layer "F.Cu") (net 4) (tstamp 340d6eb2-32e9-564c-58b8-574e2b46393a)) + (segment (start 148.926145 106.514141) (end 149.029701 105.730902) (width 0.381) (layer "F.Cu") (net 4) (tstamp 36691b2e-d405-688e-56e2-6a127ba0d2e3)) + (segment (start 129.122524 106.729721) (end 127.802972 108.885762) (width 0.381) (layer "F.Cu") (net 4) (tstamp 388ef727-e91a-e19f-0d51-e1598e0fb7db)) + (segment (start 140.695641 103.134378) (end 140.830195 101.586651) (width 0.381) (layer "F.Cu") (net 4) (tstamp 47e4f724-7221-69fd-4593-8a18b623fe0e)) + (segment (start 127.802972 108.885762) (end 126.767255 110.727391) (width 0.381) (layer "F.Cu") (net 4) (tstamp 5140643b-ba97-79f0-cd74-74cd0e757b0f)) + (segment (start 132.67469 103.294424) (end 131.841689 103.715096) (width 0.381) (layer "F.Cu") (net 4) (tstamp 54fde012-4d17-9edc-10e3-19609b5149b8)) + (segment (start 133.785865 103.104046) (end 132.844985 103.240641) (width 0.381) (layer "F.Cu") (net 4) (tstamp 6012ec9d-a834-aa7e-4991-a9568dbebc86)) + (segment (start 127.267333 114.578656) (end 126.467171 115.66723) (width 0.381) (layer "F.Cu") (net 4) (tstamp 63c1286d-1b22-514c-2160-199b98174a61)) + (segment (start 126.467171 115.66723) (end 126.767255 110.727391) (width 0.381) (layer "F.Cu") (net 4) (tstamp 6922744a-f5d7-7883-e79e-29780bf5ffe2)) + (segment (start 138.644942 107.591651) (end 142.103449 110.835572) (width 0.381) (layer "F.Cu") (net 4) (tstamp 6b71a01e-6c85-5bdc-9636-d137ff76455b)) + (segment (start 138.644942 107.591651) (end 138.595865 106.414046) (width 0.381) (layer "F.Cu") (net 4) (tstamp 78bf252e-d4c9-3806-7932-d426f6548f49)) + (segment (start 133.034097 114.656872) (end 130.309845 114.348512) (width 0.381) (layer "F.Cu") (net 4) (tstamp 7aa0fd88-3066-7c29-a3a4-32e5f3180abf)) + (segment (start 127.425205 114.439911) (end 127.320278 114.523588) (width 0.381) (layer "F.Cu") (net 4) (tstamp 7f2ea41f-6312-d236-0ea0-56c158fe23a8)) + (segment (start 141.245983 103.646956) (end 140.695641 103.134378) (width 0.381) (layer "F.Cu") (net 4) (tstamp 850dc84d-3b72-a245-3f3b-89e792341f08)) + (segment (start 127.672529 114.353952) (end 127.541687 114.383816) (width 0.381) (layer "F.Cu") (net 4) (tstamp 85583fe4-feaa-e9fe-0c4d-a528f7d9639e)) + (segment (start 130.277171 114.346669) (end 127.737171 114.346669) (width 0.381) (layer "F.Cu") (net 4) (tstamp 87d02baf-9d32-d5ac-5ee3-af623e9438af)) + (segment (start 140.695641 103.134378) (end 139.405865 103.104046) (width 0.381) (layer "F.Cu") (net 4) (tstamp 8923041c-0a01-42da-6685-28cbab1c627d)) + (segment (start 142.708813 110.282689) (end 148.649327 106.924158) (width 0.381) (layer "F.Cu") (net 4) (tstamp 940b35a8-be54-b9e7-f9dc-d2c9fb7ef288)) + (segment (start 138.83333 113.146142) (end 134.460862 114.643055) (width 0.381) (layer "F.Cu") (net 4) (tstamp 96c91b12-6c30-112c-d9fe-0018d2971f50)) + (segment (start 134.36677 114.658715) (end 133.06677 114.658715) (width 0.381) (layer "F.Cu") (net 4) (tstamp 9dc6351e-df90-6c22-b348-9bb7c54550e6)) + (segment (start 126.85967 98.770685) (end 129.122524 106.729721) (width 0.381) (layer "F.Cu") (net 4) (tstamp a25ae51c-1da8-d6bf-e47b-d1c40ae3ef2c)) + (segment (start 136.529089 97.138773) (end 135.409345 97.122587) (width 0.381) (layer "F.Cu") (net 4) (tstamp b13dbf21-0d6c-6afe-6c92-aab6ec9858c6)) + (segment (start 131.790615 101.907532) (end 131.790615 100.507532) (width 0.381) (layer "F.Cu") (net 4) (tstamp b84a5c22-8270-9ff4-9019-82c32fcba6bf)) + (segment (start 142.103449 110.835572) (end 138.907583 113.108051) (width 0.381) (layer "F.Cu") (net 4) (tstamp bcb599e0-4b32-24d3-3ef0-eee851147a79)) + (segment (start 148.585451 105.113844) (end 141.388721 103.719575) (width 0.381) (layer "F.Cu") (net 4) (tstamp d130b0de-861f-7c97-51b8-1369071a505c)) + (segment (start 136.595865 100.795046) (end 136.500429 99.885453) (width 0.381) (layer "F.Cu") (net 4) (tstamp d1b0d9f5-db6c-6d98-c888-86b2e5f5f4e5)) + (segment (start 142.103449 110.835572) (end 142.653791 110.322993) (width 0.381) (layer "F.Cu") (net 4) (tstamp de30d577-6ee2-0d6d-ba6c-dce7cf478802)) + (segment (start 142.060619 113.037221) (end 142.103449 110.835572) (width 0.381) (layer "F.Cu") (net 4) (tstamp ef11cebc-317c-93ac-9e6f-56c2b74a955d)) + (arc (start 148.649327 106.924158) (mid 148.835996 106.751732) (end 148.926145 106.514141) (width 0.381) (layer "F.Cu") (net 4) (tstamp 0aea8427-db35-7c63-5ae5-fcea517b8d96)) + (arc (start 134.460862 114.643055) (mid 134.414463 114.654773) (end 134.36677 114.658715) (width 0.381) (layer "F.Cu") (net 4) (tstamp 0d2a75f6-2a0d-1ceb-2e12-3d0fc5b64d82)) + (arc (start 131.790615 100.507532) (mid 131.801358 100.42926) (end 131.832794 100.356777) (width 0.381) (layer "F.Cu") (net 4) (tstamp 22057aac-2260-a2ba-f53e-52f92eda237b)) + (arc (start 142.653791 110.322993) (mid 142.680115 110.301221) (end 142.708813 110.282689) (width 0.381) (layer "F.Cu") (net 4) (tstamp 2317336a-2d79-9a18-187b-94d84622106f)) + (arc (start 132.844985 103.240641) (mid 132.757658 103.260632) (end 132.67469 103.294424) (width 0.381) (layer "F.Cu") (net 4) (tstamp 43d953bd-bf9d-5ceb-b251-68520b8bc700)) + (arc (start 136.498843 98.48014) (mid 136.498861 98.476857) (end 136.498917 98.473575) (width 0.381) (layer "F.Cu") (net 4) (tstamp 5120d2af-7f72-da9f-7518-2827e2b3d728)) + (arc (start 127.541687 114.383816) (mid 127.480286 114.405301) (end 127.425205 114.439911) (width 0.381) (layer "F.Cu") (net 4) (tstamp 5677f79c-34c9-9f02-f66a-363f0c058a88)) + (arc (start 130.309845 114.348512) (mid 130.293534 114.34713) (end 130.277171 114.346669) (width 0.381) (layer "F.Cu") (net 4) (tstamp 593093fc-7952-08bd-2d0d-bc98173da878)) + (arc (start 134.686011 96.532087) (mid 134.795543 96.553528) (end 134.888907 96.614684) (width 0.381) (layer "F.Cu") (net 4) (tstamp 5e79ed8b-47a6-a29e-43cd-3041bfba0841)) + (arc (start 138.907583 113.108051) (mid 138.871832 113.129776) (end 138.83333 113.146142) (width 0.381) (layer "F.Cu") (net 4) (tstamp 6e16587b-c65a-2e3c-70c0-7b3a97acf7f0)) + (arc (start 127.320278 114.523588) (mid 127.291988 114.549374) (end 127.267333 114.578656) (width 0.381) (layer "F.Cu") (net 4) (tstamp 76548f08-0c6a-3399-caa0-f28698739c1c)) + (arc (start 141.388721 103.719575) (mid 141.312249 103.693296) (end 141.245983 103.646956) (width 0.381) (layer "F.Cu") (net 4) (tstamp 787c6a95-8156-8c98-4686-383380339cd3)) + (arc (start 134.069913 96.671832) (mid 134.175763 96.569423) (end 134.318234 96.532087) (width 0.381) (layer "F.Cu") (net 4) (tstamp 7c849139-802d-0b3b-32f3-a6a8261d7350)) + (arc (start 131.790731 101.915756) (mid 131.790644 101.911644) (end 131.790615 101.907532) (width 0.381) (layer "F.Cu") (net 4) (tstamp a4fe0910-045a-330b-bf1e-992d7827d7a9)) + (arc (start 133.06677 114.658715) (mid 133.050408 114.658254) (end 133.034097 114.656872) (width 0.381) (layer "F.Cu") (net 4) (tstamp b354183a-5a53-ebd6-0781-e7d0a4290bc9)) + (arc (start 140.830195 101.586651) (mid 140.797219 101.344584) (end 140.663412 101.140182) (width 0.381) (layer "F.Cu") (net 4) (tstamp b8960041-e337-0371-136c-61f8daa82766)) + (arc (start 136.500429 99.885453) (mid 136.499239 99.870317) (end 136.498843 99.85514) (width 0.381) (layer "F.Cu") (net 4) (tstamp ce2329ea-2b9a-51e5-69a7-0752ef996dd4)) + (arc (start 149.029701 105.730902) (mid 148.929992 105.33424) (end 148.585451 105.113844) (width 0.381) (layer "F.Cu") (net 4) (tstamp d58e8c51-adf1-bbae-33fb-94bdc039838c)) + (arc (start 127.737171 114.346669) (mid 127.704646 114.348496) (end 127.672529 114.353952) (width 0.381) (layer "F.Cu") (net 4) (tstamp f8bc1f49-4f35-3564-95fc-cea5c3573262)) + (segment (start 148.479985 105.658221) (end 140.566211 104.829008) (width 0.09) (layer "F.Cu") (net 5) (tstamp a743f74e-1aee-c1e9-957e-1230fb19ce76)) + (segment (start 140.530445 104.823653) (end 139.405865 104.604046) (width 0.09) (layer "F.Cu") (net 5) (tstamp d42f5fb4-f7c0-53dc-63c5-b30b4fb3d278)) + (via (at 148.479985 105.658221) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 5) (tstamp c241e507-8b5e-0396-d57f-8acf35b12501)) + (arc (start 140.566211 104.829008) (mid 140.548269 104.826726) (end 140.530445 104.823653) (width 0.09) (layer "F.Cu") (net 5) (tstamp 6eaa33d8-74f4-0d77-28cb-eba3b306e206)) + (segment (start 148.479985 105.658221) (end 149.4375 105.75) (width 0.09) (layer "B.Cu") (net 5) (tstamp 20da5ed7-1352-4761-c504-5bbbe2d5de35)) + (segment (start 148.499059 109.244183) (end 146.656595 110.839534) (width 0.381) (layer "F.Cu") (net 6) (tstamp 39034a6a-085d-9fc2-fb0e-8f29bef14f96)) + (segment (start 146.659619 113.037221) (end 146.656595 110.839534) (width 0.381) (layer "F.Cu") (net 6) (tstamp fc67694d-9e07-161d-0ca4-3907eb696487)) + (via (at 148.499059 109.244183) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 6) (tstamp b219e0a6-7795-9240-b4ea-8ab434f9c1ff)) + (segment (start 149.4375 109.25) (end 149.970734 109.188593) (width 0.381) (layer "B.Cu") (net 6) (tstamp 0a48d87b-0c97-7f43-e34c-1f20b9a0577f)) + (segment (start 150.228 108.9) (end 150.228 107.6) (width 0.381) (layer "B.Cu") (net 6) (tstamp 578946bd-e242-629e-a9a9-17dbcb4c5760)) + (segment (start 149.4375 109.25) (end 148.499059 109.244183) (width 0.381) (layer "B.Cu") (net 6) (tstamp a1ae6e77-e7c3-826c-ba29-dfdc61846eca)) + (segment (start 149.970734 107.311407) (end 149.4375 107.25) (width 0.381) (layer "B.Cu") (net 6) (tstamp fc96ae68-bb84-08de-f161-bc97f3426f69)) + (arc (start 149.970734 109.188593) (mid 150.154347 109.093308) (end 150.228 108.9) (width 0.381) (layer "B.Cu") (net 6) (tstamp bb611c5f-b6e2-8c6e-725f-70fedd7204dd)) + (arc (start 150.228 107.6) (mid 150.154347 107.406692) (end 149.970734 107.311407) (width 0.381) (layer "B.Cu") (net 6) (tstamp f00ba27a-944c-5c3b-e292-03184d16047c)) + (segment (start 131.299316 104.046923) (end 131.2377 103.40132) (width 0.09) (layer "F.Cu") (net 7) (tstamp 1830c54c-a561-4c95-c0e0-048f9f91afdb)) + (segment (start 126.392627 117.023891) (end 126.261785 116.994027) (width 0.09) (layer "F.Cu") (net 7) (tstamp 1aa786d3-4454-7c21-b780-b539354a80bc)) + (segment (start 134.230865 105.889046) (end 133.340865 105.889046) (width 0.09) (layer "F.Cu") (net 7) (tstamp 223e87cf-d02f-f895-391f-c5c4ea65c47e)) + (segment (start 132.483766 105.605262) (end 131.371934 104.225271) (width 0.09) (layer "F.Cu") (net 7) (tstamp 28451590-2d32-c895-0575-458b419d382e)) + (segment (start 134.404618 105.833404) (end 134.282111 105.879688) (width 0.09) (layer "F.Cu") (net 7) (tstamp 476ba9c5-f65e-4121-1ee5-08de7a976275)) + (segment (start 125.839547 114.841302) (end 126.243492 110.397067) (width 0.09) (layer "F.Cu") (net 7) (tstamp 5803c456-3291-20da-5ac1-618b14449804)) + (segment (start 131.230297 103.36743) (end 129.639143 98.796163) (width 0.09) (layer "F.Cu") (net 7) (tstamp 60d0e8f2-0857-9f65-6d65-bd5cfc5206b2)) + (segment (start 126.12746 116.92934) (end 126.022533 116.845663) (width 0.09) (layer "F.Cu") (net 7) (tstamp 63f425e4-7858-5b15-9b4c-2d673cb91b8b)) + (segment (start 125.929577 116.729101) (end 125.871347 116.608184) (width 0.09) (layer "F.Cu") (net 7) (tstamp 698bc007-457a-e0f0-4f9e-87bcaebd3587)) + (segment (start 126.26999 110.293606) (end 126.88325 108.885762) (width 0.09) (layer "F.Cu") (net 7) (tstamp 75c90d64-4a12-10cc-440d-eac4c49ee096)) + (segment (start 129.007171 115.66723) (end 128.079966 116.68158) (width 0.09) (layer "F.Cu") (net 7) (tstamp 7d86b697-aec4-e0b2-d34d-2d0f2e1a36f1)) + (segment (start 127.900279 116.808791) (end 127.769437 116.838655) (width 0.09) (layer "F.Cu") (net 7) (tstamp 7f5b8c17-877d-254c-f422-b38e793c17bd)) + (segment (start 127.758864 116.840659) (end 126.51729 117.02852) (width 0.09) (layer "F.Cu") (net 7) (tstamp 7fa6c916-bd97-06ef-18f9-8b109e2745e0)) + (segment (start 136.095865 106.414046) (end 135.86802 105.909381) (width 0.09) (layer "F.Cu") (net 7) (tstamp 80500ae0-5ce6-a012-5da5-e9db3bfad275)) + (segment (start 126.88325 108.885762) (end 125.722334 98.902948) (width 0.09) (layer "F.Cu") (net 7) (tstamp 9088ea96-c8c9-fd4c-7536-6b32fcefe62d)) + (segment (start 128.063347 116.697115) (end 127.95842 116.780792) (width 0.09) (layer "F.Cu") (net 7) (tstamp 96f28173-e316-9d3d-2040-eb70ff3c6874)) + (segment (start 125.714673 98.77359) (end 125.708953 96.518753) (width 0.09) (layer "F.Cu") (net 7) (tstamp ad3719d4-d4e9-c838-c64c-490aa5e56c55)) + (segment (start 133.320305 105.887581) (end 132.865278 105.822404) (width 0.09) (layer "F.Cu") (net 7) (tstamp baef0ae2-37db-ec29-d640-842049745b94)) + (segment (start 125.838171 116.462833) (end 125.838171 114.871626) (width 0.09) (layer "F.Cu") (net 7) (tstamp e4e06ec5-4984-13b0-8a05-c8d9273ca523)) + (segment (start 127.823433 95.906646) (end 129.639143 98.796163) (width 0.09) (layer "F.Cu") (net 7) (tstamp f7f16eca-c9e9-ad66-68c2-35499b1cc84e)) + (segment (start 135.735865 105.824046) (end 134.455865 105.824046) (width 0.09) (layer "F.Cu") (net 7) (tstamp fd0d445f-6c42-6966-e7de-be248be3c7ff)) + (arc (start 125.871347 116.608184) (mid 125.846571 116.537378) (end 125.838171 116.462833) (width 0.09) (layer "F.Cu") (net 7) (tstamp 03c4a1f2-82c5-1751-3243-bfc216f5b32b)) + (arc (start 131.2377 103.40132) (mid 131.235015 103.384152) (end 131.230297 103.36743) (width 0.09) (layer "F.Cu") (net 7) (tstamp 03d32990-56f9-b9f2-0a38-293bbc9f3acc)) + (arc (start 126.261785 116.994027) (mid 126.190978 116.969251) (end 126.12746 116.92934) (width 0.09) (layer "F.Cu") (net 7) (tstamp 0b55945e-a253-8c7f-ca6f-55131f973f4c)) + (arc (start 128.079966 116.68158) (mid 128.071962 116.689674) (end 128.063347 116.697115) (width 0.09) (layer "F.Cu") (net 7) (tstamp 22c3acb2-fb73-2f1d-446f-83115b2cf661)) + (arc (start 135.86802 105.909381) (mid 135.814521 105.847234) (end 135.735865 105.824046) (width 0.09) (layer "F.Cu") (net 7) (tstamp 24b5bf6e-4294-d62c-b9f8-992d277e40f5)) + (arc (start 134.455865 105.824046) (mid 134.429817 105.826405) (end 134.404618 105.833404) (width 0.09) (layer "F.Cu") (net 7) (tstamp 35871d6a-26bf-90d9-05df-15215c25783e)) + (arc (start 133.340865 105.889046) (mid 133.330559 105.888679) (end 133.320305 105.887581) (width 0.09) (layer "F.Cu") (net 7) (tstamp 376430fe-39e3-0eb7-2fab-3dd784a1c400)) + (arc (start 127.95842 116.780792) (mid 127.930927 116.798067) (end 127.900279 116.808791) (width 0.09) (layer "F.Cu") (net 7) (tstamp 5aeb5cac-4730-8411-bbc0-1c61040b85bf)) + (arc (start 125.722334 98.902948) (mid 125.716672 98.838377) (end 125.714673 98.77359) (width 0.09) (layer "F.Cu") (net 7) (tstamp 6dd1b6bc-deb9-d02f-ad64-32c6a04726aa)) + (arc (start 126.243492 110.397067) (mid 126.252591 110.344274) (end 126.26999 110.293606) (width 0.09) (layer "F.Cu") (net 7) (tstamp 70a3bca8-4bc6-fdc6-06e0-a7343d536c56)) + (arc (start 126.51729 117.02852) (mid 126.454741 117.03206) (end 126.392627 117.023891) (width 0.09) (layer "F.Cu") (net 7) (tstamp 827f0d61-33f2-8a01-2b25-a326b26f0df3)) + (arc (start 134.282111 105.879688) (mid 134.256912 105.886687) (end 134.230865 105.889046) (width 0.09) (layer "F.Cu") (net 7) (tstamp aa8d80d4-1ebc-cc2b-c45e-72b2c58a8ed4)) + (arc (start 127.769437 116.838655) (mid 127.764169 116.839755) (end 127.758864 116.840659) (width 0.09) (layer "F.Cu") (net 7) (tstamp b2ce8471-fa4a-834d-5d01-4539286e4c4b)) + (arc (start 131.371934 104.225271) (mid 131.322534 104.141427) (end 131.299316 104.046923) (width 0.09) (layer "F.Cu") (net 7) (tstamp c00b88ba-06ff-38a2-cf23-9bcb4ceaba58)) + (arc (start 126.022533 116.845663) (mid 125.969488 116.792619) (end 125.929577 116.729101) (width 0.09) (layer "F.Cu") (net 7) (tstamp c3d59d52-e2f5-5ca8-ac9b-39aebb609762)) + (arc (start 125.838171 114.871626) (mid 125.838515 114.856449) (end 125.839547 114.841302) (width 0.09) (layer "F.Cu") (net 7) (tstamp cc7aadee-04c8-d24c-f78f-3961f9f0716e)) + (arc (start 132.865278 105.822404) (mid 132.653914 105.750041) (end 132.483766 105.605262) (width 0.09) (layer "F.Cu") (net 7) (tstamp daf16310-cccd-da46-4366-3315eee0d513)) + (arc (start 125.708953 96.518753) (mid 126.535563 95.416005) (end 127.823433 95.906646) (width 0.09) (layer "F.Cu") (net 7) (tstamp dcc1f4c5-300c-9cc6-fea8-fcdd36c0865a)) + (segment (start 147.864967 112.698484) (end 148.622184 114.216203) (width 0.09) (layer "F.Cu") (net 8) (tstamp 44ed3110-347c-6d06-595f-fa62df2d5ed9)) + (via (at 147.864967 112.698484) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 8) (tstamp ee2f8a4a-f072-6630-1e39-c94846b07a8c)) + (segment (start 147.864967 112.698484) (end 149.8875 112.7) (width 0.09) (layer "B.Cu") (net 8) (tstamp ac7c1b5e-588d-f2f9-f5c9-3712420edd5a)) + (segment (start 134.774512 99.695657) (end 134.502123 97.122587) (width 0.09) (layer "F.Cu") (net 9) (tstamp c7e1c80a-4e1a-06a3-d638-b0fc4df302e2)) + (segment (start 134.595865 100.795046) (end 134.774512 99.695657) (width 0.09) (layer "F.Cu") (net 9) (tstamp f0fb85af-b73d-ca71-d43c-fe905d9ad923)) + (segment (start 137.089343 99.646251) (end 137.095865 100.795046) (width 0.09) (layer "F.Cu") (net 10) (tstamp e613bbc2-a645-ec7e-362d-42b147998a7d)) + (segment (start 137.482233 107.541601) (end 137.595865 106.414046) (width 0.09) (layer "F.Cu") (net 11) (tstamp cbe859b3-a9f7-28c0-faa4-3d156856a83a)) + (segment (start 132.381115 101.692393) (end 132.964004 102.607356) (width 0.09) (layer "F.Cu") (net 12) (tstamp bd0a6034-8a74-da81-7403-46c7f1a72205)) + (segment (start 133.785865 102.604046) (end 132.964004 102.607356) (width 0.09) (layer "F.Cu") (net 12) (tstamp fb57f58b-5a61-4908-e6c0-b4c7fa98e591)) + (via (at 132.964004 102.607356) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 12) (tstamp c39a3b3d-0d8f-6eb5-473c-c9e07a0158df)) + (segment (start 143.275 108.63) (end 132.964004 102.607356) (width 0.09) (layer "B.Cu") (net 12) (tstamp d6d58567-1f5d-ddfb-d008-02e7c4f4105e)) + (segment (start 135.973506 112.346485) (end 134.176631 114.068215) (width 0.09) (layer "F.Cu") (net 13) (tstamp 360ec79f-b84f-4440-a897-b69cf2f9c967)) + (segment (start 136.717985 110.858768) (end 137.095865 106.414046) (width 0.09) (layer "F.Cu") (net 13) (tstamp 6bf9deb3-dce8-e208-0d0d-67b94a66ca9a)) + (segment (start 137.573127 112.571302) (end 135.973506 112.346485) (width 0.09) (layer "F.Cu") (net 13) (tstamp 74f8b4c1-3a6b-b8d7-0956-01f1ef53b9c6)) + (segment (start 135.973506 112.346485) (end 136.702758 110.912203) (width 0.09) (layer "F.Cu") (net 13) (tstamp c040dcdf-30fb-1572-d762-bde99edd13e6)) + (arc (start 136.702758 110.912203) (mid 136.712955 110.886222) (end 136.717985 110.858768) (width 0.09) (layer "F.Cu") (net 13) (tstamp eb11731c-6c3f-f809-1ac1-2d8d3d368a19)) + (segment (start 135.797386 107.54534) (end 134.168661 108.309522) (width 0.09) (layer "F.Cu") (net 14) (tstamp 060d2adc-736b-923e-cb83-2ba7e83724ef)) + (segment (start 136.595865 106.414046) (end 136.36802 106.918711) (width 0.09) (layer "F.Cu") (net 14) (tstamp 0667bd23-392c-f892-9101-2856c3d9db90)) + (segment (start 133.544254 111.580767) (end 134.273506 110.146485) (width 0.09) (layer "F.Cu") (net 14) (tstamp 1bdd1d02-8bc6-3089-7d4d-5a234982ca15)) + (segment (start 133.256909 114.068215) (end 133.529403 111.630378) (width 0.09) (layer "F.Cu") (net 14) (tstamp 29c46e48-42b3-4897-109a-affa66475ba7)) + (segment (start 136.346671 106.952571) (end 135.936209 107.438876) (width 0.09) (layer "F.Cu") (net 14) (tstamp 5484a795-186c-4155-a2cb-132c1babe806)) + (segment (start 134.273506 110.146485) (end 134.168661 108.309522) (width 0.09) (layer "F.Cu") (net 14) (tstamp 6ccaec6d-a862-6c13-ec8f-84a798dbb50b)) + (arc (start 135.936209 107.438876) (mid 135.872556 107.499618) (end 135.797386 107.54534) (width 0.09) (layer "F.Cu") (net 14) (tstamp 833d96aa-329a-5282-c5b7-eecf6af7e5d6)) + (arc (start 133.529403 111.630378) (mid 133.534596 111.604904) (end 133.544254 111.580767) (width 0.09) (layer "F.Cu") (net 14) (tstamp c734ca81-8cd0-d8a7-8832-305d93ee75d2)) + (arc (start 136.36802 106.918711) (mid 136.35852 106.936382) (end 136.346671 106.952571) (width 0.09) (layer "F.Cu") (net 14) (tstamp d837c5fe-a0a0-a9e7-aeba-9a9b46b975d0)) + (segment (start 132.924651 103.789389) (end 133.785865 103.604046) (width 0.09) (layer "F.Cu") (net 15) (tstamp c4a2aacc-e78e-27fa-5a87-70dd6ff31fa2)) + (via (at 132.924651 103.789389) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 15) (tstamp 83ebe8f1-58e4-ad2f-3f65-2019038b9578)) + (segment (start 132.437705 102.893379) (end 132.924651 103.789389) (width 0.09) (layer "B.Cu") (net 15) (tstamp 2be0e9f1-5790-8a06-f351-5748e4402893)) + (segment (start 142.154713 98.049031) (end 141.344085 99.253293) (width 0.09) (layer "B.Cu") (net 15) (tstamp 30be7bb3-ef1c-1413-5d62-a0a85668ead5)) + (segment (start 144.42 99.13) (end 144.42 98.13) (width 0.09) (layer "B.Cu") (net 15) (tstamp 81707500-8fb4-a7de-714f-53be780c0910)) + (segment (start 140.59665 99.796795) (end 132.79898 102.031536) (width 0.09) (layer "B.Cu") (net 15) (tstamp 889f1969-1a30-07d5-be15-b0b0d15a09bd)) + (segment (start 143.275 101.13) (end 144.400214 99.203119) (width 0.09) (layer "B.Cu") (net 15) (tstamp be2f44a7-b7a9-e254-53ac-4e57968c99f2)) + (segment (start 144.275 97.985) (end 142.275 97.985) (width 0.09) (layer "B.Cu") (net 15) (tstamp d9c8465a-3ce5-4946-3377-abfd432973cd)) + (arc (start 142.275 97.985) (mid 142.206866 98.002005) (end 142.154713 98.049031) (width 0.09) (layer "B.Cu") (net 15) (tstamp 3068c90d-0493-fea8-51c2-cc68fdeec80e)) + (arc (start 144.400214 99.203119) (mid 144.414966 99.167875) (end 144.42 99.13) (width 0.09) (layer "B.Cu") (net 15) (tstamp bb123460-1022-c11b-38e3-13056496f7fe)) + (arc (start 141.344085 99.253293) (mid 141.018361 99.591045) (end 140.59665 99.796795) (width 0.09) (layer "B.Cu") (net 15) (tstamp e063b0c8-096b-6059-2db5-134349b24971)) + (arc (start 144.42 98.13) (mid 144.37753 98.02747) (end 144.275 97.985) (width 0.09) (layer "B.Cu") (net 15) (tstamp e1b554d6-4a63-b6db-3b9b-1add7470a6cd)) + (arc (start 132.79898 102.031536) (mid 132.411577 102.375784) (end 132.437705 102.893379) (width 0.09) (layer "B.Cu") (net 15) (tstamp e37a1ea3-dee6-0d1c-ef4e-64885335d8b0)) + (segment (start 138.071854 99.815084) (end 138.095865 100.795046) (width 0.09) (layer "F.Cu") (net 16) (tstamp 2729b529-1d54-0553-557c-e58f88c64adc)) + (via (at 138.071854 99.815084) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 16) (tstamp c1eb446e-5d9e-7de7-7157-48f23de6571b)) + (segment (start 144.61 99.13) (end 144.61 98.13) (width 0.09) (layer "B.Cu") (net 16) (tstamp 32203cc9-b4d4-4fb8-36fa-0dafc38ecaaf)) + (segment (start 143.275 103.63) (end 144.400214 101.703119) (width 0.09) (layer "B.Cu") (net 16) (tstamp 3dab6d11-b953-e21a-8ef2-e642c96216fa)) + (segment (start 141.997095 97.942933) (end 141.186467 99.147195) (width 0.09) (layer "B.Cu") (net 16) (tstamp 3f6959b8-3387-7ef2-906c-2ad58f1e9a5a)) + (segment (start 144.275 97.795) (end 142.275 97.795) (width 0.09) (layer "B.Cu") (net 16) (tstamp 95742cdc-409c-54ad-cf2b-67767592f318)) + (segment (start 140.307233 99.656079) (end 138.071854 99.815084) (width 0.09) (layer "B.Cu") (net 16) (tstamp c441ee8c-722f-612b-4730-287385ddd3b7)) + (segment (start 144.419581 101.64102) (end 144.609031 99.15546) (width 0.09) (layer "B.Cu") (net 16) (tstamp e62604db-ff8c-e4ec-4af0-fa063f845e77)) + (arc (start 142.275 97.795) (mid 142.117587 97.834287) (end 141.997095 97.942933) (width 0.09) (layer "B.Cu") (net 16) (tstamp 5e1cb238-e1bf-d0d3-8f72-32a4ff7d5df9)) + (arc (start 144.61 98.13) (mid 144.511881 97.893119) (end 144.275 97.795) (width 0.09) (layer "B.Cu") (net 16) (tstamp 690e1554-63db-6e0b-00cd-14800352dde4)) + (arc (start 144.400214 101.703119) (mid 144.413425 101.67317) (end 144.419581 101.64102) (width 0.09) (layer "B.Cu") (net 16) (tstamp c6b6a568-8cfb-65ae-cc6b-053de01acc37)) + (arc (start 144.609031 99.15546) (mid 144.609758 99.142739) (end 144.61 99.13) (width 0.09) (layer "B.Cu") (net 16) (tstamp e4edc965-adba-5201-1c57-3bab177afffd)) + (arc (start 141.186467 99.147195) (mid 140.805576 99.503101) (end 140.307233 99.656079) (width 0.09) (layer "B.Cu") (net 16) (tstamp e818208a-77dc-732a-4ab4-2e121f008dd4)) + (segment (start 139.405865 101.604046) (end 140.277779 101.538626) (width 0.09) (layer "F.Cu") (net 17) (tstamp f054366f-8acd-4ffe-f07e-f0dc3307f026)) + (via (at 140.277779 101.538626) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 17) (tstamp 21632089-95c6-e6b3-f32b-37416f14ef2e)) + (segment (start 144.8 108.13) (end 144.8 109.13) (width 0.09) (layer "B.Cu") (net 17) (tstamp 377a2ac3-3ddf-493b-ed9e-3a12a6fe4861)) + (segment (start 142.222271 106.765073) (end 144.465917 107.640944) (width 0.09) (layer "B.Cu") (net 17) (tstamp 3de60360-8631-f70a-0e38-272bca822417)) + (segment (start 140.277779 101.538626) (end 142.138658 106.679354) (width 0.09) (layer "B.Cu") (net 17) (tstamp b1a54d96-ab37-e74d-6708-9627b0dbf096)) + (segment (start 144.676323 109.468474) (end 143.275 111.13) (width 0.09) (layer "B.Cu") (net 17) (tstamp f0c33c88-19b9-f33f-8bf9-b5ed98990f7e)) + (arc (start 142.138658 106.679354) (mid 142.171202 106.731248) (end 142.222271 106.765073) (width 0.09) (layer "B.Cu") (net 17) (tstamp 44152a55-f6a6-c946-af50-d700a5f227c6)) + (arc (start 144.465917 107.640944) (mid 144.708507 107.833864) (end 144.8 108.13) (width 0.09) (layer "B.Cu") (net 17) (tstamp 51e7d88c-37e0-4412-597f-a3360cf2a99e)) + (arc (start 144.8 109.13) (mid 144.768112 109.310181) (end 144.676323 109.468474) (width 0.09) (layer "B.Cu") (net 17) (tstamp db0c159e-3813-0522-9e94-08dd16a9e020)) + (segment (start 140.163333 103.703554) (end 139.405865 103.604046) (width 0.09) (layer "F.Cu") (net 18) (tstamp 20989b73-94af-386f-e902-3164176a0986)) + (via (at 140.163333 103.703554) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 18) (tstamp 7828d067-df17-6182-e238-df5a38aff074)) + (segment (start 144.61 108.13) (end 144.61 109.13) (width 0.09) (layer "B.Cu") (net 18) (tstamp 10945db6-f95d-2e3c-471d-63476d9db6cb)) + (segment (start 144.420804 109.431606) (end 142.211891 110.499454) (width 0.09) (layer "B.Cu") (net 18) (tstamp 136d9035-5302-0bab-fb3a-f53c28cb86f1)) + (segment (start 142.150992 114.205147) (end 143.275 116.06) (width 0.09) (layer "B.Cu") (net 18) (tstamp 54452b7a-b2ae-365b-9727-790d028029f1)) + (segment (start 140.163333 103.703554) (end 140.808855 104.065483) (width 0.09) (layer "B.Cu") (net 18) (tstamp 90fca9bf-076d-41e2-cc63-dd1407aced20)) + (segment (start 140.989538 104.272753) (end 141.963176 106.752437) (width 0.09) (layer "B.Cu") (net 18) (tstamp bd29d983-fc8b-df14-e613-1ee5e51502ca)) + (segment (start 142.13 110.63) (end 142.13 114.13) (width 0.09) (layer "B.Cu") (net 18) (tstamp c831b99b-f6dd-ed2e-a772-8cc8c22a1f36)) + (segment (start 142.153177 106.942064) (end 144.396823 107.817936) (width 0.09) (layer "B.Cu") (net 18) (tstamp c9b63db7-c354-f385-5543-b447727585b5)) + (arc (start 140.808855 104.065483) (mid 140.917137 104.153479) (end 140.989538 104.272753) (width 0.09) (layer "B.Cu") (net 18) (tstamp 23bd9418-b66f-7d54-3466-dad5b8667324)) + (arc (start 144.396823 107.817936) (mid 144.551619 107.941037) (end 144.61 108.13) (width 0.09) (layer "B.Cu") (net 18) (tstamp 2c8da995-53fe-ab0e-6e2d-0268dfef6811)) + (arc (start 144.61 109.13) (mid 144.558786 109.308018) (end 144.420804 109.431606) (width 0.09) (layer "B.Cu") (net 18) (tstamp 5dcfad6e-01cc-21ad-ed95-6721b16d3d26)) + (arc (start 141.963176 106.752437) (mid 142.038352 106.867114) (end 142.153177 106.942064) (width 0.09) (layer "B.Cu") (net 18) (tstamp 87efa304-4cad-4e7b-fbf8-4d63d168fd7b)) + (arc (start 142.211891 110.499454) (mid 142.152167 110.552948) (end 142.13 110.63) (width 0.09) (layer "B.Cu") (net 18) (tstamp 87f758db-7cba-cdfc-00f4-1bf2718f170c)) + (arc (start 142.13 114.13) (mid 142.135347 114.169012) (end 142.150992 114.205147) (width 0.09) (layer "B.Cu") (net 18) (tstamp cb0de17d-484b-3a1e-3b0c-edbe3f119f4b)) + (segment (start 140.608833 104.422235) (end 139.405865 104.104046) (width 0.09) (layer "F.Cu") (net 19) (tstamp ce67114f-dd36-93bb-2215-677018601612)) + (via (at 140.608833 104.422235) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 19) (tstamp fc8151da-8a53-2e5d-e5f8-903afb9ea56d)) + (segment (start 144.42 109.13) (end 144.42 108.13) (width 0.09) (layer "B.Cu") (net 19) (tstamp 034860b4-972f-a225-c7d1-d8087012a112)) + (segment (start 141.94 114.13) (end 141.94 110.63) (width 0.09) (layer "B.Cu") (net 19) (tstamp 16802ccf-a034-6092-e7cc-04be1845eecd)) + (segment (start 144.327729 107.994927) (end 142.084083 107.119056) (width 0.09) (layer "B.Cu") (net 19) (tstamp 329ea81c-8747-5dee-d479-561346fba84b)) + (segment (start 141.803534 106.860965) (end 140.608833 104.422235) (width 0.09) (layer "B.Cu") (net 19) (tstamp 3d7f8dd2-8292-d540-a064-0fac724a53e5)) + (segment (start 142.129196 110.328394) (end 144.338109 109.260546) (width 0.09) (layer "B.Cu") (net 19) (tstamp 810c1762-3432-787a-4ce1-c65c342bf4ef)) + (segment (start 142.130444 116.571337) (end 141.941026 114.156193) (width 0.09) (layer "B.Cu") (net 19) (tstamp b83540b0-f227-7581-8831-b53038ef305e)) + (segment (start 143.275 117.76) (end 142.172706 116.662766) (width 0.09) (layer "B.Cu") (net 19) (tstamp d6193a72-e3b0-4f22-6e63-59bd1b6cbb5b)) + (arc (start 144.42 108.13) (mid 144.39473 108.04821) (end 144.327729 107.994927) (width 0.09) (layer "B.Cu") (net 19) (tstamp 3b7ba8fa-3fe6-0d4f-8393-19c92111698b)) + (arc (start 142.172706 116.662766) (mid 142.143381 116.620839) (end 142.130444 116.571337) (width 0.09) (layer "B.Cu") (net 19) (tstamp 3f12a65f-c386-05b6-48d7-ab52d2b50f69)) + (arc (start 142.084083 107.119056) (mid 141.919556 107.016373) (end 141.803534 106.860965) (width 0.09) (layer "B.Cu") (net 19) (tstamp 5b4b5c33-a307-70c9-14c7-e3e45ee631ce)) + (arc (start 144.338109 109.260546) (mid 144.397833 109.207052) (end 144.42 109.13) (width 0.09) (layer "B.Cu") (net 19) (tstamp b50c2930-9a41-439b-1720-71011e5224f1)) + (arc (start 141.941026 114.156193) (mid 141.940256 114.143107) (end 141.94 114.13) (width 0.09) (layer "B.Cu") (net 19) (tstamp bfd65bf6-38fa-deae-af8f-53b3151ba83d)) + (arc (start 141.94 110.63) (mid 141.991214 110.451982) (end 142.129196 110.328394) (width 0.09) (layer "B.Cu") (net 19) (tstamp e128b4de-3674-6488-3cff-a24f4be6c69a)) + (segment (start 132.875267 104.504289) (end 133.785865 104.604046) (width 0.09) (layer "F.Cu") (net 20) (tstamp d4a92e0f-f51d-fa95-5bf0-4f6168a1a393)) + (via (at 132.875267 104.504289) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 20) (tstamp 5c976fea-6729-5818-0a37-56854afffbd1)) + (segment (start 133.243606 104.045413) (end 132.875267 104.504289) (width 0.09) (layer "B.Cu") (net 20) (tstamp 7b38fb19-e190-5aa3-09c8-14bc60ea3abd)) + (segment (start 140.648995 99.979442) (end 132.851325 102.214184) (width 0.09) (layer "B.Cu") (net 20) (tstamp 912fff76-a65a-e945-7810-5ecac26f5848)) + (segment (start 143.275 98.63) (end 140.943556 99.860955) (width 0.09) (layer "B.Cu") (net 20) (tstamp ba16ce63-a1dc-c3bf-69a0-b91fa8fc70f8)) + (segment (start 132.65936 102.880253) (end 133.229295 103.516492) (width 0.09) (layer "B.Cu") (net 20) (tstamp faa0b4a1-4add-58ba-a93c-e7b9cee640f5)) + (arc (start 140.943556 99.860955) (mid 140.799339 99.927815) (end 140.648995 99.979442) (width 0.09) (layer "B.Cu") (net 20) (tstamp 3accc2aa-b970-e1b8-a966-aa526b3aa940)) + (arc (start 132.851325 102.214184) (mid 132.571001 102.49409) (end 132.65936 102.880253) (width 0.09) (layer "B.Cu") (net 20) (tstamp a6eddcaf-19b6-6504-eb0d-5a5b88115825)) + (arc (start 133.229295 103.516492) (mid 133.333501 103.778327) (end 133.243606 104.045413) (width 0.09) (layer "B.Cu") (net 20) (tstamp db484d9d-f583-fdad-9f39-01c3625f71a5)) + (segment (start 132.950211 105.229456) (end 133.785865 105.104046) (width 0.09) (layer "F.Cu") (net 21) (tstamp bc810b4f-9c1b-3a1b-6e6c-ecbff4e81e72)) + (via (at 132.950211 105.229456) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 21) (tstamp 94423436-c38a-1cb7-d130-a4622d16032e)) + (segment (start 143.275 119.06) (end 142.141444 118.567226) (width 0.09) (layer "B.Cu") (net 21) (tstamp 4636c838-272a-9a59-71e8-ff9e9b3859c5)) + (segment (start 141.998554 118.449215) (end 132.950211 105.229456) (width 0.09) (layer "B.Cu") (net 21) (tstamp 5fbc2574-cb4b-0167-46fc-a2e3ee1e8d42)) + (arc (start 142.141444 118.567226) (mid 142.061676 118.518298) (end 141.998554 118.449215) (width 0.09) (layer "B.Cu") (net 21) (tstamp a2e0c4e2-469e-9aa6-e449-7ad8a3d14f3e)) + (segment (start 135.623659 107.17507) (end 135.595865 106.414046) (width 0.09) (layer "F.Cu") (net 22) (tstamp e4a0e3fe-b08f-2cf6-f985-cc79950cbdfa)) + (via (at 135.623659 107.17507) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 22) (tstamp 1019be6a-584a-329c-b3b5-f0f398e98907)) + (segment (start 142.263503 118.404543) (end 144.286497 118.565457) (width 0.09) (layer "B.Cu") (net 22) (tstamp 2cbfd8b2-4840-a174-ca52-ee3ea9b3f05e)) + (segment (start 144.42 118.71) (end 144.42 119.41) (width 0.09) (layer "B.Cu") (net 22) (tstamp 684826ee-cdf8-4e25-90da-97e7c3b0a93e)) + (segment (start 135.623659 107.17507) (end 142.149836 118.333206) (width 0.09) (layer "B.Cu") (net 22) (tstamp b403e5ea-c107-f3c2-d863-06916a0b251e)) + (segment (start 144.356128 119.53018) (end 143.275 120.26) (width 0.09) (layer "B.Cu") (net 22) (tstamp bc8aa359-6130-ac4d-f6cf-187dadf5260c)) + (arc (start 144.42 119.41) (mid 144.40304 119.478049) (end 144.356128 119.53018) (width 0.09) (layer "B.Cu") (net 22) (tstamp 28d937e9-ec2c-9218-4b00-6686ca091227)) + (arc (start 142.149836 118.333206) (mid 142.19792 118.382816) (end 142.263503 118.404543) (width 0.09) (layer "B.Cu") (net 22) (tstamp 50a25205-cf8f-4c30-75a3-5bd6911a7f95)) + (arc (start 144.286497 118.565457) (mid 144.381518 118.611618) (end 144.42 118.71) (width 0.09) (layer "B.Cu") (net 22) (tstamp 60c1c1f6-7ad7-ac0f-a916-558a0324c2c3)) + (segment (start 143.607724 106.840352) (end 141.559658 106.840852) (width 0.09) (layer "F.Cu") (net 23) (tstamp e7c52c3c-934e-8c38-fd26-06c898600beb)) + (segment (start 148.074784 103.313947) (end 148.106609 102.002238) (width 0.09) (layer "F.Cu") (net 24) (tstamp a7cb3ab0-8377-8d9d-0e5e-a044c9787124)) + (via (at 148.074784 103.313947) (size 0.46) (drill 0.2) (layers "F.Cu" "B.Cu") (net 24) (tstamp d1ad3cc1-ec32-887d-c1a6-2da10f773d0b)) + (segment (start 148.074784 103.313947) (end 149.8875 103.3) (width 0.09) (layer "B.Cu") (net 24) (tstamp 01c65cdd-5c12-065c-d912-a7568189fd85)) + (segment (start 126.434906 116.838655) (end 126.304064 116.808791) (width 0.09) (layer "F.Cu") (net 25) (tstamp 16f2c120-2cd9-2751-1f03-be0caca9d421)) + (segment (start 126.028767 114.858501) (end 126.432712 110.414266) (width 0.09) (layer "F.Cu") (net 25) (tstamp 37d8d860-60b6-5092-727b-7918a99f9705)) + (segment (start 127.737171 115.66723) (end 126.809966 116.68158) (width 0.09) (layer "F.Cu") (net 25) (tstamp 397ff873-87e7-a57b-b3a1-68276da600a8)) + (segment (start 126.245923 116.780792) (end 126.140996 116.697115) (width 0.09) (layer "F.Cu") (net 25) (tstamp 3e2027c6-eac5-6973-c089-16985513280a)) + (segment (start 126.793347 116.697115) (end 126.68842 116.780792) (width 0.09) (layer "F.Cu") (net 25) (tstamp 45c076b2-6580-cd3e-a740-d94e965fb7d5)) + (segment (start 126.630279 116.808791) (end 126.499437 116.838655) (width 0.09) (layer "F.Cu") (net 25) (tstamp 5774934b-42de-7efe-d356-aa45a65e08ca)) + (segment (start 126.100761 116.646663) (end 126.042531 116.525746) (width 0.09) (layer "F.Cu") (net 25) (tstamp 7132caf2-b923-b19c-56e7-9b8535b43e1c)) + (segment (start 126.028171 116.462833) (end 126.028171 114.871626) (width 0.09) (layer "F.Cu") (net 25) (tstamp 8f545cb4-bc50-5b71-e7c9-b3e6777e150b)) + (segment (start 127.4783 108.531671) (end 128.202801 106.729721) (width 0.09) (layer "F.Cu") (net 25) (tstamp c361690d-9937-977e-4a1c-5da92dcd4317)) + (segment (start 127.208854 109.237473) (end 127.477368 108.534051) (width 0.09) (layer "F.Cu") (net 25) (tstamp ca47455e-7528-edc5-2072-771c1ff94a30)) + (segment (start 126.45735 110.345654) (end 127.193155 109.267499) (width 0.09) (layer "F.Cu") (net 25) (tstamp f87788d3-c98c-8691-8162-0b11301098e7)) + (arc (start 127.193155 109.267499) (mid 127.201885 109.252946) (end 127.208854 109.237473) (width 0.09) (layer "F.Cu") (net 25) (tstamp 1221adb2-e8b2-cf4d-0fba-e6f4d4732fce)) + (arc (start 126.499437 116.838655) (mid 126.467171 116.84229) (end 126.434906 116.838655) (width 0.09) (layer "F.Cu") (net 25) (tstamp 1f7c6a2e-4a92-7313-4b6e-9ecdfdb1c8a0)) + (arc (start 126.042531 116.525746) (mid 126.031807 116.495099) (end 126.028171 116.462833) (width 0.09) (layer "F.Cu") (net 25) (tstamp 21d1d82e-8e10-545a-d199-94ed80627a90)) + (arc (start 126.028171 114.871626) (mid 126.02832 114.865057) (end 126.028767 114.858501) (width 0.09) (layer "F.Cu") (net 25) (tstamp 4f9745ab-c503-7ca1-d35b-4044c80f471c)) + (arc (start 127.477368 108.534051) (mid 127.477829 108.532859) (end 127.4783 108.531671) (width 0.09) (layer "F.Cu") (net 25) (tstamp 68cf55ae-0ac0-ceaf-5ffa-773309ca8c0c)) + (arc (start 126.304064 116.808791) (mid 126.273416 116.798067) (end 126.245923 116.780792) (width 0.09) (layer "F.Cu") (net 25) (tstamp 7c237ce8-e969-957b-f8d8-b856b1ed1e9b)) + (arc (start 126.809966 116.68158) (mid 126.801962 116.689674) (end 126.793347 116.697115) (width 0.09) (layer "F.Cu") (net 25) (tstamp 7fff20eb-c8f9-ec89-6f94-703553718920)) + (arc (start 126.432712 110.414266) (mid 126.440648 110.378386) (end 126.45735 110.345654) (width 0.09) (layer "F.Cu") (net 25) (tstamp 8baf2f8c-f1d2-f3ac-9559-a4c3a1401fbc)) + (arc (start 126.140996 116.697115) (mid 126.118036 116.674156) (end 126.100761 116.646663) (width 0.09) (layer "F.Cu") (net 25) (tstamp 9f9c131b-c239-97f4-c4d8-f2aecb154102)) + (arc (start 126.68842 116.780792) (mid 126.660927 116.798067) (end 126.630279 116.808791) (width 0.09) (layer "F.Cu") (net 25) (tstamp fbfa0386-bfa3-49f2-a09c-074d20385226)) + (segment (start 138.129245 109.57422) (end 138.095865 106.414046) (width 0.09) (layer "F.Cu") (net 26) (tstamp c283ad58-3f39-d0dd-a3ec-163f221e75ac)) + (segment (start 140.693658 106.840852) (end 139.405865 105.604046) (width 0.09) (layer "F.Cu") (net 27) (tstamp e25c4288-a0b0-fbc8-9b66-9f348ec406df)) + (segment (start 147.502051 107.938865) (end 148.8537 106.981667) (width 0.09) (layer "B.Cu") (net 28) (tstamp 1761a891-6009-9753-e682-8571afebc9d2)) + (segment (start 148.88495 106.964857) (end 149.4375 106.75) (width 0.09) (layer "B.Cu") (net 28) (tstamp ff92e36f-cbef-abbe-a5b8-098f9e6e909f)) + (arc (start 148.8537 106.981667) (mid 148.868809 106.972303) (end 148.88495 106.964857) (width 0.09) (layer "B.Cu") (net 28) (tstamp 42b4000e-7436-8c2c-e688-d286b94123e1)) + + (zone (net 1) (net_name "gnd") (layer "F.Cu") (tstamp 3c3cb28b-fb94-9e81-c543-2ca424b2c87d) (hatch none 0.1) + (priority 1) + (connect_pads (clearance 0.1)) + (min_thickness 0.03) (filled_areas_thickness no) + (fill yes (thermal_gap 0.03) (thermal_bridge_width 0.035)) + (polygon + (pts + (xy 124.5 123) + (xy 149.5 123) + (xy 149.5 121) + (xy 154.5 121) + (xy 154.5 95) + (xy 149.5 95) + (xy 149.5 93) + (xy 124.5 93) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 127.883455 96.279096) + (xy 127.888707 96.283992) + (xy 128.579413 97.38318) + (xy 128.928714 97.939057) + (xy 128.930509 97.949621) + (xy 128.926292 97.956852) + (xy 128.822379 98.051583) + (xy 128.699469 98.214342) + (xy 128.699464 98.214351) + (xy 128.608565 98.396903) + (xy 128.608562 98.396909) + (xy 128.552746 98.593078) + (xy 128.552744 98.593088) + (xy 128.533928 98.79616) + (xy 128.533928 98.796165) + (xy 128.552744 98.999237) + (xy 128.552746 98.999247) + (xy 128.608562 99.195416) + (xy 128.608565 99.195422) + (xy 128.699464 99.377974) + (xy 128.699469 99.377983) + (xy 128.741311 99.433391) + (xy 128.822379 99.540742) + (xy 128.973102 99.678144) + (xy 129.098307 99.755667) + (xy 129.141576 99.782459) + (xy 129.146504 99.78551) + (xy 129.146503 99.78551) + (xy 129.146506 99.785511) + (xy 129.336687 99.859187) + (xy 129.537167 99.896663) + (xy 129.537168 99.896663) + (xy 129.741118 99.896663) + (xy 129.741119 99.896663) + (xy 129.848543 99.876581) + (xy 129.859027 99.878793) + (xy 129.864337 99.885741) + (xy 131.075908 103.366494) + (xy 131.07529 103.377191) + (xy 131.067288 103.384318) + (xy 131.062686 103.385096) + (xy 130.901967 103.385096) + (xy 130.901967 104.045095) + (xy 131.096308 104.045095) + (xy 131.105061 104.043356) + (xy 131.114986 104.036724) + (xy 131.121615 104.026803) + (xy 131.121616 104.026801) + (xy 131.123024 104.01972) + (xy 131.128976 104.01081) + (xy 131.139485 104.008719) + (xy 131.148395 104.014671) + (xy 131.150691 104.021118) + (xy 131.151234 104.026801) + (xy 131.154772 104.063873) + (xy 131.158879 104.107383) + (xy 131.15888 104.107384) + (xy 131.185621 104.197165) + (xy 131.185624 104.197172) + (xy 131.229206 104.280106) + (xy 131.229208 104.280109) + (xy 131.231751 104.283259) + (xy 131.258632 104.316555) + (xy 131.258631 104.316555) + (xy 131.271485 104.33251) + (xy 131.277772 104.340314) + (xy 131.279466 104.342416) + (xy 131.281441 104.344868) + (xy 131.281454 104.344882) + (xy 132.365501 105.690387) + (xy 132.374893 105.702044) + (xy 132.411611 105.747755) + (xy 132.414333 105.751143) + (xy 132.435385 105.769057) + (xy 132.509013 105.831712) + (xy 132.521019 105.841928) + (xy 132.642765 105.911225) + (xy 132.775299 105.9566) + (xy 132.843718 105.966301) + (xy 133.297611 106.031315) + (xy 133.29966 106.031609) + (xy 133.29966 106.031608) + (xy 133.30597 106.032514) + (xy 133.305983 106.032514) + (xy 133.314836 106.033782) + (xy 133.318635 106.034327) + (xy 133.319757 106.03434) + (xy 133.320594 106.034399) + (xy 133.321709 106.034546) + (xy 133.34083 106.034546) + (xy 133.374039 106.034554) + (xy 133.374041 106.034552) + (xy 133.375545 106.034553) + (xy 133.375618 106.034546) + (xy 134.250023 106.034546) + (xy 134.250022 106.034545) + (xy 134.250279 106.034476) + (xy 134.250496 106.034419) + (xy 134.252448 106.034041) + (xy 134.283101 106.030342) + (xy 134.313278 106.022939) + (xy 134.315231 106.022606) + (xy 134.315615 106.022568) + (xy 134.334691 106.01536) + (xy 134.364558 106.004089) + (xy 134.364558 106.004087) + (xy 134.366077 106.003515) + (xy 134.366164 106.003469) + (xy 134.406919 105.988072) + (xy 134.417627 105.98841) + (xy 134.424962 105.996221) + (xy 134.425865 106.001169) + (xy 134.425865 106.396546) + (xy 134.765864 106.396546) + (xy 134.765864 105.983546) + (xy 134.769965 105.973647) + (xy 134.779864 105.969546) + (xy 134.841365 105.969546) + (xy 134.851264 105.973647) + (xy 134.855365 105.983546) + (xy 134.855365 106.868942) + (xy 134.859018 106.887306) + (xy 134.861196 106.898259) + (xy 134.883408 106.931503) + (xy 134.916652 106.953715) + (xy 134.945966 106.959546) + (xy 135.245763 106.959545) + (xy 135.275078 106.953715) + (xy 135.308322 106.931503) + (xy 135.330534 106.898259) + (xy 135.332134 106.890213) + (xy 135.338087 106.881305) + (xy 135.348596 106.879214) + (xy 135.357505 106.885167) + (xy 135.359596 106.890214) + (xy 135.361195 106.898258) + (xy 135.361196 106.898259) + (xy 135.370007 106.911446) + (xy 135.372097 106.921954) + (xy 135.368266 106.929122) + (xy 135.333286 106.964103) + (xy 135.282307 107.064157) + (xy 135.26474 107.17507) + (xy 135.282307 107.285982) + (xy 135.333287 107.386038) + (xy 135.41269 107.465441) + (xy 135.489033 107.504339) + (xy 135.495992 107.512487) + (xy 135.495151 107.523169) + (xy 135.488624 107.529487) + (xy 134.494969 107.995701) + (xy 134.484265 107.996194) + (xy 134.476348 107.988974) + (xy 134.475291 107.985758) + (xy 134.474397 107.981262) + (xy 134.472219 107.970309) + (xy 134.450007 107.937065) + (xy 134.416763 107.914853) + (xy 134.416762 107.914852) + (xy 134.416761 107.914852) + (xy 134.394726 107.910469) + (xy 134.387449 107.909022) + (xy 134.387448 107.909022) + (xy 133.949875 107.909022) + (xy 133.920559 107.914853) + (xy 133.887315 107.937065) + (xy 133.865102 107.97031) + (xy 133.859272 107.999623) + (xy 133.859272 108.619418) + (xy 133.862925 108.637782) + (xy 133.865103 108.648735) + (xy 133.887315 108.681979) + (xy 133.920559 108.704191) + (xy 133.949873 108.710022) + (xy 134.032558 108.710021) + (xy 134.042457 108.714121) + (xy 134.046535 108.723223) + (xy 134.081235 109.331187) + (xy 134.077706 109.341304) + (xy 134.068056 109.345962) + (xy 134.067258 109.345985) + (xy 133.663609 109.345985) + (xy 133.634293 109.351816) + (xy 133.601049 109.374028) + (xy 133.578836 109.407273) + (xy 133.573006 109.436586) + (xy 133.573006 110.856381) + (xy 133.577005 110.876484) + (xy 133.578837 110.885698) + (xy 133.601049 110.918942) + (xy 133.634293 110.941154) + (xy 133.663607 110.946985) + (xy 133.680444 110.946984) + (xy 133.690343 110.951084) + (xy 133.694444 110.960983) + (xy 133.692924 110.967329) + (xy 133.411233 111.521356) + (xy 133.406642 111.530373) + (xy 133.406592 111.53048) + (xy 133.405875 111.531892) + (xy 133.405872 111.531903) + (xy 133.405675 111.532828) + (xy 133.405402 111.533777) + (xy 133.394703 111.563018) + (xy 133.394703 111.563019) + (xy 133.387558 111.593382) + (xy 133.387264 111.594325) + (xy 133.386931 111.595178) + (xy 133.38693 111.59518) + (xy 133.386776 111.596555) + (xy 133.386738 111.596827) + (xy 133.384805 111.6142) + (xy 133.380974 111.648429) + (xy 133.380974 111.648461) + (xy 133.15666 113.65527) + (xy 133.151486 113.664653) + (xy 133.142747 113.667715) + (xy 133.056873 113.667715) + (xy 133.027557 113.673546) + (xy 132.994313 113.695758) + (xy 132.9721 113.729003) + (xy 132.96627 113.758316) + (xy 132.96627 114.340662) + (xy 132.962169 114.350561) + (xy 132.95227 114.354662) + (xy 132.950695 114.354573) + (xy 130.394159 114.065196) + (xy 130.394095 114.065184) + (xy 130.366794 114.062097) + (xy 130.348037 114.059976) + (xy 130.347823 114.059951) + (xy 130.347818 114.059949) + (xy 130.342264 114.05932) + (xy 130.338784 114.058464) + (xy 130.335769 114.057296) + (xy 130.331568 114.055669) + (xy 130.331567 114.055669) + (xy 130.288094 114.055669) + (xy 130.288067 114.055668) + (xy 130.277142 114.055669) + (xy 127.789685 114.055669) + (xy 127.789626 114.055664) + (xy 127.788453 114.055664) + (xy 127.779905 114.055664) + (xy 127.742944 114.055668) + (xy 127.742936 114.055665) + (xy 127.715389 114.055668) + (xy 127.715362 114.055669) + (xy 127.710196 114.055669) + (xy 127.70735 114.056201) + (xy 127.707116 114.056245) + (xy 127.706357 114.056344) + (xy 127.690696 114.057519) + (xy 127.672005 114.058922) + (xy 127.671998 114.058923) + (xy 127.671995 114.058923) + (xy 127.671156 114.059049) + (xy 127.667062 114.059056) + (xy 127.660806 114.058142) + (xy 127.573071 114.078168) + (xy 127.558519 114.081488) + (xy 127.558517 114.08149) + (xy 127.480811 114.099226) + (xy 127.476953 114.100107) + (xy 127.45039 114.10617) + (xy 127.450308 114.106192) + (xy 127.43446 114.109809) + (xy 127.434455 114.109811) + (xy 127.353335 114.141644) + (xy 127.353322 114.141651) + (xy 127.294691 114.175498) + (xy 127.29188 114.176732) + (xy 127.286299 114.178481) + (xy 127.286298 114.178482) + (xy 127.138863 114.296055) + (xy 127.118812 114.312037) + (xy 127.11866 114.312168) + (xy 127.117758 114.312888) + (xy 127.117754 114.312892) + (xy 127.117216 114.313514) + (xy 127.116753 114.313999) + (xy 127.081805 114.347293) + (xy 127.081802 114.347297) + (xy 127.074041 114.356111) + (xy 127.07106 114.358664) + (xy 127.065079 114.362476) + (xy 127.065078 114.362477) + (xy 127.04814 114.385518) + (xy 127.048023 114.385667) + (xy 127.0331 114.405982) + (xy 126.845641 114.661006) + (xy 126.836474 114.666554) + (xy 126.826069 114.663994) + (xy 126.820521 114.654827) + (xy 126.820387 114.651865) + (xy 126.821001 114.64177) + (xy 127.036567 111.09323) + (xy 127.038901 111.086303) + (xy 127.052061 111.066607) + (xy 127.052061 111.066606) + (xy 127.052063 111.066604) + (xy 127.057894 111.03729) + (xy 127.057893 110.807913) + (xy 127.05969 110.801051) + (xy 127.115908 110.70109) + (xy 127.907582 109.293397) + (xy 127.916009 109.28678) + (xy 127.919785 109.286261) + (xy 128.003008 109.286261) + (xy 128.003009 109.286261) + (xy 128.032324 109.280431) + (xy 128.065568 109.258219) + (xy 128.08778 109.224975) + (xy 128.093611 109.195661) + (xy 128.09361 108.972276) + (xy 128.095669 108.964969) + (xy 128.1337 108.902831) + (xy 128.486109 108.327022) + (xy 132.972551 108.327022) + (xy 132.972551 108.612474) + (xy 132.974289 108.621227) + (xy 132.980921 108.631152) + (xy 132.990843 108.637781) + (xy 132.999594 108.639521) + (xy 133.193939 108.639521) + (xy 133.193939 108.327022) + (xy 133.228939 108.327022) + (xy 133.228939 108.639521) + (xy 133.42328 108.639521) + (xy 133.432033 108.637782) + (xy 133.441958 108.63115) + (xy 133.448587 108.621229) + (xy 133.448587 108.621227) + (xy 133.450328 108.612477) + (xy 133.450328 108.327022) + (xy 133.228939 108.327022) + (xy 133.193939 108.327022) + (xy 132.972551 108.327022) + (xy 128.486109 108.327022) + (xy 128.50753 108.292022) + (xy 132.97255 108.292022) + (xy 133.193939 108.292022) + (xy 133.193939 107.979522) + (xy 133.228939 107.979522) + (xy 133.228939 108.292022) + (xy 133.450327 108.292022) + (xy 133.450327 108.006569) + (xy 133.448588 107.997816) + (xy 133.441956 107.987891) + (xy 133.432034 107.981262) + (xy 133.423284 107.979522) + (xy 133.228939 107.979522) + (xy 133.193939 107.979522) + (xy 132.999597 107.979522) + (xy 132.990844 107.981261) + (xy 132.980919 107.987893) + (xy 132.97429 107.997814) + (xy 132.97429 107.997816) + (xy 132.97255 108.006566) + (xy 132.97255 108.292022) + (xy 128.50753 108.292022) + (xy 129.214487 107.136911) + (xy 129.223152 107.130609) + (xy 129.226428 107.13022) + (xy 129.322559 107.13022) + (xy 129.32256 107.13022) + (xy 129.351875 107.12439) + (xy 129.385119 107.102178) + (xy 129.407331 107.068934) + (xy 129.413162 107.03962) + (xy 129.413161 106.786868) + (xy 129.413707 106.78391) + (xy 129.41357 106.783885) + (xy 129.413802 106.782608) + (xy 129.413784 106.779054) + (xy 129.413595 106.742771) + (xy 129.413624 106.742122) + (xy 129.417307 106.702463) + (xy 129.413837 106.690262) + (xy 129.413304 106.686506) + (xy 129.413277 106.681257) + (xy 129.413239 106.673815) + (xy 129.413238 106.673812) + (xy 129.413233 106.672837) + (xy 129.413161 106.672074) + (xy 129.413161 106.431546) + (xy 134.425866 106.431546) + (xy 134.425866 106.861998) + (xy 134.427604 106.870751) + (xy 134.434236 106.880676) + (xy 134.444158 106.887305) + (xy 134.452909 106.889045) + (xy 134.578365 106.889045) + (xy 134.578365 106.431546) + (xy 134.613365 106.431546) + (xy 134.613365 106.889045) + (xy 134.738817 106.889045) + (xy 134.74757 106.887306) + (xy 134.757495 106.880674) + (xy 134.764124 106.870753) + (xy 134.764124 106.870751) + (xy 134.765865 106.862001) + (xy 134.765865 106.431546) + (xy 134.613365 106.431546) + (xy 134.578365 106.431546) + (xy 134.425866 106.431546) + (xy 129.413161 106.431546) + (xy 129.413161 106.419824) + (xy 129.413161 106.419822) + (xy 129.407331 106.390508) + (xy 129.385119 106.357264) + (xy 129.351875 106.335052) + (xy 129.351874 106.335051) + (xy 129.351873 106.335051) + (xy 129.322561 106.329221) + (xy 129.321763 106.329221) + (xy 129.311864 106.32512) + (xy 129.308297 106.31905) + (xy 129.301659 106.295702) + (xy 128.572936 103.732596) + (xy 130.645579 103.732596) + (xy 130.645579 104.018048) + (xy 130.647317 104.026801) + (xy 130.653949 104.036726) + (xy 130.663871 104.043355) + (xy 130.672622 104.045095) + (xy 130.866966 104.045095) + (xy 130.866967 103.732596) + (xy 130.645579 103.732596) + (xy 128.572936 103.732596) + (xy 128.562985 103.697596) + (xy 130.645578 103.697596) + (xy 130.866967 103.697596) + (xy 130.866966 103.385096) + (xy 130.672625 103.385096) + (xy 130.663872 103.386835) + (xy 130.653947 103.393467) + (xy 130.647318 103.403388) + (xy 130.647318 103.40339) + (xy 130.645578 103.41214) + (xy 130.645578 103.697596) + (xy 128.562985 103.697596) + (xy 127.432728 99.722192) + (xy 127.433965 99.71155) + (xy 127.438821 99.706464) + (xy 127.525711 99.652666) + (xy 127.676434 99.515264) + (xy 127.799343 99.352506) + (xy 127.890252 99.169935) + (xy 127.946067 98.973768) + (xy 127.947258 98.960913) + (xy 127.964885 98.770687) + (xy 127.964885 98.770682) + (xy 127.946068 98.56761) + (xy 127.946067 98.567607) + (xy 127.946067 98.567602) + (xy 127.890252 98.371435) + (xy 127.833957 98.258379) + (xy 127.799348 98.188873) + (xy 127.799343 98.188864) + (xy 127.720604 98.084597) + (xy 127.676434 98.026106) + (xy 127.525711 97.888704) + (xy 127.435796 97.833031) + (xy 127.352308 97.781337) + (xy 127.352309 97.781337) + (xy 127.22789 97.733138) + (xy 127.162126 97.707661) + (xy 127.162123 97.70766) + (xy 127.162122 97.70766) + (xy 126.961648 97.670185) + (xy 126.961646 97.670185) + (xy 126.757694 97.670185) + (xy 126.757691 97.670185) + (xy 126.557217 97.70766) + (xy 126.36703 97.781337) + (xy 126.19363 97.888703) + (xy 126.193629 97.888704) + (xy 126.042906 98.026105) + (xy 125.919996 98.188864) + (xy 125.919991 98.188873) + (xy 125.885381 98.258379) + (xy 125.877298 98.265413) + (xy 125.866609 98.264671) + (xy 125.859575 98.256588) + (xy 125.858849 98.25218) + (xy 125.856329 97.258846) + (xy 126.135699 97.258846) + (xy 126.278945 97.376406) + (xy 126.457883 97.47205) + (xy 126.652028 97.530943) + (xy 126.652032 97.530944) + (xy 126.85395 97.550831) + (xy 127.055867 97.530944) + (xy 127.055871 97.530943) + (xy 127.250016 97.47205) + (xy 127.428954 97.376406) + (xy 127.5722 97.258846) + (xy 126.853951 96.540597) + (xy 126.85395 96.540597) + (xy 126.135699 97.258846) + (xy 125.856329 97.258846) + (xy 125.855334 96.866511) + (xy 125.859409 96.856604) + (xy 125.869298 96.852478) + (xy 125.879208 96.856553) + (xy 125.882731 96.862414) + (xy 125.897747 96.911914) + (xy 125.993391 97.090852) + (xy 126.11095 97.234098) + (xy 126.844051 96.500998) + (xy 126.85395 96.496897) + (xy 126.863849 96.500998) + (xy 126.86385 96.500998) + (xy 127.596948 97.234097) + (xy 127.714508 97.090852) + (xy 127.810152 96.911914) + (xy 127.869045 96.717769) + (xy 127.869046 96.717765) + (xy 127.888933 96.515848) + (xy 127.869046 96.31393) + (xy 127.869045 96.313926) + (xy 127.863458 96.295507) + (xy 127.864508 96.284843) + (xy 127.872791 96.278046) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 136.857505 106.885167) + (xy 136.859596 106.890214) + (xy 136.861195 106.898258) + (xy 136.861196 106.898259) + (xy 136.883408 106.931503) + (xy 136.892546 106.937608) + (xy 136.897768 106.941097) + (xy 136.903721 106.950006) + (xy 136.90394 106.953924) + (xy 136.631455 110.158963) + (xy 136.62653 110.16848) + (xy 136.616319 110.171727) + (xy 136.606802 110.166802) + (xy 136.603505 110.157777) + (xy 136.603505 109.443532) + (xy 136.601766 109.434779) + (xy 136.595134 109.424854) + (xy 136.585212 109.418225) + (xy 136.576462 109.416485) + (xy 135.991006 109.416485) + (xy 135.991006 110.876484) + (xy 136.534867 110.876484) + (xy 136.544766 110.880585) + (xy 136.548867 110.890484) + (xy 136.547347 110.896829) + (xy 136.22118 111.53833) + (xy 136.213038 111.545296) + (xy 136.2087 111.545985) + (xy 135.363609 111.545985) + (xy 135.334293 111.551816) + (xy 135.301049 111.574028) + (xy 135.278836 111.607273) + (xy 135.273006 111.636586) + (xy 135.273006 112.810202) + (xy 135.268905 112.820101) + (xy 135.268692 112.820311) + (xy 134.388241 113.663942) + (xy 134.378256 113.66783) + (xy 134.377184 113.667766) + (xy 134.376672 113.667715) + (xy 134.376669 113.667715) + (xy 134.376665 113.667715) + (xy 133.976595 113.667715) + (xy 133.947279 113.673546) + (xy 133.914035 113.695758) + (xy 133.891822 113.729003) + (xy 133.885992 113.758315) + (xy 133.885992 113.758316) + (xy 133.885992 114.059976) + (xy 133.885993 114.353715) + (xy 133.881893 114.363614) + (xy 133.871993 114.367715) + (xy 133.561548 114.367715) + (xy 133.551649 114.363614) + (xy 133.547548 114.353715) + (xy 133.547547 113.758318) + (xy 133.547547 113.758316) + (xy 133.541717 113.729002) + (xy 133.519505 113.695758) + (xy 133.486261 113.673546) + (xy 133.48626 113.673545) + (xy 133.486259 113.673545) + (xy 133.460885 113.668498) + (xy 133.451975 113.662545) + (xy 133.449703 113.653212) + (xy 133.475339 113.423866) + (xy 133.5163 113.057403) + (xy 133.593808 112.363985) + (xy 133.643507 112.363985) + (xy 133.643507 113.049437) + (xy 133.645245 113.05819) + (xy 133.651877 113.068115) + (xy 133.661799 113.074744) + (xy 133.67055 113.076484) + (xy 134.256006 113.076484) + (xy 134.256006 112.363985) + (xy 134.291006 112.363985) + (xy 134.291006 113.076484) + (xy 134.876458 113.076484) + (xy 134.885211 113.074745) + (xy 134.895136 113.068113) + (xy 134.901765 113.058192) + (xy 134.901765 113.05819) + (xy 134.903506 113.04944) + (xy 134.903506 112.363985) + (xy 134.291006 112.363985) + (xy 134.256006 112.363985) + (xy 133.643507 112.363985) + (xy 133.593808 112.363985) + (xy 133.615593 112.169089) + (xy 133.620767 112.159706) + (xy 133.631061 112.156731) + (xy 133.640444 112.161905) + (xy 133.643506 112.170644) + (xy 133.643506 112.328985) + (xy 134.256006 112.328985) + (xy 134.256006 111.616485) + (xy 134.291006 111.616485) + (xy 134.291006 112.328985) + (xy 134.903505 112.328985) + (xy 134.903505 111.643532) + (xy 134.901766 111.634779) + (xy 134.895134 111.624854) + (xy 134.885212 111.618225) + (xy 134.876462 111.616485) + (xy 134.291006 111.616485) + (xy 134.256006 111.616485) + (xy 133.712143 111.616485) + (xy 133.702244 111.612384) + (xy 133.698143 111.602485) + (xy 133.699662 111.596144) + (xy 134.022561 110.961071) + (xy 134.025831 110.954639) + (xy 134.033973 110.947673) + (xy 134.038311 110.946984) + (xy 134.883403 110.946984) + (xy 134.883404 110.946984) + (xy 134.912719 110.941154) + (xy 134.945963 110.918942) + (xy 134.968175 110.885698) + (xy 134.974006 110.856384) + (xy 134.974005 110.163985) + (xy 135.343507 110.163985) + (xy 135.343507 110.849437) + (xy 135.345245 110.85819) + (xy 135.351877 110.868115) + (xy 135.361799 110.874744) + (xy 135.37055 110.876484) + (xy 135.956006 110.876484) + (xy 135.956006 110.163985) + (xy 135.343507 110.163985) + (xy 134.974005 110.163985) + (xy 134.974005 110.128985) + (xy 135.343506 110.128985) + (xy 135.956006 110.128985) + (xy 135.956006 109.416485) + (xy 135.370553 109.416485) + (xy 135.3618 109.418224) + (xy 135.351875 109.424856) + (xy 135.345246 109.434777) + (xy 135.345246 109.434779) + (xy 135.343506 109.443529) + (xy 135.343506 110.128985) + (xy 134.974005 110.128985) + (xy 134.974005 109.436587) + (xy 134.968175 109.407272) + (xy 134.945963 109.374028) + (xy 134.912719 109.351816) + (xy 134.912718 109.351815) + (xy 134.912717 109.351815) + (xy 134.883405 109.345985) + (xy 134.386777 109.345985) + (xy 134.376878 109.341884) + (xy 134.3728 109.332783) + (xy 134.371806 109.315374) + (xy 134.351807 108.964969) + (xy 134.338101 108.724819) + (xy 134.341631 108.714702) + (xy 134.35128 108.710044) + (xy 134.352078 108.710021) + (xy 134.387447 108.710021) + (xy 134.387448 108.710021) + (xy 134.416763 108.704191) + (xy 134.450007 108.681979) + (xy 134.472219 108.648735) + (xy 134.47805 108.619421) + (xy 134.478049 108.333973) + (xy 134.482149 108.324075) + (xy 134.486099 108.321301) + (xy 135.847959 107.682329) + (xy 135.859181 107.677066) + (xy 135.85918 107.677065) + (xy 135.865752 107.673984) + (xy 135.865763 107.673976) + (xy 135.87653 107.668925) + (xy 135.87653 107.668924) + (xy 135.876864 107.668768) + (xy 135.877043 107.668668) + (xy 135.895299 107.660095) + (xy 135.961957 107.616198) + (xy 136.021642 107.563208) + (xy 136.034374 107.548136) + (xy 136.034467 107.548042) + (xy 136.035039 107.547363) + (xy 136.035042 107.547362) + (xy 136.047396 107.532725) + (xy 136.068817 107.507347) + (xy 136.068817 107.507346) + (xy 136.070412 107.505457) + (xy 136.070413 107.505453) + (xy 136.435333 107.073105) + (xy 136.435362 107.073079) + (xy 136.436453 107.071785) + (xy 136.436455 107.071785) + (xy 136.454142 107.050822) + (xy 136.454159 107.050813) + (xy 136.457876 107.046408) + (xy 136.457877 107.046409) + (xy 136.466532 107.036152) + (xy 136.466537 107.036144) + (xy 136.466583 107.03609) + (xy 136.466714 107.035926) + (xy 136.470215 107.03178) + (xy 136.471029 107.030047) + (xy 136.472208 107.028003) + (xy 136.481877 107.014128) + (xy 136.49018 106.999495) + (xy 136.491523 106.997536) + (xy 136.492749 106.996041) + (xy 136.495023 106.991) + (xy 136.495076 106.990894) + (xy 136.499513 106.981058) + (xy 136.505505 106.967785) + (xy 136.513315 106.960449) + (xy 136.518265 106.959545) + (xy 136.745762 106.959545) + (xy 136.745763 106.959545) + (xy 136.775078 106.953715) + (xy 136.808322 106.931503) + (xy 136.830534 106.898259) + (xy 136.832134 106.890213) + (xy 136.838087 106.881305) + (xy 136.848596 106.879214) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 137.857505 106.885167) + (xy 137.859596 106.890214) + (xy 137.861195 106.898258) + (xy 137.861196 106.898259) + (xy 137.883408 106.931503) + (xy 137.916652 106.953715) + (xy 137.944993 106.959352) + (xy 137.9539 106.965304) + (xy 137.956259 106.972934) + (xy 137.980556 109.273183) + (xy 137.976561 109.283125) + (xy 137.966705 109.28733) + (xy 137.966557 109.287331) + (xy 137.819348 109.287331) + (xy 137.790032 109.293162) + (xy 137.756788 109.315374) + (xy 137.734575 109.348619) + (xy 137.728745 109.377932) + (xy 137.728745 109.770505) + (xy 137.728746 109.770508) + (xy 137.734576 109.799822) + (xy 137.756788 109.833066) + (xy 137.790032 109.855278) + (xy 137.819346 109.861109) + (xy 138.439143 109.861108) + (xy 138.468458 109.855278) + (xy 138.501702 109.833066) + (xy 138.523914 109.799822) + (xy 138.529745 109.770508) + (xy 138.529744 109.377933) + (xy 138.523914 109.348618) + (xy 138.501702 109.315374) + (xy 138.468458 109.293162) + (xy 138.468457 109.293161) + (xy 138.468456 109.293161) + (xy 138.439144 109.287331) + (xy 138.285575 109.287331) + (xy 138.275676 109.28323) + (xy 138.271576 109.273479) + (xy 138.265828 108.72934) + (xy 138.264107 108.566373) + (xy 138.314943 108.566373) + (xy 138.314943 108.760714) + (xy 138.316681 108.769467) + (xy 138.323313 108.779392) + (xy 138.333235 108.786021) + (xy 138.341986 108.787761) + (xy 138.627442 108.787761) + (xy 138.627442 108.566373) + (xy 138.662442 108.566373) + (xy 138.662442 108.787761) + (xy 138.947894 108.787761) + (xy 138.956647 108.786022) + (xy 138.966572 108.77939) + (xy 138.973201 108.769469) + (xy 138.973201 108.769467) + (xy 138.974942 108.760717) + (xy 138.974942 108.566373) + (xy 138.662442 108.566373) + (xy 138.627442 108.566373) + (xy 138.314943 108.566373) + (xy 138.264107 108.566373) + (xy 138.263737 108.531373) + (xy 138.314942 108.531373) + (xy 138.627442 108.531373) + (xy 138.627442 108.309984) + (xy 138.341989 108.309984) + (xy 138.333236 108.311723) + (xy 138.323311 108.318355) + (xy 138.316682 108.328276) + (xy 138.316682 108.328278) + (xy 138.314942 108.337028) + (xy 138.314942 108.531373) + (xy 138.263737 108.531373) + (xy 138.256951 107.888955) + (xy 138.260946 107.879015) + (xy 138.270802 107.87481) + (xy 138.278727 107.877167) + (xy 138.305729 107.895209) + (xy 138.335043 107.90104) + (xy 138.543892 107.901039) + (xy 138.55347 107.904828) + (xy 138.959819 108.285965) + (xy 138.964234 108.295728) + (xy 138.960452 108.305754) + (xy 138.950689 108.310169) + (xy 138.948585 108.309995) + (xy 138.94858 108.310051) + (xy 138.947901 108.309984) + (xy 138.662442 108.309984) + (xy 138.662442 108.531373) + (xy 138.974941 108.531373) + (xy 138.974941 108.337031) + (xy 138.974433 108.334478) + (xy 138.976523 108.323968) + (xy 138.985432 108.318015) + (xy 138.995942 108.320105) + (xy 138.997742 108.321535) + (xy 140.345355 109.585534) + (xy 141.517055 110.684536) + (xy 141.63249 110.792808) + (xy 141.636905 110.802571) + (xy 141.633123 110.812597) + (xy 141.631025 110.814429) + (xy 138.79135 112.833633) + (xy 138.780906 112.836028) + (xy 138.771827 112.830336) + (xy 138.769237 112.822223) + (xy 138.769238 112.588802) + (xy 138.547849 112.588802) + (xy 138.547849 112.901301) + (xy 138.565948 112.901301) + (xy 138.575847 112.905402) + (xy 138.579948 112.915301) + (xy 138.575847 112.9252) + (xy 138.570483 112.928546) + (xy 134.485804 114.326934) + (xy 134.47511 114.326261) + (xy 134.468024 114.318224) + (xy 134.467269 114.313689) + (xy 134.467269 113.997216) + (xy 134.47137 113.987317) + (xy 134.471583 113.987107) + (xy 135.345727 113.149519) + (xy 135.355711 113.145632) + (xy 135.358143 113.145898) + (xy 135.358933 113.146055) + (xy 135.363607 113.146985) + (xy 136.583404 113.146984) + (xy 136.612719 113.141154) + (xy 136.645963 113.118942) + (xy 136.668175 113.085698) + (xy 136.674006 113.056384) + (xy 136.674005 112.60797) + (xy 136.678105 112.598072) + (xy 136.688005 112.593971) + (xy 136.689947 112.594106) + (xy 137.251686 112.673055) + (xy 137.260919 112.678494) + (xy 137.263738 112.686919) + (xy 137.263738 112.881198) + (xy 137.267737 112.901301) + (xy 137.269569 112.910515) + (xy 137.291781 112.943759) + (xy 137.325025 112.965971) + (xy 137.354339 112.971802) + (xy 137.791914 112.971801) + (xy 137.821229 112.965971) + (xy 137.854473 112.943759) + (xy 137.876685 112.910515) + (xy 137.882516 112.881201) + (xy 137.882515 112.588802) + (xy 138.291461 112.588802) + (xy 138.291461 112.874254) + (xy 138.293199 112.883007) + (xy 138.299831 112.892932) + (xy 138.309753 112.899561) + (xy 138.318504 112.901301) + (xy 138.512849 112.901301) + (xy 138.512849 112.588802) + (xy 138.291461 112.588802) + (xy 137.882515 112.588802) + (xy 137.882515 112.553802) + (xy 138.29146 112.553802) + (xy 138.512849 112.553802) + (xy 138.512849 112.241302) + (xy 138.547849 112.241302) + (xy 138.547849 112.553802) + (xy 138.769237 112.553802) + (xy 138.769237 112.268349) + (xy 138.767498 112.259596) + (xy 138.760866 112.249671) + (xy 138.750944 112.243042) + (xy 138.742194 112.241302) + (xy 138.547849 112.241302) + (xy 138.512849 112.241302) + (xy 138.318507 112.241302) + (xy 138.309754 112.243041) + (xy 138.299829 112.249673) + (xy 138.2932 112.259594) + (xy 138.2932 112.259596) + (xy 138.29146 112.268346) + (xy 138.29146 112.553802) + (xy 137.882515 112.553802) + (xy 137.882515 112.261404) + (xy 137.876685 112.232089) + (xy 137.854473 112.198845) + (xy 137.821229 112.176633) + (xy 137.821228 112.176632) + (xy 137.821227 112.176632) + (xy 137.799192 112.172249) + (xy 137.791915 112.170802) + (xy 137.791914 112.170802) + (xy 137.354341 112.170802) + (xy 137.325025 112.176633) + (xy 137.291781 112.198845) + (xy 137.269568 112.23209) + (xy 137.263738 112.261403) + (xy 137.263738 112.364783) + (xy 137.259637 112.374682) + (xy 137.249738 112.378783) + (xy 137.24779 112.378647) + (xy 136.686057 112.299698) + (xy 136.676824 112.294259) + (xy 136.674005 112.285834) + (xy 136.674005 111.636588) + (xy 136.673645 111.634779) + (xy 136.668175 111.607272) + (xy 136.645963 111.574028) + (xy 136.612719 111.551816) + (xy 136.612718 111.551815) + (xy 136.612717 111.551815) + (xy 136.583405 111.545985) + (xy 136.566566 111.545985) + (xy 136.556667 111.541884) + (xy 136.552566 111.531985) + (xy 136.554086 111.52564) + (xy 136.604283 111.426913) + (xy 136.816541 111.009446) + (xy 136.816559 111.00942) + (xy 136.817413 111.007738) + (xy 136.817415 111.007738) + (xy 136.829702 110.983563) + (xy 136.829716 110.983551) + (xy 136.832467 110.978135) + (xy 136.832468 110.978136) + (xy 136.840936 110.96147) + (xy 136.840936 110.961468) + (xy 136.841135 110.961078) + (xy 136.841153 110.961028) + (xy 136.84138 110.960219) + (xy 136.853466 110.926245) + (xy 136.861081 110.891069) + (xy 136.861336 110.890188) + (xy 136.861339 110.890181) + (xy 136.894176 110.503942) + (xy 137.799246 110.503942) + (xy 137.799246 110.675783) + (xy 137.800984 110.684536) + (xy 137.807616 110.694461) + (xy 137.817538 110.70109) + (xy 137.826289 110.70283) + (xy 138.111745 110.70283) + (xy 138.111745 110.503942) + (xy 138.146745 110.503942) + (xy 138.146745 110.70283) + (xy 138.432197 110.70283) + (xy 138.44095 110.701091) + (xy 138.450875 110.694459) + (xy 138.457504 110.684538) + (xy 138.457504 110.684536) + (xy 138.459245 110.675786) + (xy 138.459245 110.503942) + (xy 138.146745 110.503942) + (xy 138.111745 110.503942) + (xy 137.799246 110.503942) + (xy 136.894176 110.503942) + (xy 136.897152 110.468942) + (xy 137.799245 110.468942) + (xy 138.111745 110.468942) + (xy 138.111745 110.270053) + (xy 138.146745 110.270053) + (xy 138.146745 110.468942) + (xy 138.459244 110.468942) + (xy 138.459244 110.2971) + (xy 138.457505 110.288347) + (xy 138.450873 110.278422) + (xy 138.440951 110.271793) + (xy 138.432201 110.270053) + (xy 138.146745 110.270053) + (xy 138.111745 110.270053) + (xy 137.826292 110.270053) + (xy 137.817539 110.271792) + (xy 137.807614 110.278424) + (xy 137.800985 110.288345) + (xy 137.800985 110.288347) + (xy 137.799245 110.297097) + (xy 137.799245 110.468942) + (xy 136.897152 110.468942) + (xy 137.063158 108.516323) + (xy 137.152234 108.516323) + (xy 137.152234 108.710664) + (xy 137.153972 108.719417) + (xy 137.160604 108.729342) + (xy 137.170526 108.735971) + (xy 137.179277 108.737711) + (xy 137.464733 108.737711) + (xy 137.464733 108.516323) + (xy 137.499733 108.516323) + (xy 137.499733 108.737711) + (xy 137.785185 108.737711) + (xy 137.793938 108.735972) + (xy 137.803863 108.72934) + (xy 137.810492 108.719419) + (xy 137.810492 108.719417) + (xy 137.812233 108.710667) + (xy 137.812233 108.516323) + (xy 137.499733 108.516323) + (xy 137.464733 108.516323) + (xy 137.152234 108.516323) + (xy 137.063158 108.516323) + (xy 137.066134 108.481323) + (xy 137.152233 108.481323) + (xy 137.464733 108.481323) + (xy 137.464733 108.259934) + (xy 137.499733 108.259934) + (xy 137.499733 108.481323) + (xy 137.812232 108.481323) + (xy 137.812232 108.286981) + (xy 137.810493 108.278228) + (xy 137.803861 108.268303) + (xy 137.793939 108.261674) + (xy 137.785189 108.259934) + (xy 137.499733 108.259934) + (xy 137.464733 108.259934) + (xy 137.17928 108.259934) + (xy 137.170527 108.261673) + (xy 137.160602 108.268305) + (xy 137.153973 108.278226) + (xy 137.153973 108.278228) + (xy 137.152233 108.286978) + (xy 137.152233 108.481323) + (xy 137.066134 108.481323) + (xy 137.119436 107.854372) + (xy 137.124361 107.844856) + (xy 137.134572 107.841609) + (xy 137.141163 107.843918) + (xy 137.14302 107.845159) + (xy 137.172334 107.85099) + (xy 137.792131 107.850989) + (xy 137.821446 107.845159) + (xy 137.85469 107.822947) + (xy 137.876902 107.789703) + (xy 137.882733 107.760389) + (xy 137.882732 107.322814) + (xy 137.876902 107.293499) + (xy 137.85469 107.260255) + (xy 137.821446 107.238043) + (xy 137.821445 107.238042) + (xy 137.821444 107.238042) + (xy 137.792132 107.232212) + (xy 137.67513 107.232212) + (xy 137.665231 107.228111) + (xy 137.66113 107.218212) + (xy 137.661201 107.216808) + (xy 137.662339 107.205521) + (xy 137.677924 107.050872) + (xy 137.685858 106.972141) + (xy 137.69093 106.962703) + (xy 137.699787 106.959545) + (xy 137.745762 106.959545) + (xy 137.745763 106.959545) + (xy 137.775078 106.953715) + (xy 137.808322 106.931503) + (xy 137.830534 106.898259) + (xy 137.832134 106.890213) + (xy 137.838087 106.881305) + (xy 137.848596 106.879214) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 134.210999 97.027162) + (xy 134.217333 97.035804) + (xy 134.217734 97.039129) + (xy 134.217734 97.432483) + (xy 134.220954 97.448671) + (xy 134.223565 97.4618) + (xy 134.245777 97.495044) + (xy 134.279021 97.517256) + (xy 134.308335 97.523087) + (xy 134.385611 97.523086) + (xy 134.39551 97.527186) + (xy 134.399533 97.535612) + (xy 134.584162 99.279683) + (xy 134.581127 99.289959) + (xy 134.571714 99.295079) + (xy 134.570241 99.295157) + (xy 134.555726 99.295157) + (xy 134.52641 99.300988) + (xy 134.493166 99.3232) + (xy 134.470953 99.356445) + (xy 134.465123 99.385758) + (xy 134.465123 100.005553) + (xy 134.468776 100.023917) + (xy 134.470954 100.03487) + (xy 134.493166 100.068114) + (xy 134.52641 100.090326) + (xy 134.548572 100.094734) + (xy 134.557479 100.100686) + (xy 134.559658 100.110709) + (xy 134.539008 100.237791) + (xy 134.533373 100.246905) + (xy 134.525189 100.249546) + (xy 134.445968 100.249546) + (xy 134.416652 100.255377) + (xy 134.383408 100.277589) + (xy 134.361195 100.310834) + (xy 134.355365 100.340147) + (xy 134.355365 101.249942) + (xy 134.355366 101.249945) + (xy 134.361196 101.279259) + (xy 134.383408 101.312503) + (xy 134.416652 101.334715) + (xy 134.445966 101.340546) + (xy 134.745763 101.340545) + (xy 134.775078 101.334715) + (xy 134.808322 101.312503) + (xy 134.830534 101.279259) + (xy 134.832134 101.271213) + (xy 134.838087 101.262305) + (xy 134.848596 101.260214) + (xy 134.857505 101.266167) + (xy 134.859596 101.271214) + (xy 134.861195 101.279258) + (xy 134.868566 101.290289) + (xy 134.883408 101.312503) + (xy 134.916652 101.334715) + (xy 134.945966 101.340546) + (xy 135.245763 101.340545) + (xy 135.275078 101.334715) + (xy 135.308322 101.312503) + (xy 135.330534 101.279259) + (xy 135.332134 101.271213) + (xy 135.338087 101.262305) + (xy 135.348596 101.260214) + (xy 135.357505 101.266167) + (xy 135.359596 101.271214) + (xy 135.361195 101.279258) + (xy 135.368566 101.290289) + (xy 135.383408 101.312503) + (xy 135.416652 101.334715) + (xy 135.445966 101.340546) + (xy 135.745763 101.340545) + (xy 135.775078 101.334715) + (xy 135.808322 101.312503) + (xy 135.830534 101.279259) + (xy 135.832134 101.271213) + (xy 135.838087 101.262305) + (xy 135.848596 101.260214) + (xy 135.857505 101.266167) + (xy 135.859596 101.271214) + (xy 135.861195 101.279258) + (xy 135.868566 101.290289) + (xy 135.883408 101.312503) + (xy 135.916652 101.334715) + (xy 135.945966 101.340546) + (xy 136.245763 101.340545) + (xy 136.275078 101.334715) + (xy 136.308322 101.312503) + (xy 136.330534 101.279259) + (xy 136.332134 101.271213) + (xy 136.338087 101.262305) + (xy 136.348596 101.260214) + (xy 136.357505 101.266167) + (xy 136.359596 101.271214) + (xy 136.361195 101.279258) + (xy 136.368566 101.290289) + (xy 136.383408 101.312503) + (xy 136.416652 101.334715) + (xy 136.445966 101.340546) + (xy 136.745763 101.340545) + (xy 136.775078 101.334715) + (xy 136.808322 101.312503) + (xy 136.830534 101.279259) + (xy 136.832134 101.271213) + (xy 136.838087 101.262305) + (xy 136.848596 101.260214) + (xy 136.857505 101.266167) + (xy 136.859596 101.271214) + (xy 136.861195 101.279258) + (xy 136.868566 101.290289) + (xy 136.883408 101.312503) + (xy 136.916652 101.334715) + (xy 136.945966 101.340546) + (xy 137.245763 101.340545) + (xy 137.275078 101.334715) + (xy 137.308322 101.312503) + (xy 137.330534 101.279259) + (xy 137.332134 101.271213) + (xy 137.338087 101.262305) + (xy 137.348596 101.260214) + (xy 137.357505 101.266167) + (xy 137.359596 101.271214) + (xy 137.361195 101.279258) + (xy 137.368566 101.290289) + (xy 137.383408 101.312503) + (xy 137.416652 101.334715) + (xy 137.445966 101.340546) + (xy 137.745763 101.340545) + (xy 137.775078 101.334715) + (xy 137.808322 101.312503) + (xy 137.830534 101.279259) + (xy 137.832134 101.271213) + (xy 137.838087 101.262305) + (xy 137.848596 101.260214) + (xy 137.857505 101.266167) + (xy 137.859596 101.271214) + (xy 137.861195 101.279258) + (xy 137.868566 101.290289) + (xy 137.883408 101.312503) + (xy 137.916652 101.334715) + (xy 137.945966 101.340546) + (xy 138.245763 101.340545) + (xy 138.275078 101.334715) + (xy 138.308322 101.312503) + (xy 138.330534 101.279259) + (xy 138.332134 101.271213) + (xy 138.338087 101.262305) + (xy 138.348596 101.260214) + (xy 138.357505 101.266167) + (xy 138.359596 101.271214) + (xy 138.361195 101.279258) + (xy 138.368566 101.290289) + (xy 138.383408 101.312503) + (xy 138.416652 101.334715) + (xy 138.445966 101.340546) + (xy 138.745763 101.340545) + (xy 138.775078 101.334715) + (xy 138.808322 101.312503) + (xy 138.830534 101.279259) + (xy 138.836365 101.249945) + (xy 138.836364 100.340148) + (xy 138.830534 100.310833) + (xy 138.808322 100.277589) + (xy 138.775078 100.255377) + (xy 138.775077 100.255376) + (xy 138.775076 100.255376) + (xy 138.746035 100.2496) + (xy 138.745764 100.249546) + (xy 138.745763 100.249546) + (xy 138.445968 100.249546) + (xy 138.416652 100.255377) + (xy 138.383408 100.277589) + (xy 138.361195 100.310833) + (xy 138.359595 100.318878) + (xy 138.353641 100.327787) + (xy 138.343132 100.329877) + (xy 138.334223 100.323923) + (xy 138.332134 100.318878) + (xy 138.330534 100.310833) + (xy 138.308322 100.277589) + (xy 138.275078 100.255377) + (xy 138.275077 100.255376) + (xy 138.275076 100.255376) + (xy 138.245764 100.249546) + (xy 138.241703 100.249546) + (xy 138.231804 100.245445) + (xy 138.227707 100.235889) + (xy 138.227545 100.229273) + (xy 138.225446 100.14361) + (xy 138.229303 100.133616) + (xy 138.233082 100.130798) + (xy 138.282821 100.105456) + (xy 138.362226 100.026051) + (xy 138.413206 99.925996) + (xy 138.430773 99.815084) + (xy 138.413206 99.704172) + (xy 138.362226 99.604117) + (xy 138.362225 99.604115) + (xy 138.282822 99.524712) + (xy 138.182766 99.473732) + (xy 138.182767 99.473732) + (xy 138.071854 99.456165) + (xy 137.960941 99.473732) + (xy 137.860885 99.524712) + (xy 137.781482 99.604115) + (xy 137.730502 99.704171) + (xy 137.712935 99.815084) + (xy 137.730502 99.925996) + (xy 137.781482 100.026052) + (xy 137.860885 100.105455) + (xy 137.860887 100.105456) + (xy 137.916155 100.133616) + (xy 137.926905 100.139093) + (xy 137.933864 100.147241) + (xy 137.934545 100.151224) + (xy 137.93671 100.239554) + (xy 137.932853 100.249551) + (xy 137.925445 100.253628) + (xy 137.916652 100.255376) + (xy 137.883408 100.277589) + (xy 137.861195 100.310833) + (xy 137.859595 100.318878) + (xy 137.853641 100.327787) + (xy 137.843132 100.329877) + (xy 137.834223 100.323923) + (xy 137.832134 100.318878) + (xy 137.830534 100.310833) + (xy 137.808322 100.277589) + (xy 137.775078 100.255377) + (xy 137.775077 100.255376) + (xy 137.775076 100.255376) + (xy 137.746035 100.2496) + (xy 137.745764 100.249546) + (xy 137.745763 100.249546) + (xy 137.445968 100.249546) + (xy 137.416652 100.255377) + (xy 137.383408 100.277589) + (xy 137.361195 100.310833) + (xy 137.359595 100.318878) + (xy 137.353641 100.327787) + (xy 137.343132 100.329877) + (xy 137.334223 100.323923) + (xy 137.332134 100.318878) + (xy 137.330534 100.310833) + (xy 137.308322 100.277589) + (xy 137.275078 100.255377) + (xy 137.275077 100.255376) + (xy 137.275076 100.255376) + (xy 137.249465 100.250282) + (xy 137.240555 100.244329) + (xy 137.238196 100.236632) + (xy 137.23668 99.969718) + (xy 137.240725 99.959796) + (xy 137.250602 99.955639) + (xy 137.39924 99.955639) + (xy 137.399241 99.955639) + (xy 137.428556 99.949809) + (xy 137.4618 99.927597) + (xy 137.484012 99.894353) + (xy 137.489843 99.865039) + (xy 137.489842 99.427464) + (xy 137.484012 99.398149) + (xy 137.4618 99.364905) + (xy 137.428556 99.342693) + (xy 137.428555 99.342692) + (xy 137.428554 99.342692) + (xy 137.399242 99.336862) + (xy 136.803843 99.336862) + (xy 136.793944 99.332761) + (xy 136.789843 99.322862) + (xy 136.789843 98.941917) + (xy 136.793944 98.932018) + (xy 136.803843 98.927917) + (xy 137.071843 98.927917) + (xy 137.071843 98.706529) + (xy 137.106843 98.706529) + (xy 137.106843 98.927917) + (xy 137.392295 98.927917) + (xy 137.401048 98.926178) + (xy 137.410973 98.919546) + (xy 137.417602 98.909625) + (xy 137.417602 98.909623) + (xy 137.419343 98.900873) + (xy 137.419343 98.706529) + (xy 137.106843 98.706529) + (xy 137.071843 98.706529) + (xy 137.071843 98.45014) + (xy 137.106843 98.45014) + (xy 137.106843 98.671529) + (xy 137.419342 98.671529) + (xy 137.419342 98.477187) + (xy 137.417603 98.468434) + (xy 137.410971 98.458509) + (xy 137.401049 98.45188) + (xy 137.392299 98.45014) + (xy 137.106843 98.45014) + (xy 137.071843 98.45014) + (xy 136.804859 98.45014) + (xy 136.79496 98.446039) + (xy 136.790859 98.43614) + (xy 136.790863 98.435816) + (xy 136.791046 98.427868) + (xy 136.791029 98.427611) + (xy 136.804249 97.842774) + (xy 136.808572 97.83297) + (xy 136.818561 97.829095) + (xy 136.82798 97.83303) + (xy 140.264543 101.159111) + (xy 140.268805 101.168941) + (xy 140.264867 101.178906) + (xy 140.256997 101.182998) + (xy 140.166866 101.197274) + (xy 140.06681 101.248254) + (xy 139.987407 101.327657) + (xy 139.952043 101.397061) + (xy 139.943895 101.40402) + (xy 139.933213 101.403179) + (xy 139.927928 101.398483) + (xy 139.926978 101.397061) + (xy 139.923322 101.391589) + (xy 139.890078 101.369377) + (xy 139.890077 101.369376) + (xy 139.890076 101.369376) + (xy 139.868041 101.364993) + (xy 139.860764 101.363546) + (xy 139.860763 101.363546) + (xy 138.950968 101.363546) + (xy 138.921652 101.369377) + (xy 138.888408 101.391589) + (xy 138.866195 101.424834) + (xy 138.860365 101.454147) + (xy 138.860365 101.753942) + (xy 138.860366 101.753945) + (xy 138.866196 101.783259) + (xy 138.888408 101.816503) + (xy 138.916236 101.835096) + (xy 138.921652 101.838715) + (xy 138.929696 101.840315) + (xy 138.938605 101.846268) + (xy 138.940696 101.856777) + (xy 138.934743 101.865686) + (xy 138.929696 101.867777) + (xy 138.921652 101.869376) + (xy 138.888408 101.891589) + (xy 138.866195 101.924834) + (xy 138.860365 101.954147) + (xy 138.860365 102.253942) + (xy 138.862764 102.266004) + (xy 138.866196 102.283259) + (xy 138.888408 102.316503) + (xy 138.921652 102.338715) + (xy 138.929696 102.340315) + (xy 138.938605 102.346268) + (xy 138.940696 102.356777) + (xy 138.934743 102.365686) + (xy 138.929696 102.367777) + (xy 138.921652 102.369376) + (xy 138.888408 102.391589) + (xy 138.866195 102.424834) + (xy 138.860365 102.454147) + (xy 138.860365 102.753942) + (xy 138.860366 102.753945) + (xy 138.866196 102.783259) + (xy 138.888408 102.816503) + (xy 138.91762 102.836021) + (xy 138.921652 102.838715) + (xy 138.929696 102.840315) + (xy 138.938605 102.846268) + (xy 138.940696 102.856777) + (xy 138.934743 102.865686) + (xy 138.929696 102.867777) + (xy 138.921652 102.869376) + (xy 138.888408 102.891589) + (xy 138.866195 102.924834) + (xy 138.860365 102.954147) + (xy 138.860365 103.253942) + (xy 138.860366 103.253945) + (xy 138.866196 103.283259) + (xy 138.888408 103.316503) + (xy 138.921652 103.338715) + (xy 138.929696 103.340315) + (xy 138.938605 103.346268) + (xy 138.940696 103.356777) + (xy 138.934743 103.365686) + (xy 138.929696 103.367777) + (xy 138.921652 103.369376) + (xy 138.888408 103.391589) + (xy 138.866195 103.424834) + (xy 138.860365 103.454147) + (xy 138.860365 103.753942) + (xy 138.864748 103.77598) + (xy 138.866196 103.783259) + (xy 138.888408 103.816503) + (xy 138.911957 103.832237) + (xy 138.921652 103.838715) + (xy 138.929696 103.840315) + (xy 138.938605 103.846268) + (xy 138.940696 103.856777) + (xy 138.934743 103.865686) + (xy 138.929696 103.867777) + (xy 138.921652 103.869376) + (xy 138.888408 103.891589) + (xy 138.866195 103.924834) + (xy 138.860365 103.954147) + (xy 138.860365 104.253942) + (xy 138.860366 104.253945) + (xy 138.866196 104.283259) + (xy 138.888408 104.316503) + (xy 138.921652 104.338715) + (xy 138.929696 104.340315) + (xy 138.938605 104.346268) + (xy 138.940696 104.356777) + (xy 138.934743 104.365686) + (xy 138.929696 104.367777) + (xy 138.921652 104.369376) + (xy 138.888408 104.391589) + (xy 138.866195 104.424834) + (xy 138.860365 104.454147) + (xy 138.860365 104.753942) + (xy 138.860366 104.753945) + (xy 138.866196 104.783259) + (xy 138.888408 104.816503) + (xy 138.921652 104.838715) + (xy 138.929696 104.840315) + (xy 138.938605 104.846268) + (xy 138.940696 104.856777) + (xy 138.934743 104.865686) + (xy 138.929696 104.867777) + (xy 138.921652 104.869376) + (xy 138.888408 104.891589) + (xy 138.866195 104.924834) + (xy 138.860365 104.954147) + (xy 138.860365 105.253942) + (xy 138.860366 105.253945) + (xy 138.866196 105.283259) + (xy 138.888408 105.316503) + (xy 138.912765 105.332777) + (xy 138.921652 105.338715) + (xy 138.929696 105.340315) + (xy 138.938605 105.346268) + (xy 138.940696 105.356777) + (xy 138.934743 105.365686) + (xy 138.929696 105.367777) + (xy 138.921652 105.369376) + (xy 138.888408 105.391589) + (xy 138.866195 105.424834) + (xy 138.860365 105.454147) + (xy 138.860365 105.753942) + (xy 138.863387 105.769133) + (xy 138.866196 105.783259) + (xy 138.888408 105.816503) + (xy 138.921652 105.838715) + (xy 138.950966 105.844546) + (xy 139.440591 105.844545) + (xy 139.450289 105.848448) + (xy 140.06977 106.443401) + (xy 140.287413 106.652427) + (xy 140.305856 106.670139) + (xy 140.310155 106.679953) + (xy 140.310158 106.680236) + (xy 140.310158 107.120748) + (xy 140.312152 107.130771) + (xy 140.315989 107.150065) + (xy 140.338201 107.183309) + (xy 140.371445 107.205521) + (xy 140.400759 107.211352) + (xy 140.986556 107.211351) + (xy 141.015871 107.205521) + (xy 141.049115 107.183309) + (xy 141.071327 107.150065) + (xy 141.077158 107.120751) + (xy 141.077158 107.120748) + (xy 141.176158 107.120748) + (xy 141.178152 107.130771) + (xy 141.181989 107.150065) + (xy 141.204201 107.183309) + (xy 141.237445 107.205521) + (xy 141.266759 107.211352) + (xy 141.852556 107.211351) + (xy 141.881871 107.205521) + (xy 141.915115 107.183309) + (xy 141.937327 107.150065) + (xy 141.943158 107.120751) + (xy 141.943157 107.000253) + (xy 141.947257 106.990355) + (xy 141.957152 106.986254) + (xy 143.237156 106.985941) + (xy 143.247055 106.990039) + (xy 143.251158 106.999938) + (xy 143.251158 107.325248) + (xy 143.254811 107.343612) + (xy 143.256989 107.354565) + (xy 143.279201 107.387809) + (xy 143.312445 107.410021) + (xy 143.341759 107.415852) + (xy 143.873688 107.415851) + (xy 143.903003 107.410021) + (xy 143.936247 107.387809) + (xy 143.958459 107.354565) + (xy 143.96429 107.325251) + (xy 143.964289 106.857852) + (xy 144.759527 106.857852) + (xy 144.759527 107.318304) + (xy 144.761265 107.327057) + (xy 144.767897 107.336982) + (xy 144.777819 107.343611) + (xy 144.78657 107.345351) + (xy 145.028092 107.345351) + (xy 145.028092 106.857852) + (xy 145.063092 106.857852) + (xy 145.063092 107.345351) + (xy 145.30461 107.345351) + (xy 145.313363 107.343612) + (xy 145.323288 107.33698) + (xy 145.329917 107.327059) + (xy 145.329917 107.327057) + (xy 145.331658 107.318307) + (xy 145.331658 106.857852) + (xy 145.063092 106.857852) + (xy 145.028092 106.857852) + (xy 144.759527 106.857852) + (xy 143.964289 106.857852) + (xy 143.964289 106.822852) + (xy 144.759526 106.822852) + (xy 145.028092 106.822852) + (xy 145.028092 106.335352) + (xy 145.063092 106.335352) + (xy 145.063092 106.822852) + (xy 145.331657 106.822852) + (xy 145.331657 106.362399) + (xy 145.329918 106.353646) + (xy 145.323286 106.343721) + (xy 145.313364 106.337092) + (xy 145.304614 106.335352) + (xy 145.063092 106.335352) + (xy 145.028092 106.335352) + (xy 144.786573 106.335352) + (xy 144.77782 106.337091) + (xy 144.767895 106.343723) + (xy 144.761266 106.353644) + (xy 144.761266 106.353646) + (xy 144.759526 106.362396) + (xy 144.759526 106.822852) + (xy 143.964289 106.822852) + (xy 143.964289 106.355454) + (xy 143.958459 106.326139) + (xy 143.936247 106.292895) + (xy 143.903003 106.270683) + (xy 143.903002 106.270682) + (xy 143.903001 106.270682) + (xy 143.880966 106.266299) + (xy 143.873689 106.264852) + (xy 143.873688 106.264852) + (xy 143.341761 106.264852) + (xy 143.312445 106.270683) + (xy 143.279201 106.292895) + (xy 143.256988 106.32614) + (xy 143.251158 106.355453) + (xy 143.251158 106.680941) + (xy 143.247057 106.69084) + (xy 143.237161 106.694941) + (xy 141.95716 106.695254) + (xy 141.94726 106.691156) + (xy 141.943157 106.681257) + (xy 141.943157 106.560955) + (xy 141.939252 106.54132) + (xy 141.937327 106.531639) + (xy 141.915115 106.498395) + (xy 141.881871 106.476183) + (xy 141.88187 106.476182) + (xy 141.881869 106.476182) + (xy 141.859834 106.471799) + (xy 141.852557 106.470352) + (xy 141.852556 106.470352) + (xy 141.266761 106.470352) + (xy 141.237445 106.476183) + (xy 141.204201 106.498395) + (xy 141.181988 106.53164) + (xy 141.176158 106.560953) + (xy 141.176158 107.120748) + (xy 141.077158 107.120748) + (xy 141.077157 106.560954) + (xy 141.071327 106.531639) + (xy 141.049115 106.498395) + (xy 141.015871 106.476183) + (xy 141.01587 106.476182) + (xy 141.015869 106.476182) + (xy 140.986557 106.470352) + (xy 140.523571 106.470352) + (xy 140.513873 106.466449) + (xy 140.434801 106.390508) + (xy 140.064173 106.034553) + (xy 139.884692 105.862178) + (xy 139.880393 105.852364) + (xy 139.884293 105.842383) + (xy 139.88904 105.839144) + (xy 139.890071 105.838716) + (xy 139.890078 105.838715) + (xy 139.923322 105.816503) + (xy 139.945534 105.783259) + (xy 139.951365 105.753945) + (xy 139.951364 105.454148) + (xy 139.945534 105.424833) + (xy 139.923322 105.391589) + (xy 139.897627 105.374421) + (xy 139.890077 105.369376) + (xy 139.882032 105.367776) + (xy 139.873123 105.361822) + (xy 139.871033 105.351313) + (xy 139.876987 105.342404) + (xy 139.88203 105.340315) + (xy 139.890078 105.338715) + (xy 139.898965 105.332777) + (xy 139.904389 105.329153) + (xy 139.91423 105.326946) + (xy 148.022536 106.535805) + (xy 148.031722 106.54132) + (xy 148.034298 106.54746) + (xy 148.035076 106.552367) + (xy 148.035077 106.552372) + (xy 148.086057 106.652428) + (xy 148.16546 106.731831) + (xy 148.165462 106.731832) + (xy 148.264668 106.782379) + (xy 148.271626 106.790526) + (xy 148.270785 106.801208) + (xy 148.265201 106.807039) + (xy 142.609282 110.004672) + (xy 142.60926 110.004683) + (xy 142.562301 110.031234) + (xy 142.545664 110.040638) + (xy 142.545633 110.040657) + (xy 142.542123 110.042642) + (xy 142.542115 110.042648) + (xy 142.540076 110.044363) + (xy 142.539482 110.044811) + (xy 142.507885 110.066105) + (xy 142.504873 110.068498) + (xy 142.501363 110.070535) + (xy 142.495265 110.072973) + (xy 142.472164 110.094489) + (xy 142.472159 110.094494) + (xy 142.466322 110.09993) + (xy 142.455464 110.110044) + (xy 142.417915 110.145015) + (xy 142.417913 110.145017) + (xy 142.113722 110.428335) + (xy 142.103683 110.432081) + (xy 142.094602 110.428301) + (xy 141.9927 110.332722) + (xy 141.044691 109.443532) + (xy 139.049863 107.572474) + (xy 139.045448 107.562711) + (xy 139.045441 107.562263) + (xy 139.045441 107.372865) + (xy 139.045441 107.372864) + (xy 139.039611 107.343549) + (xy 139.017399 107.310305) + (xy 138.984155 107.288093) + (xy 138.984154 107.288092) + (xy 138.984153 107.288092) + (xy 138.954841 107.282262) + (xy 138.93673 107.282262) + (xy 138.926831 107.278161) + (xy 138.922742 107.268845) + (xy 138.917273 107.137611) + (xy 138.88549 106.374985) + (xy 138.867223 106.295702) + (xy 138.852036 106.273314) + (xy 138.838778 106.253769) + (xy 138.836364 106.24591) + (xy 138.836364 105.959149) + (xy 138.835857 105.9566) + (xy 138.830534 105.929833) + (xy 138.808322 105.896589) + (xy 138.775078 105.874377) + (xy 138.775077 105.874376) + (xy 138.775076 105.874376) + (xy 138.753041 105.869993) + (xy 138.745764 105.868546) + (xy 138.745763 105.868546) + (xy 138.445968 105.868546) + (xy 138.416652 105.874377) + (xy 138.383408 105.896589) + (xy 138.361195 105.929833) + (xy 138.359595 105.937878) + (xy 138.353641 105.946787) + (xy 138.343132 105.948877) + (xy 138.334223 105.942923) + (xy 138.332134 105.937878) + (xy 138.330534 105.929833) + (xy 138.308322 105.896589) + (xy 138.275078 105.874377) + (xy 138.275077 105.874376) + (xy 138.275076 105.874376) + (xy 138.253041 105.869993) + (xy 138.245764 105.868546) + (xy 138.245763 105.868546) + (xy 137.945968 105.868546) + (xy 137.916652 105.874377) + (xy 137.883408 105.896589) + (xy 137.861195 105.929833) + (xy 137.859595 105.937878) + (xy 137.853641 105.946787) + (xy 137.843132 105.948877) + (xy 137.834223 105.942923) + (xy 137.832134 105.937878) + (xy 137.830534 105.929833) + (xy 137.808322 105.896589) + (xy 137.775078 105.874377) + (xy 137.775077 105.874376) + (xy 137.775076 105.874376) + (xy 137.753041 105.869993) + (xy 137.745764 105.868546) + (xy 137.745763 105.868546) + (xy 137.445968 105.868546) + (xy 137.416652 105.874377) + (xy 137.383408 105.896589) + (xy 137.361195 105.929833) + (xy 137.359595 105.937878) + (xy 137.353641 105.946787) + (xy 137.343132 105.948877) + (xy 137.334223 105.942923) + (xy 137.332134 105.937878) + (xy 137.330534 105.929833) + (xy 137.308322 105.896589) + (xy 137.275078 105.874377) + (xy 137.275077 105.874376) + (xy 137.275076 105.874376) + (xy 137.253041 105.869993) + (xy 137.245764 105.868546) + (xy 137.245763 105.868546) + (xy 136.945968 105.868546) + (xy 136.916652 105.874377) + (xy 136.883408 105.896589) + (xy 136.861195 105.929833) + (xy 136.859595 105.937878) + (xy 136.853641 105.946787) + (xy 136.843132 105.948877) + (xy 136.834223 105.942923) + (xy 136.832134 105.937878) + (xy 136.830534 105.929833) + (xy 136.808322 105.896589) + (xy 136.775078 105.874377) + (xy 136.775077 105.874376) + (xy 136.775076 105.874376) + (xy 136.753041 105.869993) + (xy 136.745764 105.868546) + (xy 136.745763 105.868546) + (xy 136.445968 105.868546) + (xy 136.416652 105.874377) + (xy 136.383408 105.896589) + (xy 136.361195 105.929833) + (xy 136.359595 105.937878) + (xy 136.353641 105.946787) + (xy 136.343132 105.948877) + (xy 136.334223 105.942923) + (xy 136.332134 105.937878) + (xy 136.330534 105.929833) + (xy 136.308322 105.896589) + (xy 136.275078 105.874377) + (xy 136.275077 105.874376) + (xy 136.275076 105.874376) + (xy 136.245764 105.868546) + (xy 136.018266 105.868546) + (xy 136.008367 105.864445) + (xy 136.005507 105.860308) + (xy 136.003104 105.854987) + (xy 136.003103 105.854969) + (xy 136.000646 105.849533) + (xy 136.000647 105.849533) + (xy 135.995634 105.838442) + (xy 135.992749 105.832051) + (xy 135.992746 105.832047) + (xy 135.992607 105.831739) + (xy 135.992593 105.831712) + (xy 135.983379 105.811325) + (xy 135.983378 105.811324) + (xy 135.983377 105.811321) + (xy 135.928667 105.747757) + (xy 135.928666 105.747756) + (xy 135.928665 105.747755) + (xy 135.869891 105.709806) + (xy 135.863799 105.700992) + (xy 135.865724 105.690451) + (xy 135.874538 105.684359) + (xy 135.877485 105.684045) + (xy 136.578365 105.684045) + (xy 136.578365 103.621546) + (xy 136.613365 103.621546) + (xy 136.613365 105.684045) + (xy 138.648817 105.684045) + (xy 138.65757 105.682306) + (xy 138.667495 105.675674) + (xy 138.674124 105.665753) + (xy 138.674124 105.665751) + (xy 138.675865 105.657001) + (xy 138.675865 103.621546) + (xy 136.613365 103.621546) + (xy 136.578365 103.621546) + (xy 134.515866 103.621546) + (xy 134.515866 105.656999) + (xy 134.516823 105.661819) + (xy 134.514729 105.672328) + (xy 134.505818 105.678278) + (xy 134.503091 105.678546) + (xy 134.490618 105.678546) + (xy 134.490545 105.678538) + (xy 134.489039 105.678538) + (xy 134.479662 105.67854) + (xy 134.461638 105.678544) + (xy 134.461624 105.678538) + (xy 134.45583 105.678538) + (xy 134.438322 105.678538) + (xy 134.43824 105.678538) + (xy 134.43798 105.678546) + (xy 134.436709 105.678546) + (xy 134.436707 105.678546) + (xy 134.436699 105.678547) + (xy 134.435901 105.678761) + (xy 134.434937 105.678947) + (xy 134.403568 105.682749) + (xy 134.372968 105.690267) + (xy 134.371996 105.690435) + (xy 134.371118 105.690522) + (xy 134.371112 105.690524) + (xy 134.369828 105.691009) + (xy 134.369681 105.69106) + (xy 134.35548 105.69643) + (xy 134.353181 105.697299) + (xy 134.350308 105.698384) + (xy 134.339598 105.698044) + (xy 134.332266 105.69023) + (xy 134.331364 105.685286) + (xy 134.331364 105.454149) + (xy 134.328634 105.440423) + (xy 134.325534 105.424833) + (xy 134.303322 105.391589) + (xy 134.277627 105.374421) + (xy 134.270077 105.369376) + (xy 134.262032 105.367776) + (xy 134.253123 105.361822) + (xy 134.251033 105.351313) + (xy 134.256987 105.342404) + (xy 134.26203 105.340315) + (xy 134.270078 105.338715) + (xy 134.303322 105.316503) + (xy 134.325534 105.283259) + (xy 134.331365 105.253945) + (xy 134.331364 104.954148) + (xy 134.325534 104.924833) + (xy 134.303322 104.891589) + (xy 134.278142 104.874765) + (xy 134.270077 104.869376) + (xy 134.262032 104.867776) + (xy 134.253123 104.861822) + (xy 134.251033 104.851313) + (xy 134.256987 104.842404) + (xy 134.26203 104.840315) + (xy 134.270078 104.838715) + (xy 134.303322 104.816503) + (xy 134.325534 104.783259) + (xy 134.331365 104.753945) + (xy 134.331364 104.454148) + (xy 134.325534 104.424833) + (xy 134.303322 104.391589) + (xy 134.270078 104.369377) + (xy 134.270077 104.369376) + (xy 134.262032 104.367776) + (xy 134.253123 104.361822) + (xy 134.251033 104.351313) + (xy 134.256987 104.342404) + (xy 134.26203 104.340315) + (xy 134.270078 104.338715) + (xy 134.303322 104.316503) + (xy 134.325534 104.283259) + (xy 134.331365 104.253945) + (xy 134.331364 103.954148) + (xy 134.325534 103.924833) + (xy 134.303322 103.891589) + (xy 134.270078 103.869377) + (xy 134.270077 103.869376) + (xy 134.262032 103.867776) + (xy 134.253123 103.861822) + (xy 134.251033 103.851313) + (xy 134.256987 103.842404) + (xy 134.26203 103.840315) + (xy 134.270078 103.838715) + (xy 134.303322 103.816503) + (xy 134.325534 103.783259) + (xy 134.331365 103.753945) + (xy 134.331364 103.586546) + (xy 134.515865 103.586546) + (xy 136.578365 103.586546) + (xy 136.578365 101.524046) + (xy 136.613365 101.524046) + (xy 136.613365 103.586546) + (xy 138.675864 103.586546) + (xy 138.675864 101.551093) + (xy 138.674125 101.54234) + (xy 138.667493 101.532415) + (xy 138.657571 101.525786) + (xy 138.648821 101.524046) + (xy 136.613365 101.524046) + (xy 136.578365 101.524046) + (xy 134.542912 101.524046) + (xy 134.534159 101.525785) + (xy 134.524234 101.532417) + (xy 134.517605 101.542338) + (xy 134.517605 101.54234) + (xy 134.515865 101.55109) + (xy 134.515865 103.586546) + (xy 134.331364 103.586546) + (xy 134.331364 103.454148) + (xy 134.325534 103.424833) + (xy 134.303322 103.391589) + (xy 134.281109 103.376747) + (xy 134.270077 103.369376) + (xy 134.262032 103.367776) + (xy 134.253123 103.361822) + (xy 134.251033 103.351313) + (xy 134.256987 103.342404) + (xy 134.26203 103.340315) + (xy 134.270078 103.338715) + (xy 134.303322 103.316503) + (xy 134.325534 103.283259) + (xy 134.331365 103.253945) + (xy 134.331364 102.954148) + (xy 134.325534 102.924833) + (xy 134.303322 102.891589) + (xy 134.270078 102.869377) + (xy 134.270077 102.869376) + (xy 134.262032 102.867776) + (xy 134.253123 102.861822) + (xy 134.251033 102.851313) + (xy 134.256987 102.842404) + (xy 134.26203 102.840315) + (xy 134.270078 102.838715) + (xy 134.303322 102.816503) + (xy 134.325534 102.783259) + (xy 134.331365 102.753945) + (xy 134.331364 102.454148) + (xy 134.325534 102.424833) + (xy 134.303322 102.391589) + (xy 134.270078 102.369377) + (xy 134.270077 102.369376) + (xy 134.262032 102.367776) + (xy 134.253123 102.361822) + (xy 134.251033 102.351313) + (xy 134.256987 102.342404) + (xy 134.26203 102.340315) + (xy 134.270078 102.338715) + (xy 134.303322 102.316503) + (xy 134.325534 102.283259) + (xy 134.331365 102.253945) + (xy 134.331364 101.954148) + (xy 134.325534 101.924833) + (xy 134.303322 101.891589) + (xy 134.270442 101.86962) + (xy 134.270077 101.869376) + (xy 134.262032 101.867776) + (xy 134.253123 101.861822) + (xy 134.251033 101.851313) + (xy 134.256987 101.842404) + (xy 134.26203 101.840315) + (xy 134.270078 101.838715) + (xy 134.303322 101.816503) + (xy 134.325534 101.783259) + (xy 134.331365 101.753945) + (xy 134.331364 101.454148) + (xy 134.325534 101.424833) + (xy 134.303322 101.391589) + (xy 134.270078 101.369377) + (xy 134.270077 101.369376) + (xy 134.270076 101.369376) + (xy 134.248041 101.364993) + (xy 134.240764 101.363546) + (xy 134.240763 101.363546) + (xy 133.330968 101.363546) + (xy 133.301652 101.369377) + (xy 133.268408 101.391589) + (xy 133.246195 101.424834) + (xy 133.240365 101.454147) + (xy 133.240365 101.753942) + (xy 133.240366 101.753945) + (xy 133.246196 101.783259) + (xy 133.268408 101.816503) + (xy 133.296236 101.835096) + (xy 133.301652 101.838715) + (xy 133.309696 101.840315) + (xy 133.318605 101.846268) + (xy 133.320696 101.856777) + (xy 133.314743 101.865686) + (xy 133.309696 101.867777) + (xy 133.301652 101.869376) + (xy 133.268408 101.891589) + (xy 133.246195 101.924834) + (xy 133.240365 101.954147) + (xy 133.240365 102.253942) + (xy 133.242764 102.266004) + (xy 133.246196 102.283259) + (xy 133.268408 102.316503) + (xy 133.301652 102.338715) + (xy 133.309696 102.340315) + (xy 133.318605 102.346268) + (xy 133.320696 102.356777) + (xy 133.314743 102.365686) + (xy 133.309696 102.367777) + (xy 133.301652 102.369376) + (xy 133.275185 102.38706) + (xy 133.269133 102.391105) + (xy 133.267262 102.392355) + (xy 133.266961 102.391904) + (xy 133.258992 102.395206) + (xy 133.249093 102.391105) + (xy 133.174972 102.316984) + (xy 133.074916 102.266004) + (xy 133.074917 102.266004) + (xy 133.014993 102.256513) + (xy 132.964004 102.248437) + (xy 132.964003 102.248437) + (xy 132.922077 102.255077) + (xy 132.911658 102.252575) + (xy 132.908079 102.248771) + (xy 132.749201 101.999379) + (xy 132.747341 101.988827) + (xy 132.75267 101.981038) + (xy 132.752597 101.980965) + (xy 132.752987 101.980574) + (xy 132.753232 101.980215) + (xy 132.753572 101.979989) + (xy 132.775784 101.946745) + (xy 132.781615 101.917431) + (xy 132.781614 101.467356) + (xy 132.775784 101.438041) + (xy 132.753572 101.404797) + (xy 132.720328 101.382585) + (xy 132.720327 101.382584) + (xy 132.720326 101.382584) + (xy 132.691014 101.376754) + (xy 132.095615 101.376754) + (xy 132.085716 101.372653) + (xy 132.081615 101.362754) + (xy 132.081615 100.981809) + (xy 132.085716 100.97191) + (xy 132.095615 100.967809) + (xy 132.363615 100.967809) + (xy 132.398614 100.967809) + (xy 132.684067 100.967809) + (xy 132.69282 100.96607) + (xy 132.702745 100.959438) + (xy 132.709374 100.949517) + (xy 132.709374 100.949515) + (xy 132.711115 100.940765) + (xy 132.711115 100.740171) + (xy 132.398615 100.740171) + (xy 132.398614 100.967809) + (xy 132.363615 100.967809) + (xy 132.363615 100.477532) + (xy 132.398614 100.477532) + (xy 132.398615 100.705171) + (xy 132.711114 100.705171) + (xy 132.711114 100.504579) + (xy 132.709375 100.495826) + (xy 132.702743 100.485901) + (xy 132.692821 100.479272) + (xy 132.684071 100.477532) + (xy 132.398614 100.477532) + (xy 132.363615 100.477532) + (xy 132.124788 100.477532) + (xy 132.114889 100.473431) + (xy 132.110788 100.463532) + (xy 132.112819 100.45627) + (xy 134.191767 97.031863) + (xy 134.200409 97.02553) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 125.734989 100.29962) + (xy 125.739267 100.308166) + (xy 126.688545 108.471077) + (xy 126.685616 108.481384) + (xy 126.67737 108.486425) + (xy 126.653898 108.491093) + (xy 126.620654 108.513305) + (xy 126.598441 108.54655) + (xy 126.592611 108.575863) + (xy 126.592611 109.18572) + (xy 126.591446 109.191311) + (xy 126.128784 110.253433) + (xy 126.128756 110.253509) + (xy 126.126354 110.259026) + (xy 126.110983 110.308002) + (xy 126.110981 110.308013) + (xy 126.106706 110.329383) + (xy 126.100743 110.338286) + (xy 126.090232 110.340365) + (xy 126.0852 110.338278) + (xy 126.076885 110.332722) + (xy 126.076884 110.332721) + (xy 126.076883 110.332721) + (xy 126.047571 110.326891) + (xy 125.995882 110.326891) + (xy 125.985983 110.32279) + (xy 125.981887 110.313269) + (xy 125.886309 106.779049) + (xy 125.711366 100.310159) + (xy 125.715198 100.300155) + (xy 125.724983 100.295788) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 125.949835 99.392766) + (xy 125.952317 99.395306) + (xy 125.95991 99.40536) + (xy 126.042906 99.515264) + (xy 126.193629 99.652666) + (xy 126.367031 99.760032) + (xy 126.36703 99.760032) + (xy 126.367033 99.760033) + (xy 126.557214 99.833709) + (xy 126.757694 99.871185) + (xy 126.859449 99.871185) + (xy 126.869348 99.875286) + (xy 126.872914 99.881355) + (xy 127.477555 102.008031) + (xy 128.806055 106.680704) + (xy 128.804818 106.691348) + (xy 128.80453 106.691841) + (xy 128.005241 107.997816) + (xy 127.715481 108.471262) + (xy 127.711008 108.47857) + (xy 127.702343 108.484873) + (xy 127.699067 108.485262) + (xy 127.674497 108.485262) + (xy 127.664598 108.481161) + (xy 127.660497 108.471262) + (xy 127.661508 108.466039) + (xy 128.095027 107.387808) + (xy 128.195065 107.138996) + (xy 128.202562 107.131342) + (xy 128.208054 107.13022) + (xy 128.402837 107.13022) + (xy 128.402838 107.13022) + (xy 128.432153 107.12439) + (xy 128.465397 107.102178) + (xy 128.487609 107.068934) + (xy 128.49344 107.03962) + (xy 128.493439 106.419823) + (xy 128.487609 106.390508) + (xy 128.465397 106.357264) + (xy 128.432153 106.335052) + (xy 128.432152 106.335051) + (xy 128.432151 106.335051) + (xy 128.410116 106.330668) + (xy 128.402839 106.329221) + (xy 128.402838 106.329221) + (xy 128.002765 106.329221) + (xy 127.973449 106.335052) + (xy 127.940205 106.357264) + (xy 127.917992 106.390509) + (xy 127.912162 106.419822) + (xy 127.912162 107.039619) + (xy 127.9144 107.050872) + (xy 127.913658 107.058825) + (xy 127.356218 108.445268) + (xy 127.356183 108.445335) + (xy 127.349603 108.461707) + (xy 127.348655 108.463429) + (xy 127.348703 108.463455) + (xy 127.348268 108.464259) + (xy 127.347589 108.466039) + (xy 127.342353 108.479756) + (xy 127.340139 108.485263) + (xy 127.336157 108.495165) + (xy 127.335929 108.496054) + (xy 127.335874 108.496039) + (xy 127.335401 108.49794) + (xy 127.329078 108.514479) + (xy 127.329036 108.514638) + (xy 127.200967 108.85014) + (xy 127.193606 108.857926) + (xy 127.182895 108.858226) + (xy 127.175109 108.850865) + (xy 127.173888 108.845147) + (xy 127.173888 108.575865) + (xy 127.172 108.566373) + (xy 127.168058 108.546549) + (xy 127.145846 108.513305) + (xy 127.112602 108.491093) + (xy 127.112601 108.491092) + (xy 127.1126 108.491092) + (xy 127.083288 108.485262) + (xy 126.995622 108.485262) + (xy 126.985723 108.481161) + (xy 126.981716 108.472879) + (xy 126.909789 107.854373) + (xy 125.927239 99.405357) + (xy 125.930168 99.395053) + (xy 125.939528 99.389837) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 134.810288 96.944568) + (xy 135.120734 97.247538) + (xy 135.124955 97.257385) + (xy 135.124956 97.257556) + (xy 135.124956 97.432483) + (xy 135.128176 97.448671) + (xy 135.130787 97.4618) + (xy 135.152999 97.495044) + (xy 135.186243 97.517256) + (xy 135.215557 97.523087) + (xy 135.603132 97.523086) + (xy 135.632447 97.517256) + (xy 135.665691 97.495044) + (xy 135.687903 97.4618) + (xy 135.693734 97.432486) + (xy 135.693733 97.431939) + (xy 135.697826 97.422039) + (xy 135.707722 97.417931) + (xy 135.707904 97.417931) + (xy 136.205903 97.42513) + (xy 136.215742 97.429374) + (xy 136.2197 97.439128) + (xy 136.2197 97.448669) + (xy 136.225531 97.477986) + (xy 136.225532 97.477988) + (xy 136.227733 97.481282) + (xy 136.230089 97.489376) + (xy 136.209045 98.420327) + (xy 136.208107 98.42506) + (xy 136.207843 98.425741) + (xy 136.207843 98.473564) + (xy 136.207381 98.493956) + (xy 136.207381 98.493957) + (xy 136.207659 98.49565) + (xy 136.207843 98.497913) + (xy 136.207843 99.850634) + (xy 136.207354 99.854301) + (xy 136.205341 99.861716) + (xy 136.205341 99.861717) + (xy 136.205341 99.861718) + (xy 136.207862 99.885741) + (xy 136.211017 99.915815) + (xy 136.215195 99.95564) + (xy 136.24441 100.234085) + (xy 136.241364 100.244358) + (xy 136.231947 100.24947) + (xy 136.230486 100.249546) + (xy 135.945968 100.249546) + (xy 135.916652 100.255377) + (xy 135.883408 100.277589) + (xy 135.861195 100.310833) + (xy 135.859595 100.318878) + (xy 135.853641 100.327787) + (xy 135.843132 100.329877) + (xy 135.834223 100.323923) + (xy 135.832134 100.318878) + (xy 135.830534 100.310833) + (xy 135.808322 100.277589) + (xy 135.775078 100.255377) + (xy 135.775077 100.255376) + (xy 135.775076 100.255376) + (xy 135.746035 100.2496) + (xy 135.745764 100.249546) + (xy 135.745763 100.249546) + (xy 135.445968 100.249546) + (xy 135.416652 100.255377) + (xy 135.383408 100.277589) + (xy 135.361195 100.310833) + (xy 135.359595 100.318878) + (xy 135.353641 100.327787) + (xy 135.343132 100.329877) + (xy 135.334223 100.323923) + (xy 135.332134 100.318878) + (xy 135.330534 100.310833) + (xy 135.308322 100.277589) + (xy 135.275078 100.255377) + (xy 135.275077 100.255376) + (xy 135.275076 100.255376) + (xy 135.246035 100.2496) + (xy 135.245764 100.249546) + (xy 135.245763 100.249546) + (xy 134.945968 100.249546) + (xy 134.916652 100.255377) + (xy 134.883408 100.277589) + (xy 134.861195 100.310833) + (xy 134.859595 100.318878) + (xy 134.853641 100.327787) + (xy 134.843132 100.329877) + (xy 134.834223 100.323923) + (xy 134.832134 100.318878) + (xy 134.830534 100.310833) + (xy 134.826694 100.305086) + (xy 134.824517 100.295067) + (xy 134.85493 100.107909) + (xy 134.860566 100.098797) + (xy 134.868749 100.096156) + (xy 134.993298 100.096156) + (xy 134.993299 100.096156) + (xy 135.022614 100.090326) + (xy 135.055858 100.068114) + (xy 135.07807 100.03487) + (xy 135.083901 100.005556) + (xy 135.0839 99.713157) + (xy 135.492846 99.713157) + (xy 135.492846 99.998609) + (xy 135.494584 100.007362) + (xy 135.501216 100.017287) + (xy 135.511138 100.023916) + (xy 135.519889 100.025656) + (xy 135.714234 100.025656) + (xy 135.714234 99.713157) + (xy 135.749234 99.713157) + (xy 135.749234 100.025656) + (xy 135.943575 100.025656) + (xy 135.952328 100.023917) + (xy 135.962253 100.017285) + (xy 135.968882 100.007364) + (xy 135.968882 100.007362) + (xy 135.970623 99.998612) + (xy 135.970623 99.713157) + (xy 135.749234 99.713157) + (xy 135.714234 99.713157) + (xy 135.492846 99.713157) + (xy 135.0839 99.713157) + (xy 135.0839 99.678157) + (xy 135.492845 99.678157) + (xy 135.714234 99.678157) + (xy 135.714234 99.365657) + (xy 135.749234 99.365657) + (xy 135.749234 99.678157) + (xy 135.970622 99.678157) + (xy 135.970622 99.392704) + (xy 135.968883 99.383951) + (xy 135.962251 99.374026) + (xy 135.952329 99.367397) + (xy 135.943579 99.365657) + (xy 135.749234 99.365657) + (xy 135.714234 99.365657) + (xy 135.519892 99.365657) + (xy 135.511139 99.367396) + (xy 135.501214 99.374028) + (xy 135.494585 99.383949) + (xy 135.494585 99.383951) + (xy 135.492845 99.392701) + (xy 135.492845 99.678157) + (xy 135.0839 99.678157) + (xy 135.0839 99.385759) + (xy 135.07807 99.356444) + (xy 135.055858 99.3232) + (xy 135.022614 99.300988) + (xy 135.022613 99.300987) + (xy 135.022612 99.300987) + (xy 134.9933 99.295157) + (xy 134.891023 99.295157) + (xy 134.881124 99.291056) + (xy 134.877101 99.282631) + (xy 134.843043 98.96091) + (xy 134.692283 97.536785) + (xy 134.695318 97.52651) + (xy 134.703473 97.521581) + (xy 134.725225 97.517256) + (xy 134.758469 97.495044) + (xy 134.780681 97.4618) + (xy 134.786512 97.432486) + (xy 134.786511 96.954587) + (xy 134.790611 96.944689) + (xy 134.800511 96.940588) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 149.295399 93.204601) + (xy 149.2995 93.2145) + (xy 149.2995 95.045762) + (xy 149.308868 95.065218) + (xy 149.309903 95.068176) + (xy 149.314709 95.08923) + (xy 149.328176 95.106116) + (xy 149.329841 95.108766) + (xy 149.339212 95.128224) + (xy 149.339213 95.128225) + (xy 149.356094 95.141688) + (xy 149.35831 95.143904) + (xy 149.371774 95.160786) + (xy 149.371776 95.160788) + (xy 149.371777 95.160788) + (xy 149.371778 95.160789) + (xy 149.391229 95.170157) + (xy 149.393883 95.171824) + (xy 149.405809 95.181335) + (xy 149.410769 95.18529) + (xy 149.431824 95.190095) + (xy 149.434776 95.191128) + (xy 149.454237 95.2005) + (xy 149.47741 95.2005) + (xy 154.2855 95.2005) + (xy 154.295399 95.204601) + (xy 154.2995 95.2145) + (xy 154.2995 103.6635) + (xy 154.295399 103.673399) + (xy 154.2855 103.6775) + (xy 151.135909 103.6775) + (xy 151.128685 103.679149) + (xy 151.12557 103.6795) + (xy 151.109735 103.6795) + (xy 151.095471 103.686368) + (xy 151.092514 103.687403) + (xy 151.06927 103.692709) + (xy 151.069268 103.69271) + (xy 151.050623 103.707578) + (xy 151.04797 103.709245) + (xy 151.027278 103.71921) + (xy 151.027274 103.719213) + (xy 151.012951 103.737173) + (xy 151.010735 103.739389) + (xy 150.997713 103.749774) + (xy 150.99771 103.749778) + (xy 150.990485 103.76478) + (xy 150.988818 103.767433) + (xy 150.97021 103.790768) + (xy 150.970209 103.79077) + (xy 150.963568 103.819862) + (xy 150.962534 103.822818) + (xy 150.958 103.832237) + (xy 150.958 103.842687) + (xy 150.957649 103.845802) + (xy 150.955 103.857408) + (xy 150.955 112.15259) + (xy 150.970209 112.219229) + (xy 150.97021 112.219231) + (xy 151.027276 112.290788) + (xy 151.027277 112.290788) + (xy 151.027278 112.290789) + (xy 151.070731 112.311716) + (xy 151.073133 112.313225) + (xy 151.073397 112.313352) + (xy 151.076077 112.314289) + (xy 151.109737 112.3305) + (xy 151.201263 112.3305) + (xy 151.201915 112.330185) + (xy 151.202539 112.329886) + (xy 151.208612 112.3285) + (xy 154.2855 112.3285) + (xy 154.295399 112.332601) + (xy 154.2995 112.3425) + (xy 154.2995 120.7855) + (xy 154.295399 120.795399) + (xy 154.2855 120.7995) + (xy 149.454235 120.7995) + (xy 149.434779 120.808868) + (xy 149.431822 120.809903) + (xy 149.41077 120.814709) + (xy 149.410767 120.81471) + (xy 149.393881 120.828176) + (xy 149.391228 120.829843) + (xy 149.371778 120.83921) + (xy 149.371774 120.839213) + (xy 149.358311 120.856095) + (xy 149.356095 120.858311) + (xy 149.339213 120.871774) + (xy 149.33921 120.871778) + (xy 149.329843 120.891228) + (xy 149.328176 120.893881) + (xy 149.31471 120.910767) + (xy 149.314709 120.91077) + (xy 149.309903 120.931822) + (xy 149.308868 120.934779) + (xy 149.2995 120.954235) + (xy 149.2995 122.7855) + (xy 149.295399 122.795399) + (xy 149.2855 122.7995) + (xy 124.7145 122.7995) + (xy 124.704601 122.795399) + (xy 124.7005 122.7855) + (xy 124.7005 121.971774) + (xy 126.072671 121.971774) + (xy 126.087303 122.064157) + (xy 126.144036 122.175502) + (xy 126.232398 122.263864) + (xy 126.2324 122.263865) + (xy 126.343744 122.320598) + (xy 126.467171 122.340147) + (xy 126.590598 122.320598) + (xy 126.701942 122.263865) + (xy 126.790306 122.175501) + (xy 126.847039 122.064157) + (xy 126.861671 121.971775) + (xy 126.861671 121.971774) + (xy 127.34267 121.971774) + (xy 127.357303 122.064157) + (xy 127.414036 122.175502) + (xy 127.502398 122.263864) + (xy 127.5024 122.263865) + (xy 127.613744 122.320598) + (xy 127.737171 122.340147) + (xy 127.860598 122.320598) + (xy 127.971942 122.263865) + (xy 128.060306 122.175501) + (xy 128.117039 122.064157) + (xy 128.131671 121.971775) + (xy 128.131671 121.971774) + (xy 128.612671 121.971774) + (xy 128.627303 122.064157) + (xy 128.684036 122.175502) + (xy 128.772398 122.263864) + (xy 128.7724 122.263865) + (xy 128.883744 122.320598) + (xy 129.007171 122.340147) + (xy 129.130598 122.320598) + (xy 129.241942 122.263865) + (xy 129.330306 122.175501) + (xy 129.387039 122.064157) + (xy 129.401671 121.971775) + (xy 129.401671 121.22973) + (xy 129.953171 121.22973) + (xy 129.953171 121.969074) + (xy 129.968013 122.053253) + (xy 130.025141 122.152203) + (xy 130.112672 122.22565) + (xy 130.220039 122.264729) + (xy 130.220042 122.26473) + (xy 130.259671 122.26473) + (xy 130.259671 121.22973) + (xy 130.294671 121.22973) + (xy 130.294671 122.26473) + (xy 130.3343 122.26473) + (xy 130.334302 122.264729) + (xy 130.441669 122.22565) + (xy 130.5292 122.152203) + (xy 130.586328 122.053253) + (xy 130.60117 121.969074) + (xy 130.601171 121.22973) + (xy 130.294671 121.22973) + (xy 130.259671 121.22973) + (xy 129.953171 121.22973) + (xy 129.401671 121.22973) + (xy 129.401671 121.19473) + (xy 129.953171 121.19473) + (xy 130.259671 121.19473) + (xy 130.259671 120.15973) + (xy 130.294671 120.15973) + (xy 130.294671 121.19473) + (xy 130.601171 121.19473) + (xy 130.60117 120.455385) + (xy 130.586328 120.371206) + (xy 130.5292 120.272256) + (xy 130.441669 120.198809) + (xy 130.334302 120.15973) + (xy 130.294671 120.15973) + (xy 130.259671 120.15973) + (xy 130.220039 120.15973) + (xy 130.112672 120.198809) + (xy 130.025141 120.272256) + (xy 129.968013 120.371206) + (xy 129.953171 120.455385) + (xy 129.953171 121.19473) + (xy 129.401671 121.19473) + (xy 129.401671 120.452685) + (xy 129.387039 120.360303) + (xy 129.330306 120.248959) + (xy 129.330305 120.248957) + (xy 129.241943 120.160595) + (xy 129.130598 120.103862) + (xy 129.130599 120.103862) + (xy 129.068884 120.094087) + (xy 129.007171 120.084313) + (xy 129.00717 120.084313) + (xy 128.883743 120.103862) + (xy 128.772398 120.160595) + (xy 128.684036 120.248957) + (xy 128.627303 120.360302) + (xy 128.612671 120.452685) + (xy 128.612671 121.971774) + (xy 128.131671 121.971774) + (xy 128.131671 120.452685) + (xy 128.117039 120.360303) + (xy 128.060306 120.248959) + (xy 128.060305 120.248957) + (xy 127.971943 120.160595) + (xy 127.860598 120.103862) + (xy 127.860599 120.103862) + (xy 127.737171 120.084313) + (xy 127.613743 120.103862) + (xy 127.502398 120.160595) + (xy 127.414036 120.248957) + (xy 127.357303 120.360302) + (xy 127.34267 120.452685) + (xy 127.34267 121.971774) + (xy 126.861671 121.971774) + (xy 126.861671 120.452685) + (xy 126.847039 120.360303) + (xy 126.790306 120.248959) + (xy 126.790305 120.248957) + (xy 126.701943 120.160595) + (xy 126.590598 120.103862) + (xy 126.590599 120.103862) + (xy 126.467171 120.084313) + (xy 126.343743 120.103862) + (xy 126.232398 120.160595) + (xy 126.144036 120.248957) + (xy 126.087303 120.360302) + (xy 126.072671 120.452685) + (xy 126.072671 121.971774) + (xy 124.7005 121.971774) + (xy 124.7005 119.453472) + (xy 139.416721 119.453472) + (xy 139.426783 119.639057) + (xy 139.476507 119.818147) + (xy 139.476507 119.818148) + (xy 139.563568 119.98236) + (xy 139.563573 119.982367) + (xy 139.683894 120.124021) + (xy 139.831855 120.236498) + (xy 139.831856 120.236498) + (xy 139.831861 120.236502) + (xy 140.000548 120.314545) + (xy 140.182067 120.3545) + (xy 140.182068 120.3545) + (xy 140.321325 120.3545) + (xy 140.321332 120.3545) + (xy 140.459775 120.339443) + (xy 140.635911 120.280096) + (xy 140.795171 120.184273) + (xy 140.930108 120.056454) + (xy 141.034413 119.902615) + (xy 141.094535 119.751721) + (xy 141.55362 119.751721) + (xy 141.55362 122.339173) + (xy 141.555358 122.347926) + (xy 141.56199 122.357851) + (xy 141.571912 122.36448) + (xy 141.580663 122.36622) + (xy 144.343119 122.36622) + (xy 144.343119 119.751721) + (xy 144.378119 119.751721) + (xy 144.378119 122.36622) + (xy 147.140571 122.36622) + (xy 147.149324 122.364481) + (xy 147.159249 122.357849) + (xy 147.165878 122.347928) + (xy 147.165878 122.347926) + (xy 147.167619 122.339176) + (xy 147.167619 119.751721) + (xy 144.378119 119.751721) + (xy 144.343119 119.751721) + (xy 141.55362 119.751721) + (xy 141.094535 119.751721) + (xy 141.103209 119.729951) + (xy 141.105378 119.716721) + (xy 141.553619 119.716721) + (xy 144.343119 119.716721) + (xy 144.343119 117.102221) + (xy 144.378119 117.102221) + (xy 144.378119 119.716721) + (xy 147.167618 119.716721) + (xy 147.167618 118.490183) + (xy 148.641691 118.490183) + (xy 148.651838 118.729034) + (xy 148.651838 118.72904) + (xy 148.651839 118.729042) + (xy 148.670521 118.815726) + (xy 148.702209 118.962762) + (xy 148.791348 119.184593) + (xy 148.79135 119.184596) + (xy 148.916695 119.388171) + (xy 148.916706 119.388186) + (xy 149.074656 119.567651) + (xy 149.074658 119.567653) + (xy 149.260672 119.717849) + (xy 149.469393 119.834448) + (xy 149.694817 119.914095) + (xy 149.930459 119.9545) + (xy 149.930462 119.9545) + (xy 150.109667 119.9545) + (xy 150.145984 119.951408) + (xy 150.28822 119.939303) + (xy 150.519587 119.879059) + (xy 150.737444 119.780581) + (xy 150.935525 119.646702) + (xy 151.108131 119.481273) + (xy 151.250297 119.289052) + (xy 151.357932 119.07557) + (xy 151.42794 118.846969) + (xy 151.458308 118.609824) + (xy 151.448161 118.370958) + (xy 151.397792 118.137243) + (xy 151.39779 118.137237) + (xy 151.308651 117.915406) + (xy 151.308649 117.915403) + (xy 151.183304 117.711828) + (xy 151.183293 117.711813) + (xy 151.025343 117.532348) + (xy 151.025342 117.532347) + (xy 150.839328 117.382151) + (xy 150.630607 117.265552) + (xy 150.51015 117.222992) + (xy 150.405184 117.185905) + (xy 150.346272 117.175803) + (xy 150.169541 117.1455) + (xy 149.990336 117.1455) + (xy 149.990333 117.1455) + (xy 149.811779 117.160697) + (xy 149.811774 117.160698) + (xy 149.580412 117.220941) + (xy 149.58041 117.220942) + (xy 149.362561 117.319416) + (xy 149.362553 117.319421) + (xy 149.16447 117.453301) + (xy 148.991872 117.618723) + (xy 148.991869 117.618726) + (xy 148.849704 117.810944) + (xy 148.742069 118.024426) + (xy 148.742066 118.024433) + (xy 148.67206 118.253027) + (xy 148.67206 118.253028) + (xy 148.641691 118.490183) + (xy 147.167618 118.490183) + (xy 147.167618 117.129268) + (xy 147.165879 117.120515) + (xy 147.159247 117.11059) + (xy 147.149325 117.103961) + (xy 147.140575 117.102221) + (xy 144.378119 117.102221) + (xy 144.343119 117.102221) + (xy 141.580666 117.102221) + (xy 141.571913 117.10396) + (xy 141.561988 117.110592) + (xy 141.555359 117.120513) + (xy 141.555359 117.120515) + (xy 141.553619 117.129265) + (xy 141.553619 119.716721) + (xy 141.105378 119.716721) + (xy 141.133278 119.546535) + (xy 141.123216 119.360942) + (xy 141.073492 119.181852) + (xy 141.073492 119.181851) + (xy 141.017145 119.07557) + (xy 140.986431 119.017638) + (xy 140.923496 118.943545) + (xy 140.866105 118.875978) + (xy 140.718144 118.763501) + (xy 140.718141 118.763499) + (xy 140.718139 118.763498) + (xy 140.549452 118.685455) + (xy 140.367933 118.6455) + (xy 140.228668 118.6455) + (xy 140.22866 118.6455) + (xy 140.090227 118.660556) + (xy 140.090216 118.660559) + (xy 139.914097 118.7199) + (xy 139.91409 118.719903) + (xy 139.75483 118.815726) + (xy 139.754828 118.815727) + (xy 139.619892 118.943545) + (xy 139.515586 119.097386) + (xy 139.446791 119.270047) + (xy 139.416721 119.453472) + (xy 124.7005 119.453472) + (xy 124.7005 96.410092) + (xy 125.373258 96.410092) + (xy 125.373419 96.499893) + (xy 125.373405 96.500125) + (xy 125.37344 96.513798) + (xy 125.373439 96.513802) + (xy 125.373483 96.531054) + (xy 125.37915 98.764669) + (xy 125.379172 98.773715) + (xy 125.379215 98.790945) + (xy 125.379189 98.791464) + (xy 125.37922 98.79261) + (xy 125.379223 98.793696) + (xy 125.379262 98.79418) + (xy 125.690759 110.312513) + (xy 125.686927 110.322519) + (xy 125.677142 110.326886) + (xy 125.676764 110.326891) + (xy 125.647497 110.326891) + (xy 125.618181 110.332722) + (xy 125.584937 110.354934) + (xy 125.562724 110.388179) + (xy 125.556894 110.417492) + (xy 125.556894 111.037287) + (xy 125.556895 111.03729) + (xy 125.562725 111.066604) + (xy 125.584937 111.099848) + (xy 125.618181 111.12206) + (xy 125.647495 111.127891) + (xy 125.667845 111.12789) + (xy 125.677744 111.13199) + (xy 125.681845 111.141889) + (xy 125.681829 111.142565) + (xy 125.505081 114.805503) + (xy 125.505078 114.805527) + (xy 125.50372 114.83372) + (xy 125.503187 114.844749) + (xy 125.503181 114.844885) + (xy 125.502919 114.850317) + (xy 125.502731 114.851557) + (xy 125.50279 114.851565) + (xy 125.502671 114.852469) + (xy 125.502671 114.855306) + (xy 125.502663 114.855642) + (xy 125.502528 114.858443) + (xy 125.502604 114.859357) + (xy 125.502537 114.859362) + (xy 125.502671 114.860603) + (xy 125.502671 114.86618) + (xy 125.50267 114.866243) + (xy 125.502671 114.8716) + (xy 125.502671 116.428287) + (xy 125.502669 116.428309) + (xy 125.50267 116.457034) + (xy 125.502661 116.457057) + (xy 125.502663 116.513088) + (xy 125.511772 116.573501) + (xy 125.517647 116.612459) + (xy 125.517648 116.612462) + (xy 125.517648 116.612463) + (xy 125.547274 116.708492) + (xy 125.553224 116.720845) + (xy 125.560685 116.736336) + (xy 125.560693 116.736355) + (xy 125.635757 116.892228) + (xy 125.635884 116.892452) + (xy 125.649107 116.919915) + (xy 125.649112 116.919925) + (xy 125.670051 116.950641) + (xy 125.705715 117.002959) + (xy 125.705717 117.002961) + (xy 125.705719 117.002964) + (xy 125.774058 117.076626) + (xy 125.774063 117.076631) + (xy 125.798117 117.095816) + (xy 125.798136 117.095833) + (xy 125.798374 117.096022) + (xy 125.798375 117.096024) + (xy 125.81729 117.111108) + (xy 125.839309 117.12867) + (xy 125.83931 117.12867) + (xy 125.841164 117.130149) + (xy 125.841171 117.130152) + (xy 125.890961 117.169858) + (xy 125.890982 117.169879) + (xy 125.892321 117.170947) + (xy 125.892322 117.170948) + (xy 125.913794 117.188067) + (xy 125.913818 117.188109) + (xy 125.918276 117.191664) + (xy 125.918277 117.191664) + (xy 125.957565 117.22299) + (xy 126.0446 117.273231) + (xy 126.13815 117.30994) + (xy 126.138152 117.30994) + (xy 126.138156 117.309942) + (xy 126.186491 117.32097) + (xy 126.337747 117.355494) + (xy 126.337779 117.355498) + (xy 126.35882 117.360312) + (xy 126.358824 117.360313) + (xy 126.442236 117.368648) + (xy 126.526036 117.366531) + (xy 126.550832 117.362769) + (xy 126.56703 117.360313) + (xy 126.567475 117.360245) + (xy 126.567475 117.360246) + (xy 126.600311 117.355279) + (xy 126.600312 117.355277) + (xy 126.602523 117.354943) + (xy 126.60253 117.35494) + (xy 129.01616 116.989736) + (xy 129.016244 116.989734) + (xy 129.017837 116.989492) + (xy 129.017839 116.989493) + (xy 129.048517 116.984841) + (xy 129.051129 116.984694) + (xy 129.053138 116.98477) + (xy 129.061063 116.98296) + (xy 129.061528 116.982872) + (xy 129.069572 116.981656) + (xy 129.071416 116.980849) + (xy 129.073901 116.98003) + (xy 129.168832 116.958362) + (xy 129.168849 116.95836) + (xy 129.170283 116.958032) + (xy 129.170286 116.958033) + (xy 129.196089 116.952141) + (xy 129.196093 116.952142) + (xy 129.202663 116.950641) + (xy 129.202663 116.950642) + (xy 129.218512 116.947023) + (xy 129.221332 116.94638) + (xy 129.221332 116.946379) + (xy 129.223885 116.945797) + (xy 129.223888 116.945795) + (xy 129.224189 116.945727) + (xy 129.224333 116.94562) + (xy 129.264411 116.929891) + (xy 129.302114 116.908124) + (xy 129.302292 116.907981) + (xy 129.302303 116.907977) + (xy 129.302301 116.907975) + (xy 129.325565 116.889423) + (xy 129.325564 116.889423) + (xy 129.345099 116.873847) + (xy 129.345099 116.873845) + (xy 129.346894 116.872414) + (xy 129.346899 116.872408) + (xy 129.439042 116.798928) + (xy 129.439729 116.797997) + (xy 129.44346 116.794508) + (xy 129.444435 116.793886) + (xy 129.457357 116.779749) + (xy 129.457358 116.779749) + (xy 129.479765 116.755238) + (xy 129.479765 116.755235) + (xy 129.480936 116.753955) + (xy 129.480944 116.753945) + (xy 129.496897 116.736493) + (xy 129.858339 116.341079) + (xy 129.868043 116.33654) + (xy 129.878117 116.340193) + (xy 129.882657 116.349898) + (xy 129.882671 116.350526) + (xy 129.882671 116.426775) + (xy 129.882914 116.428309) + (xy 129.897303 116.519157) + (xy 129.954036 116.630502) + (xy 130.042398 116.718864) + (xy 130.0424 116.718865) + (xy 130.153744 116.775598) + (xy 130.277171 116.795147) + (xy 130.400598 116.775598) + (xy 130.511942 116.718865) + (xy 130.600306 116.630501) + (xy 130.657039 116.519157) + (xy 130.671671 116.426775) + (xy 130.671671 115.190925) + (xy 148.292185 115.190925) + (xy 148.292185 115.385266) + (xy 148.293923 115.394019) + (xy 148.300555 115.403944) + (xy 148.310477 115.410573) + (xy 148.319228 115.412313) + (xy 148.604684 115.412313) + (xy 148.604684 115.190925) + (xy 148.639684 115.190925) + (xy 148.639684 115.412313) + (xy 148.925136 115.412313) + (xy 148.933889 115.410574) + (xy 148.943814 115.403942) + (xy 148.950443 115.394021) + (xy 148.950443 115.394019) + (xy 148.952184 115.385269) + (xy 148.952184 115.190925) + (xy 148.639684 115.190925) + (xy 148.604684 115.190925) + (xy 148.292185 115.190925) + (xy 130.671671 115.190925) + (xy 130.671671 115.155925) + (xy 148.292184 115.155925) + (xy 148.604684 115.155925) + (xy 148.604684 114.934536) + (xy 148.639684 114.934536) + (xy 148.639684 115.155925) + (xy 148.952183 115.155925) + (xy 148.952183 114.961583) + (xy 148.950444 114.95283) + (xy 148.943812 114.942905) + (xy 148.93389 114.936276) + (xy 148.92514 114.934536) + (xy 148.639684 114.934536) + (xy 148.604684 114.934536) + (xy 148.319231 114.934536) + (xy 148.310478 114.936275) + (xy 148.300553 114.942907) + (xy 148.293924 114.952828) + (xy 148.293924 114.95283) + (xy 148.292184 114.96158) + (xy 148.292184 115.155925) + (xy 130.671671 115.155925) + (xy 130.671671 114.907685) + (xy 130.657039 114.815303) + (xy 130.600306 114.703959) + (xy 130.600305 114.703957) + (xy 130.595116 114.698768) + (xy 130.591015 114.688869) + (xy 130.595116 114.67897) + (xy 130.605015 114.674869) + (xy 130.606578 114.674957) + (xy 133.001667 114.946059) + (xy 133.005143 114.946914) + (xy 133.012373 114.949715) + (xy 133.012374 114.949715) + (xy 133.06674 114.949715) + (xy 133.118051 114.94972) + (xy 133.118054 114.949718) + (xy 133.119224 114.949719) + (xy 133.119283 114.949715) + (xy 134.394058 114.949715) + (xy 134.394138 114.94971) + (xy 134.398739 114.949712) + (xy 134.462352 114.942696) + (xy 134.492307 114.936003) + (xy 134.495907 114.935678) + (xy 134.503651 114.935987) + (xy 134.503651 114.935986) + (xy 134.503652 114.935987) + (xy 134.503653 114.935987) + (xy 134.555084 114.918379) + (xy 134.555083 114.918378) + (xy 134.603631 114.901765) + (xy 134.603633 114.901762) + (xy 134.604837 114.901351) + (xy 134.604884 114.901329) + (xy 138.877768 113.438508) + (xy 138.877826 113.438495) + (xy 138.87907 113.438068) + (xy 138.879074 113.438069) + (xy 138.913497 113.426278) + (xy 138.920536 113.423868) + (xy 138.920807 113.423774) + (xy 138.922082 113.423338) + (xy 138.922104 113.423339) + (xy 138.927619 113.421451) + (xy 138.92762 113.421452) + (xy 138.943204 113.416119) + (xy 138.954063 113.412404) + (xy 138.954066 113.412402) + (xy 138.954074 113.4124) + (xy 139.004994 113.38929) + (xy 139.021152 113.379991) + (xy 139.024692 113.378556) + (xy 139.031886 113.376731) + (xy 139.053181 113.361588) + (xy 139.053441 113.361413) + (xy 139.053462 113.361402) + (xy 139.074854 113.346177) + (xy 141.778616 111.423615) + (xy 141.78906 111.421221) + (xy 141.798139 111.426913) + (xy 141.800726 111.435298) + (xy 141.79336 111.813993) + (xy 141.789068 111.823811) + (xy 141.779363 111.827721) + (xy 141.518722 111.827721) + (xy 141.489406 111.833552) + (xy 141.456162 111.855764) + (xy 141.433949 111.889009) + (xy 141.428119 111.918322) + (xy 141.428119 114.156117) + (xy 141.432219 114.176732) + (xy 141.43395 114.185434) + (xy 141.456162 114.218678) + (xy 141.489406 114.24089) + (xy 141.51872 114.246721) + (xy 142.602517 114.24672) + (xy 142.631832 114.24089) + (xy 142.665076 114.218678) + (xy 142.687288 114.185434) + (xy 142.693119 114.15612) + (xy 142.693119 114.156117) + (xy 146.027119 114.156117) + (xy 146.031219 114.176732) + (xy 146.03295 114.185434) + (xy 146.055162 114.218678) + (xy 146.088406 114.24089) + (xy 146.11772 114.246721) + (xy 147.201517 114.24672) + (xy 147.230832 114.24089) + (xy 147.264076 114.218678) + (xy 147.286288 114.185434) + (xy 147.292119 114.15612) + (xy 147.292118 112.698484) + (xy 147.506048 112.698484) + (xy 147.523615 112.809396) + (xy 147.574595 112.909452) + (xy 147.653998 112.988855) + (xy 147.654 112.988856) + (xy 147.754055 113.039836) + (xy 147.864967 113.057403) + (xy 147.87009 113.056591) + (xy 147.880509 113.059091) + (xy 147.884809 113.064168) + (xy 148.297674 113.891688) + (xy 148.298425 113.902377) + (xy 148.291397 113.910465) + (xy 148.287878 113.911669) + (xy 148.282971 113.912644) + (xy 148.249727 113.934857) + (xy 148.227514 113.968102) + (xy 148.221684 113.997415) + (xy 148.221684 114.434988) + (xy 148.221685 114.434991) + (xy 148.227515 114.464305) + (xy 148.249727 114.497549) + (xy 148.282971 114.519761) + (xy 148.312285 114.525592) + (xy 148.932082 114.525591) + (xy 148.961397 114.519761) + (xy 148.994641 114.497549) + (xy 149.016853 114.464305) + (xy 149.022684 114.434991) + (xy 149.022683 113.997416) + (xy 149.016853 113.968101) + (xy 148.994641 113.934857) + (xy 148.961397 113.912645) + (xy 148.961396 113.912644) + (xy 148.961395 113.912644) + (xy 148.932083 113.906814) + (xy 148.639088 113.906814) + (xy 148.629189 113.902713) + (xy 148.626561 113.899064) + (xy 148.622881 113.891688) + (xy 148.144818 112.933489) + (xy 148.144068 112.922802) + (xy 148.147445 112.917343) + (xy 148.155339 112.909451) + (xy 148.206319 112.809396) + (xy 148.223886 112.698484) + (xy 148.206319 112.587572) + (xy 148.155339 112.487517) + (xy 148.155338 112.487515) + (xy 148.075935 112.408112) + (xy 147.975879 112.357132) + (xy 147.97588 112.357132) + (xy 147.864967 112.339565) + (xy 147.754054 112.357132) + (xy 147.653998 112.408112) + (xy 147.574595 112.487515) + (xy 147.523615 112.587571) + (xy 147.506048 112.698484) + (xy 147.292118 112.698484) + (xy 147.292118 111.918323) + (xy 147.286288 111.889008) + (xy 147.264076 111.855764) + (xy 147.230832 111.833552) + (xy 147.230831 111.833551) + (xy 147.23083 111.833551) + (xy 147.201518 111.827721) + (xy 146.962936 111.827721) + (xy 146.953037 111.82362) + (xy 146.948936 111.81374) + (xy 146.948692 111.636586) + (xy 146.948092 111.201059) + (xy 146.950451 111.193266) + (xy 146.960153 111.178747) + (xy 146.965984 111.149433) + (xy 146.965983 110.962965) + (xy 146.970083 110.953067) + (xy 146.970809 110.95239) + (xy 148.532799 109.599896) + (xy 148.53977 109.596653) + (xy 148.609971 109.585535) + (xy 148.710026 109.534555) + (xy 148.789431 109.45515) + (xy 148.840411 109.355095) + (xy 148.857978 109.244183) + (xy 148.840411 109.133271) + (xy 148.789431 109.033216) + (xy 148.78943 109.033214) + (xy 148.710027 108.953811) + (xy 148.609971 108.902831) + (xy 148.609972 108.902831) + (xy 148.499059 108.885264) + (xy 148.388146 108.902831) + (xy 148.28809 108.953811) + (xy 148.208687 109.033214) + (xy 148.157706 109.133272) + (xy 148.157706 109.133273) + (xy 148.154548 109.153201) + (xy 148.149885 109.161594) + (xy 146.678522 110.435618) + (xy 146.669358 110.439034) + (xy 146.437809 110.439034) + (xy 146.408493 110.444865) + (xy 146.375249 110.467077) + (xy 146.353036 110.500322) + (xy 146.347206 110.529635) + (xy 146.347206 111.14943) + (xy 146.353037 111.178747) + (xy 146.353037 111.178748) + (xy 146.363733 111.194757) + (xy 146.366092 111.202515) + (xy 146.366934 111.813702) + (xy 146.362847 111.823607) + (xy 146.352953 111.827721) + (xy 146.117722 111.827721) + (xy 146.088406 111.833552) + (xy 146.055162 111.855764) + (xy 146.032949 111.889009) + (xy 146.027119 111.918322) + (xy 146.027119 114.156117) + (xy 142.693119 114.156117) + (xy 142.693118 111.918323) + (xy 142.687288 111.889008) + (xy 142.665076 111.855764) + (xy 142.631832 111.833552) + (xy 142.631831 111.833551) + (xy 142.63183 111.833551) + (xy 142.602518 111.827721) + (xy 142.389477 111.827721) + (xy 142.379578 111.82362) + (xy 142.375477 111.813721) + (xy 142.37548 111.813449) + (xy 142.38311 111.421221) + (xy 142.387251 111.20833) + (xy 142.389607 111.200826) + (xy 142.407008 111.174785) + (xy 142.412839 111.145471) + (xy 142.412838 110.951171) + (xy 142.416938 110.941273) + (xy 142.41727 110.940951) + (xy 142.511623 110.853072) + (xy 142.821784 110.853072) + (xy 142.821784 111.138524) + (xy 142.823522 111.147277) + (xy 142.830154 111.157202) + (xy 142.840076 111.163831) + (xy 142.848827 111.165571) + (xy 143.043172 111.165571) + (xy 143.043172 110.853072) + (xy 143.078172 110.853072) + (xy 143.078172 111.165571) + (xy 143.272513 111.165571) + (xy 143.281266 111.163832) + (xy 143.291191 111.1572) + (xy 143.29782 111.147279) + (xy 143.29782 111.147277) + (xy 143.299561 111.138527) + (xy 143.299561 110.857034) + (xy 145.460485 110.857034) + (xy 145.460485 111.142486) + (xy 145.462223 111.151239) + (xy 145.468855 111.161164) + (xy 145.478777 111.167793) + (xy 145.487528 111.169533) + (xy 145.681873 111.169533) + (xy 145.681873 110.857034) + (xy 145.716873 110.857034) + (xy 145.716873 111.169533) + (xy 145.911214 111.169533) + (xy 145.919967 111.167794) + (xy 145.929892 111.161162) + (xy 145.936521 111.151241) + (xy 145.936521 111.151239) + (xy 145.938262 111.142489) + (xy 145.938262 110.857034) + (xy 145.716873 110.857034) + (xy 145.681873 110.857034) + (xy 145.460485 110.857034) + (xy 143.299561 110.857034) + (xy 143.299561 110.853072) + (xy 143.078172 110.853072) + (xy 143.043172 110.853072) + (xy 142.821784 110.853072) + (xy 142.511623 110.853072) + (xy 142.544948 110.822034) + (xy 145.460484 110.822034) + (xy 145.681873 110.822034) + (xy 145.681873 110.509534) + (xy 145.716873 110.509534) + (xy 145.716873 110.822034) + (xy 145.938261 110.822034) + (xy 145.938261 110.536581) + (xy 145.936522 110.527828) + (xy 145.92989 110.517903) + (xy 145.919968 110.511274) + (xy 145.911218 110.509534) + (xy 145.716873 110.509534) + (xy 145.681873 110.509534) + (xy 145.487531 110.509534) + (xy 145.478778 110.511273) + (xy 145.468853 110.517905) + (xy 145.462224 110.527826) + (xy 145.462224 110.527828) + (xy 145.460484 110.536578) + (xy 145.460484 110.822034) + (xy 142.544948 110.822034) + (xy 142.798242 110.58612) + (xy 142.80828 110.582375) + (xy 142.818028 110.586824) + (xy 142.821783 110.596366) + (xy 142.821783 110.818072) + (xy 143.043172 110.818072) + (xy 143.043172 110.505572) + (xy 143.078172 110.505572) + (xy 143.078172 110.818072) + (xy 143.29956 110.818072) + (xy 143.29956 110.532619) + (xy 143.297821 110.523866) + (xy 143.291189 110.513941) + (xy 143.281267 110.507312) + (xy 143.272517 110.505572) + (xy 143.078172 110.505572) + (xy 143.043172 110.505572) + (xy 142.959068 110.505572) + (xy 142.949169 110.501471) + (xy 142.945068 110.491572) + (xy 142.949169 110.481673) + (xy 142.952171 110.479389) + (xy 148.746587 107.203457) + (xy 148.746619 107.203444) + (xy 148.747897 107.202721) + (xy 148.747899 107.202721) + (xy 148.787487 107.180335) + (xy 148.787599 107.180321) + (xy 148.792584 107.177501) + (xy 148.792585 107.177502) + (xy 148.86084 107.138899) + (xy 148.980832 107.037914) + (xy 149.080205 106.916585) + (xy 149.155571 106.779049) + (xy 149.167441 106.742787) + (xy 149.204356 106.630007) + (xy 149.204356 106.630005) + (xy 149.204358 106.63) + (xy 149.2072 106.6085) + (xy 149.207202 106.608496) + (xy 149.317667 105.773002) + (xy 149.318617 105.765823) + (xy 149.318616 105.765815) + (xy 149.320241 105.753527) + (xy 149.321009 105.747755) + (xy 149.328738 105.689669) + (xy 149.319553 105.529761) + (xy 149.28051 105.374421) + (xy 149.212996 105.229174) + (xy 149.119413 105.099186) + (xy 149.119411 105.099184) + (xy 149.119409 105.099181) + (xy 149.119408 105.09918) + (xy 149.003096 104.989084) + (xy 149.00309 104.989079) + (xy 149.003089 104.989078) + (xy 148.868162 104.902769) + (xy 148.868159 104.902767) + (xy 148.719431 104.843326) + (xy 148.719432 104.843326) + (xy 148.69117 104.837874) + (xy 148.642339 104.828454) + (xy 143.851537 103.900301) + (xy 141.744657 103.492121) + (xy 141.735718 103.486213) + (xy 141.733576 103.475714) + (xy 141.739484 103.466775) + (xy 141.74732 103.464377) + (xy 141.864704 103.464377) + (xy 141.873457 103.462638) + (xy 141.883382 103.456006) + (xy 141.890011 103.446085) + (xy 141.890011 103.446083) + (xy 141.891752 103.437333) + (xy 141.891752 103.151878) + (xy 141.413975 103.151878) + (xy 141.413974 103.37358) + (xy 141.409873 103.38348) + (xy 141.399974 103.38758) + (xy 141.390432 103.383825) + (xy 141.103818 103.116878) + (xy 141.413974 103.116878) + (xy 141.635363 103.116878) + (xy 141.635363 102.804378) + (xy 141.670363 102.804378) + (xy 141.670363 103.116878) + (xy 141.891751 103.116878) + (xy 141.891751 102.831425) + (xy 141.890012 102.822672) + (xy 141.88338 102.812747) + (xy 141.873458 102.806118) + (xy 141.864708 102.804378) + (xy 141.670363 102.804378) + (xy 141.635363 102.804378) + (xy 141.441021 102.804378) + (xy 141.432268 102.806117) + (xy 141.422343 102.812749) + (xy 141.415714 102.82267) + (xy 141.415714 102.822672) + (xy 141.413974 102.831422) + (xy 141.413974 103.116878) + (xy 141.103818 103.116878) + (xy 141.009487 103.02902) + (xy 141.005038 103.019272) + (xy 141.005029 103.018775) + (xy 141.005029 102.935787) + (xy 141.005054 102.935196) + (xy 141.068772 102.202273) + (xy 147.706109 102.202273) + (xy 147.70611 102.202276) + (xy 147.71194 102.23159) + (xy 147.734152 102.264834) + (xy 147.767396 102.287046) + (xy 147.79671 102.292877) + (xy 147.93967 102.292876) + (xy 147.949569 102.296976) + (xy 147.95367 102.306876) + (xy 147.953666 102.307216) + (xy 147.937395 102.977843) + (xy 147.933055 102.98764) + (xy 147.929755 102.989977) + (xy 147.863815 103.023575) + (xy 147.784412 103.102978) + (xy 147.733432 103.203034) + (xy 147.715865 103.313947) + (xy 147.733432 103.424859) + (xy 147.784412 103.524915) + (xy 147.863815 103.604318) + (xy 147.863817 103.604319) + (xy 147.963872 103.655299) + (xy 148.074784 103.672866) + (xy 148.185696 103.655299) + (xy 148.285751 103.604319) + (xy 148.365156 103.524914) + (xy 148.416136 103.424859) + (xy 148.433703 103.313947) + (xy 148.416136 103.203035) + (xy 148.365156 103.10298) + (xy 148.365155 103.102978) + (xy 148.285752 103.023575) + (xy 148.235938 102.998194) + (xy 148.228979 102.990046) + (xy 148.228298 102.985384) + (xy 148.242366 102.40558) + (xy 148.244769 102.306536) + (xy 148.249109 102.296739) + (xy 148.258765 102.292876) + (xy 148.416506 102.292876) + (xy 148.416507 102.292876) + (xy 148.445822 102.287046) + (xy 148.479066 102.264834) + (xy 148.501278 102.23159) + (xy 148.507109 102.202276) + (xy 148.507108 101.802201) + (xy 148.501278 101.772886) + (xy 148.479066 101.739642) + (xy 148.445822 101.71743) + (xy 148.445821 101.717429) + (xy 148.44582 101.717429) + (xy 148.423785 101.713046) + (xy 148.416508 101.711599) + (xy 148.416507 101.711599) + (xy 147.796712 101.711599) + (xy 147.767396 101.71743) + (xy 147.734152 101.739642) + (xy 147.711939 101.772887) + (xy 147.706109 101.8022) + (xy 147.706109 102.202273) + (xy 141.068772 102.202273) + (xy 141.121466 101.59615) + (xy 141.126681 101.536833) + (xy 141.117548 101.43668) + (xy 141.113002 101.386814) + (xy 141.113001 101.386812) + (xy 141.113001 101.386807) + (xy 141.078152 101.260214) + (xy 141.073019 101.241566) + (xy 141.051824 101.197274) + (xy 141.007989 101.105673) + (xy 141.003916 101.100016) + (xy 147.77661 101.100016) + (xy 147.77661 101.275607) + (xy 147.778348 101.28436) + (xy 147.78498 101.294285) + (xy 147.794902 101.300914) + (xy 147.803653 101.302654) + (xy 148.089109 101.302654) + (xy 148.089109 101.100016) + (xy 148.124109 101.100016) + (xy 148.124109 101.302654) + (xy 148.409561 101.302654) + (xy 148.418314 101.300915) + (xy 148.428239 101.294283) + (xy 148.434868 101.284362) + (xy 148.434868 101.28436) + (xy 148.436609 101.27561) + (xy 148.436609 101.100016) + (xy 148.124109 101.100016) + (xy 148.089109 101.100016) + (xy 147.77661 101.100016) + (xy 141.003916 101.100016) + (xy 140.978716 101.065016) + (xy 147.776609 101.065016) + (xy 148.089109 101.065016) + (xy 148.089109 100.862377) + (xy 148.124109 100.862377) + (xy 148.124109 101.065016) + (xy 148.436608 101.065016) + (xy 148.436608 100.889424) + (xy 148.434869 100.880671) + (xy 148.428237 100.870746) + (xy 148.418315 100.864117) + (xy 148.409565 100.862377) + (xy 148.124109 100.862377) + (xy 148.089109 100.862377) + (xy 147.803656 100.862377) + (xy 147.794903 100.864116) + (xy 147.784978 100.870748) + (xy 147.778349 100.880669) + (xy 147.778349 100.880671) + (xy 147.776609 100.889421) + (xy 147.776609 101.065016) + (xy 140.978716 101.065016) + (xy 140.919967 100.98342) + (xy 140.918299 100.981809) + (xy 140.866581 100.931845) + (xy 138.299418 98.447213) + (xy 139.116733 98.447213) + (xy 139.126769 98.657903) + (xy 139.12677 98.657911) + (xy 139.176498 98.862888) + (xy 139.176499 98.86289) + (xy 139.264124 99.054762) + (xy 139.386478 99.226584) + (xy 139.539138 99.372145) + (xy 139.716587 99.486184) + (xy 139.912411 99.56458) + (xy 140.119533 99.6045) + (xy 140.119534 99.6045) + (xy 140.277606 99.6045) + (xy 140.277613 99.6045) + (xy 140.434979 99.589473) + (xy 140.637368 99.530047) + (xy 140.824854 99.433391) + (xy 140.990659 99.303) + (xy 141.128792 99.143587) + (xy 141.234259 98.960913) + (xy 141.303248 98.76158) + (xy 141.333267 98.552793) + (xy 141.323231 98.342098) + (xy 141.315774 98.311361) + (xy 141.273501 98.137111) + (xy 141.249519 98.084597) + (xy 141.185876 97.945238) + (xy 141.063522 97.773416) + (xy 140.910862 97.627855) + (xy 140.733413 97.513816) + (xy 140.723441 97.509824) + (xy 140.537589 97.43542) + (xy 140.4842 97.42513) + (xy 140.330467 97.3955) + (xy 140.172387 97.3955) + (xy 140.034691 97.408648) + (xy 140.01502 97.410527) + (xy 140.015015 97.410528) + (xy 139.812636 97.469951) + (xy 139.812632 97.469953) + (xy 139.625145 97.566609) + (xy 139.459337 97.697003) + (xy 139.459335 97.697005) + (xy 139.321208 97.856412) + (xy 139.321204 97.856417) + (xy 139.215743 98.039082) + (xy 139.21574 98.039089) + (xy 139.146751 98.23842) + (xy 139.131847 98.342088) + (xy 139.116733 98.447207) + (xy 139.116733 98.447211) + (xy 139.116733 98.447213) + (xy 138.299418 98.447213) + (xy 137.313334 97.492831) + (xy 137.309073 97.483001) + (xy 137.313011 97.473036) + (xy 137.322842 97.468774) + (xy 137.323071 97.468772) + (xy 137.468811 97.468772) + (xy 137.468811 97.156273) + (xy 137.503811 97.156273) + (xy 137.503811 97.468772) + (xy 137.698152 97.468772) + (xy 137.706905 97.467033) + (xy 137.71683 97.460401) + (xy 137.723459 97.45048) + (xy 137.723459 97.450478) + (xy 137.7252 97.441728) + (xy 137.7252 97.390183) + (xy 148.641691 97.390183) + (xy 148.651838 97.629034) + (xy 148.651838 97.62904) + (xy 148.651839 97.629042) + (xy 148.677254 97.746969) + (xy 148.702209 97.862762) + (xy 148.791348 98.084593) + (xy 148.79135 98.084596) + (xy 148.916695 98.288171) + (xy 148.916706 98.288186) + (xy 149.060776 98.45188) + (xy 149.074658 98.467653) + (xy 149.260672 98.617849) + (xy 149.469393 98.734448) + (xy 149.694817 98.814095) + (xy 149.930459 98.8545) + (xy 149.930462 98.8545) + (xy 150.109667 98.8545) + (xy 150.145984 98.851408) + (xy 150.28822 98.839303) + (xy 150.519587 98.779059) + (xy 150.737444 98.680581) + (xy 150.935525 98.546702) + (xy 151.108131 98.381273) + (xy 151.250297 98.189052) + (xy 151.357932 97.97557) + (xy 151.42794 97.746969) + (xy 151.458308 97.509824) + (xy 151.457439 97.489376) + (xy 151.451966 97.360537) + (xy 151.448161 97.270958) + (xy 151.397792 97.037243) + (xy 151.397214 97.035804) + (xy 151.308651 96.815406) + (xy 151.308649 96.815403) + (xy 151.183304 96.611828) + (xy 151.183293 96.611813) + (xy 151.025343 96.432348) + (xy 151.025342 96.432347) + (xy 150.839328 96.282151) + (xy 150.630607 96.165552) + (xy 150.504345 96.120941) + (xy 150.405184 96.085905) + (xy 150.346272 96.075803) + (xy 150.169541 96.0455) + (xy 149.990336 96.0455) + (xy 149.990333 96.0455) + (xy 149.811779 96.060697) + (xy 149.811774 96.060698) + (xy 149.580412 96.120941) + (xy 149.58041 96.120942) + (xy 149.362561 96.219416) + (xy 149.362553 96.219421) + (xy 149.16447 96.353301) + (xy 148.991872 96.518723) + (xy 148.991869 96.518726) + (xy 148.849704 96.710944) + (xy 148.742069 96.924426) + (xy 148.742066 96.924433) + (xy 148.67206 97.153027) + (xy 148.67206 97.153028) + (xy 148.641691 97.390183) + (xy 137.7252 97.390183) + (xy 137.7252 97.156273) + (xy 137.503811 97.156273) + (xy 137.468811 97.156273) + (xy 137.247423 97.156273) + (xy 137.247422 97.396005) + (xy 137.243321 97.405905) + (xy 137.233422 97.410005) + (xy 137.223686 97.406065) + (xy 136.929435 97.121273) + (xy 137.247422 97.121273) + (xy 137.468811 97.121273) + (xy 137.468811 96.808773) + (xy 137.503811 96.808773) + (xy 137.503811 97.121273) + (xy 137.725199 97.121273) + (xy 137.725199 96.83582) + (xy 137.72346 96.827067) + (xy 137.716828 96.817142) + (xy 137.706906 96.810513) + (xy 137.698156 96.808773) + (xy 137.503811 96.808773) + (xy 137.468811 96.808773) + (xy 137.274469 96.808773) + (xy 137.265716 96.810512) + (xy 137.255791 96.817144) + (xy 137.249162 96.827065) + (xy 137.249162 96.827067) + (xy 137.247422 96.835817) + (xy 137.247422 97.121273) + (xy 136.929435 97.121273) + (xy 136.842741 97.037366) + (xy 136.838479 97.027535) + (xy 136.838477 97.027306) + (xy 136.838477 96.828876) + (xy 136.837083 96.821867) + (xy 136.832647 96.79956) + (xy 136.810435 96.766316) + (xy 136.777191 96.744104) + (xy 136.77719 96.744103) + (xy 136.777189 96.744103) + (xy 136.755154 96.73972) + (xy 136.747877 96.738273) + (xy 136.747876 96.738273) + (xy 136.310303 96.738273) + (xy 136.280987 96.744104) + (xy 136.247743 96.766316) + (xy 136.22553 96.799561) + (xy 136.2197 96.828874) + (xy 136.2197 96.829065) + (xy 136.219674 96.829125) + (xy 136.219632 96.82956) + (xy 136.2195 96.829547) + (xy 136.215599 96.838964) + (xy 136.2057 96.843065) + (xy 136.205498 96.843064) + (xy 135.707531 96.835866) + (xy 135.697691 96.831622) + (xy 135.693733 96.821867) + (xy 135.693733 96.81269) + (xy 135.691122 96.799561) + (xy 135.687903 96.783374) + (xy 135.665691 96.75013) + (xy 135.632447 96.727918) + (xy 135.632446 96.727917) + (xy 135.632445 96.727917) + (xy 135.603133 96.722087) + (xy 135.421305 96.722087) + (xy 135.411527 96.718106) + (xy 135.072857 96.387591) + (xy 135.072719 96.38748) + (xy 135.072246 96.387059) + (xy 135.05175 96.367114) + (xy 135.051748 96.367112) + (xy 134.957451 96.305343) + (xy 134.957444 96.305339) + (xy 134.853026 96.262829) + (xy 134.742388 96.241169) + (xy 134.742113 96.241169) + (xy 134.741234 96.241087) + (xy 134.740408 96.241087) + (xy 134.686022 96.241087) + (xy 134.634711 96.241085) + (xy 134.63471 96.241085) + (xy 134.633386 96.241085) + (xy 134.633366 96.241087) + (xy 134.291264 96.241087) + (xy 134.290871 96.241123) + (xy 134.290248 96.241151) + (xy 134.258453 96.241186) + (xy 134.237016 96.245641) + (xy 134.141332 96.265527) + (xy 134.141327 96.265528) + (xy 134.141326 96.265529) + (xy 134.141321 96.26553) + (xy 134.141324 96.26553) + (xy 134.031609 96.31321) + (xy 133.933896 96.382232) + (xy 133.852286 96.469702) + (xy 133.852285 96.469703) + (xy 133.850307 96.472952) + (xy 133.849842 96.473579) + (xy 133.82118 96.520793) + (xy 133.794216 96.565197) + (xy 133.794195 96.565239) + (xy 131.610983 100.161389) + (xy 131.610965 100.161416) + (xy 131.587987 100.199269) + (xy 131.586873 100.201102) + (xy 131.586829 100.201136) + (xy 131.578156 100.215462) + (xy 131.570001 100.228895) + (xy 131.569794 100.229273) + (xy 131.556564 100.251129) + (xy 131.556564 100.25113) + (xy 131.518843 100.350239) + (xy 131.518842 100.350243) + (xy 131.500453 100.450288) + (xy 131.499741 100.452808) + (xy 131.499615 100.453133) + (xy 131.499615 101.85502) + (xy 131.49961 101.855078) + (xy 131.49961 101.86354) + (xy 131.498805 101.868217) + (xy 131.498394 101.869377) + (xy 131.498308 101.86962) + (xy 131.498307 101.869622) + (xy 131.499615 101.915769) + (xy 131.499615 101.934501) + (xy 131.500039 101.936768) + (xy 131.500271 101.938944) + (xy 131.525391 102.826003) + (xy 131.521573 102.836014) + (xy 131.511793 102.840393) + (xy 131.501782 102.836575) + (xy 131.497529 102.828312) + (xy 130.922313 98.654472) + (xy 130.922313 98.654465) + (xy 130.918349 98.625706) + (xy 130.918353 98.625688) + (xy 130.917565 98.619974) + (xy 130.917566 98.619974) + (xy 130.906249 98.537876) + (xy 130.894779 98.49565) + (xy 130.862802 98.377931) + (xy 130.862801 98.377929) + (xy 130.8628 98.377924) + (xy 130.79925 98.224843) + (xy 130.768062 98.170591) + (xy 130.768056 98.170576) + (xy 130.317979 97.387656) + (xy 130.3166 97.37703) + (xy 130.320684 97.370333) + (xy 130.33143 97.360537) + (xy 130.457316 97.245778) + (xy 130.580225 97.08302) + (xy 130.671134 96.900449) + (xy 130.726949 96.704282) + (xy 130.735517 96.611818) + (xy 130.745767 96.501201) + (xy 130.745767 96.501196) + (xy 130.72695 96.298124) + (xy 130.726949 96.298121) + (xy 130.726949 96.298116) + (xy 130.671134 96.101949) + (xy 130.612217 95.983626) + (xy 130.58023 95.919387) + (xy 130.580225 95.919378) + (xy 130.518656 95.837848) + (xy 130.457316 95.75662) + (xy 130.306593 95.619218) + (xy 130.258394 95.589374) + (xy 130.13319 95.511851) + (xy 130.133191 95.511851) + (xy 130.021927 95.468748) + (xy 129.943008 95.438175) + (xy 129.943005 95.438174) + (xy 129.943004 95.438174) + (xy 129.74253 95.400699) + (xy 129.742528 95.400699) + (xy 129.538576 95.400699) + (xy 129.538573 95.400699) + (xy 129.338099 95.438174) + (xy 129.338096 95.438174) + (xy 129.338096 95.438175) + (xy 129.314806 95.447197) + (xy 129.147912 95.511851) + (xy 128.974512 95.619217) + (xy 128.974511 95.619218) + (xy 128.823788 95.756619) + (xy 128.756383 95.845877) + (xy 128.747145 95.851306) + (xy 128.738569 95.849764) + (xy 127.539417 95.203451) + (xy 127.538797 95.203168) + (xy 127.512965 95.18927) + (xy 127.45992 95.16073) + (xy 127.459918 95.160729) + (xy 127.253916 95.086304) + (xy 127.253909 95.086302) + (xy 127.253908 95.086301) + (xy 127.253906 95.086301) + (xy 127.039185 95.042999) + (xy 127.039189 95.042999) + (xy 126.914181 95.03658) + (xy 126.820429 95.031767) + (xy 126.820427 95.031767) + (xy 126.820426 95.031767) + (xy 126.820421 95.031767) + (xy 126.6024 95.05285) + (xy 126.389847 95.10579) + (xy 126.187413 95.189426) + (xy 126.187407 95.189429) + (xy 126.187406 95.18943) + (xy 126.093439 95.24569) + (xy 125.999466 95.301956) + (xy 125.830147 95.440903) + (xy 125.830145 95.440905) + (xy 125.757543 95.521073) + (xy 125.683108 95.603265) + (xy 125.683106 95.603267) + (xy 125.683104 95.60327) + (xy 125.561565 95.785495) + (xy 125.561563 95.785499) + (xy 125.468164 95.983626) + (xy 125.404936 96.193345) + (xy 125.391957 96.28215) + (xy 125.376548 96.387588) + (xy 125.373259 96.410089) + (xy 125.373258 96.410092) + (xy 124.7005 96.410092) + (xy 124.7005 93.2145) + (xy 124.704601 93.204601) + (xy 124.7145 93.2005) + (xy 149.2855 93.2005) + ) + ) + ) + (zone (net 1) (net_name "gnd") (layer "B.Cu") (tstamp be5bf6a6-b7bc-cc3e-3600-21af80837d38) (hatch none 0.1) + (priority 1) + (connect_pads (clearance 0.1)) + (min_thickness 0.03) (filled_areas_thickness no) + (fill yes (thermal_gap 0.03) (thermal_bridge_width 0.035)) + (polygon + (pts + (xy 124.5 123) + (xy 149.5 123) + (xy 149.5 121) + (xy 154.5 121) + (xy 154.5 95) + (xy 149.5 95) + (xy 149.5 93) + (xy 124.5 93) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 133.180328 102.902212) + (xy 142.167562 108.151648) + (xy 142.174041 108.160181) + (xy 142.1745 108.163736) + (xy 142.1745 109.139896) + (xy 142.176537 109.150138) + (xy 142.180331 109.169213) + (xy 142.202543 109.202457) + (xy 142.235787 109.224669) + (xy 142.265101 109.2305) + (xy 144.004836 109.230499) + (xy 144.014735 109.234599) + (xy 144.018836 109.244499) + (xy 144.014736 109.254398) + (xy 144.010929 109.257103) + (xy 142.085723 110.187799) + (xy 142.072213 110.194331) + (xy 142.065869 110.197398) + (xy 142.017188 110.220923) + (xy 142.017186 110.220924) + (xy 141.932726 110.288444) + (xy 141.865382 110.373048) + (xy 141.818523 110.470502) + (xy 141.794492 110.575929) + (xy 141.794492 110.575931) + (xy 141.7945 110.63) + (xy 141.7945 114.124199) + (xy 141.794498 114.124203) + (xy 141.794498 114.136273) + (xy 141.7945 114.136349) + (xy 141.7945 114.147782) + (xy 141.794491 114.148146) + (xy 141.794473 114.148473) + (xy 141.794478 114.148527) + (xy 141.7945 114.149078) + (xy 141.7945 114.149162) + (xy 141.794544 114.149497) + (xy 141.794583 114.149863) + (xy 141.795479 114.161293) + (xy 141.795483 114.161359) + (xy 141.795974 114.167599) + (xy 141.983219 116.555067) + (xy 141.983221 116.55507) + (xy 141.985102 116.579058) + (xy 141.986899 116.601966) + (xy 141.986981 116.602532) + (xy 141.988152 116.617106) + (xy 142.009511 116.682715) + (xy 142.009512 116.682716) + (xy 142.045649 116.741498) + (xy 142.045651 116.7415) + (xy 142.055988 116.751827) + (xy 142.056368 116.752258) + (xy 142.056481 116.75237) + (xy 142.056482 116.752372) + (xy 142.228203 116.923305) + (xy 142.441455 117.135578) + (xy 142.445578 117.145468) + (xy 142.4415 117.155377) + (xy 142.43161 117.1595) + (xy 142.265103 117.1595) + (xy 142.235787 117.165331) + (xy 142.202543 117.187543) + (xy 142.18033 117.220788) + (xy 142.1745 117.250101) + (xy 142.1745 118.035514) + (xy 142.170399 118.045413) + (xy 142.1605 118.049514) + (xy 142.150601 118.045413) + (xy 142.148415 118.042582) + (xy 139.26249 113.108369) + (xy 135.918627 107.391198) + (xy 135.91717 107.380584) + (xy 135.918237 107.377778) + (xy 135.965011 107.285982) + (xy 135.982578 107.17507) + (xy 135.965011 107.064158) + (xy 135.914031 106.964103) + (xy 135.91403 106.964101) + (xy 135.834627 106.884698) + (xy 135.734571 106.833718) + (xy 135.734572 106.833718) + (xy 135.623659 106.816151) + (xy 135.512746 106.833718) + (xy 135.41269 106.884698) + (xy 135.333287 106.964101) + (xy 135.282307 107.064157) + (xy 135.26474 107.17507) + (xy 135.282307 107.285982) + (xy 135.333287 107.386038) + (xy 135.41269 107.465441) + (xy 135.412692 107.465442) + (xy 135.512747 107.516422) + (xy 135.623659 107.533989) + (xy 135.652071 107.529488) + (xy 135.662489 107.53199) + (xy 135.666345 107.536248) + (xy 141.111489 116.846087) + (xy 141.112947 116.856702) + (xy 141.106472 116.86524) + (xy 141.095857 116.866698) + (xy 141.087852 116.861064) + (xy 133.258225 105.421866) + (xy 133.256017 105.41138) + (xy 133.257302 105.407605) + (xy 133.291563 105.340368) + (xy 133.30913 105.229456) + (xy 133.291563 105.118544) + (xy 133.240583 105.018489) + (xy 133.240582 105.018487) + (xy 133.161179 104.939084) + (xy 133.061123 104.888104) + (xy 133.061124 104.888104) + (xy 133.021746 104.881867) + (xy 132.976903 104.874764) + (xy 132.967768 104.869166) + (xy 132.965266 104.858747) + (xy 132.970865 104.849611) + (xy 132.976899 104.84711) + (xy 132.986179 104.845641) + (xy 133.086234 104.794661) + (xy 133.165639 104.715256) + (xy 133.216619 104.615201) + (xy 133.234186 104.504289) + (xy 133.216619 104.393377) + (xy 133.195197 104.351335) + (xy 133.194357 104.340654) + (xy 133.196752 104.336218) + (xy 133.353515 104.140923) + (xy 133.35356 104.140899) + (xy 133.357079 104.136507) + (xy 133.35708 104.136508) + (xy 133.362752 104.129429) + (xy 133.368917 104.121738) + (xy 133.370542 104.119712) + (xy 133.370555 104.11969) + (xy 133.397917 104.085547) + (xy 133.453778 103.967484) + (xy 133.480677 103.839673) + (xy 133.477141 103.70911) + (xy 133.443365 103.582943) + (xy 133.411961 103.524919) + (xy 133.381197 103.468077) + (xy 133.368924 103.454356) + (xy 133.35081 103.434102) + (xy 133.350662 103.433911) + (xy 133.035093 103.081632) + (xy 132.952665 102.989615) + (xy 132.949115 102.979507) + (xy 132.953753 102.969847) + (xy 132.963094 102.966275) + (xy 132.964002 102.966275) + (xy 132.964002 102.966274) + (xy 132.964004 102.966275) + (xy 133.074916 102.948708) + (xy 133.166919 102.901829) + (xy 133.177599 102.900989) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 149.295399 93.204601) + (xy 149.2995 93.2145) + (xy 149.2995 95.045762) + (xy 149.308868 95.065218) + (xy 149.309903 95.068176) + (xy 149.314709 95.08923) + (xy 149.31471 95.089231) + (xy 149.325652 95.102952) + (xy 149.328176 95.106116) + (xy 149.329841 95.108766) + (xy 149.339212 95.128224) + (xy 149.339213 95.128225) + (xy 149.356094 95.141688) + (xy 149.35831 95.143904) + (xy 149.371774 95.160786) + (xy 149.371776 95.160788) + (xy 149.371777 95.160788) + (xy 149.371778 95.160789) + (xy 149.391229 95.170157) + (xy 149.393883 95.171824) + (xy 149.405809 95.181335) + (xy 149.410769 95.18529) + (xy 149.431824 95.190095) + (xy 149.434776 95.191128) + (xy 149.454237 95.2005) + (xy 149.47741 95.2005) + (xy 154.2855 95.2005) + (xy 154.295399 95.204601) + (xy 154.2995 95.2145) + (xy 154.2995 103.6635) + (xy 154.295399 103.673399) + (xy 154.2855 103.6775) + (xy 151.135909 103.6775) + (xy 151.128685 103.679149) + (xy 151.12557 103.6795) + (xy 151.109735 103.6795) + (xy 151.095471 103.686368) + (xy 151.092514 103.687403) + (xy 151.06927 103.692709) + (xy 151.069267 103.69271) + (xy 151.060727 103.699521) + (xy 151.05043 103.702487) + (xy 151.041053 103.697303) + (xy 151.037999 103.688575) + (xy 151.037999 102.640103) + (xy 151.037096 102.635561) + (xy 151.032169 102.610787) + (xy 151.009957 102.577543) + (xy 150.976713 102.555331) + (xy 150.976712 102.55533) + (xy 150.976711 102.55533) + (xy 150.954676 102.550947) + (xy 150.947399 102.5495) + (xy 150.947398 102.5495) + (xy 148.827603 102.5495) + (xy 148.798287 102.555331) + (xy 148.765043 102.577543) + (xy 148.74283 102.610788) + (xy 148.737 102.640101) + (xy 148.737 103.149453) + (xy 148.732899 103.159352) + (xy 148.723108 103.163453) + (xy 148.405899 103.165894) + (xy 148.395968 103.161869) + (xy 148.393317 103.15825) + (xy 148.365155 103.102978) + (xy 148.285752 103.023575) + (xy 148.185696 102.972595) + (xy 148.185697 102.972595) + (xy 148.074784 102.955028) + (xy 147.963871 102.972595) + (xy 147.863815 103.023575) + (xy 147.784412 103.102978) + (xy 147.733432 103.203034) + (xy 147.715865 103.313947) + (xy 147.733432 103.424859) + (xy 147.784412 103.524915) + (xy 147.863815 103.604318) + (xy 147.863817 103.604319) + (xy 147.963872 103.655299) + (xy 148.074784 103.672866) + (xy 148.185696 103.655299) + (xy 148.285751 103.604319) + (xy 148.365156 103.524914) + (xy 148.395923 103.464526) + (xy 148.404069 103.457569) + (xy 148.408284 103.456884) + (xy 148.722893 103.454464) + (xy 148.732823 103.458489) + (xy 148.737 103.468356) + (xy 148.737 103.959896) + (xy 148.741383 103.981934) + (xy 148.742831 103.989213) + (xy 148.765043 104.022457) + (xy 148.798287 104.044669) + (xy 148.827601 104.0505) + (xy 150.941 104.050499) + (xy 150.950899 104.0546) + (xy 150.955 104.064499) + (xy 150.955 104.131084) + (xy 150.950899 104.140983) + (xy 150.941 104.145084) + (xy 150.939631 104.145017) + (xy 150.939458 104.145) + (xy 150.354 104.145) + (xy 150.354 104.704999) + (xy 150.939447 104.704999) + (xy 150.939618 104.704982) + (xy 150.939674 104.704999) + (xy 150.940143 104.704999) + (xy 150.940143 104.70514) + (xy 150.949874 104.708086) + (xy 150.954932 104.717532) + (xy 150.955 104.718914) + (xy 150.955 111.281084) + (xy 150.950899 111.290983) + (xy 150.941 111.295084) + (xy 150.939631 111.295017) + (xy 150.939458 111.295) + (xy 150.354 111.295) + (xy 150.354 111.854999) + (xy 150.939447 111.854999) + (xy 150.939618 111.854982) + (xy 150.939674 111.854999) + (xy 150.940143 111.854999) + (xy 150.940143 111.85514) + (xy 150.949874 111.858086) + (xy 150.954932 111.867532) + (xy 150.955 111.868914) + (xy 150.955 111.9355) + (xy 150.950899 111.945399) + (xy 150.941 111.9495) + (xy 148.827603 111.9495) + (xy 148.798287 111.955331) + (xy 148.765043 111.977543) + (xy 148.74283 112.010788) + (xy 148.737 112.040101) + (xy 148.737 112.539626) + (xy 148.732899 112.549525) + (xy 148.723 112.553626) + (xy 148.72299 112.553626) + (xy 148.197391 112.553232) + (xy 148.187494 112.549124) + (xy 148.184927 112.545588) + (xy 148.181889 112.539626) + (xy 148.155339 112.487517) + (xy 148.155338 112.487515) + (xy 148.075935 112.408112) + (xy 147.975879 112.357132) + (xy 147.97588 112.357132) + (xy 147.864967 112.339565) + (xy 147.754054 112.357132) + (xy 147.653998 112.408112) + (xy 147.574595 112.487515) + (xy 147.523615 112.587571) + (xy 147.506048 112.698484) + (xy 147.523615 112.809396) + (xy 147.574595 112.909452) + (xy 147.653998 112.988855) + (xy 147.654 112.988856) + (xy 147.754055 113.039836) + (xy 147.864967 113.057403) + (xy 147.975879 113.039836) + (xy 148.075934 112.988856) + (xy 148.155339 112.909451) + (xy 148.184673 112.851875) + (xy 148.19282 112.844917) + (xy 148.197154 112.844232) + (xy 148.723011 112.844626) + (xy 148.732907 112.848734) + (xy 148.737 112.858626) + (xy 148.737 113.359896) + (xy 148.737001 113.359899) + (xy 148.742831 113.389213) + (xy 148.765043 113.422457) + (xy 148.798287 113.444669) + (xy 148.827601 113.4505) + (xy 150.947398 113.450499) + (xy 150.976713 113.444669) + (xy 151.009957 113.422457) + (xy 151.032169 113.389213) + (xy 151.038 113.359899) + (xy 151.037999 112.318232) + (xy 151.042099 112.308334) + (xy 151.051999 112.304233) + (xy 151.058074 112.30562) + (xy 151.070731 112.311716) + (xy 151.073133 112.313225) + (xy 151.073397 112.313352) + (xy 151.076077 112.314289) + (xy 151.109737 112.3305) + (xy 151.201263 112.3305) + (xy 151.201915 112.330185) + (xy 151.202539 112.329886) + (xy 151.208612 112.3285) + (xy 154.2855 112.3285) + (xy 154.295399 112.332601) + (xy 154.2995 112.3425) + (xy 154.2995 120.7855) + (xy 154.295399 120.795399) + (xy 154.2855 120.7995) + (xy 149.454235 120.7995) + (xy 149.434779 120.808868) + (xy 149.431822 120.809903) + (xy 149.41077 120.814709) + (xy 149.410767 120.81471) + (xy 149.393881 120.828176) + (xy 149.391228 120.829843) + (xy 149.371778 120.83921) + (xy 149.371774 120.839213) + (xy 149.358311 120.856095) + (xy 149.356095 120.858311) + (xy 149.339213 120.871774) + (xy 149.33921 120.871778) + (xy 149.329843 120.891228) + (xy 149.328176 120.893881) + (xy 149.31471 120.910767) + (xy 149.314709 120.91077) + (xy 149.309903 120.931822) + (xy 149.308868 120.934779) + (xy 149.2995 120.954235) + (xy 149.2995 122.7855) + (xy 149.295399 122.795399) + (xy 149.2855 122.7995) + (xy 124.7145 122.7995) + (xy 124.704601 122.795399) + (xy 124.7005 122.7855) + (xy 124.7005 122.402952) + (xy 125.395 122.402952) + (xy 125.396739 122.411705) + (xy 125.403371 122.42163) + (xy 125.413293 122.428259) + (xy 125.422044 122.429999) + (xy 126.807499 122.429999) + (xy 126.842499 122.429999) + (xy 128.227952 122.429999) + (xy 128.236705 122.42826) + (xy 128.24663 122.421628) + (xy 128.253259 122.411707) + (xy 128.253259 122.411705) + (xy 128.255 122.402955) + (xy 128.255 121.6675) + (xy 139.895001 121.6675) + (xy 139.895001 122.402952) + (xy 139.896739 122.411705) + (xy 139.903371 122.42163) + (xy 139.913293 122.428259) + (xy 139.922044 122.429999) + (xy 141.3075 122.429999) + (xy 141.3075 121.6675) + (xy 141.3425 121.6675) + (xy 141.3425 122.429999) + (xy 142.727952 122.429999) + (xy 142.736705 122.42826) + (xy 142.74663 122.421628) + (xy 142.753259 122.411707) + (xy 142.753259 122.411705) + (xy 142.755 122.402955) + (xy 142.755 121.6675) + (xy 141.3425 121.6675) + (xy 141.3075 121.6675) + (xy 139.895001 121.6675) + (xy 128.255 121.6675) + (xy 126.8425 121.6675) + (xy 126.842499 122.429999) + (xy 126.807499 122.429999) + (xy 126.8075 121.6675) + (xy 125.395001 121.6675) + (xy 125.395 122.402952) + (xy 124.7005 122.402952) + (xy 124.7005 121.6325) + (xy 125.395 121.6325) + (xy 126.8075 121.6325) + (xy 126.807499 120.87) + (xy 126.842499 120.87) + (xy 126.8425 121.6325) + (xy 128.254999 121.6325) + (xy 139.895 121.6325) + (xy 141.3075 121.6325) + (xy 141.3075 120.87) + (xy 141.3425 120.87) + (xy 141.3425 121.6325) + (xy 142.754999 121.6325) + (xy 142.754999 120.897047) + (xy 142.75326 120.888294) + (xy 142.746628 120.878369) + (xy 142.736706 120.87174) + (xy 142.727956 120.87) + (xy 141.3425 120.87) + (xy 141.3075 120.87) + (xy 139.922047 120.87) + (xy 139.913294 120.871739) + (xy 139.903369 120.878371) + (xy 139.89674 120.888292) + (xy 139.89674 120.888294) + (xy 139.895 120.897044) + (xy 139.895 121.6325) + (xy 128.254999 121.6325) + (xy 128.254999 120.897047) + (xy 128.25326 120.888294) + (xy 128.246628 120.878369) + (xy 128.236706 120.87174) + (xy 128.227956 120.87) + (xy 126.842499 120.87) + (xy 126.807499 120.87) + (xy 125.422047 120.87) + (xy 125.413294 120.871739) + (xy 125.403369 120.878371) + (xy 125.39674 120.888292) + (xy 125.39674 120.888294) + (xy 125.395 120.897044) + (xy 125.395 121.6325) + (xy 124.7005 121.6325) + (xy 124.7005 119.453472) + (xy 139.416721 119.453472) + (xy 139.426783 119.639057) + (xy 139.476507 119.818147) + (xy 139.476507 119.818148) + (xy 139.563568 119.98236) + (xy 139.563573 119.982367) + (xy 139.683894 120.124021) + (xy 139.831855 120.236498) + (xy 139.831856 120.236498) + (xy 139.831861 120.236502) + (xy 140.000548 120.314545) + (xy 140.182067 120.3545) + (xy 140.182068 120.3545) + (xy 140.321325 120.3545) + (xy 140.321332 120.3545) + (xy 140.459775 120.339443) + (xy 140.635911 120.280096) + (xy 140.795171 120.184273) + (xy 140.930108 120.056454) + (xy 141.034413 119.902615) + (xy 141.103209 119.729951) + (xy 141.133278 119.546535) + (xy 141.132712 119.536103) + (xy 141.123216 119.360942) + (xy 141.073492 119.181852) + (xy 141.073492 119.181851) + (xy 141.017145 119.07557) + (xy 140.986431 119.017638) + (xy 140.923496 118.943545) + (xy 140.866105 118.875978) + (xy 140.718144 118.763501) + (xy 140.718141 118.763499) + (xy 140.718139 118.763498) + (xy 140.549452 118.685455) + (xy 140.367933 118.6455) + (xy 140.228668 118.6455) + (xy 140.22866 118.6455) + (xy 140.090227 118.660556) + (xy 140.090216 118.660559) + (xy 139.914097 118.7199) + (xy 139.91409 118.719903) + (xy 139.75483 118.815726) + (xy 139.754828 118.815727) + (xy 139.619892 118.943545) + (xy 139.515586 119.097386) + (xy 139.446791 119.270047) + (xy 139.416721 119.453472) + (xy 124.7005 119.453472) + (xy 124.7005 102.60791) + (xy 132.215924 102.60791) + (xy 132.220135 102.64984) + (xy 132.230762 102.755656) + (xy 132.274492 102.897566) + (xy 132.277011 102.902215) + (xy 132.300434 102.945449) + (xy 132.300597 102.945802) + (xy 132.300716 102.946021) + (xy 132.300717 102.946024) + (xy 132.302176 102.948708) + (xy 132.309023 102.961308) + (xy 132.309024 102.96131) + (xy 132.326523 102.993515) + (xy 132.326534 102.993531) + (xy 132.635849 103.562688) + (xy 132.636973 103.573344) + (xy 132.634877 103.577598) + (xy 132.63428 103.57842) + (xy 132.583299 103.678476) + (xy 132.565732 103.789389) + (xy 132.583299 103.900301) + (xy 132.634279 104.000357) + (xy 132.713682 104.07976) + (xy 132.811841 104.129774) + (xy 132.8188 104.137922) + (xy 132.817959 104.148604) + (xy 132.809811 104.155563) + (xy 132.807678 104.156075) + (xy 132.778774 104.160653) + (xy 132.764354 104.162937) + (xy 132.664298 104.213917) + (xy 132.584895 104.29332) + (xy 132.533915 104.393376) + (xy 132.516348 104.504289) + (xy 132.533915 104.615201) + (xy 132.584895 104.715257) + (xy 132.664298 104.79466) + (xy 132.6643 104.794661) + (xy 132.764355 104.845641) + (xy 132.848575 104.85898) + (xy 132.857709 104.864578) + (xy 132.860211 104.874997) + (xy 132.854612 104.884133) + (xy 132.848574 104.886634) + (xy 132.839303 104.888103) + (xy 132.839298 104.888104) + (xy 132.739242 104.939084) + (xy 132.659839 105.018487) + (xy 132.608859 105.118543) + (xy 132.591292 105.229456) + (xy 132.608859 105.340368) + (xy 132.659839 105.440424) + (xy 132.739242 105.519827) + (xy 132.739244 105.519828) + (xy 132.839299 105.570808) + (xy 132.950211 105.588375) + (xy 133.004032 105.579849) + (xy 133.014449 105.582351) + (xy 133.017773 105.585769) + (xy 141.860141 118.504597) + (xy 141.860143 118.5046) + (xy 141.873719 118.524433) + (xy 141.873726 118.524466) + (xy 141.878862 118.531946) + (xy 141.889481 118.547461) + (xy 141.889661 118.54769) + (xy 141.903944 118.568515) + (xy 141.967704 118.632065) + (xy 141.967708 118.632068) + (xy 141.967712 118.632072) + (xy 142.042173 118.682676) + (xy 142.048549 118.685455) + (xy 142.065323 118.692767) + (xy 142.065593 118.692906) + (xy 142.083437 118.700663) + (xy 142.120823 118.716916) + (xy 142.120828 118.716917) + (xy 142.166081 118.736589) + (xy 142.173525 118.744296) + (xy 142.1745 118.749428) + (xy 142.1745 119.419896) + (xy 142.176342 119.429156) + (xy 142.180331 119.449213) + (xy 142.202543 119.482457) + (xy 142.235787 119.504669) + (xy 142.265101 119.5105) + (xy 144.079468 119.510499) + (xy 144.089367 119.514599) + (xy 144.093468 119.524499) + (xy 144.089368 119.534398) + (xy 144.087301 119.536103) + (xy 143.68585 119.807104) + (xy 143.678017 119.8095) + (xy 142.265103 119.8095) + (xy 142.235787 119.815331) + (xy 142.202543 119.837543) + (xy 142.18033 119.870788) + (xy 142.1745 119.900101) + (xy 142.1745 120.619896) + (xy 142.174501 120.619899) + (xy 142.180331 120.649213) + (xy 142.202543 120.682457) + (xy 142.235787 120.704669) + (xy 142.265101 120.7105) + (xy 144.284898 120.710499) + (xy 144.314213 120.704669) + (xy 144.347457 120.682457) + (xy 144.369669 120.649213) + (xy 144.3755 120.619899) + (xy 144.375499 119.900102) + (xy 144.369669 119.870787) + (xy 144.347457 119.837543) + (xy 144.314213 119.815331) + (xy 144.314212 119.81533) + (xy 144.314211 119.81533) + (xy 144.284899 119.8095) + (xy 144.248168 119.8095) + (xy 144.238269 119.805399) + (xy 144.234168 119.7955) + (xy 144.238269 119.785601) + (xy 144.240335 119.783896) + (xy 144.25367 119.774893) + (xy 144.453413 119.640057) + (xy 144.453415 119.640054) + (xy 144.453626 119.639912) + (xy 144.453917 119.639685) + (xy 144.467058 119.630791) + (xy 144.514751 119.577792) + (xy 144.548212 119.514832) + (xy 144.565454 119.44565) + (xy 144.565474 119.429788) + (xy 144.5655 119.429409) + (xy 144.5655 118.707817) + (xy 144.565503 118.700663) + (xy 144.565519 118.666347) + (xy 144.539861 118.582897) + (xy 144.507161 118.534746) + (xy 144.490813 118.510673) + (xy 144.490812 118.510672) + (xy 144.465264 118.490183) + (xy 148.641691 118.490183) + (xy 148.651838 118.729034) + (xy 148.651838 118.72904) + (xy 148.651839 118.729042) + (xy 148.670521 118.815726) + (xy 148.702209 118.962762) + (xy 148.791348 119.184593) + (xy 148.79135 119.184596) + (xy 148.916695 119.388171) + (xy 148.916706 119.388186) + (xy 149.074656 119.567651) + (xy 149.074658 119.567653) + (xy 149.260672 119.717849) + (xy 149.469393 119.834448) + (xy 149.694817 119.914095) + (xy 149.930459 119.9545) + (xy 149.930462 119.9545) + (xy 150.109667 119.9545) + (xy 150.145984 119.951408) + (xy 150.28822 119.939303) + (xy 150.519587 119.879059) + (xy 150.737444 119.780581) + (xy 150.935525 119.646702) + (xy 151.108131 119.481273) + (xy 151.250297 119.289052) + (xy 151.357932 119.07557) + (xy 151.42794 118.846969) + (xy 151.458308 118.609824) + (xy 151.458294 118.6095) + (xy 151.448161 118.370965) + (xy 151.448161 118.370958) + (xy 151.397792 118.137243) + (xy 151.39779 118.137237) + (xy 151.308651 117.915406) + (xy 151.308649 117.915403) + (xy 151.183304 117.711828) + (xy 151.183293 117.711813) + (xy 151.025343 117.532348) + (xy 151.025342 117.532347) + (xy 150.839328 117.382151) + (xy 150.630607 117.265552) + (xy 150.503912 117.220788) + (xy 150.405184 117.185905) + (xy 150.346272 117.175803) + (xy 150.169541 117.1455) + (xy 149.990336 117.1455) + (xy 149.990333 117.1455) + (xy 149.811779 117.160697) + (xy 149.811774 117.160698) + (xy 149.580412 117.220941) + (xy 149.58041 117.220942) + (xy 149.362561 117.319416) + (xy 149.362553 117.319421) + (xy 149.16447 117.453301) + (xy 148.991872 117.618723) + (xy 148.991869 117.618726) + (xy 148.849704 117.810944) + (xy 148.742069 118.024426) + (xy 148.742066 118.024433) + (xy 148.67206 118.253027) + (xy 148.67206 118.253028) + (xy 148.641691 118.490183) + (xy 144.465264 118.490183) + (xy 144.422704 118.456051) + (xy 144.422702 118.45605) + (xy 144.422699 118.456048) + (xy 144.341552 118.423857) + (xy 144.341549 118.423856) + (xy 144.303606 118.420855) + (xy 144.300043 118.420574) + (xy 144.298034 118.420415) + (xy 144.29088 118.419846) + (xy 143.896238 118.388455) + (xy 143.886695 118.383582) + (xy 143.883392 118.373389) + (xy 143.888265 118.363846) + (xy 143.897348 118.360499) + (xy 144.284897 118.360499) + (xy 144.284898 118.360499) + (xy 144.314213 118.354669) + (xy 144.347457 118.332457) + (xy 144.369669 118.299213) + (xy 144.3755 118.269899) + (xy 144.375499 117.250102) + (xy 144.369669 117.220787) + (xy 144.347457 117.187543) + (xy 144.314213 117.165331) + (xy 144.314212 117.16533) + (xy 144.314211 117.16533) + (xy 144.284899 117.1595) + (xy 142.883754 117.1595) + (xy 142.873877 117.155422) + (xy 142.583822 116.866698) + (xy 142.400704 116.68442) + (xy 142.396582 116.674531) + (xy 142.40066 116.664622) + (xy 142.41055 116.660499) + (xy 144.284897 116.660499) + (xy 144.284898 116.660499) + (xy 144.314213 116.654669) + (xy 144.347457 116.632457) + (xy 144.369669 116.599213) + (xy 144.3755 116.569899) + (xy 144.375499 115.550102) + (xy 144.369669 115.520787) + (xy 144.347457 115.487543) + (xy 144.314213 115.465331) + (xy 144.314212 115.46533) + (xy 144.314211 115.46533) + (xy 144.284899 115.4595) + (xy 143.089124 115.4595) + (xy 143.079225 115.455399) + (xy 143.077151 115.452756) + (xy 142.306645 114.181255) + (xy 142.305021 114.170663) + (xy 142.311362 114.162026) + (xy 142.318618 114.159999) + (xy 143.2575 114.159999) + (xy 143.2575 113.6475) + (xy 143.2925 113.6475) + (xy 143.2925 114.159999) + (xy 144.277952 114.159999) + (xy 144.286705 114.15826) + (xy 144.29663 114.151628) + (xy 144.303259 114.141707) + (xy 144.303259 114.141705) + (xy 144.305 114.132955) + (xy 144.305 113.6475) + (xy 143.2925 113.6475) + (xy 143.2575 113.6475) + (xy 143.2575 113.1) + (xy 143.2925 113.1) + (xy 143.2925 113.6125) + (xy 144.304999 113.6125) + (xy 144.304999 113.127047) + (xy 144.30326 113.118294) + (xy 144.296628 113.108369) + (xy 144.286706 113.10174) + (xy 144.277956 113.1) + (xy 143.2925 113.1) + (xy 143.2575 113.1) + (xy 142.2895 113.1) + (xy 142.279601 113.095899) + (xy 142.2755 113.086) + (xy 142.2755 111.744499) + (xy 142.279601 111.7346) + (xy 142.2895 111.730499) + (xy 144.284897 111.730499) + (xy 144.284898 111.730499) + (xy 144.314213 111.724669) + (xy 144.347457 111.702457) + (xy 144.369669 111.669213) + (xy 144.3755 111.639899) + (xy 144.3755 111.5925) + (xy 149.706501 111.5925) + (xy 149.706501 111.827952) + (xy 149.708239 111.836705) + (xy 149.714871 111.84663) + (xy 149.724793 111.853259) + (xy 149.733544 111.854999) + (xy 150.319 111.854999) + (xy 150.319 111.5925) + (xy 149.706501 111.5925) + (xy 144.3755 111.5925) + (xy 144.3755 111.5575) + (xy 149.7065 111.5575) + (xy 150.319 111.5575) + (xy 150.319 111.295) + (xy 149.733547 111.295) + (xy 149.724794 111.296739) + (xy 149.714869 111.303371) + (xy 149.70824 111.313292) + (xy 149.70824 111.313294) + (xy 149.7065 111.322044) + (xy 149.7065 111.5575) + (xy 144.3755 111.5575) + (xy 144.375499 110.7675) + (xy 148.907501 110.7675) + (xy 148.907501 110.902952) + (xy 148.909239 110.911705) + (xy 148.915871 110.92163) + (xy 148.925793 110.928259) + (xy 148.934544 110.929999) + (xy 149.42 110.929999) + (xy 149.42 110.7675) + (xy 149.455 110.7675) + (xy 149.455 110.929999) + (xy 149.940452 110.929999) + (xy 149.949205 110.92826) + (xy 149.95913 110.921628) + (xy 149.965759 110.911707) + (xy 149.965759 110.911705) + (xy 149.9675 110.902955) + (xy 149.9675 110.7675) + (xy 149.455 110.7675) + (xy 149.42 110.7675) + (xy 148.907501 110.7675) + (xy 144.375499 110.7675) + (xy 144.375499 110.7325) + (xy 148.9075 110.7325) + (xy 149.42 110.7325) + (xy 149.42 110.57) + (xy 149.455 110.57) + (xy 149.455 110.7325) + (xy 149.967499 110.7325) + (xy 149.967499 110.597047) + (xy 149.96576 110.588294) + (xy 149.959128 110.578369) + (xy 149.949206 110.57174) + (xy 149.940456 110.57) + (xy 149.455 110.57) + (xy 149.42 110.57) + (xy 148.934547 110.57) + (xy 148.925794 110.571739) + (xy 148.915869 110.578371) + (xy 148.90924 110.588292) + (xy 148.90924 110.588294) + (xy 148.9075 110.597044) + (xy 148.9075 110.7325) + (xy 144.375499 110.7325) + (xy 144.375499 110.620102) + (xy 144.369669 110.590787) + (xy 144.347457 110.557543) + (xy 144.314213 110.535331) + (xy 144.314212 110.53533) + (xy 144.314211 110.53533) + (xy 144.284899 110.5295) + (xy 144.001919 110.5295) + (xy 143.99202 110.525399) + (xy 143.987919 110.5155) + (xy 143.991217 110.506474) + (xy 144.047946 110.439212) + (xy 144.775 109.577156) + (xy 144.787547 109.56228) + (xy 144.788594 109.561036) + (xy 144.799897 109.547636) + (xy 144.799898 109.547632) + (xy 144.800491 109.54693) + (xy 144.800534 109.54687) + (xy 144.825488 109.517265) + (xy 144.884552 109.415407) + (xy 144.924962 109.304814) + (xy 144.945481 109.188872) + (xy 144.945492 109.150228) + (xy 144.9455 109.150138) + (xy 144.9455 108.7325) + (xy 148.9075 108.7325) + (xy 149.42 108.7325) + (xy 149.42 108.57) + (xy 148.934547 108.57) + (xy 148.925794 108.571739) + (xy 148.915869 108.578371) + (xy 148.90924 108.588292) + (xy 148.90924 108.588294) + (xy 148.9075 108.597044) + (xy 148.9075 108.7325) + (xy 144.9455 108.7325) + (xy 144.9455 108.129999) + (xy 144.945599 108.062794) + (xy 144.92405 107.956365) + (xy 146.362191 107.956365) + (xy 146.362191 108.241817) + (xy 146.363929 108.25057) + (xy 146.370561 108.260495) + (xy 146.380483 108.267124) + (xy 146.389234 108.268864) + (xy 146.564829 108.268864) + (xy 146.564829 107.956365) + (xy 146.599829 107.956365) + (xy 146.599829 108.268864) + (xy 146.77542 108.268864) + (xy 146.784173 108.267125) + (xy 146.794098 108.260493) + (xy 146.800727 108.250572) + (xy 146.800727 108.25057) + (xy 146.801087 108.248761) + (xy 147.211412 108.248761) + (xy 147.215065 108.267125) + (xy 147.217243 108.278078) + (xy 147.239455 108.311322) + (xy 147.272699 108.333534) + (xy 147.302013 108.339365) + (xy 147.702088 108.339364) + (xy 147.731403 108.333534) + (xy 147.764647 108.311322) + (xy 147.786859 108.278078) + (xy 147.79269 108.248764) + (xy 147.792689 107.918572) + (xy 147.796789 107.908674) + (xy 147.798594 107.90715) + (xy 148.814909 107.187426) + (xy 148.825358 107.185052) + (xy 148.834425 107.190761) + (xy 148.837 107.198852) + (xy 148.837 107.409896) + (xy 148.841383 107.431934) + (xy 148.842831 107.439213) + (xy 148.865043 107.472457) + (xy 148.888498 107.488128) + (xy 148.888843 107.488359) + (xy 148.894796 107.497269) + (xy 148.892706 107.507778) + (xy 148.888843 107.511641) + (xy 148.865043 107.527543) + (xy 148.84283 107.560788) + (xy 148.837 107.590101) + (xy 148.837 107.909896) + (xy 148.837286 107.911333) + (xy 148.842831 107.939213) + (xy 148.865043 107.972457) + (xy 148.888498 107.988128) + (xy 148.888843 107.988359) + (xy 148.894796 107.997269) + (xy 148.892706 108.007778) + (xy 148.888843 108.011641) + (xy 148.865043 108.027543) + (xy 148.84283 108.060788) + (xy 148.837 108.090101) + (xy 148.837 108.409896) + (xy 148.841383 108.431934) + (xy 148.842831 108.439213) + (xy 148.865043 108.472457) + (xy 148.898287 108.494669) + (xy 148.927601 108.5005) + (xy 149.923 108.500499) + (xy 149.932899 108.504599) + (xy 149.937 108.514499) + (xy 149.937 108.556) + (xy 149.932899 108.565899) + (xy 149.923 108.57) + (xy 149.455 108.57) + (xy 149.455 108.7535) + (xy 149.450899 108.763399) + (xy 149.441 108.7675) + (xy 148.907501 108.7675) + (xy 148.907501 108.902952) + (xy 148.909239 108.911705) + (xy 148.915871 108.92163) + (xy 148.925792 108.928259) + (xy 148.927069 108.928788) + (xy 148.926815 108.9294) + (xy 148.933725 108.934003) + (xy 148.935831 108.944509) + (xy 148.929891 108.953427) + (xy 148.922009 108.955798) + (xy 148.714679 108.954513) + (xy 148.70841 108.952987) + (xy 148.609971 108.902831) + (xy 148.609972 108.902831) + (xy 148.499059 108.885264) + (xy 148.388146 108.902831) + (xy 148.28809 108.953811) + (xy 148.208687 109.033214) + (xy 148.157707 109.13327) + (xy 148.14014 109.244183) + (xy 148.157707 109.355095) + (xy 148.208687 109.455151) + (xy 148.28809 109.534554) + (xy 148.288092 109.534555) + (xy 148.388147 109.585535) + (xy 148.499059 109.603102) + (xy 148.609971 109.585535) + (xy 148.703225 109.538018) + (xy 148.709666 109.536493) + (xy 148.83245 109.537254) + (xy 148.842323 109.541416) + (xy 148.846362 109.551341) + (xy 148.844005 109.559029) + (xy 148.84283 109.560787) + (xy 148.837 109.590101) + (xy 148.837 109.909896) + (xy 148.837001 109.909899) + (xy 148.842831 109.939213) + (xy 148.865043 109.972457) + (xy 148.888498 109.988128) + (xy 148.888843 109.988359) + (xy 148.894796 109.997269) + (xy 148.892706 110.007778) + (xy 148.888843 110.011641) + (xy 148.865043 110.027543) + (xy 148.84283 110.060788) + (xy 148.837 110.090101) + (xy 148.837 110.409896) + (xy 148.837001 110.409899) + (xy 148.842831 110.439213) + (xy 148.865043 110.472457) + (xy 148.898287 110.494669) + (xy 148.927601 110.5005) + (xy 149.947398 110.500499) + (xy 149.976713 110.494669) + (xy 150.009957 110.472457) + (xy 150.032169 110.439213) + (xy 150.038 110.409899) + (xy 150.037999 110.090102) + (xy 150.032169 110.060787) + (xy 150.009957 110.027543) + (xy 149.986155 110.011639) + (xy 149.980203 110.002732) + (xy 149.982293 109.992222) + (xy 149.986154 109.98836) + (xy 150.009957 109.972457) + (xy 150.032169 109.939213) + (xy 150.038 109.909899) + (xy 150.037999 109.590102) + (xy 150.032169 109.560787) + (xy 150.009957 109.527543) + (xy 149.986154 109.511639) + (xy 149.980202 109.502731) + (xy 149.982292 109.492221) + (xy 149.986149 109.488363) + (xy 149.99893 109.479823) + (xy 150.005112 109.477557) + (xy 150.048695 109.472569) + (xy 150.064337 109.47078) + (xy 150.179482 109.43228) + (xy 150.284194 109.37083) + (xy 150.373957 109.28908) + (xy 150.444902 109.190553) + (xy 150.493969 109.079499) + (xy 150.519043 108.960705) + (xy 150.519 108.9) + (xy 150.519 108.848689) + (xy 150.519 108.848688) + (xy 150.519 107.599652) + (xy 150.519043 107.539295) + (xy 150.493969 107.420501) + (xy 150.444902 107.309447) + (xy 150.373957 107.21092) + (xy 150.284194 107.12917) + (xy 150.284192 107.129168) + (xy 150.284189 107.129166) + (xy 150.17948 107.067719) + (xy 150.179479 107.067718) + (xy 150.064339 107.02922) + (xy 150.064336 107.029219) + (xy 150.005115 107.022442) + (xy 149.998929 107.020174) + (xy 149.986156 107.01164) + (xy 149.980203 107.002731) + (xy 149.982293 106.992221) + (xy 149.986154 106.98836) + (xy 150.009957 106.972457) + (xy 150.032169 106.939213) + (xy 150.038 106.909899) + (xy 150.037999 106.590102) + (xy 150.032169 106.560787) + (xy 150.009957 106.527543) + (xy 149.986155 106.511639) + (xy 149.980203 106.502732) + (xy 149.982293 106.492222) + (xy 149.986154 106.48836) + (xy 150.009957 106.472457) + (xy 150.032169 106.439213) + (xy 150.038 106.409899) + (xy 150.037999 106.090102) + (xy 150.032169 106.060787) + (xy 150.009957 106.027543) + (xy 149.986155 106.011639) + (xy 149.980203 106.002732) + (xy 149.982293 105.992222) + (xy 149.986154 105.98836) + (xy 150.009957 105.972457) + (xy 150.032169 105.939213) + (xy 150.038 105.909899) + (xy 150.037999 105.590102) + (xy 150.032169 105.560787) + (xy 150.009957 105.527543) + (xy 149.976713 105.505331) + (xy 149.976712 105.50533) + (xy 149.976711 105.50533) + (xy 149.954676 105.500947) + (xy 149.947399 105.4995) + (xy 149.947398 105.4995) + (xy 148.927603 105.4995) + (xy 148.898287 105.505331) + (xy 148.865041 105.527544) + (xy 148.85624 105.540716) + (xy 148.847331 105.546669) + (xy 148.843265 105.546874) + (xy 148.827628 105.545376) + (xy 148.818165 105.54035) + (xy 148.816489 105.537796) + (xy 148.796977 105.499501) + (xy 148.770357 105.447254) + (xy 148.770356 105.447252) + (xy 148.690953 105.367849) + (xy 148.590897 105.316869) + (xy 148.590898 105.316869) + (xy 148.479985 105.299302) + (xy 148.369072 105.316869) + (xy 148.269016 105.367849) + (xy 148.189613 105.447252) + (xy 148.138633 105.547308) + (xy 148.121066 105.658221) + (xy 148.138633 105.769133) + (xy 148.189613 105.869189) + (xy 148.269016 105.948592) + (xy 148.269018 105.948593) + (xy 148.369073 105.999573) + (xy 148.479985 106.01714) + (xy 148.590897 105.999573) + (xy 148.690952 105.948593) + (xy 148.770357 105.869188) + (xy 148.783989 105.84243) + (xy 148.792136 105.835471) + (xy 148.797798 105.83485) + (xy 148.824336 105.837394) + (xy 148.833799 105.84242) + (xy 148.837 105.85133) + (xy 148.837 105.909896) + (xy 148.837001 105.909899) + (xy 148.842831 105.939213) + (xy 148.865043 105.972457) + (xy 148.888498 105.988128) + (xy 148.888843 105.988359) + (xy 148.894796 105.997269) + (xy 148.892706 106.007778) + (xy 148.888843 106.011641) + (xy 148.865043 106.027543) + (xy 148.84283 106.060788) + (xy 148.837 106.090101) + (xy 148.837 106.198803) + (xy 148.832899 106.208702) + (xy 148.825486 106.212581) + (xy 148.682041 106.238464) + (xy 148.671571 106.236186) + (xy 148.667081 106.231041) + (xy 148.666801 106.230493) + (xy 148.666801 106.230492) + (xy 148.587397 106.151088) + (xy 148.487341 106.100108) + (xy 148.487342 106.100108) + (xy 148.376429 106.082541) + (xy 148.265516 106.100108) + (xy 148.16546 106.151088) + (xy 148.086057 106.230491) + (xy 148.035077 106.330547) + (xy 148.01751 106.44146) + (xy 148.035077 106.552372) + (xy 148.086057 106.652428) + (xy 148.16546 106.731831) + (xy 148.165462 106.731832) + (xy 148.265517 106.782812) + (xy 148.376429 106.800379) + (xy 148.487341 106.782812) + (xy 148.587396 106.731832) + (xy 148.666801 106.652427) + (xy 148.717781 106.552372) + (xy 148.720245 106.536811) + (xy 148.725844 106.527676) + (xy 148.731587 106.525225) + (xy 148.853252 106.503271) + (xy 148.863722 106.505548) + (xy 148.869515 106.514562) + (xy 148.867238 106.525032) + (xy 148.865641 106.526944) + (xy 148.865045 106.52754) + (xy 148.84283 106.560788) + (xy 148.837 106.590101) + (xy 148.837 106.817811) + (xy 148.832899 106.82771) + (xy 148.828074 106.830859) + (xy 148.814367 106.836189) + (xy 148.814361 106.836193) + (xy 148.812661 106.837438) + (xy 148.81051 106.838734) + (xy 148.799813 106.843934) + (xy 148.799811 106.843935) + (xy 148.789463 106.850053) + (xy 148.787201 106.85113) + (xy 148.785251 106.851852) + (xy 148.785245 106.851855) + (xy 148.768905 106.863425) + (xy 148.741364 106.882913) + (xy 148.741273 106.882993) + (xy 147.778467 107.564824) + (xy 147.768018 107.567199) + (xy 147.762601 107.565041) + (xy 147.731403 107.544196) + (xy 147.731402 107.544195) + (xy 147.731401 107.544195) + (xy 147.706764 107.539295) + (xy 147.702089 107.538365) + (xy 147.702088 107.538365) + (xy 147.302015 107.538365) + (xy 147.272699 107.544196) + (xy 147.239455 107.566408) + (xy 147.217243 107.599652) + (xy 147.211412 107.628966) + (xy 147.211412 108.248761) + (xy 146.801087 108.248761) + (xy 146.802468 108.24182) + (xy 146.802468 107.956365) + (xy 146.599829 107.956365) + (xy 146.564829 107.956365) + (xy 146.362191 107.956365) + (xy 144.92405 107.956365) + (xy 144.918926 107.931055) + (xy 144.918925 107.931054) + (xy 144.918925 107.931051) + (xy 144.914835 107.921365) + (xy 146.36219 107.921365) + (xy 146.564829 107.921365) + (xy 146.564829 107.608865) + (xy 146.599829 107.608865) + (xy 146.599829 107.921365) + (xy 146.802467 107.921365) + (xy 146.802467 107.635912) + (xy 146.800728 107.627159) + (xy 146.794096 107.617234) + (xy 146.784174 107.610605) + (xy 146.775424 107.608865) + (xy 146.599829 107.608865) + (xy 146.564829 107.608865) + (xy 146.389237 107.608865) + (xy 146.380484 107.610604) + (xy 146.370559 107.617236) + (xy 146.36393 107.627157) + (xy 146.36393 107.627159) + (xy 146.36219 107.635909) + (xy 146.36219 107.921365) + (xy 144.914835 107.921365) + (xy 144.866642 107.807232) + (xy 144.86664 107.807228) + (xy 144.790822 107.696241) + (xy 144.79082 107.696239) + (xy 144.694491 107.602509) + (xy 144.636285 107.56504) + (xy 144.581469 107.529753) + (xy 144.581468 107.529752) + (xy 144.581464 107.52975) + (xy 144.519004 107.505474) + (xy 144.497985 107.497269) + (xy 144.491325 107.494669) + (xy 144.487893 107.493329) + (xy 144.487892 107.493329) + (xy 144.486676 107.492854) + (xy 144.486675 107.492854) + (xy 144.416453 107.465441) + (xy 144.191887 107.377775) + (xy 142.422489 106.68704) + (xy 142.414758 106.679621) + (xy 142.414539 106.668908) + (xy 142.421958 106.661177) + (xy 142.42758 106.659999) + (xy 143.2575 106.659999) + (xy 143.2575 106.1475) + (xy 143.2925 106.1475) + (xy 143.2925 106.659999) + (xy 144.277952 106.659999) + (xy 144.286705 106.65826) + (xy 144.29663 106.651628) + (xy 144.303259 106.641707) + (xy 144.303259 106.641705) + (xy 144.305 106.632955) + (xy 144.305 106.1475) + (xy 143.2925 106.1475) + (xy 143.2575 106.1475) + (xy 142.245001 106.1475) + (xy 142.245 106.465851) + (xy 142.240899 106.475751) + (xy 142.231 106.479851) + (xy 142.2211 106.47575) + (xy 142.217838 106.470619) + (xy 142.088203 106.1125) + (xy 142.245 106.1125) + (xy 143.2575 106.1125) + (xy 143.2575 105.6) + (xy 143.2925 105.6) + (xy 143.2925 106.1125) + (xy 144.304999 106.1125) + (xy 144.304999 105.627047) + (xy 144.30326 105.618294) + (xy 144.296628 105.608369) + (xy 144.286706 105.60174) + (xy 144.277956 105.6) + (xy 143.2925 105.6) + (xy 143.2575 105.6) + (xy 142.272047 105.6) + (xy 142.263294 105.601739) + (xy 142.253369 105.608371) + (xy 142.24674 105.618292) + (xy 142.24674 105.618294) + (xy 142.245 105.627044) + (xy 142.245 106.1125) + (xy 142.088203 106.1125) + (xy 141.782324 105.2675) + (xy 148.907501 105.2675) + (xy 148.907501 105.402952) + (xy 148.909239 105.411705) + (xy 148.915871 105.42163) + (xy 148.925793 105.428259) + (xy 148.934544 105.429999) + (xy 149.42 105.429999) + (xy 149.42 105.2675) + (xy 149.455 105.2675) + (xy 149.455 105.429999) + (xy 149.940452 105.429999) + (xy 149.949205 105.42826) + (xy 149.95913 105.421628) + (xy 149.965759 105.411707) + (xy 149.965759 105.411705) + (xy 149.9675 105.402955) + (xy 149.9675 105.2675) + (xy 149.455 105.2675) + (xy 149.42 105.2675) + (xy 148.907501 105.2675) + (xy 141.782324 105.2675) + (xy 141.769654 105.2325) + (xy 148.9075 105.2325) + (xy 149.42 105.2325) + (xy 149.42 105.07) + (xy 149.455 105.07) + (xy 149.455 105.2325) + (xy 149.967499 105.2325) + (xy 149.967499 105.097047) + (xy 149.96576 105.088294) + (xy 149.959128 105.078369) + (xy 149.949206 105.07174) + (xy 149.940456 105.07) + (xy 149.455 105.07) + (xy 149.42 105.07) + (xy 148.934547 105.07) + (xy 148.925794 105.071739) + (xy 148.915869 105.078371) + (xy 148.90924 105.088292) + (xy 148.90924 105.088294) + (xy 148.9075 105.097044) + (xy 148.9075 105.2325) + (xy 141.769654 105.2325) + (xy 141.483685 104.4425) + (xy 149.706501 104.4425) + (xy 149.706501 104.677952) + (xy 149.708239 104.686705) + (xy 149.714871 104.69663) + (xy 149.724793 104.703259) + (xy 149.733544 104.704999) + (xy 150.319 104.704999) + (xy 150.319 104.4425) + (xy 149.706501 104.4425) + (xy 141.483685 104.4425) + (xy 141.471015 104.4075) + (xy 149.7065 104.4075) + (xy 150.319 104.4075) + (xy 150.319 104.145) + (xy 149.733547 104.145) + (xy 149.724794 104.146739) + (xy 149.714869 104.153371) + (xy 149.70824 104.163292) + (xy 149.70824 104.163294) + (xy 149.7065 104.172044) + (xy 149.7065 104.4075) + (xy 141.471015 104.4075) + (xy 140.527666 101.801473) + (xy 140.528152 101.790772) + (xy 140.530928 101.786814) + (xy 140.568151 101.749593) + (xy 140.619131 101.649538) + (xy 140.636698 101.538626) + (xy 140.619131 101.427714) + (xy 140.568151 101.327659) + (xy 140.56815 101.327657) + (xy 140.488747 101.248254) + (xy 140.388691 101.197274) + (xy 140.388692 101.197274) + (xy 140.277779 101.179707) + (xy 140.166866 101.197274) + (xy 140.06681 101.248254) + (xy 139.987407 101.327657) + (xy 139.936427 101.427713) + (xy 139.91886 101.538626) + (xy 139.936427 101.649538) + (xy 139.987407 101.749594) + (xy 140.06681 101.828997) + (xy 140.066812 101.828998) + (xy 140.166867 101.879978) + (xy 140.243292 101.892082) + (xy 140.252428 101.897681) + (xy 140.254266 101.901145) + (xy 141.015856 104.005058) + (xy 141.01537 104.015762) + (xy 141.007457 104.022987) + (xy 140.996753 104.022501) + (xy 140.993867 104.020691) + (xy 140.921556 103.961912) + (xy 140.921554 103.961911) + (xy 140.921552 103.961909) + (xy 140.904059 103.952081) + (xy 140.897229 103.948243) + (xy 140.897 103.948094) + (xy 140.877282 103.937039) + (xy 140.849824 103.921639) + (xy 140.849782 103.92162) + (xy 140.525749 103.739943) + (xy 140.51912 103.731525) + (xy 140.518768 103.725545) + (xy 140.522252 103.703554) + (xy 140.504685 103.592642) + (xy 140.453705 103.492587) + (xy 140.453704 103.492585) + (xy 140.374301 103.413182) + (xy 140.274245 103.362202) + (xy 140.274246 103.362202) + (xy 140.163333 103.344635) + (xy 140.05242 103.362202) + (xy 139.952364 103.413182) + (xy 139.872961 103.492585) + (xy 139.821981 103.592641) + (xy 139.804414 103.703554) + (xy 139.821981 103.814466) + (xy 139.872961 103.914522) + (xy 139.952364 103.993925) + (xy 139.952366 103.993926) + (xy 140.052421 104.044906) + (xy 140.163333 104.062473) + (xy 140.274245 104.044906) + (xy 140.372561 103.994811) + (xy 140.383242 103.993971) + (xy 140.385764 103.995074) + (xy 140.49651 104.057167) + (xy 140.503138 104.065584) + (xy 140.501874 104.076225) + (xy 140.496018 104.081852) + (xy 140.397864 104.131863) + (xy 140.318461 104.211266) + (xy 140.267481 104.311322) + (xy 140.249914 104.422235) + (xy 140.267481 104.533147) + (xy 140.318461 104.633203) + (xy 140.397864 104.712606) + (xy 140.397866 104.712607) + (xy 140.497921 104.763587) + (xy 140.608833 104.781154) + (xy 140.611431 104.780742) + (xy 140.621849 104.783241) + (xy 140.626195 104.78841) + (xy 141.658259 106.89515) + (xy 141.65826 106.895152) + (xy 141.660935 106.900612) + (xy 141.681454 106.942498) + (xy 141.681532 106.942635) + (xy 141.688638 106.957121) + (xy 141.70037 106.981042) + (xy 141.700378 106.981056) + (xy 141.775099 107.081142) + (xy 141.7751 107.081142) + (xy 141.775103 107.081146) + (xy 141.867033 107.165717) + (xy 141.973002 107.231853) + (xy 141.973004 107.231854) + (xy 141.973006 107.231855) + (xy 142.012836 107.247425) + (xy 142.012967 107.247486) + (xy 142.013322 107.247624) + (xy 142.013327 107.247628) + (xy 142.04629 107.260496) + (xy 142.062107 107.266671) + (xy 142.062107 107.26667) + (xy 142.068986 107.269356) + (xy 142.068991 107.269357) + (xy 142.758084 107.538365) + (xy 143.946913 108.002459) + (xy 143.954644 108.009878) + (xy 143.954863 108.020591) + (xy 143.947444 108.028322) + (xy 143.941822 108.0295) + (xy 142.539193 108.0295) + (xy 142.532132 108.027589) + (xy 142.532053 108.027543) + (xy 133.325221 102.649839) + (xy 133.318742 102.641306) + (xy 133.318455 102.635561) + (xy 133.322923 102.607356) + (xy 133.305356 102.496444) + (xy 133.254376 102.396389) + (xy 133.254375 102.396387) + (xy 133.174972 102.316984) + (xy 133.151128 102.304835) + (xy 133.144169 102.296687) + (xy 133.14501 102.286005) + (xy 133.153158 102.279046) + (xy 133.153593 102.278913) + (xy 140.653488 100.129511) + (xy 140.653492 100.129511) + (xy 140.657155 100.12846) + (xy 140.657156 100.128461) + (xy 140.668 100.125352) + (xy 140.695398 100.1175) + (xy 140.695398 100.117499) + (xy 140.744879 100.103325) + (xy 140.744878 100.103325) + (xy 140.744881 100.103324) + (xy 140.771438 100.093689) + (xy 140.854011 100.063736) + (xy 140.85401 100.063736) + (xy 140.854013 100.063735) + (xy 140.918263 100.035281) + (xy 140.960166 100.016725) + (xy 140.960165 100.016725) + (xy 141.01149 99.989622) + (xy 141.040857 99.974117) + (xy 141.040857 99.974116) + (xy 141.044297 99.9723) + (xy 141.044298 99.972299) + (xy 142.222109 99.350439) + (xy 142.446209 99.232119) + (xy 142.452746 99.230499) + (xy 144.191345 99.230499) + (xy 144.201244 99.2346) + (xy 144.205345 99.244499) + (xy 144.203435 99.251558) + (xy 144.133018 99.372145) + (xy 143.461225 100.52256) + (xy 143.452692 100.529041) + (xy 143.449135 100.5295) + (xy 142.265103 100.5295) + (xy 142.235787 100.535331) + (xy 142.202543 100.557543) + (xy 142.18033 100.590788) + (xy 142.1745 100.620101) + (xy 142.1745 101.639896) + (xy 142.176418 101.649538) + (xy 142.180331 101.669213) + (xy 142.202543 101.702457) + (xy 142.235787 101.724669) + (xy 142.265101 101.7305) + (xy 144.191344 101.730499) + (xy 144.201243 101.734599) + (xy 144.205344 101.744499) + (xy 144.203434 101.751559) + (xy 143.461225 103.02256) + (xy 143.452692 103.029041) + (xy 143.449135 103.0295) + (xy 142.265103 103.0295) + (xy 142.235787 103.035331) + (xy 142.202543 103.057543) + (xy 142.18033 103.090788) + (xy 142.1745 103.120101) + (xy 142.1745 104.139896) + (xy 142.176232 104.148604) + (xy 142.180331 104.169213) + (xy 142.202543 104.202457) + (xy 142.235787 104.224669) + (xy 142.265101 104.2305) + (xy 144.284898 104.230499) + (xy 144.314213 104.224669) + (xy 144.347457 104.202457) + (xy 144.369669 104.169213) + (xy 144.3755 104.139899) + (xy 144.375499 103.120102) + (xy 144.369669 103.090787) + (xy 144.347457 103.057543) + (xy 144.314213 103.035331) + (xy 144.314212 103.03533) + (xy 144.314211 103.03533) + (xy 144.284899 103.0295) + (xy 143.818545 103.0295) + (xy 143.808646 103.025399) + (xy 143.804545 103.0155) + (xy 143.806455 103.00844) + (xy 143.816039 102.992028) + (xy 144.53552 101.759949) + (xy 144.535521 101.759944) + (xy 144.535953 101.759205) + (xy 144.536032 101.759045) + (xy 144.536916 101.757531) + (xy 144.553105 101.716731) + (xy 144.562979 101.673961) + (xy 144.563112 101.67222) + (xy 144.563137 101.67205) + (xy 144.563203 101.67118) + (xy 144.563204 101.671179) + (xy 144.563712 101.664507) + (xy 144.564661 101.652078) + (xy 144.565641 101.639197) + (xy 144.567184 101.618965) + (xy 144.567183 101.618964) + (xy 144.654613 100.471884) + (xy 144.755329 99.150525) + (xy 144.75537 99.150132) + (xy 144.7555 99.149156) + (xy 144.7555 99.148543) + (xy 144.755519 99.14803) + (xy 144.755566 99.147417) + (xy 144.755564 99.14741) + (xy 144.75551 99.146402) + (xy 144.7555 99.14602) + (xy 144.7555 98.066744) + (xy 144.7555 98.066741) + (xy 144.722755 97.944534) + (xy 144.671881 97.856417) + (xy 144.659497 97.834967) + (xy 144.659495 97.834964) + (xy 144.570035 97.745504) + (xy 144.570032 97.745502) + (xy 144.46047 97.682247) + (xy 144.460468 97.682246) + (xy 144.460466 97.682245) + (xy 144.338259 97.6495) + (xy 144.294156 97.6495) + (xy 142.255844 97.6495) + (xy 142.2556 97.6495) + (xy 142.255167 97.649528) + (xy 142.215952 97.649585) + (xy 142.101382 97.67818) + (xy 142.101375 97.678183) + (xy 141.997141 97.733669) + (xy 141.997132 97.733675) + (xy 141.909438 97.812747) + (xy 141.909433 97.812754) + (xy 141.887484 97.845258) + (xy 141.887212 97.845611) + (xy 141.346286 98.649205) + (xy 141.337356 98.655127) + (xy 141.326854 98.653001) + (xy 141.320932 98.644071) + (xy 141.320815 98.639394) + (xy 141.333267 98.552793) + (xy 141.323231 98.342098) + (xy 141.316008 98.312326) + (xy 141.273501 98.137111) + (xy 141.273501 98.13711) + (xy 141.185876 97.945238) + (xy 141.063522 97.773416) + (xy 140.910862 97.627855) + (xy 140.733413 97.513816) + (xy 140.723441 97.509824) + (xy 140.537589 97.43542) + (xy 140.330467 97.3955) + (xy 140.172387 97.3955) + (xy 140.034691 97.408648) + (xy 140.01502 97.410527) + (xy 140.015015 97.410528) + (xy 139.812636 97.469951) + (xy 139.812632 97.469953) + (xy 139.625145 97.566609) + (xy 139.459337 97.697003) + (xy 139.459335 97.697005) + (xy 139.321208 97.856412) + (xy 139.321204 97.856417) + (xy 139.215743 98.039082) + (xy 139.21574 98.039089) + (xy 139.146751 98.23842) + (xy 139.136126 98.312326) + (xy 139.116733 98.447207) + (xy 139.116733 98.447211) + (xy 139.116733 98.447213) + (xy 139.126769 98.657903) + (xy 139.12677 98.657911) + (xy 139.176498 98.862888) + (xy 139.176499 98.86289) + (xy 139.264124 99.054762) + (xy 139.386478 99.226584) + (xy 139.539138 99.372145) + (xy 139.716587 99.486184) + (xy 139.800109 99.519621) + (xy 139.807776 99.527107) + (xy 139.807903 99.537821) + (xy 139.800417 99.545488) + (xy 139.795899 99.546583) + (xy 138.393333 99.646348) + (xy 138.383168 99.64296) + (xy 138.379866 99.638739) + (xy 138.362225 99.604115) + (xy 138.282822 99.524712) + (xy 138.182766 99.473732) + (xy 138.182767 99.473732) + (xy 138.071854 99.456165) + (xy 137.960941 99.473732) + (xy 137.860885 99.524712) + (xy 137.781482 99.604115) + (xy 137.730502 99.704171) + (xy 137.712935 99.815084) + (xy 137.730502 99.925996) + (xy 137.781482 100.026052) + (xy 137.860885 100.105455) + (xy 137.860887 100.105456) + (xy 137.960942 100.156436) + (xy 138.071854 100.174003) + (xy 138.182766 100.156436) + (xy 138.282821 100.105456) + (xy 138.362226 100.026051) + (xy 138.403971 99.944117) + (xy 138.412119 99.937159) + (xy 138.415445 99.93651) + (xy 139.832074 99.835744) + (xy 139.842239 99.839132) + (xy 139.847032 99.848716) + (xy 139.843644 99.858881) + (xy 139.836924 99.863167) + (xy 132.740473 101.896945) + (xy 132.740234 101.897049) + (xy 132.739394 101.89735) + (xy 132.687571 101.91227) + (xy 132.687562 101.912274) + (xy 132.555712 101.980567) + (xy 132.555711 101.980567) + (xy 132.43994 102.073565) + (xy 132.439937 102.073568) + (xy 132.344821 102.187596) + (xy 132.274101 102.318165) + (xy 132.2741 102.318167) + (xy 132.230563 102.460132) + (xy 132.230563 102.460134) + (xy 132.215979 102.607356) + (xy 132.215924 102.60791) + (xy 124.7005 102.60791) + (xy 124.7005 97.390183) + (xy 148.641691 97.390183) + (xy 148.651838 97.629034) + (xy 148.651838 97.62904) + (xy 148.651839 97.629042) + (xy 148.666485 97.697) + (xy 148.702209 97.862762) + (xy 148.791348 98.084593) + (xy 148.79135 98.084596) + (xy 148.916695 98.288171) + (xy 148.916706 98.288186) + (xy 148.998636 98.381276) + (xy 149.074658 98.467653) + (xy 149.260672 98.617849) + (xy 149.469393 98.734448) + (xy 149.694817 98.814095) + (xy 149.930459 98.8545) + (xy 149.930462 98.8545) + (xy 150.109667 98.8545) + (xy 150.145984 98.851408) + (xy 150.28822 98.839303) + (xy 150.519587 98.779059) + (xy 150.737444 98.680581) + (xy 150.935525 98.546702) + (xy 151.108131 98.381273) + (xy 151.250297 98.189052) + (xy 151.357932 97.97557) + (xy 151.42794 97.746969) + (xy 151.458308 97.509824) + (xy 151.456614 97.469953) + (xy 151.450595 97.328259) + (xy 151.448161 97.270958) + (xy 151.397792 97.037243) + (xy 151.39779 97.037237) + (xy 151.308651 96.815406) + (xy 151.308649 96.815403) + (xy 151.183304 96.611828) + (xy 151.183293 96.611813) + (xy 151.025343 96.432348) + (xy 151.025342 96.432347) + (xy 150.839328 96.282151) + (xy 150.630607 96.165552) + (xy 150.504345 96.120941) + (xy 150.405184 96.085905) + (xy 150.346272 96.075803) + (xy 150.169541 96.0455) + (xy 149.990336 96.0455) + (xy 149.990333 96.0455) + (xy 149.811779 96.060697) + (xy 149.811774 96.060698) + (xy 149.580412 96.120941) + (xy 149.58041 96.120942) + (xy 149.362561 96.219416) + (xy 149.362553 96.219421) + (xy 149.16447 96.353301) + (xy 148.991872 96.518723) + (xy 148.991869 96.518726) + (xy 148.849704 96.710944) + (xy 148.742069 96.924426) + (xy 148.742066 96.924433) + (xy 148.67206 97.153027) + (xy 148.67206 97.153028) + (xy 148.641691 97.390183) + (xy 124.7005 97.390183) + (xy 124.7005 96.5675) + (xy 139.795001 96.5675) + (xy 139.795001 97.302952) + (xy 139.796739 97.311705) + (xy 139.803371 97.32163) + (xy 139.813293 97.328259) + (xy 139.822044 97.329999) + (xy 141.2075 97.329999) + (xy 141.2075 96.5675) + (xy 141.2425 96.5675) + (xy 141.2425 97.329999) + (xy 142.627952 97.329999) + (xy 142.636705 97.32826) + (xy 142.64663 97.321628) + (xy 142.653259 97.311707) + (xy 142.653259 97.311705) + (xy 142.655 97.302955) + (xy 142.655 96.5675) + (xy 141.2425 96.5675) + (xy 141.2075 96.5675) + (xy 139.795001 96.5675) + (xy 124.7005 96.5675) + (xy 124.7005 96.5325) + (xy 139.795 96.5325) + (xy 141.2075 96.5325) + (xy 141.2075 95.77) + (xy 141.2425 95.77) + (xy 141.2425 96.5325) + (xy 142.654999 96.5325) + (xy 142.654999 95.797047) + (xy 142.65326 95.788294) + (xy 142.646628 95.778369) + (xy 142.636706 95.77174) + (xy 142.627956 95.77) + (xy 141.2425 95.77) + (xy 141.2075 95.77) + (xy 139.822047 95.77) + (xy 139.813294 95.771739) + (xy 139.803369 95.778371) + (xy 139.79674 95.788292) + (xy 139.79674 95.788294) + (xy 139.795 95.797044) + (xy 139.795 96.5325) + (xy 124.7005 96.5325) + (xy 124.7005 95.102952) + (xy 125.295 95.102952) + (xy 125.296739 95.111705) + (xy 125.303371 95.12163) + (xy 125.313293 95.128259) + (xy 125.322044 95.129999) + (xy 126.7075 95.129999) + (xy 126.7075 94.3675) + (xy 126.7425 94.3675) + (xy 126.7425 95.129999) + (xy 128.127952 95.129999) + (xy 128.136705 95.12826) + (xy 128.14663 95.121628) + (xy 128.153259 95.111707) + (xy 128.153259 95.111705) + (xy 128.155 95.102955) + (xy 128.155 94.3675) + (xy 126.7425 94.3675) + (xy 126.7075 94.3675) + (xy 125.295001 94.3675) + (xy 125.295 95.102952) + (xy 124.7005 95.102952) + (xy 124.7005 94.3325) + (xy 125.295 94.3325) + (xy 126.7075 94.3325) + (xy 126.7075 93.57) + (xy 126.7425 93.57) + (xy 126.7425 94.3325) + (xy 128.154999 94.3325) + (xy 128.154999 93.597047) + (xy 128.15326 93.588294) + (xy 128.146628 93.578369) + (xy 128.136706 93.57174) + (xy 128.127956 93.57) + (xy 126.7425 93.57) + (xy 126.7075 93.57) + (xy 125.322047 93.57) + (xy 125.313294 93.571739) + (xy 125.303369 93.578371) + (xy 125.29674 93.588292) + (xy 125.29674 93.588294) + (xy 125.295 93.597044) + (xy 125.295 94.3325) + (xy 124.7005 94.3325) + (xy 124.7005 93.2145) + (xy 124.704601 93.204601) + (xy 124.7145 93.2005) + (xy 149.2855 93.2005) + ) + ) + ) +) diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.kicad_prl b/sd_card_reader/designs/jitx-design/kicad/jitx-design.kicad_prl new file mode 100644 index 0000000..1c1eb26 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.kicad_prl @@ -0,0 +1,77 @@ +{ + "board": { + "active_layer": 50, + "active_layer_preset": "", + "auto_track_width": true, + "hidden_netclasses": [], + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "images": 0.6, + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "selection_filter": { + "dimensions": false, + "footprints": false, + "graphics": false, + "keepouts": false, + "lockedItems": false, + "otherItems": false, + "pads": false, + "text": true, + "tracks": false, + "vias": false, + "zones": false + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36, + 39, + 40 + ], + "visible_layers": "ffcffff_7ffffffe", + "zone_display_mode": 0 + }, + "meta": { + "filename": "jitx-design.kicad_prl", + "version": 3 + }, + "project": { + "files": [] + } +} diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.kicad_pro b/sd_card_reader/designs/jitx-design/kicad/jitx-design.kicad_pro new file mode 100644 index 0000000..97dd336 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.kicad_pro @@ -0,0 +1,415 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "board_outline_line_width": 0.049999999999999996, + "copper_line_width": 0.19999999999999998, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.049999999999999996, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.09999999999999999, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.09999999999999999, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.12, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.15, + "silk_text_upright": false, + "zones": { + "45_degree_only": false, + "min_clearance": 0.508 + } + }, + "diff_pair_dimensions": [], + "drc_exclusions": [], + "meta": { + "filename": "board_design_settings.json", + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_type_mismatch": "error", + "hole_clearance": "error", + "hole_near_hole": "error", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "error", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "warning", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "allow_blind_buried_vias": false, + "allow_microvias": false, + "max_error": 0.005, + "min_clearance": 0.09, + "min_connection": 0.0, + "min_copper_edge_clearance": 0.19999999999999998, + "min_hole_clearance": 0.254, + "min_hole_to_hole": 0.5, + "min_microvia_diameter": 0.19999999999999998, + "min_microvia_drill": 0.09999999999999999, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 1.0, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.19999999999999998, + "min_track_width": 0.09, + "min_via_annular_width": 0.13, + "min_via_diameter": 0.45999999999999996, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 5, + "td_on_pad_in_zone": false, + "td_onpadsmd": true, + "td_onroundshapesonly": false, + "td_ontrackend": false, + "td_onviapad": true + } + ], + "teardrop_parameters": [ + { + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [], + "via_dimensions": [], + "zones_allow_external_fillets": false, + "zones_use_no_outline": true + }, + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "jitx-design.kicad_pro", + "version": 1 + }, + "net_colors": null, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.09, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.01, + "microvia_drill": 0.0, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.09, + "via_diameter": 0.052, + "via_drill": 0.2, + "wire_width": 6 + }, + { + "bus_width": 12, + "clearance": 0.09, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.01, + "microvia_drill": 0.0, + "name": "Power", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.381, + "via_diameter": 0.052, + "via_drill": 0.2, + "wire_width": 6 + } + ], + "meta": { + "version": 3 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [ + { + "netclass": "Default", + "pattern": "TXD_SCK_MS_SKT_SEL" + }, + { + "netclass": "Default", + "pattern": "xD_D3_SD_D1_MS_D5" + }, + { + "netclass": "Default", + "pattern": "CRD_PWR" + }, + { + "netclass": "Default", + "pattern": "SSTXP1" + }, + { + "netclass": "Default", + "pattern": "SSTXN1" + }, + { + "netclass": "Default", + "pattern": "xD_D6_SD_D3_MS_D3" + }, + { + "netclass": "Default", + "pattern": "SSRXP1" + }, + { + "netclass": "Default", + "pattern": "WC_NOT" + }, + { + "netclass": "Default", + "pattern": "USB-" + }, + { + "netclass": "Default", + "pattern": "SSRXN1" + }, + { + "netclass": "Default", + "pattern": "xD_D2_SD_D0_MS_D4" + }, + { + "netclass": "Default", + "pattern": "CC1" + }, + { + "netclass": "Default", + "pattern": "xD_nWP_SD_CLK_MS_BS" + }, + { + "netclass": "Default", + "pattern": "RXD_SDA" + }, + { + "netclass": "Default", + "pattern": "XTAL2" + }, + { + "netclass": "Default", + "pattern": "RESET_N" + }, + { + "netclass": "Default", + "pattern": "xD_D5_SD_D2" + }, + { + "netclass": "Default", + "pattern": "USB+" + }, + { + "netclass": "Default", + "pattern": "xD_CLE_SD_CMD_MS_D0" + }, + { + "netclass": "Default", + "pattern": "VDD18" + }, + { + "netclass": "Default", + "pattern": "RBIAS" + }, + { + "netclass": "Default", + "pattern": "XTAL1_CLKIN" + }, + { + "netclass": "Default", + "pattern": "xD_D4_SD_WP_MS_SCLK" + }, + { + "netclass": "Default", + "pattern": "LED" + }, + { + "netclass": "Default", + "pattern": "VDD18PLL" + }, + { + "netclass": "Default", + "pattern": "GND2" + }, + { + "netclass": "Default", + "pattern": "a" + }, + { + "netclass": "Default", + "pattern": "SD_nCD" + }, + { + "netclass": "Default", + "pattern": "GND0" + }, + { + "netclass": "Power", + "pattern": "vdd50" + }, + { + "netclass": "Power", + "pattern": "vdd33" + }, + { + "netclass": "Power", + "pattern": "gnd" + } + ] + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "specctra_dsn": "", + "step": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "drawing": { + "default_line_thickness": 6, + "default_text_size": 50, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.25, + "pin_symbol_size": 0, + "text_offset_ratio": 0.08 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "ngspice": { + "fix_include_paths": true, + "fix_passive_vals": false, + "meta": { + "version": 0 + }, + "model_mode": 0, + "workbook_filename": "" + }, + "page_layout_descr_file": "", + "plot_directory": "", + "spice_adjust_passive_values": false, + "spice_external_command": "spice \"%I\"", + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [], + "text_variables": {} +} diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.kicad_sch b/sd_card_reader/designs/jitx-design/kicad/jitx-design.kicad_sch new file mode 100644 index 0000000..82b446c --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.kicad_sch @@ -0,0 +1,2288 @@ + +(kicad_sch + (version 20230121) + (generator jitx) + (uuid 219df102-d28d-b743-245e-efc9439ef913) + (paper "A") + + + (lib_symbols + + (symbol "vdd50" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "vdd50" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "vdd50_1_0" + + (pin power_in line (at 0.0 0.0 90) (length 0.0) + (name "vdd50" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "gnd" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "gnd" (id 1) (at -2.54 -2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "gnd_1_0" + + (pin power_in line (at 0.0 0.0 270) (length 0.0) + (name "gnd" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 -1.27)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.27) (xy 1.27 -1.27)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.762 -1.778) (xy 0.762 -1.778)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.254 -2.286) (xy 0.254 -2.286)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "vdd33" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "vdd33" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "vdd33_1_0" + + (pin power_in line (at 0.0 0.0 90) (length 0.0) + (name "vdd33" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "test_point_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "test_point_sym" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "test_point_sym_1_0" + + (pin unspecified line (at 2.54 0.0 180) (length 0.0) + (name "p" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -0.635 0.0) (xy 2.54 0.0)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "unplated_hole_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "unplated_hole_sym" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "unplated_hole_sym_1_0" + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -1.27 0.0) (radius 1.143) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "BD433M5FP_CE2" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "BD433M5FP_CE2" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "BD433M5FP_CE2_1_0" + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 0.0 0) (length 2.54000508001016) + (name "FIN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "VOUT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ALTIUM_POWER_ARROW" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ALTIUM_POWER_ARROW" (id 1) (at 2.54 -0.508 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ALTIUM_POWER_ARROW_1_0" + + (pin unspecified line (at 0.0 0.0 0) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 1.27 0.0)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.794 0.0) (xy 1.27 0.762) (xy 1.27 -0.762) (xy 2.794 0.0)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "TYPE_C_31_G_03" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 18.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "TYPE_C_31_G_03" (id 1) (at 0.0 17.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "TYPE_C_31_G_03_1_0" + + (pin unspecified line (at 2.54 -22.86 90) (length 5.08001016002032) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -22.86 90) (length 5.08001016002032) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 2.54 20.32 270) (length 5.08001016002032) + (name "GND2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 20.32 270) (length 5.08001016002032) + (name "GND3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 12.7 180) (length 2.54000508001016) + (name "GND4" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 10.16 180) (length 2.54000508001016) + (name "SSRXP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 7.62 180) (length 2.54000508001016) + (name "SSRXN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 5.08 180) (length 2.54000508001016) + (name "VBUS0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 -15.24 0) (length 2.54000508001016) + (name "GND5" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 -2.54 0) (length 2.54000508001016) + (name "DN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 0.0 0) (length 2.54000508001016) + (name "DP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 2.54 0) (length 2.54000508001016) + (name "CC1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 5.08 0) (length 2.54000508001016) + (name "VBUS1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 7.62 0) (length 2.54000508001016) + (name "SSTXN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 10.16 0) (length 2.54000508001016) + (name "SSTXP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 12.7 0) (length 2.54000508001016) + (name "GND6" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -11.4300228600457 -17.7800355600711) (end 13.9700279400559 15.240030480061) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -10.1600203200406 13.9700279400559) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "JITX_symbol" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 3.902 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + + (property "Value" "JITX_symbol" (id 1) (at -2.54 2.84 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "JITX_symbol_1_0" + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045) (xy 10.64306775 2.736906) (xy 9.40420775 2.7367485) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 9.6444795 5.3075045) (xy 11.204365675778 7.41173405617841)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 11.204365675778 7.41173405617841) (mid 11.5715164132218 7.68647346428221) (end 12.02033525 7.780511) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 12.02033525 7.780511) (xy 10.7521741568897 7.77915244080762)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 10.7521741568897 7.77915244080762) (mid 10.3244289019203 7.71659474940583) (end 9.95883526617392 7.48589849585123) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.95883526617392 7.48589849585123) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 4.80545275 2.7367835) (xy 5.52213025 2.736801) (xy 6.09744275 6.006396) (xy 7.04751775 6.007796) (xy 7.17619525 6.746366) (xy 6.22827275 6.7467685) (xy 6.35336275 7.4639535) (xy 5.63701775 7.463901) (xy 4.80545275 2.7367835)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.81951158629631 7.46403410472138) (mid 4.56761122169657 7.38909574502682) (end 4.39731705832001 7.1889221969265) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.39731705832001 7.1889221969265) (xy 4.39731771337896 7.18892347769723)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.39731771337896 7.18892347769723) (mid 4.37903669579069 6.93835280018836) (end 4.54329029777422 6.74824595058332) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.54329029777422 6.74824595058332) (xy 4.54329042972881 6.74824604286013)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.54329042972881 6.74824604286013) (mid 4.8347064457627 6.7584952028342) (end 5.05014573460892 6.95500029819479) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.05014573460892 6.95500029819479) (xy 5.0501454400865 6.95500033093321)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 5.0501454400865 6.95500033093321) (mid 5.11292088648779 7.19473733498076) (end 4.98779016906679 7.4086459400865) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.98779016906679 7.4086459400865) (xy 4.98779016800714 7.40864611461444)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.98779016800714 7.40864611461444) (mid 4.90690057503162 7.44621327349144) (end 4.81951161284777 7.46403424333775) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.81951161284777 7.46403424333775) (xy 4.81951158629631 7.46403410472138)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 3.89443775 6.3231635) (xy 3.17699025 6.3231985)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.17699025 6.3231985) (xy 2.52209151060913 2.60191506576061)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 2.52209151060913 2.60191506576061) (mid 2.05675349031717 1.92653195318543) (end 1.2808715 1.660658) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 1.2808715 1.660658) (xy 1.16204986761718 0.946150157081704)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 1.16204986761718 0.946150157081704) (mid 2.47433952610446 1.46740670189427) (end 3.24900260539611 2.64796150657934) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.24900260539611 2.64796150657934) (xy 3.89443775 6.3231635)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.6536755 2.739566) (mid 4.47355971115545 2.84819051977396) (end 4.42300775 3.05236075) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.42300775 3.05236075) (xy 4.93274772036982 5.99834598533872)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.93274772036982 5.99834598533872) (mid 4.87164254214732 6.21359196465728) (end 4.67623276466128 6.32258597036982) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.67623276466128 6.32258597036982) (xy 4.03524193183806 6.32123973631567)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.03524193183806 6.32123973631567) (mid 4.22213158850411 6.21328643348833) (end 4.27976525 6.005296) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.27976525 6.005296) (xy 3.7661802699951 3.02495606296363)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 3.7661802699951 3.02495606296363) (mid 3.84086820737184 2.8260933338554) (end 4.03429774834461 2.73828851794516) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.03429774834461 2.73828851794516) (xy 4.6536755 2.739566)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.6444795 5.3075045) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 8.68532525 7.776591)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.68532525 7.776591) (xy 7.36731275 7.777781)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 7.36731275 7.777781) (xy 8.31381775 5.253301)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.31381775 5.253301) (xy 6.69911401210568 3.12239450877699)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 6.69911401210568 3.12239450877699) (mid 6.34438927313888 2.86083653042072) (end 5.92142775 2.7369585) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.92142775 2.7369585) (xy 7.20697795987015 2.73714213727357)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 7.20697795987015 2.73714213727357) (mid 7.6509829133912 2.835530220617) (end 8.01080546865927 3.11364592030973) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.01080546865927 3.11364592030973) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ALTIUM_POWER_GND_POWER" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ALTIUM_POWER_GND_POWER" (id 1) (at 2.54 -1.016 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ALTIUM_POWER_GND_POWER_1_0" + + (pin unspecified line (at 0.0 0.0 0) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 1.27 0.0)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -1.397) (xy 1.27 1.397)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.69545 -1.0922) (xy 1.69545 1.0922)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.11455 -0.762) (xy 2.11455 0.762)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.54 -0.4572) (xy 2.54 0.4572)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "SD_101" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 20.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "SD_101" (id 1) (at 0.0 19.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "SD_101_1_0" + + (pin unspecified line (at -16.51 17.78 0) (length 2.54000508001016) + (name "CD_DAT3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 15.24 0) (length 2.54000508001016) + (name "CMD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 12.7 0) (length 2.54000508001016) + (name "VSS1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 10.16 0) (length 2.54000508001016) + (name "VDD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 7.62 0) (length 2.54000508001016) + (name "CLK" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 5.08 0) (length 2.54000508001016) + (name "VSS2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 2.54 0) (length 2.54000508001016) + (name "DAT0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 0.0 0) (length 2.54000508001016) + (name "DAT1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -2.54 0) (length 2.54000508001016) + (name "DAT2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -5.08 0) (length 2.54000508001016) + (name "CD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -7.62 0) (length 2.54000508001016) + (name "WP" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -10.16 0) (length 2.54000508001016) + (name "SHELL0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -12.7 0) (length 2.54000508001016) + (name "SHELL1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -15.24 0) (length 2.54000508001016) + (name "SHELL2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -17.78 0) (length 2.54000508001016) + (name "SHELL3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -13.9700279400559 -20.3200406400813) (end 16.510033020066 20.3200406400813) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -13.3350266700533 19.6850393700787) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "M24C04_WMN6TP" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 6.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "M24C04_WMN6TP" (id 1) (at 0.0 5.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "M24C04_WMN6TP_1_0" + + (pin unspecified line (at -10.16 3.81 0) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 1.27 0) (length 2.54000508001016) + (name "E1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 -1.27 0) (length 2.54000508001016) + (name "E2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 -3.81 0) (length 2.54000508001016) + (name "VSS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 -3.81 180) (length 2.54000508001016) + (name "SDA" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 -1.27 180) (length 2.54000508001016) + (name "SCL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 1.27 180) (length 2.54000508001016) + (name "WC_NOT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 3.81 180) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -7.62001524003048 -6.85801371602743) (end 7.62001524003048 6.85801371602743) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "Sym7B024000Q01" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "Sym7B024000Q01" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "Sym7B024000Q01_1_0" + + (pin unspecified line (at 7.62 -2.54 180) (length 2.54000508001016) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 7.62 2.54 180) (length 2.54000508001016) + (name "OUT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "IN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -0.508001016002032 -1.77800355600711) (end 0.508001016002032 1.77800355600711) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 -3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 5.08001016002032 2.54000508001016) (xy 2.54000508001016 2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 2.54000508001016) (xy 2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 -0.0) (xy 1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -5.08001016002032 -2.54000508001016) (xy -2.54000508001016 -2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -2.54000508001016) (xy -2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -0.0) (xy -1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27000254000508 -1.77800355600711) (xy 1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -1.27000254000508 -1.77800355600711) (xy -1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "diode_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "diode_sym" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "diode_sym_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "a" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "c" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (circle (center 0.0 0.0) (radius 1.905) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27 0.254) (xy 2.286 -0.762)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -0.508) (xy 2.286 -1.524)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -0.762) (xy 2.286 -0.762) (xy 2.286 -0.381)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -1.524) (xy 2.286 -1.524) (xy 2.286 -1.143)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 2.54) (xy 0.0 1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.016) (xy 1.27 1.016) (xy -1.27 1.016) (xy 0.0 -1.016)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.016) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.016) (xy 1.27 -1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "supply_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "supply_sym" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "supply_sym_1_0" + + (pin unspecified line (at 0.0 0.0 90) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ground_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ground_sym" (id 1) (at -2.54 -2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ground_sym_1_0" + + (pin unspecified line (at 0.0 0.0 270) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 -1.27)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.27) (xy 1.27 -1.27)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.762 -1.778) (xy 0.762 -1.778)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.254 -2.286) (xy 0.254 -2.286)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + + (property "Value" "" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.5 0.5)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.5 0.5)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "capacitor_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "capacitor_sym" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "capacitor_sym_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "USB2240_AEZG_06" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 25.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "USB2240_AEZG_06" (id 1) (at 0.0 24.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "USB2240_AEZG_06_1_0" + + (pin unspecified line (at -39.37 20.32 0) (length 2.54000508001016) + (name "LED" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 17.78 0) (length 2.54000508001016) + (name "USB+" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 15.24 0) (length 2.54000508001016) + (name "USB-" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 12.7 0) (length 2.54000508001016) + (name "xD_D3_SD_D1_MS_D5" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 10.16 0) (length 2.54000508001016) + (name "xD_D2_SD_D0_MS_D4" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 7.62 0) (length 2.54000508001016) + (name "VDD330" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 5.08 0) (length 2.54000508001016) + (name "xD_D1_SD_D7_MS_D6" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 2.54 0) (length 2.54000508001016) + (name "xD_D0_SD_D6_MS_D7" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 0.0 0) (length 2.54000508001016) + (name "xD_nWP_SD_CLK_MS_BS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -2.54 0) (length 2.54000508001016) + (name "xD_ALE_SD_D5_MS_D1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -5.08 0) (length 2.54000508001016) + (name "xD_CLE_SD_CMD_MS_D0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -7.62 0) (length 2.54000508001016) + (name "xD_nWE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -10.16 0) (length 2.54000508001016) + (name "VDD18" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -12.7 0) (length 2.54000508001016) + (name "VDD331" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -15.24 0) (length 2.54000508001016) + (name "xD_nCE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -17.78 0) (length 2.54000508001016) + (name "xD_nRE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -20.32 0) (length 2.54000508001016) + (name "xD_nB_R" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -22.86 0) (length 2.54000508001016) + (name "RESET_N" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -22.86 180) (length 2.54000508001016) + (name "xD_nCD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -20.32 180) (length 2.54000508001016) + (name "xD_D7_SD_D4_MS_D2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -17.78 180) (length 2.54000508001016) + (name "CRD_PWR" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -15.24 180) (length 2.54000508001016) + (name "VDD332" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -12.7 180) (length 2.54000508001016) + (name "xD_D6_SD_D3_MS_D3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -10.16 180) (length 2.54000508001016) + (name "MS_INS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -7.62 180) (length 2.54000508001016) + (name "xD_D5_SD_D2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -5.08 180) (length 2.54000508001016) + (name "SD_nCD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -2.54 180) (length 2.54000508001016) + (name "RXD_SDA" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 0.0 180) (length 2.54000508001016) + (name "TEST" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 2.54 180) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 5.08 180) (length 2.54000508001016) + (name "xD_D4_SD_WP_MS_SCLK" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 7.62 180) (length 2.54000508001016) + (name "TXD_SCK_MS_SKT_SEL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 10.16 180) (length 2.54000508001016) + (name "XTAL2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 12.7 180) (length 2.54000508001016) + (name "XTAL1_CLKIN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 15.24 180) (length 2.54000508001016) + (name "VDD18PLL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 17.78 180) (length 2.54000508001016) + (name "RBIAS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 20.32 180) (length 2.54000508001016) + (name "VDDA33" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 22.86 180) (length 2.54000508001016) + (name "GND" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -36.8300736601473 -25.4000508001016) (end 36.8300736601473 25.4000508001016) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -35.5600711201422 21.5900431800864) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "resistor_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "resistor_sym" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "resistor_sym_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "gen_testpad" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "gen_testpad" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "gen_testpad_1_0" + + (pin unspecified line (at 2.54 0.0 180) (length 0.0) + (name "p" (effects (font (size 0.0 0.0)))) + (number "tp" (effects (font (size 0.0 0.0)))) + ) + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -0.635 0.0) (xy 2.54 0.0)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "JITX" + (in_bom yes) (on_board yes) + + (property "Reference" "JITX" (id 0) (at -2.54 3.902 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + + (property "Value" "JITX" (id 1) (at -2.54 2.84 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "JITX_1_0" + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045) (xy 10.64306775 2.736906) (xy 9.40420775 2.7367485) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 9.6444795 5.3075045) (xy 11.204365675778 7.41173405617841)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 11.204365675778 7.41173405617841) (mid 11.5715164132218 7.68647346428221) (end 12.02033525 7.780511) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 12.02033525 7.780511) (xy 10.7521741568897 7.77915244080762)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 10.7521741568897 7.77915244080762) (mid 10.3244289019203 7.71659474940583) (end 9.95883526617392 7.48589849585123) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.95883526617392 7.48589849585123) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 4.80545275 2.7367835) (xy 5.52213025 2.736801) (xy 6.09744275 6.006396) (xy 7.04751775 6.007796) (xy 7.17619525 6.746366) (xy 6.22827275 6.7467685) (xy 6.35336275 7.4639535) (xy 5.63701775 7.463901) (xy 4.80545275 2.7367835)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.81951158629631 7.46403410472138) (mid 4.56761122169657 7.38909574502682) (end 4.39731705832001 7.1889221969265) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.39731705832001 7.1889221969265) (xy 4.39731771337896 7.18892347769723)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.39731771337896 7.18892347769723) (mid 4.37903669579069 6.93835280018836) (end 4.54329029777422 6.74824595058332) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.54329029777422 6.74824595058332) (xy 4.54329042972881 6.74824604286013)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.54329042972881 6.74824604286013) (mid 4.8347064457627 6.7584952028342) (end 5.05014573460892 6.95500029819479) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.05014573460892 6.95500029819479) (xy 5.0501454400865 6.95500033093321)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 5.0501454400865 6.95500033093321) (mid 5.11292088648779 7.19473733498076) (end 4.98779016906679 7.4086459400865) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.98779016906679 7.4086459400865) (xy 4.98779016800714 7.40864611461444)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.98779016800714 7.40864611461444) (mid 4.90690057503162 7.44621327349144) (end 4.81951161284777 7.46403424333775) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.81951161284777 7.46403424333775) (xy 4.81951158629631 7.46403410472138)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 3.89443775 6.3231635) (xy 3.17699025 6.3231985)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.17699025 6.3231985) (xy 2.52209151060913 2.60191506576061)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 2.52209151060913 2.60191506576061) (mid 2.05675349031717 1.92653195318543) (end 1.2808715 1.660658) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 1.2808715 1.660658) (xy 1.16204986761718 0.946150157081704)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 1.16204986761718 0.946150157081704) (mid 2.47433952610446 1.46740670189427) (end 3.24900260539611 2.64796150657934) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.24900260539611 2.64796150657934) (xy 3.89443775 6.3231635)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.6536755 2.739566) (mid 4.47355971115545 2.84819051977396) (end 4.42300775 3.05236075) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.42300775 3.05236075) (xy 4.93274772036982 5.99834598533872)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.93274772036982 5.99834598533872) (mid 4.87164254214732 6.21359196465728) (end 4.67623276466128 6.32258597036982) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.67623276466128 6.32258597036982) (xy 4.03524193183806 6.32123973631567)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.03524193183806 6.32123973631567) (mid 4.22213158850411 6.21328643348833) (end 4.27976525 6.005296) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.27976525 6.005296) (xy 3.7661802699951 3.02495606296363)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 3.7661802699951 3.02495606296363) (mid 3.84086820737184 2.8260933338554) (end 4.03429774834461 2.73828851794516) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.03429774834461 2.73828851794516) (xy 4.6536755 2.739566)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.6444795 5.3075045) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 8.68532525 7.776591)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.68532525 7.776591) (xy 7.36731275 7.777781)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 7.36731275 7.777781) (xy 8.31381775 5.253301)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.31381775 5.253301) (xy 6.69911401210568 3.12239450877699)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 6.69911401210568 3.12239450877699) (mid 6.34438927313888 2.86083653042072) (end 5.92142775 2.7369585) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.92142775 2.7369585) (xy 7.20697795987015 2.73714213727357)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 7.20697795987015 2.73714213727357) (mid 7.6509829133912 2.835530220617) (end 8.01080546865927 3.11364592030973) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.01080546865927 3.11364592030973) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_1" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_1" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_1_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_2" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_2" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_2_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C118280" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 6.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C118280" (id 1) (at 0.0 5.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C118280_1_0" + + (pin unspecified line (at -10.16 3.81 0) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 1.27 0) (length 2.54000508001016) + (name "E1" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 -1.27 0) (length 2.54000508001016) + (name "E2" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 -3.81 0) (length 2.54000508001016) + (name "VSS" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 -3.81 180) (length 2.54000508001016) + (name "SDA" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 -1.27 180) (length 2.54000508001016) + (name "SCL" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 1.27 180) (length 2.54000508001016) + (name "WC_NOT" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 3.81 180) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -7.62001524003048 -6.85801371602743) (end 7.62001524003048 6.85801371602743) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_3" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_3" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_3_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C442601" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C442601" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C442601_1_0" + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 0.0 0) (length 2.54000508001016) + (name "FIN" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "VOUT" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "LED_maker_ROYGBIV" + (in_bom yes) (on_board yes) + + (property "Reference" "LED" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "LED_maker_ROYGBIV" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "LED_maker_ROYGBIV_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "a" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "c" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (circle (center 0.0 0.0) (radius 1.905) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27 0.254) (xy 2.286 -0.762)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -0.508) (xy 2.286 -1.524)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -0.762) (xy 2.286 -0.762) (xy 2.286 -0.381)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -1.524) (xy 2.286 -1.524) (xy 2.286 -1.143)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 2.54) (xy 0.0 1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.016) (xy 1.27 1.016) (xy -1.27 1.016) (xy 0.0 -1.016)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.016) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.016) (xy 1.27 -1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_4" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_4" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_4_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_1" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_1" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_1_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_5" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_5" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_5_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C654991" + (in_bom yes) (on_board yes) + + (property "Reference" "X" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C654991" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C654991_1_0" + + (pin unspecified line (at 7.62 -2.54 180) (length 2.54000508001016) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 7.62 2.54 180) (length 2.54000508001016) + (name "OUT" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "IN" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -0.508001016002032 -1.77800355600711) (end 0.508001016002032 1.77800355600711) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 -3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 5.08001016002032 2.54000508001016) (xy 2.54000508001016 2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 2.54000508001016) (xy 2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 -0.0) (xy 1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -5.08001016002032 -2.54000508001016) (xy -2.54000508001016 -2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -2.54000508001016) (xy -2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -0.0) (xy -1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27000254000508 -1.77800355600711) (xy 1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -1.27000254000508 -1.77800355600711) (xy -1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "C840338" + (in_bom yes) (on_board yes) + + (property "Reference" "USB" (id 0) (at 0.0 18.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C840338" (id 1) (at 0.0 17.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C840338_1_0" + + (pin unspecified line (at 2.54 -22.86 90) (length 5.08001016002032) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 0.0 -22.86 90) (length 5.08001016002032) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 2.54 20.32 270) (length 5.08001016002032) + (name "GND2" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 0.0 20.32 270) (length 5.08001016002032) + (name "GND3" (effects (font (size 1.0 1.0)))) + (number "16" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 12.7 180) (length 2.54000508001016) + (name "GND4" (effects (font (size 1.0 1.0)))) + (number "B12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 10.16 180) (length 2.54000508001016) + (name "SSRXP1" (effects (font (size 1.0 1.0)))) + (number "B11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 7.62 180) (length 2.54000508001016) + (name "SSRXN1" (effects (font (size 1.0 1.0)))) + (number "B10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 5.08 180) (length 2.54000508001016) + (name "VBUS0" (effects (font (size 1.0 1.0)))) + (number "B9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 -15.24 0) (length 2.54000508001016) + (name "GND5" (effects (font (size 1.0 1.0)))) + (number "A12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 -2.54 0) (length 2.54000508001016) + (name "DN1" (effects (font (size 1.0 1.0)))) + (number "A7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 0.0 0) (length 2.54000508001016) + (name "DP1" (effects (font (size 1.0 1.0)))) + (number "A6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 2.54 0) (length 2.54000508001016) + (name "CC1" (effects (font (size 1.0 1.0)))) + (number "A5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 5.08 0) (length 2.54000508001016) + (name "VBUS1" (effects (font (size 1.0 1.0)))) + (number "A4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 7.62 0) (length 2.54000508001016) + (name "SSTXN1" (effects (font (size 1.0 1.0)))) + (number "A3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 10.16 0) (length 2.54000508001016) + (name "SSTXP1" (effects (font (size 1.0 1.0)))) + (number "A2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 12.7 0) (length 2.54000508001016) + (name "GND6" (effects (font (size 1.0 1.0)))) + (number "A1" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -11.4300228600457 -17.7800355600711) (end 13.9700279400559 15.240030480061) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -10.1600203200406 13.9700279400559) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_6" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_6" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_6_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C266601" + (in_bom yes) (on_board yes) + + (property "Reference" "Card" (id 0) (at 0.0 20.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C266601" (id 1) (at 0.0 19.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C266601_1_0" + + (pin unspecified line (at -16.51 17.78 0) (length 2.54000508001016) + (name "CD_DAT3" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 15.24 0) (length 2.54000508001016) + (name "CMD" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 12.7 0) (length 2.54000508001016) + (name "VSS1" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 10.16 0) (length 2.54000508001016) + (name "VDD" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 7.62 0) (length 2.54000508001016) + (name "CLK" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 5.08 0) (length 2.54000508001016) + (name "VSS2" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 2.54 0) (length 2.54000508001016) + (name "DAT0" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 0.0 0) (length 2.54000508001016) + (name "DAT1" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -2.54 0) (length 2.54000508001016) + (name "DAT2" (effects (font (size 1.0 1.0)))) + (number "9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -5.08 0) (length 2.54000508001016) + (name "CD" (effects (font (size 1.0 1.0)))) + (number "10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -7.62 0) (length 2.54000508001016) + (name "WP" (effects (font (size 1.0 1.0)))) + (number "11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -10.16 0) (length 2.54000508001016) + (name "SHELL0" (effects (font (size 1.0 1.0)))) + (number "12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -12.7 0) (length 2.54000508001016) + (name "SHELL1" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -15.24 0) (length 2.54000508001016) + (name "SHELL2" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -17.78 0) (length 2.54000508001016) + (name "SHELL3" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -13.9700279400559 -20.3200406400813) (end 16.510033020066 20.3200406400813) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -13.3350266700533 19.6850393700787) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor_2" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_2" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_2_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C174142" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + + (property "Value" "C174142" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C174142_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.5 0.5)))) + (number "1" (effects (font (size 0.5 0.5)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.5 0.5)))) + (number "2" (effects (font (size 0.5 0.5)))) + ) + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor_3" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_3" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_3_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_7" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_7" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_7_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_8" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_8" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_8_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_4" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_4" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_4_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_5" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_5" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_5_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C633328" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 25.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C633328" (id 1) (at 0.0 24.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C633328_1_0" + + (pin unspecified line (at -39.37 20.32 0) (length 2.54000508001016) + (name "LED" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 17.78 0) (length 2.54000508001016) + (name "USB+" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 15.24 0) (length 2.54000508001016) + (name "USB-" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 12.7 0) (length 2.54000508001016) + (name "xD_D3_SD_D1_MS_D5" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 10.16 0) (length 2.54000508001016) + (name "xD_D2_SD_D0_MS_D4" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 7.62 0) (length 2.54000508001016) + (name "VDD330" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 5.08 0) (length 2.54000508001016) + (name "xD_D1_SD_D7_MS_D6" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 2.54 0) (length 2.54000508001016) + (name "xD_D0_SD_D6_MS_D7" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 0.0 0) (length 2.54000508001016) + (name "xD_nWP_SD_CLK_MS_BS" (effects (font (size 1.0 1.0)))) + (number "9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -2.54 0) (length 2.54000508001016) + (name "xD_ALE_SD_D5_MS_D1" (effects (font (size 1.0 1.0)))) + (number "10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -5.08 0) (length 2.54000508001016) + (name "xD_CLE_SD_CMD_MS_D0" (effects (font (size 1.0 1.0)))) + (number "11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -7.62 0) (length 2.54000508001016) + (name "xD_nWE" (effects (font (size 1.0 1.0)))) + (number "12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -10.16 0) (length 2.54000508001016) + (name "VDD18" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -12.7 0) (length 2.54000508001016) + (name "VDD331" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -15.24 0) (length 2.54000508001016) + (name "xD_nCE" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -17.78 0) (length 2.54000508001016) + (name "xD_nRE" (effects (font (size 1.0 1.0)))) + (number "16" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -20.32 0) (length 2.54000508001016) + (name "xD_nB_R" (effects (font (size 1.0 1.0)))) + (number "17" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -22.86 0) (length 2.54000508001016) + (name "RESET_N" (effects (font (size 1.0 1.0)))) + (number "18" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -22.86 180) (length 2.54000508001016) + (name "xD_nCD" (effects (font (size 1.0 1.0)))) + (number "19" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -20.32 180) (length 2.54000508001016) + (name "xD_D7_SD_D4_MS_D2" (effects (font (size 1.0 1.0)))) + (number "20" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -17.78 180) (length 2.54000508001016) + (name "CRD_PWR" (effects (font (size 1.0 1.0)))) + (number "21" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -15.24 180) (length 2.54000508001016) + (name "VDD332" (effects (font (size 1.0 1.0)))) + (number "22" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -12.7 180) (length 2.54000508001016) + (name "xD_D6_SD_D3_MS_D3" (effects (font (size 1.0 1.0)))) + (number "23" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -10.16 180) (length 2.54000508001016) + (name "MS_INS" (effects (font (size 1.0 1.0)))) + (number "24" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -7.62 180) (length 2.54000508001016) + (name "xD_D5_SD_D2" (effects (font (size 1.0 1.0)))) + (number "25" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -5.08 180) (length 2.54000508001016) + (name "SD_nCD" (effects (font (size 1.0 1.0)))) + (number "26" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -2.54 180) (length 2.54000508001016) + (name "RXD_SDA" (effects (font (size 1.0 1.0)))) + (number "27" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 0.0 180) (length 2.54000508001016) + (name "TEST" (effects (font (size 1.0 1.0)))) + (number "28" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 2.54 180) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "29" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 5.08 180) (length 2.54000508001016) + (name "xD_D4_SD_WP_MS_SCLK" (effects (font (size 1.0 1.0)))) + (number "30" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 7.62 180) (length 2.54000508001016) + (name "TXD_SCK_MS_SKT_SEL" (effects (font (size 1.0 1.0)))) + (number "31" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 10.16 180) (length 2.54000508001016) + (name "XTAL2" (effects (font (size 1.0 1.0)))) + (number "32" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 12.7 180) (length 2.54000508001016) + (name "XTAL1_CLKIN" (effects (font (size 1.0 1.0)))) + (number "33" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 15.24 180) (length 2.54000508001016) + (name "VDD18PLL" (effects (font (size 1.0 1.0)))) + (number "34" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 17.78 180) (length 2.54000508001016) + (name "RBIAS" (effects (font (size 1.0 1.0)))) + (number "35" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 20.32 180) (length 2.54000508001016) + (name "VDDA33" (effects (font (size 1.0 1.0)))) + (number "36" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 22.86 180) (length 2.54000508001016) + (name "GND" (effects (font (size 1.0 1.0)))) + (number "37" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -36.8300736601473 -25.4000508001016) (end 36.8300736601473 25.4000508001016) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -35.5600711201422 21.5900431800864) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_9" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_9" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_9_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_6" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_6" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_6_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_7" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_7" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_7_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "Generic_Mounting_Hole" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "Generic_Mounting_Hole" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "Generic_Mounting_Hole_1_0" + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -1.27 0.0) (radius 1.143) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_10" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_10" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_10_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_11" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_11" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_11_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_12" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_12" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_12_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + ) + + (sheet (at 20.32 20.32) (size 59.69 30.48) + (stroke (width 0.1524) (type solid) (color 0 0 0 0)) + (fill (color 0 0 0 0.0000)) + (uuid 769e5753-ecff-ff7d-9bbd-16372ff6c879) + (property "Sheet name" "2: usb_conn" (id 0) (at 20.32 19.05 0) + (effects (font (size 1.27 1.27)) (justify left bottom))) + (property "Sheet file" "jitx-design-2.kicad_sch" (id 1) (at 20.32 52.07 0) + (effects (font (size 1.27 1.27)) (justify left top))) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913" (page "2")) + ) + ) + ) + + (sheet (at 20.32 59.69) (size 59.69 30.48) + (stroke (width 0.1524) (type solid) (color 0 0 0 0)) + (fill (color 0 0 0 0.0000)) + (uuid 7821f7a4-2252-574c-ca60-454d6810d138) + (property "Sheet name" "3: media-controller_usb2240" (id 0) (at 20.32 58.42 0) + (effects (font (size 1.27 1.27)) (justify left bottom))) + (property "Sheet file" "jitx-design-3.kicad_sch" (id 1) (at 20.32 91.44 0) + (effects (font (size 1.27 1.27)) (justify left top))) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913" (page "3")) + ) + ) + ) + + (sheet (at 20.32 100.33) (size 59.69 30.48) + (stroke (width 0.1524) (type solid) (color 0 0 0 0)) + (fill (color 0 0 0 0.0000)) + (uuid eaa54a66-2ef3-f9f9-2de2-c2b1b388013e) + (property "Sheet name" "4: test-points_point1" (id 0) (at 20.32 99.06 0) + (effects (font (size 1.27 1.27)) (justify left bottom))) + (property "Sheet file" "jitx-design-4.kicad_sch" (id 1) (at 20.32 132.08 0) + (effects (font (size 1.27 1.27)) (justify left top))) + (instances + (project "jitx-design" + (path "/219df102-d28d-b743-245e-efc9439ef913" (page "4")) + ) + ) + ) + (sheet_instances (path "/" (page "1"))) +) diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/CRYSTAL_SMD_4P_L3_2_W2_5_BL.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/CRYSTAL_SMD_4P_L3_2_W2_5_BL.kicad_mod new file mode 100644 index 0000000..f6b7d77 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/CRYSTAL_SMD_4P_L3_2_W2_5_BL.kicad_mod @@ -0,0 +1,45 @@ +(footprint CRYSTAL_SMD_4P_L3_2_W2_5_BL (version 20221018) (generator jitx) (layer F.Cu) (tstamp d69fe28d-2103-f694-1860-95df4fa4ce67) + (pad 1 smd rect + (at -0.985999999999876 0.73599999999999 0.0) + (size 1.4 1.2) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.051) + (tstamp b6e6b4fd-a78a-1f7a-de79-a2e04ee81fa9)) + (pad 2 smd rect + (at 1.21400000000006 0.73599999999999 0.0) + (size 1.4 1.2) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.051) + (tstamp d288015e-7647-5505-26b0-8935e86cd5d0)) + (pad 3 smd rect + (at 1.21400000000006 -0.963999999999942 0.0) + (size 1.4 1.2) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.051) + (tstamp 05f4034d-d5b2-f2ec-71e9-6432b0adbc85)) + (pad 4 smd rect + (at -0.985999999999876 -0.963999999999942 0.0) + (size 1.4 1.2) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.051) + (tstamp 1d8444b6-4bff-9272-6434-95371fc73d71)) + (fp_text reference ">REF" (at -1.5 -3.49860000000001 0.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp b1447960-a289-f909-bc3d-a25739a3b4ec) + ) + (fp_text value ">VALUE" (at -1.5 -2.49860000000001 0.0) (layer F.Fab) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp 5a1040bf-12a8-33ba-c804-feb8502c39ad) + ) + (fp_line (start -1.91499999999996 1.56399999999996) (end -1.91499999999996 -1.79300000000001) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp a0d1ff24-9b90-c83d-78ad-c9db23283eb3)) + (fp_line (start -1.91499999999996 -1.79300000000001) (end 2.14300000000003 -1.79300000000001) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp 5e90d8df-f40b-6013-c71f-3ae8999f981f)) + (fp_line (start 2.14300000000003 -1.79300000000001) (end 2.14300000000003 1.56399999999996) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp c6157f9c-44ca-da81-1daa-47e3ba74c635)) + (fp_line (start 2.14300000000003 1.56399999999996) (end -1.91499999999996 1.56399999999996) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp 175aa4f3-2875-efe8-8c17-15c09d3b37ed)) + (fp_line (start -2.14299999999992 0.135999999999967) (end -2.14299999999992 1.79300000000001) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp 1b4080fb-e0a2-25bf-38b8-3173f71aa636)) + (fp_line (start -2.14299999999992 1.79300000000001) (end -0.285999999999945 1.79300000000001) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp 6e4419c0-2781-c905-bea3-e8043077be97)) + (fp_poly (pts (xy -1.45599999999988 1.13599999999997) (xy -1.45657644158778 1.13014729033948) (xy -1.45828361402454 1.12451949702901) (xy -1.4610559116308 1.11933289300938) (xy -1.46478679656428 1.11478679656437) (xy -1.46933289300929 1.11105591163089) (xy -1.47451949702892 1.10828361402463) (xy -1.48014729033939 1.10657644158787) (xy -1.48599999999988 1.10599999999997) (xy -1.49185270966036 1.10657644158787) (xy -1.49748050297083 1.10828361402463) (xy -1.50266710699046 1.11105591163089) (xy -1.50721320343547 1.11478679656437) (xy -1.51094408836895 1.11933289300938) (xy -1.51371638597521 1.12451949702901) (xy -1.51542355841197 1.13014729033948) (xy -1.51599999999988 1.13599999999997) (xy -1.51542355841197 1.14185270966045) (xy -1.51371638597521 1.14748050297092) (xy -1.51094408836895 1.15266710699056) (xy -1.50721320343547 1.15721320343556) (xy -1.50266710699046 1.16094408836904) (xy -1.49748050297083 1.16371638597531) (xy -1.49185270966036 1.16542355841206) (xy -1.48599999999988 1.16599999999997) (xy -1.48014729033939 1.16542355841206) (xy -1.47451949702892 1.16371638597531) (xy -1.46933289300929 1.16094408836904) (xy -1.46478679656428 1.15721320343556) (xy -1.4610559116308 1.15266710699056) (xy -1.45828361402454 1.14748050297092) (xy -1.45657644158778 1.14185270966045)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -0.848999999999883 0.774999999999977) (xy -0.852458649527301 0.739883742037074) (xy -0.862701684147851 0.706116982174261) (xy -0.879335469785425 0.674997358056449) (xy -0.901720779386304 0.647720779386399) (xy -0.928997358056354 0.625335469785519) (xy -0.960116982174167 0.608701684147946) (xy -0.99388374203698 0.598458649527396) (xy -1.02899999999988 0.594999999999977) (xy -1.06411625796279 0.598458649527396) (xy -1.0978830178256 0.608701684147946) (xy -1.12900264194341 0.625335469785519) (xy -1.15627922061346 0.647720779386399) (xy -1.17866453021434 0.674997358056449) (xy -1.19529831585191 0.706116982174261) (xy -1.20554135047246 0.739883742037074) (xy -1.20899999999988 0.774999999999977) (xy -1.20554135047246 0.81011625796288) (xy -1.19529831585191 0.843883017825693) (xy -1.17866453021434 0.875002641943506) (xy -1.15627922061346 0.902279220613556) (xy -1.12900264194341 0.924664530214435) (xy -1.0978830178256 0.941298315852009) (xy -1.06411625796279 0.951541350472559) (xy -1.02899999999988 0.954999999999977) (xy -0.99388374203698 0.951541350472559) (xy -0.960116982174167 0.941298315852009) (xy -0.928997358056354 0.924664530214435) (xy -0.901720779386304 0.902279220613556) (xy -0.879335469785425 0.875002641943506) (xy -0.862701684147851 0.843883017825694) (xy -0.852458649527301 0.81011625796288)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_line (start -2.14299999999997 1.79300000000001) (end 2.14299999999997 1.79300000000001) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp c8911588-26e2-4c63-2d88-df5c5d50deca)) + (fp_line (start 2.14299999999997 1.79300000000001) (end 2.14299999999997 -1.79300000000001) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 78fd49a4-ddab-d917-f11c-59d4f71c4d72)) + (fp_line (start 2.14299999999997 -1.79300000000001) (end -2.14299999999997 -1.79300000000001) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 01e16426-8b3f-fbee-2366-1c6e878672b5)) + (fp_line (start -2.14299999999997 -1.79300000000001) (end -2.14299999999997 1.79300000000001) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 87a8a8c8-4ace-797f-d669-642d7702a222))) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/JITX_SM_LP.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/JITX_SM_LP.kicad_mod new file mode 100644 index 0000000..3f6e4be --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/JITX_SM_LP.kicad_mod @@ -0,0 +1,20 @@ +(footprint JITX_SM_LP (version 20221018) (generator jitx) (layer F.Cu) (tstamp 7659beb6-6468-00b5-62a0-95cdea9f0cbc) + (fp_text reference ">REF" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp 337a1835-0447-6ee7-aa48-ca3c487a2d26) + ) + (fp_text value ">VALUE" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp 55947bfb-b41a-2541-786b-51b4394bcd8b) + ) + (fp_line (start 0.85014485649696 -0.692201891913642) (end 8.79404222786366 -0.692201891913642) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp e5ec7200-be8e-0ebc-e38d-76a021bad9d2)) + (fp_line (start 8.79404222786366 -0.692201891913642) (end 8.79404222786366 -5.69220189191364) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 436a9b18-ade0-9014-8c3c-dca9c31c3408)) + (fp_line (start 8.79404222786366 -5.69220189191364) (end 0.85014485649696 -5.69220189191364) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 631e2738-0137-df26-e03e-81b4d97934ba)) + (fp_line (start 0.85014485649696 -5.69220189191364) (end 0.85014485649696 -0.692201891913642) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 607ff255-619a-b731-e58d-33aeaa396b32)) + (fp_poly (pts (xy 6.442652007872 -3.04648832734642) (xy 7.05588644128556 -3.88296216904314) (xy 7.78645207664225 -2.00231624075442) (xy 6.88010399672244 -2.00220101399548)) (layer F.SilkS) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 7.05588644128556 -3.88296216904314) (xy 8.19709678007273 -5.42241329181152) (xy 8.3204052952668 -5.53760595916123) (xy 8.46570369766096 -5.6234122222905) (xy 8.62611794616025 -5.67577260243537) (xy 8.79405887172884 -5.69220993949681) (xy 7.86627415693494 -5.69121601967094) (xy 7.70740695967751 -5.68473118075577) (xy 7.55333638306515 -5.64544890838619) (xy 7.41075817545383 -5.57507636960486) (xy 7.28586863869564 -5.47667188236718) (xy 6.7406055440532 -4.69456879586208)) (layer F.SilkS) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 3.51566187713535 -2.00222661994191) (xy 4.03998203925757 -2.00223942291513) (xy 4.46087978373949 -4.39427012078691) (xy 5.15595319964591 -4.3952943586442) (xy 5.25009346170448 -4.93563104025986) (xy 4.55659481150365 -4.93592550864384) (xy 4.64811046405291 -5.46061695698933) (xy 4.12403355842179 -5.46057854806968)) (layer F.SilkS) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 3.52594730025263 -5.46067592728012) (xy 3.44865918292706 -5.4516593015059) (xy 3.37548013740945 -5.4252097284051) (xy 3.31028732646576 -5.38272855585367) (xy 3.25653478721019 -5.32646651586522) (xy 3.21707042975558 -5.25940447659726) (xy 3.2170709089957 -5.25940541360717) (xy 3.20016302094343 -5.21546837802557) (xy 3.19215170414267 -5.16907701485089) (xy 3.19334482903919 -5.12201411834984) (xy 3.2036965445073 -5.0760882894411) (xy 3.22280903988301 -5.03306443216865) (xy 3.2499478326065 -4.99459592942162) (xy 3.28406999397808 -4.96216110435011) (xy 3.32386422832765 -4.93700640922935) (xy 3.32386432486543 -4.93700647673892) (xy 3.38454071733102 -4.92366823549153) (xy 3.44665872787798 -4.92272693431782) (xy 3.50771140843212 -4.93422056209001) (xy 3.56523480532539 -4.95768526093893) (xy 3.61690739911775 -4.99217404655081) (xy 3.6606437960827 -5.03629502639868) (xy 3.69467889017165 -5.08826757350354) (xy 3.69467867469949 -5.08826759745492) (xy 3.72179649574598 -5.13385769142818) (xy 3.73808966611166 -5.18433902942783) (xy 3.74274117820005 -5.23718026637486) (xy 3.73551778577202 -5.28973172200294) (xy 3.71678169988616 -5.33935824689112) (xy 3.68747242612387 -5.38357135985919) (xy 3.64905965385647 -5.42015403080505) (xy 3.64905965308123 -5.42015415848942) (xy 3.58988095066219 -5.44763823442715) (xy 3.52594731967763 -5.46067602869164)) (layer F.SilkS) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 2.84916469744745 -4.62601673897298) (xy 2.32428120450372 -4.62604234491941) (xy 1.8451582890905 -1.90355707986905) (xy 1.76779902606422 -1.71581476197463) (xy 1.65259200093038 -1.54860538764368) (xy 1.5047177056466 -1.4094478283856) (xy 1.33082557497234 -1.30459955518139) (xy 1.13873498262555 -1.23877525999947) (xy 0.937083629021048 -1.21493485115629) (xy 0.850153904626757 -0.692202006834376) (xy 1.19404672834963 -0.752687957847646) (xy 1.51855553770745 -0.8815865890554) (xy 1.81022301031148 -1.07355249723403) (xy 2.0569537481449 -1.32062489044348) (xy 2.24851587155917 -1.61255772064777) (xy 2.37696533349632 -1.93724458549777)) (layer F.SilkS) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 3.40462187333104 -2.00426229268328) (xy 3.36113833513282 -2.01593155028237) (xy 3.32134167412248 -2.03698423276174) (xy 3.28722746105946 -2.06636467071355) (xy 3.26050632503529 -2.10259960629687) (xy 3.24251817538796 -2.14387206853762) (xy 3.23416501305276 -2.18811248384028) (xy 3.23586570046895 -2.23310245304967) (xy 3.60879068263245 -4.3883807423813) (xy 3.60897705657511 -4.436274155689) (xy 3.59850147067433 -4.48300825323612) (xy 3.57788921454941 -4.52623959222706) (xy 3.54817387279174 -4.56380037280645) (xy 3.5108454967175 -4.59380714059589) (xy 3.4677758869728 -4.61475523096107) (xy 3.42112473363325 -4.62559421917946) (xy 2.95217682137881 -4.62460931640585) (xy 2.99695532864074 -4.61334576690707) (xy 3.03815686522421 -4.59250312688526) (xy 3.07376088295245 -4.56310353196417) (xy 3.10202133934571 -4.52658875599111) (xy 3.12155232459636 -4.48474950557889) (xy 3.13139602742086 -4.43963760277463) (xy 3.13106970670217 -4.39346536247046) (xy 2.75533172137445 -2.21305322595684) (xy 2.75790734666802 -2.17333122346256) (xy 2.76818286136395 -2.13487494795982) (xy 2.78576338308429 -2.09916225296421) (xy 2.80997330204909 -2.06756555770146) (xy 2.83988224438864 -2.0412991057915) (xy 2.87434082589955 -2.02137230253396) (xy 2.91202482224751 -2.00855092401775) (xy 2.95148605818008 -2.00332768876716)) (layer F.SilkS) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 6.442652007872 -3.04648832734642) (xy 7.05588644128556 -3.88296216904314) (xy 6.7406055440532 -4.69456879586208) (xy 6.35417065997498 -5.68934207349638) (xy 5.38991473219838 -5.69021267567508) (xy 6.08237634156869 -3.84330697140182) (xy 4.90106155823574 -2.28433904378396) (xy 4.73532147943483 -2.14649504012118) (xy 4.54217185501108 -2.05076643597548) (xy 4.33210747913115 -2.00235464967407) (xy 5.27261404513242 -2.00248899842236) (xy 5.43900517993543 -2.02054336115547) (xy 5.59744738957706 -2.07446956961306) (xy 5.74030490332917 -2.16166876983472) (xy 5.86069302030132 -2.27793858985107)) (layer F.SilkS) (stroke (width 0) (type solid)) )) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/KEYSTONE_500X_PKG.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/KEYSTONE_500X_PKG.kicad_mod new file mode 100644 index 0000000..e853016 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/KEYSTONE_500X_PKG.kicad_mod @@ -0,0 +1,24 @@ +(footprint KEYSTONE_500X_PKG (version 20221018) (generator jitx) (layer F.Cu) (tstamp ce98e18d-af69-39a8-1108-24162ba8b1b3) + (pad p thru_hole circle + (at 0.0 0.0 0.0) + (size 1.54 1.54) + (drill 1.02) + (layers *.Cu B.Mask F.Mask) + (solder_mask_margin 0.05) + (tstamp de870da5-5bdf-f6cc-3afd-6105b1eaaffc)) + (fp_text value ">VALUE" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp 9428c36f-f1e5-97dd-bcd3-4ccbddfd7495) + ) + (fp_line (start -1.27 1.27) (end 1.27 1.27) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 7675da5b-4c0c-00f6-3e74-19a9cc053d77)) + (fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp b15d4c7d-3eb5-974a-badc-78bc1e867856)) + (fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 447acb0b-87a1-d4f9-2f55-ca7a08d82354)) + (fp_line (start -1.27 -1.27) (end -1.27 1.27) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 557d53f9-40e0-6b12-3537-17443760780e)) + (fp_line (start -1.27 1.27) (end 1.27 1.27) (layer B.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 84584cf6-3c69-bb02-7ee7-2785dfacc4f6)) + (fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer B.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 44462b02-1119-5029-0aaa-341e183815bc)) + (fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer B.CrtYd) (stroke (width 0.05) (type solid)) (tstamp d4f12b5f-1f5b-ec6a-475d-f3b4ef176d31)) + (fp_line (start -1.27 -1.27) (end -1.27 1.27) (layer B.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 0ac53b69-7773-0d20-31e5-6f33f955ada2)) + (fp_text reference ">REF" (at 0.0 0.0 0.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp 3c14739c-c4c7-94fe-fcfd-21d9f5a35482) + )) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/NPTH.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/NPTH.kicad_mod new file mode 100644 index 0000000..9a11098 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/NPTH.kicad_mod @@ -0,0 +1,25 @@ +(footprint NPTH (version 20221018) (generator jitx) (layer F.Cu) (tstamp 9187d788-bdff-7ced-ec08-413ed3d7f570) + (pad "" smd circle + (at 0.0 0.0 0.0) + (size 3.7 3.7) + (layers B.Mask F.Mask) + (tstamp 46c5b44c-8009-0143-af1d-4e88a6ccb20a)) + (pad "" np_thru_hole circle (at 0.0 0.0) (size 2.3 2.3) (drill 2.3) (layers *.Mask) + (tstamp 593c21ec-44b0-60de-5706-a4bf3b12fba5) + ) + (fp_text reference ">REF" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp 81c3e2e5-71a4-9c53-b9bb-b200d6e7d51b) + ) + (fp_text value ">VALUE" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp 3b7e46e4-94a3-5eb1-cec7-5bc89f0c781d) + ) + (fp_line (start -1.15 1.15) (end 1.15 1.15) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 961cf73d-4c76-c301-e718-8eb7f7b22e78)) + (fp_line (start 1.15 1.15) (end 1.15 -1.15) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp f4c1e7f0-ef8a-721f-f270-bb12625d80df)) + (fp_line (start 1.15 -1.15) (end -1.15 -1.15) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp d9e12c4f-d52f-6e8e-110e-c182fb67fa1b)) + (fp_line (start -1.15 -1.15) (end -1.15 1.15) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp cae9178a-ea77-090d-27ed-c3ee68ea30fb)) + (fp_line (start -1.15 1.15) (end 1.15 1.15) (layer B.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 75d6229b-39a9-d087-d432-fd21b5f860b2)) + (fp_line (start 1.15 1.15) (end 1.15 -1.15) (layer B.CrtYd) (stroke (width 0.05) (type solid)) (tstamp fdc86559-e9fc-545a-44ad-09c652a69e7c)) + (fp_line (start 1.15 -1.15) (end -1.15 -1.15) (layer B.CrtYd) (stroke (width 0.05) (type solid)) (tstamp d55c5a07-2659-8f5a-f12a-30d7ee796c27)) + (fp_line (start -1.15 -1.15) (end -1.15 1.15) (layer B.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 50287d89-49df-298a-35a2-014d21526fd6))) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402.kicad_mod new file mode 100644 index 0000000..12e86f0 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402.kicad_mod @@ -0,0 +1,25 @@ +(footprint Pkg0402 (version 20221018) (generator jitx) (layer F.Cu) (tstamp 89eb57a9-fbeb-bf58-4307-f9c0d0cd595f) + (pad 1 smd rect + (at 0.0 -0.4598612181134 0.0) + (size 0.6 0.3802775637732) + (layers F.Cu F.Mask F.Paste) + (solder_mask_margin 0.05) + (tstamp 9b32b423-179c-aeec-08c5-da58cc7ddac5)) + (pad 2 smd rect + (at 0.0 0.4598612181134 0.0) + (size 0.6 0.3802775637732) + (layers F.Cu F.Mask F.Paste) + (solder_mask_margin 0.05) + (tstamp 888d2d63-7470-29cb-8782-e62daf885ab0)) + (fp_text value ">VALUE" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp f356c74c-3218-235d-7a18-4973b934a9d2) + ) + (fp_line (start -0.45 0.8) (end 0.45 0.8) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp fecd17ab-53ee-98a9-3883-29d7c0cf3b76)) + (fp_line (start 0.45 0.8) (end 0.45 -0.8) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp e8c6c9ab-5523-0599-9040-13c67726f508)) + (fp_line (start 0.45 -0.8) (end -0.45 -0.8) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 9593eac8-b957-2260-91b4-eb8ce2c7ff9f)) + (fp_line (start -0.45 -0.8) (end -0.45 0.8) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp a9fa2dbc-f796-e731-86ff-4b0e3cf86578)) + (fp_text reference ">REF" (at 0.95 0.0 90.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp cced5a1d-af05-da13-a43b-9c917873cafd) + )) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402_1.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402_1.kicad_mod new file mode 100644 index 0000000..0dce4b3 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402_1.kicad_mod @@ -0,0 +1,25 @@ +(footprint Pkg0402_1 (version 20221018) (generator jitx) (layer F.Cu) (tstamp bde0d5b9-0577-584b-128c-c3528d7e697e) + (pad 1 smd rect + (at 0.0 -0.4848612181134 0.0) + (size 0.6 0.430277563773199) + (layers F.Cu F.Mask F.Paste) + (solder_mask_margin 0.05) + (tstamp 8e00b4c1-baae-62b7-89a9-594e9af9131f)) + (pad 2 smd rect + (at 0.0 0.4848612181134 0.0) + (size 0.6 0.430277563773199) + (layers F.Cu F.Mask F.Paste) + (solder_mask_margin 0.05) + (tstamp 8e192729-b770-894d-09cc-8b9ede98d2d3)) + (fp_text value ">VALUE" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp 616bf705-e4a7-ca80-efda-0a25bbfcec34) + ) + (fp_line (start -0.45 0.85) (end 0.45 0.85) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp aba960f1-c488-d1ba-86b6-060a40291fe2)) + (fp_line (start 0.45 0.85) (end 0.45 -0.85) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp b717977c-e002-12ad-72c0-f0efb6bab96c)) + (fp_line (start 0.45 -0.85) (end -0.45 -0.85) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 21cc7b50-0c7c-869e-85de-331a7cac8564)) + (fp_line (start -0.45 -0.85) (end -0.45 0.85) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 9eeb7000-ad3f-36cd-7357-9897de0630f5)) + (fp_text reference ">REF" (at 0.95 0.0 90.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp af939646-1b46-cea3-d5db-1c737294f025) + )) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402_2.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402_2.kicad_mod new file mode 100644 index 0000000..89aea4b --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402_2.kicad_mod @@ -0,0 +1,25 @@ +(footprint Pkg0402_2 (version 20221018) (generator jitx) (layer F.Cu) (tstamp ec2183dc-c4aa-5a52-5bec-6f5bc83b52ea) + (pad 1 smd rect + (at 0.0 -0.4536112181134 0.0) + (size 0.6 0.367777563773199) + (layers F.Cu F.Mask F.Paste) + (solder_mask_margin 0.05) + (tstamp ba169d79-ff12-942e-c3c5-e515173b0116)) + (pad 2 smd rect + (at 0.0 0.4536112181134 0.0) + (size 0.6 0.367777563773199) + (layers F.Cu F.Mask F.Paste) + (solder_mask_margin 0.05) + (tstamp 12334427-f5a6-bb01-7e64-46ef9a114a99)) + (fp_text value ">VALUE" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp 3251c0d8-387e-c412-629c-83b1b965b572) + ) + (fp_line (start -0.45 0.7875) (end 0.45 0.7875) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 75b67478-d4ec-3359-4800-fe10569139ed)) + (fp_line (start 0.45 0.7875) (end 0.45 -0.7875) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 8e125bde-e3bf-93de-759d-3f049d59b995)) + (fp_line (start 0.45 -0.7875) (end -0.45 -0.7875) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 4426251f-2bc9-50fb-b929-9f9e01875dbd)) + (fp_line (start -0.45 -0.7875) (end -0.45 0.7875) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 1f6ad1f4-5b5f-72fb-68ef-e18d16b1d109)) + (fp_text reference ">REF" (at 0.95 0.0 90.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp 380e501a-3585-64d2-88ed-adab2245fb39) + )) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402_3.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402_3.kicad_mod new file mode 100644 index 0000000..98d37aa --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402_3.kicad_mod @@ -0,0 +1,25 @@ +(footprint Pkg0402_3 (version 20221018) (generator jitx) (layer F.Cu) (tstamp 0ac53b69-7773-0d20-31e5-6f33f955ada2) + (pad 1 smd rect + (at 0.0 -0.4561112181134 0.0) + (size 0.6 0.372777563773199) + (layers F.Cu F.Mask F.Paste) + (solder_mask_margin 0.05) + (tstamp 3c14739c-c4c7-94fe-fcfd-21d9f5a35482)) + (pad 2 smd rect + (at 0.0 0.4561112181134 0.0) + (size 0.6 0.372777563773199) + (layers F.Cu F.Mask F.Paste) + (solder_mask_margin 0.05) + (tstamp a66e5bc0-5550-846d-7be4-c3662e312b98)) + (fp_text value ">VALUE" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp d257ff64-52b6-5473-4b9a-31c0d8422dab) + ) + (fp_line (start -0.45 0.7925) (end 0.45 0.7925) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 43986648-d80f-bc03-b99e-57d23e84f33b)) + (fp_line (start 0.45 0.7925) (end 0.45 -0.7925) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 1362ff50-51f6-b8a1-4396-7bb0d14294c4)) + (fp_line (start 0.45 -0.7925) (end -0.45 -0.7925) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 23bec3de-dac1-f3b4-9c35-8d92aa472cd4)) + (fp_line (start -0.45 -0.7925) (end -0.45 0.7925) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 2d499ef8-52e2-764d-8565-bbfec0573192)) + (fp_text reference ">REF" (at 0.95 0.0 90.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp d3b07250-3d6e-bfb3-d4e3-3a5eb4357623) + )) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402_4.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402_4.kicad_mod new file mode 100644 index 0000000..081fe63 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0402_4.kicad_mod @@ -0,0 +1,25 @@ +(footprint Pkg0402_4 (version 20221018) (generator jitx) (layer F.Cu) (tstamp 7c89a1bd-f202-5110-b99d-933807560b16) + (pad 1 smd rect + (at 0.0 -0.4786112181134 0.0) + (size 0.6 0.417777563773199) + (layers F.Cu F.Mask F.Paste) + (solder_mask_margin 0.05) + (tstamp 0d317e44-06c3-e0e3-00f5-47401c10c6bb)) + (pad 2 smd rect + (at 0.0 0.4786112181134 0.0) + (size 0.6 0.417777563773199) + (layers F.Cu F.Mask F.Paste) + (solder_mask_margin 0.05) + (tstamp 61601672-0ac1-d34b-f9a5-44511dbf0ab0)) + (fp_text value ">VALUE" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp 5089523c-e0d4-1a83-f06a-e4bb0f2b946b) + ) + (fp_line (start -0.45 0.8375) (end 0.45 0.8375) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 6d817b05-da8c-707d-33b7-5eef0cc31fc1)) + (fp_line (start 0.45 0.8375) (end 0.45 -0.8375) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp a66b5e42-4492-e571-f0dd-1cf531d5de20)) + (fp_line (start 0.45 -0.8375) (end -0.45 -0.8375) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 44ffdfc1-d73f-70b8-500a-6f680d9b916a)) + (fp_line (start -0.45 -0.8375) (end -0.45 0.8375) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp a1cf5239-1057-e31b-7ca9-0359f4736463)) + (fp_text reference ">REF" (at 0.95 0.0 90.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp fb55c977-64c5-b9dd-a0bb-66d49175559d) + )) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0603.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0603.kicad_mod new file mode 100644 index 0000000..4a6e506 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/Pkg0603.kicad_mod @@ -0,0 +1,25 @@ +(footprint Pkg0603 (version 20221018) (generator jitx) (layer F.Cu) (tstamp de870da5-5bdf-f6cc-3afd-6105b1eaaffc) + (pad 1 smd rect + (at 0.0 -0.718933982822018 0.0) + (size 0.95 0.512132034355964) + (layers F.Cu F.Mask F.Paste) + (solder_mask_margin 0.05) + (tstamp 9428c36f-f1e5-97dd-bcd3-4ccbddfd7495)) + (pad 2 smd rect + (at 0.0 0.718933982822018 0.0) + (size 0.95 0.512132034355964) + (layers F.Cu F.Mask F.Paste) + (solder_mask_margin 0.05) + (tstamp 7675da5b-4c0c-00f6-3e74-19a9cc053d77)) + (fp_text value ">VALUE" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp b15d4c7d-3eb5-974a-badc-78bc1e867856) + ) + (fp_line (start -0.625 1.125) (end 0.625 1.125) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 447acb0b-87a1-d4f9-2f55-ca7a08d82354)) + (fp_line (start 0.625 1.125) (end 0.625 -1.125) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 557d53f9-40e0-6b12-3537-17443760780e)) + (fp_line (start 0.625 -1.125) (end -0.625 -1.125) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 84584cf6-3c69-bb02-7ee7-2785dfacc4f6)) + (fp_line (start -0.625 -1.125) (end -0.625 1.125) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 44462b02-1119-5029-0aaa-341e183815bc)) + (fp_text reference ">REF" (at 1.125 0.0 90.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp d4f12b5f-1f5b-ec6a-475d-f3b4ef176d31) + )) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/QFN_36_L6_0_W6_0_P0_50_TL_EP4_1.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/QFN_36_L6_0_W6_0_P0_50_TL_EP4_1.kicad_mod new file mode 100644 index 0000000..74938e0 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/QFN_36_L6_0_W6_0_P0_50_TL_EP4_1.kicad_mod @@ -0,0 +1,283 @@ +(footprint QFN_36_L6_0_W6_0_P0_50_TL_EP4_1 (version 20221018) (generator jitx) (layer F.Cu) (tstamp 54a087f5-1ba6-e359-01b8-d565b73a2b2a) + (pad 37 smd rect + (at 0.0 0.0 0.0) + (size 4.1 4.1) + (layers F.Cu F.Mask) + (solder_mask_margin 0.0499999999999998) + (tstamp a8a204d8-4e17-b05e-cdb5-b49c9e01381b)) + (pad 5 smd rect + (at -2.80999999999995 0.0 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp dfa799e7-cb23-3517-61b1-bdfce5b6921f)) + (pad 4 smd rect + (at -2.80999999999995 -0.5 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 627f607e-a4bf-30ea-c73c-03c6794e087d)) + (pad 3 smd rect + (at -2.80999999999995 -1.0 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp fd69642c-8210-6756-db5d-2e81b88e052b)) + (pad 2 smd rect + (at -2.80999999999995 -1.5 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 05a4f179-7326-489f-c286-7af6a997b48f)) + (pad 1 smd rect + (at -2.80999999999995 -2.0 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp f9a016d2-f0fd-0260-0b67-d9572257b414)) + (pad 6 smd rect + (at -2.80999999999995 0.5 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp d412263e-5d81-301b-4c7e-0fa3a44d961b)) + (pad 7 smd rect + (at -2.80999999999995 1.0 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp c8102862-9d5f-3559-772b-cce2c4cc4684)) + (pad 8 smd rect + (at -2.80999999999995 1.5 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp d69775a4-226a-ed9f-d65d-2c67d784fc3b)) + (pad 9 smd rect + (at -2.80999999999995 2.0 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 6e49edf3-7a4b-fee7-3866-1af04cd39f57)) + (pad 19 smd rect + (at 2.81000000000006 2.0 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp a88339fa-9c8a-8c6c-ba23-fabfa7dd35cb)) + (pad 20 smd rect + (at 2.81000000000006 1.5 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 2ae54f35-892e-4e37-e0d5-a1e563294daa)) + (pad 21 smd rect + (at 2.81000000000006 1.0 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp d5b1571f-af51-53e4-4493-e8f1fe18ef34)) + (pad 22 smd rect + (at 2.81000000000006 0.5 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 2bec03b9-7b36-ebaf-07bc-a9e0597f89a2)) + (pad 27 smd rect + (at 2.81000000000006 -2.0 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp e42b9209-65b7-5b6b-c230-702c8e7fea13)) + (pad 26 smd rect + (at 2.81000000000006 -1.5 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp dc1fdffe-4ff9-e958-46da-82ce32952e98)) + (pad 25 smd rect + (at 2.81000000000006 -1.0 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 7a9d5299-a3c9-5069-ce92-3df2d555b5a9)) + (pad 24 smd rect + (at 2.81000000000006 -0.5 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 69e179d1-68c8-453b-293d-e81eed62b173)) + (pad 23 smd rect + (at 2.81000000000006 0.0 90.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 17f8cf5c-399f-fd35-5dd9-9b80a7c50816)) + (pad 18 smd rect + (at 2.0 2.80900000000008 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 3b880b46-26f2-f9cf-3b49-101a3932535d)) + (pad 17 smd rect + (at 1.5 2.80900000000008 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 2687e687-be23-81e2-d8d7-731bda508846)) + (pad 16 smd rect + (at 1.0 2.80900000000008 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp facd71d1-4424-4d9f-4bb0-15eefee4f9b3)) + (pad 15 smd rect + (at 0.5 2.80900000000008 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 35c334d7-2dc9-1e91-068d-99c495072db3)) + (pad 10 smd rect + (at -2.0 2.80900000000008 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 97d4702b-1858-044b-eadf-9e5da1048f64)) + (pad 11 smd rect + (at -1.5 2.80900000000008 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp e82ef3fa-4268-861b-3997-0c9d602c2ace)) + (pad 12 smd rect + (at -1.0 2.80900000000008 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 00348ba8-5dfb-e87e-b57e-a455b785e15c)) + (pad 13 smd rect + (at -0.5 2.80900000000008 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp bcde2d06-a702-b4a8-cd48-74dded0de916)) + (pad 14 smd rect + (at 0.0 2.80900000000008 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 01b312b3-8508-e735-96eb-30a44816abbf)) + (pad 28 smd rect + (at 2.0 -2.80999999999995 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 7d308a32-2aec-6793-b16b-543c778f8fce)) + (pad 29 smd rect + (at 1.5 -2.80999999999995 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 45766b39-b626-eb39-e277-5d460b6fd700)) + (pad 30 smd rect + (at 1.0 -2.80999999999995 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 42c5c2fb-7b44-f557-9dd6-f4849920dc8c)) + (pad 31 smd rect + (at 0.5 -2.80999999999995 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp ece431c7-4bc5-2661-de60-742a0365b888)) + (pad 36 smd rect + (at -2.0 -2.80999999999995 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 04313ddc-6908-6f6c-1f17-b67880e575e3)) + (pad 35 smd rect + (at -1.5 -2.80999999999995 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp ebf54ec3-f817-123b-c70a-8d0f62a8958d)) + (pad 34 smd rect + (at -1.0 -2.80999999999995 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 0b8df84a-a960-fe65-89d9-0f63e6e05a75)) + (pad 33 smd rect + (at -0.5 -2.80999999999995 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 22661fb7-4776-0638-b0b5-0cd617cda8c5)) + (pad 32 smd rect + (at 0.0 -2.80999999999995 180.0) + (size 0.28 0.89) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp c4a6a2d5-235f-81bc-3ec7-f2f6d08becb9)) + (fp_text reference ">REF" (at -1.5 -4.9606 0.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp b7df831d-8e7c-39fe-c988-0ed8e1742cdb) + ) + (fp_text value ">VALUE" (at -1.5 -3.9606 0.0) (layer F.Fab) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp 93d33768-c735-fb28-0d1f-a1e2a95af499) + ) + (fp_line (start 2.40000000000009 3.0) (end 3.0 3.0) (layer F.SilkS) (stroke (width 0.15) (type solid)) (tstamp 1662fc55-4067-b8ac-5769-3487d225d30f)) + (fp_line (start 3.0 3.0) (end 3.0 2.40000000000009) (layer F.SilkS) (stroke (width 0.15) (type solid)) (tstamp c21a5298-156a-e56b-8fb2-a759a763590e)) + (fp_line (start -3.0 3.0) (end -2.39999999999998 3.0) (layer F.SilkS) (stroke (width 0.15) (type solid)) (tstamp 29bec3ed-c58f-a4ea-832c-cc7a38c6c7c1)) + (fp_line (start -3.0 2.40000000000009) (end -3.0 3.0) (layer F.SilkS) (stroke (width 0.15) (type solid)) (tstamp ee994d95-1699-407c-81ff-2822e937309d)) + (fp_line (start 3.0 -2.39999999999998) (end 3.0 -3.0) (layer F.SilkS) (stroke (width 0.15) (type solid)) (tstamp 4dd97314-3d2f-fac7-1d33-e84b59d70f86)) + (fp_line (start 3.0 -3.0) (end 2.40000000000009 -3.0) (layer F.SilkS) (stroke (width 0.15) (type solid)) (tstamp 0f3d03be-0a19-bb6b-e5b5-8ff005905c1f)) + (fp_line (start -2.39999999999998 -3.0) (end -3.0 -3.0) (layer F.SilkS) (stroke (width 0.15) (type solid)) (tstamp c7c0e940-40d7-ba91-6626-1d4584580b8d)) + (fp_line (start -3.0 -3.0) (end -3.0 -2.39999999999998) (layer F.SilkS) (stroke (width 0.15) (type solid)) (tstamp 5bd4211f-1e5c-4e01-4153-1167ebf40399)) + (fp_poly (pts (xy -2.97 -3.00099999999998) (xy -2.9705764415879 -3.00685270966046) (xy -2.97228361402466 -3.01248050297093) (xy -2.97505591163092 -3.01766710699056) (xy -2.9787867965644 -3.02221320343557) (xy -2.98333289300941 -3.02594408836905) (xy -2.98851949702905 -3.02871638597532) (xy -2.99414729033952 -3.03042355841207) (xy -3.0 -3.03099999999998) (xy -3.00585270966048 -3.03042355841207) (xy -3.01148050297095 -3.02871638597532) (xy -3.01666710699059 -3.02594408836905) (xy -3.0212132034356 -3.02221320343557) (xy -3.02494408836908 -3.01766710699056) (xy -3.02771638597534 -3.01248050297093) (xy -3.0294235584121 -3.00685270966046) (xy -3.03 -3.00099999999998) (xy -3.0294235584121 -2.99514729033949) (xy -3.02771638597534 -2.98951949702902) (xy -3.02494408836908 -2.98433289300939) (xy -3.0212132034356 -2.97978679656438) (xy -3.01666710699059 -2.9760559116309) (xy -3.01148050297095 -2.97328361402464) (xy -3.00585270966048 -2.97157644158788) (xy -3.0 -2.97099999999998) (xy -2.99414729033952 -2.97157644158788) (xy -2.98851949702905 -2.97328361402464) (xy -2.98333289300941 -2.9760559116309) (xy -2.9787867965644 -2.97978679656438) (xy -2.97505591163092 -2.98433289300939) (xy -2.97228361402466 -2.98951949702902) (xy -2.9705764415879 -2.99514729033949)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -3.02499999999995 -2.15899999999999) (xy -3.02788220793947 -2.18826354830241) (xy -3.03641807012326 -2.21640251485476) (xy -3.05027955815457 -2.24233553495293) (xy -3.06893398282197 -2.26506601717797) (xy -3.09166446504701 -2.28372044184537) (xy -3.11759748514519 -2.29758192987668) (xy -3.14573645169754 -2.30611779206048) (xy -3.17499999999995 -2.30899999999999) (xy -3.20426354830237 -2.30611779206048) (xy -3.23240251485472 -2.29758192987668) (xy -3.25833553495289 -2.28372044184537) (xy -3.28106601717794 -2.26506601717797) (xy -3.29972044184534 -2.24233553495293) (xy -3.31358192987665 -2.21640251485476) (xy -3.32211779206044 -2.18826354830241) (xy -3.32499999999995 -2.15899999999999) (xy -3.32211779206044 -2.12973645169757) (xy -3.31358192987665 -2.10159748514523) (xy -3.29972044184534 -2.07566446504705) (xy -3.28106601717794 -2.05293398282201) (xy -3.2583355349529 -2.03427955815461) (xy -3.23240251485472 -2.0204180701233) (xy -3.20426354830237 -2.01188220793951) (xy -3.17499999999995 -2.00899999999999) (xy -3.14573645169754 -2.01188220793951) (xy -3.11759748514519 -2.0204180701233) (xy -3.09166446504701 -2.03427955815461) (xy -3.06893398282197 -2.05293398282201) (xy -3.05027955815457 -2.07566446504705) (xy -3.03641807012326 -2.10159748514523) (xy -3.02788220793947 -2.12973645169757)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -3.53299999999999 -2.53999999999996) (xy -3.53588220793951 -2.56926354830238) (xy -3.5444180701233 -2.59740251485473) (xy -3.55827955815461 -2.6233355349529) (xy -3.57693398282201 -2.64606601717795) (xy -3.59966446504705 -2.66472044184535) (xy -3.62559748514523 -2.67858192987666) (xy -3.65373645169757 -2.68711779206045) (xy -3.68299999999999 -2.68999999999996) (xy -3.71226354830241 -2.68711779206045) (xy -3.74040251485476 -2.67858192987666) (xy -3.76633553495293 -2.66472044184535) (xy -3.78906601717797 -2.64606601717795) (xy -3.80772044184537 -2.6233355349529) (xy -3.82158192987669 -2.59740251485473) (xy -3.83011779206048 -2.56926354830238) (xy -3.83299999999999 -2.53999999999996) (xy -3.83011779206048 -2.51073645169754) (xy -3.82158192987669 -2.4825974851452) (xy -3.80772044184537 -2.45666446504702) (xy -3.78906601717798 -2.43393398282198) (xy -3.76633553495293 -2.41527955815458) (xy -3.74040251485476 -2.40141807012327) (xy -3.71226354830241 -2.39288220793948) (xy -3.68299999999999 -2.38999999999996) (xy -3.65373645169757 -2.39288220793948) (xy -3.62559748514523 -2.40141807012327) (xy -3.59966446504705 -2.41527955815458) (xy -3.57693398282201 -2.43393398282198) (xy -3.55827955815461 -2.45666446504702) (xy -3.5444180701233 -2.4825974851452) (xy -3.53588220793951 -2.51073645169754)) (layer F.SilkS) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 2.1400000000001 -2.36500000000001) (xy 2.1400000000001 -3.255) (xy 1.86000000000001 -3.255) (xy 1.86000000000001 -2.36500000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -0.139999999999986 -3.255) (xy -0.139999999999986 -2.36500000000001) (xy 0.1400000000001 -2.36500000000001) (xy 0.1400000000001 -3.255)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -0.639999999999986 -3.255) (xy -0.639999999999986 -2.36500000000001) (xy -0.3599999999999 -2.36500000000001) (xy -0.3599999999999 -3.255)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -1.13999999999999 -3.255) (xy -1.13999999999999 -2.36500000000001) (xy -0.8599999999999 -2.36500000000001) (xy -0.8599999999999 -3.255)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 1.6400000000001 -2.36500000000001) (xy 1.6400000000001 -3.255) (xy 1.36000000000001 -3.255) (xy 1.36000000000001 -2.36500000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -1.63999999999999 -3.255) (xy -1.63999999999999 -2.36500000000001) (xy -1.3599999999999 -2.36500000000001) (xy -1.3599999999999 -3.255)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -2.13999999999999 -3.255) (xy -2.13999999999999 -2.36500000000001) (xy -1.8599999999999 -2.36500000000001) (xy -1.8599999999999 -3.255)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 0.360000000000014 -3.255) (xy 0.360000000000014 -2.36500000000001) (xy 0.6400000000001 -2.36500000000001) (xy 0.6400000000001 -3.255)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 1.1400000000001 -2.36500000000001) (xy 1.1400000000001 -3.255) (xy 0.860000000000014 -3.255) (xy 0.860000000000014 -2.36500000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -2.36500000000001 -1.8599999999999) (xy -2.36500000000001 -2.13999999999999) (xy -3.255 -2.13999999999999) (xy -3.255 -1.8599999999999)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 3.255 -1.8599999999999) (xy 3.255 -2.13999999999999) (xy 2.36500000000001 -2.13999999999999) (xy 2.36500000000001 -1.8599999999999)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -3.255 -1.63999999999999) (xy -3.255 -1.3599999999999) (xy -2.36500000000001 -1.3599999999999) (xy -2.36500000000001 -1.63999999999999)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 3.255 -1.3599999999999) (xy 3.255 -1.63999999999999) (xy 2.36500000000001 -1.63999999999999) (xy 2.36500000000001 -1.3599999999999)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 3.255 -0.8599999999999) (xy 3.255 -1.13999999999999) (xy 2.36500000000001 -1.13999999999999) (xy 2.36500000000001 -0.8599999999999)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -3.255 -1.13999999999999) (xy -3.255 -0.8599999999999) (xy -2.36500000000001 -0.8599999999999) (xy -2.36500000000001 -1.13999999999999)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 3.255 -0.3599999999999) (xy 3.255 -0.639999999999986) (xy 2.36500000000001 -0.639999999999986) (xy 2.36500000000001 -0.3599999999999)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -3.255 -0.639999999999986) (xy -3.255 -0.3599999999999) (xy -2.36500000000001 -0.3599999999999) (xy -2.36500000000001 -0.639999999999986)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 3.255 0.1400000000001) (xy 3.255 -0.139999999999986) (xy 2.36500000000001 -0.139999999999986) (xy 2.36500000000001 0.1400000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -3.255 -0.139999999999986) (xy -3.255 0.1400000000001) (xy -2.36500000000001 0.1400000000001) (xy -2.36500000000001 -0.139999999999986)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 2.36500000000001 0.360000000000014) (xy 2.36500000000001 0.6400000000001) (xy 3.255 0.6400000000001) (xy 3.255 0.360000000000014)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -2.36500000000001 0.6400000000001) (xy -2.36500000000001 0.360000000000014) (xy -3.255 0.360000000000014) (xy -3.255 0.6400000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 2.36500000000001 0.860000000000014) (xy 2.36500000000001 1.1400000000001) (xy 3.255 1.1400000000001) (xy 3.255 0.860000000000014)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -2.36500000000001 1.1400000000001) (xy -2.36500000000001 0.860000000000014) (xy -3.255 0.860000000000014) (xy -3.255 1.1400000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 2.36500000000001 1.36000000000001) (xy 2.36500000000001 1.6400000000001) (xy 3.255 1.6400000000001) (xy 3.255 1.36000000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -2.36500000000001 1.6400000000001) (xy -2.36500000000001 1.36000000000001) (xy -3.255 1.36000000000001) (xy -3.255 1.6400000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 2.36500000000001 1.86000000000001) (xy 2.36500000000001 2.1400000000001) (xy 3.255 2.1400000000001) (xy 3.255 1.86000000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -2.36500000000001 2.1400000000001) (xy -2.36500000000001 1.86000000000001) (xy -3.255 1.86000000000001) (xy -3.255 2.1400000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 0.1400000000001 3.255) (xy 0.1400000000001 2.36500000000001) (xy -0.139999999999986 2.36500000000001) (xy -0.139999999999986 3.255)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -0.639999999999986 2.36500000000001) (xy -0.639999999999986 3.255) (xy -0.3599999999999 3.255) (xy -0.3599999999999 2.36500000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -1.13999999999999 2.36500000000001) (xy -1.13999999999999 3.255) (xy -0.8599999999999 3.255) (xy -0.8599999999999 2.36500000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 2.1400000000001 3.255) (xy 2.1400000000001 2.36500000000001) (xy 1.86000000000001 2.36500000000001) (xy 1.86000000000001 3.255)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -1.63999999999999 2.36500000000001) (xy -1.63999999999999 3.255) (xy -1.3599999999999 3.255) (xy -1.3599999999999 2.36500000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -2.13999999999999 2.36500000000001) (xy -2.13999999999999 3.255) (xy -1.8599999999999 3.255) (xy -1.8599999999999 2.36500000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 0.360000000000014 2.36500000000001) (xy 0.360000000000014 3.255) (xy 0.6400000000001 3.255) (xy 0.6400000000001 2.36500000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 1.6400000000001 3.255) (xy 1.6400000000001 2.36500000000001) (xy 1.36000000000001 2.36500000000001) (xy 1.36000000000001 3.255)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 0.860000000000014 2.36500000000001) (xy 0.860000000000014 3.255) (xy 1.1400000000001 3.255) (xy 1.1400000000001 2.36500000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -1.63999999999999 -1.63999999999999) (xy 1.6400000000001 -1.63999999999999) (xy 1.6400000000001 1.6400000000001) (xy -1.63999999999999 1.6400000000001)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_line (start -3.255 3.255) (end 3.255 3.255) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp d9cbc189-a3c6-577b-8d2b-3dc43c836c9d)) + (fp_line (start 3.255 3.255) (end 3.255 -3.255) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 6eaba6f0-6c4c-0d43-267f-914707b898ae)) + (fp_line (start 3.255 -3.255) (end -3.255 -3.255) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp c046aee7-0faa-1486-0579-a30832dad268)) + (fp_line (start -3.255 -3.255) (end -3.255 3.255) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 4004a1d7-4c25-c315-2bea-17ad8aa8650e))) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/R0402.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/R0402.kicad_mod new file mode 100644 index 0000000..f5b00c1 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/R0402.kicad_mod @@ -0,0 +1,34 @@ +(footprint R0402 (version 20221018) (generator jitx) (layer F.Cu) (tstamp 9fa60e90-3b61-6ccb-9999-74802a27da03) + (pad 2 smd rect + (at 0.432999999999993 0.00049999999987449 0.0) + (size 0.566 0.54) + (layers F.Cu F.Mask) + (solder_mask_margin 0.051) + (tstamp b78765b5-a15e-68d2-593c-fa94a5a65df1)) + (pad 1 smd rect + (at -0.432999999999993 0.00049999999987449 0.0) + (size 0.566 0.54) + (layers F.Cu F.Mask) + (solder_mask_margin 0.051) + (tstamp a5858a18-bd22-9e27-479a-5902b2fddf63)) + (fp_text reference ">REF" (at -1.5 -2.20410000000004 0.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp b0388b67-3d15-c72e-22ad-5d556c1a3527) + ) + (fp_text value ">VALUE" (at -1.5 -1.20410000000004 0.0) (layer F.Fab) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp 5cab2d4d-82b8-085f-aba8-b1d02e3490b5) + ) + (fp_line (start -0.225999999999999 0.498499999999922) (end -0.94399999999996 0.498499999999922) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp 6af31c92-ce83-92a5-1423-44d56a009db2)) + (fp_line (start -0.94399999999996 0.498499999999922) (end -0.94399999999996 -0.498500000000035) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp f1e2c26e-d2e9-df1f-c67e-5af080413969)) + (fp_line (start -0.94399999999996 -0.498500000000035) (end -0.225999999999999 -0.498500000000035) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp f419e0a2-3c1a-84b8-c828-a480771bb05d)) + (fp_line (start 0.225999999999999 0.498499999999922) (end 0.944000000000074 0.498499999999922) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp 82bbd7e5-e03a-0584-9f81-4582733b0137)) + (fp_line (start 0.944000000000074 0.498499999999922) (end 0.944000000000074 -0.498500000000035) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp bf4e5971-8453-be00-e3ab-8ac6c6a6079a)) + (fp_line (start 0.944000000000074 -0.498500000000035) (end 0.225999999999999 -0.498500000000035) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp 0cd66075-c862-a950-f094-fca98b43d3f4)) + (fp_poly (pts (xy -0.47 0.250499999999874) (xy -0.470576441587903 0.244647290339391) (xy -0.472283614024661 0.239019497028922) (xy -0.475055911630924 0.233832893009286) (xy -0.478786796564404 0.229286796564278) (xy -0.483332893009412 0.225555911630798) (xy -0.488519497029047 0.222783614024536) (xy -0.494147290339516 0.221076441587778) (xy -0.5 0.220499999999874) (xy -0.505852709660484 0.221076441587778) (xy -0.511480502970953 0.222783614024536) (xy -0.516667106990588 0.225555911630798) (xy -0.521213203435596 0.229286796564278) (xy -0.524944088369076 0.233832893009286) (xy -0.527716385975339 0.239019497028922) (xy -0.529423558412097 0.244647290339391) (xy -0.53 0.250499999999874) (xy -0.529423558412097 0.256352709660358) (xy -0.527716385975339 0.261980502970827) (xy -0.524944088369076 0.267167106990463) (xy -0.521213203435596 0.271713203435471) (xy -0.516667106990588 0.275444088368951) (xy -0.511480502970953 0.278216385975213) (xy -0.505852709660484 0.279923558411971) (xy -0.5 0.280499999999875) (xy -0.494147290339516 0.279923558411971) (xy -0.488519497029047 0.278216385975213) (xy -0.483332893009412 0.275444088368951) (xy -0.478786796564404 0.271713203435471) (xy -0.475055911630924 0.267167106990463) (xy -0.472283614024661 0.261980502970827) (xy -0.470576441587903 0.256352709660358)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 0.134999999999991 0.230499999999893) (xy 0.134999999999991 -0.22950000000003) (xy 0.175000000000068 -0.269500000000107) (xy 0.676000000000045 -0.269500000000107) (xy 0.716000000000008 -0.22950000000003) (xy 0.716000000000008 0.230499999999893) (xy 0.676000000000045 0.27049999999997) (xy 0.175000000000068 0.27049999999997)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -0.134999999999991 0.230499999999893) (xy -0.134999999999991 -0.22950000000003) (xy -0.174999999999955 -0.269500000000107) (xy -0.675999999999931 -0.269500000000107) (xy -0.716000000000008 -0.22950000000003) (xy -0.716000000000008 0.230499999999893) (xy -0.675999999999931 0.27049999999997) (xy -0.174999999999955 0.27049999999997)) (layer F.Paste) (stroke (width 0) (type solid)) ) + (fp_line (start -0.944000000000017 0.498499999999979) (end 0.944000000000017 0.498499999999979) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp b8a96e96-ff90-6cd5-2b63-cc8467cc1aa2)) + (fp_line (start 0.944000000000017 0.498499999999979) (end 0.944000000000017 -0.498499999999979) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 35c5ff54-7857-b8e7-1414-f1e7c3b06a96)) + (fp_line (start 0.944000000000017 -0.498499999999979) (end -0.944000000000017 -0.498499999999979) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp d93d23cf-ac8d-41d5-d489-0c2b6a698266)) + (fp_line (start -0.944000000000017 -0.498499999999979) (end -0.944000000000017 0.498499999999979) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 8a337279-750c-8bdf-bdc5-0b2b824aefd4))) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/SD_SMD_SD_101.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/SD_SMD_SD_101.kicad_mod new file mode 100644 index 0000000..cf8e174 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/SD_SMD_SD_101.kicad_mod @@ -0,0 +1,125 @@ +(footprint SD_SMD_SD_101 (version 20221018) (generator jitx) (layer F.Cu) (tstamp c55d4895-5267-2dcb-9ea0-ef4cb05f6fbb) + (pad 15 smd rect + (at 11.45 -6.72500000000002 0.0) + (size 1.5 2.8) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp a44d981f-bff7-79a2-6065-193ebe3d1058)) + (pad 14 smd rect + (at 13.6500000000001 7.77499999999998 0.0) + (size 1.5 2.8) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp d02c6325-1d8c-76e6-5bcb-7e47ce1817b5)) + (pad 13 smd rect + (at -13.65 7.67499999999995 0.0) + (size 1.5 2.8) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp d230b01b-e3c8-1fff-603f-6c9758356d5d)) + (pad 12 smd rect + (at -13.65 -6.82500000000005 0.0) + (size 1.5 2.8) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp a2bd4c33-0b7c-6475-b715-97d29cd2e819)) + (pad 11 smd rect + (at -12.26 -8.77499999999998 0.0) + (size 0.7 2.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp 67b3eed3-c03a-470c-2c04-98f661e01924)) + (pad 10 smd rect + (at -11.0599999999999 -8.77499999999998 0.0) + (size 0.7 2.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp 6524c691-d391-5893-fa1f-091b5e483260)) + (pad 9 smd rect + (at 9.37000000000012 -8.77499999999998 0.0) + (size 1.0 2.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp 00c5d6c6-df7f-2e5c-8dc8-13bc639e1b2f)) + (pad 8 smd rect + (at -9.75999999999999 -8.77499999999998 0.0) + (size 1.0 2.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp dd2d29bb-024f-b02a-2139-2390b0533e37)) + (pad 7 smd rect + (at -8.05999999999995 -8.77499999999998 0.0) + (size 1.0 2.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp 6f0253a8-ce17-f10f-98b0-a91ad57ad4e6)) + (pad 6 smd rect + (at -5.63 -8.77499999999998 0.0) + (size 1.0 2.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp 3539428c-2f3d-74b7-f626-00e1d8d49a40)) + (pad 5 smd rect + (at -3.13 -8.77499999999998 0.0) + (size 1.0 2.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp de03bfce-de06-2550-8553-ebccd584f13e)) + (pad 4 smd rect + (at -0.629999999999995 -8.77499999999998 0.0) + (size 1.0 2.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp e1d1ef16-edf2-1d8c-7c53-bfaffcb0ec1d)) + (pad 3 smd rect + (at 1.87 -8.77499999999998 0.0) + (size 1.0 2.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp 566ceefd-9fb1-4356-678e-b9a1a5b044ec)) + (pad 2 smd rect + (at 4.37 -8.77499999999998 0.0) + (size 1.0 2.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp cafad5ac-4c57-f88e-680a-441887b12b96)) + (pad 1 smd rect + (at 6.87000000000012 -8.77499999999998 0.0) + (size 1.0 2.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp 09424821-a0ee-dd97-c7d1-d1a98a20e8b8)) + (pad "" np_thru_hole circle (at 9.5 -5.72500000000002) (size 1.7 1.7) (drill 1.7) (layers *.Mask) + (tstamp 74a77c86-0b76-159e-6b2c-e93911390dc6) + ) + (pad "" np_thru_hole circle (at -11.5 -5.77499999999998) (size 1.2 1.2) (drill 1.2) (layers *.Mask) + (tstamp ca683ec2-9364-3438-68c2-fad4db2a0efa) + ) + (fp_text reference ">REF" (at -1.5 -10.4806 0.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp fa6a8892-07a7-183b-d9c7-14c5c1992f00) + ) + (fp_text value ">VALUE" (at -1.5 -9.48059999999998 0.0) (layer F.Fab) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp 7f3ce9b4-fefa-dcbf-ab38-e6887e6c9650) + ) + (fp_line (start 13.2 6.14300000000003) (end 13.2 -0.725000000000023) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 892ea685-1363-8b2e-bfe6-687d6fd54a6c)) + (fp_line (start 13.2 -0.725000000000023) (end 11.0 -2.92500000000007) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 1cb690a3-7ce5-4055-af68-3508d5de7d57)) + (fp_line (start 11.0 -2.92500000000007) (end 11.0 -5.09400000000005) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 982b5a1c-4bf7-3985-a452-9eb67076177b)) + (fp_line (start 10.096 -7.72500000000002) (end 10.4690000000001 -7.72500000000002) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 7967fd06-d4e3-9d02-084f-f9f6a2216e8a)) + (fp_line (start 7.596 -7.72500000000002) (end 8.64499999999998 -7.72500000000002) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp d91c6ea5-ad33-0c3d-0afc-5220ac9c7c9e)) + (fp_line (start 5.096 -7.72500000000002) (end 6.14400000000001 -7.72500000000002) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 680e1dbe-cd4d-1d0b-4d26-497c6645111e)) + (fp_line (start 2.596 -7.72500000000002) (end 3.64499999999998 -7.72500000000002) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp c35579df-2dc2-82cd-a544-4e62137d3736)) + (fp_line (start 0.0960000000000036 -7.72500000000002) (end 1.14400000000001 -7.72500000000002) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 803d586f-0284-ebb1-3164-b87872c75c8d)) + (fp_line (start -2.404 -7.72500000000002) (end -1.35599999999999 -7.72500000000002) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 547646a0-1d44-b000-c713-7a6d15d08b13)) + (fp_line (start -4.904 -7.72500000000002) (end -3.85599999999999 -7.72500000000002) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 2ccc38cd-40bd-fc78-75e7-283b60566470)) + (fp_line (start -7.39999999999998 -7.72500000000002) (end -6.35599999999999 -7.72500000000002) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 403197f7-c776-2eb8-e480-7f9c7d6d61ca)) + (fp_line (start -13.1999999999999 6.04399999999998) (end -13.1999999999999 -5.19399999999996) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp b410639a-dd9e-1529-5c39-1e947c3270f6)) + (fp_line (start 12.6690000000001 8.77499999999998) (end -12.669 8.77499999999998) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 27a7d08c-2dba-7fae-e1d6-ff2c94004730)) + (fp_poly (pts (xy 14.03 -8.92500000000007) (xy 14.0294235584121 -8.93085270966055) (xy 14.0277163859753 -8.93648050297102) (xy 14.0249440883691 -8.94166710699066) (xy 14.0212132034356 -8.94621320343566) (xy 14.0166671069906 -8.94994408836915) (xy 14.011480502971 -8.95271638597541) (xy 14.0058527096605 -8.95442355841216) (xy 14.0 -8.95500000000007) (xy 13.9941472903395 -8.95442355841216) (xy 13.988519497029 -8.95271638597541) (xy 13.9833328930094 -8.94994408836915) (xy 13.9787867965644 -8.94621320343566) (xy 13.9750559116309 -8.94166710699066) (xy 13.9722836140247 -8.93648050297102) (xy 13.9705764415879 -8.93085270966055) (xy 13.97 -8.92500000000007) (xy 13.9705764415879 -8.91914729033958) (xy 13.9722836140247 -8.91351949702912) (xy 13.9750559116309 -8.90833289300948) (xy 13.9787867965644 -8.90378679656447) (xy 13.9833328930094 -8.90005591163099) (xy 13.988519497029 -8.89728361402473) (xy 13.9941472903395 -8.89557644158797) (xy 14.0 -8.89500000000007) (xy 14.0058527096605 -8.89557644158797) (xy 14.011480502971 -8.89728361402473) (xy 14.0166671069906 -8.90005591163099) (xy 14.0212132034356 -8.90378679656447) (xy 14.0249440883691 -8.90833289300948) (xy 14.0277163859753 -8.91351949702912) (xy 14.0294235584121 -8.91914729033958)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 9.875 -5.72500000000002) (xy 9.86779448015121 -5.79815887075607) (xy 9.84645482469173 -5.86850628713693) (xy 9.81180110461345 -5.93333883738237) (xy 9.76516504294496 -5.99016504294498) (xy 9.70833883738235 -6.03680110461348) (xy 9.64350628713691 -6.07145482469176) (xy 9.57315887075605 -6.09279448015123) (xy 9.5 -6.10000000000002) (xy 9.42684112924395 -6.09279448015123) (xy 9.35649371286309 -6.07145482469176) (xy 9.29166116261765 -6.03680110461348) (xy 9.23483495705504 -5.99016504294498) (xy 9.18819889538655 -5.93333883738237) (xy 9.15354517530827 -5.86850628713693) (xy 9.13220551984879 -5.79815887075607) (xy 9.125 -5.72500000000002) (xy 9.13220551984879 -5.65184112924397) (xy 9.15354517530827 -5.58149371286311) (xy 9.18819889538655 -5.51666116261767) (xy 9.23483495705504 -5.45983495705507) (xy 9.29166116261765 -5.41319889538657) (xy 9.35649371286309 -5.37854517530829) (xy 9.42684112924395 -5.35720551984881) (xy 9.5 -5.35000000000002) (xy 9.57315887075605 -5.35720551984881) (xy 9.64350628713691 -5.37854517530829) (xy 9.70833883738235 -5.41319889538657) (xy 9.76516504294496 -5.45983495705507) (xy 9.81180110461345 -5.51666116261767) (xy 9.84645482469173 -5.58149371286311) (xy 9.86779448015121 -5.65184112924397)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -11.275 -5.77499999999998) (xy -11.2793233119093 -5.81889532245361) (xy -11.292127105185 -5.86110377228212) (xy -11.3129193372319 -5.90000330242939) (xy -11.340900974233 -5.93409902576695) (xy -11.3749966975706 -5.96208066276805) (xy -11.4138962277179 -5.98287289481502) (xy -11.4561046775464 -5.9956766880907) (xy -11.5 -5.99999999999998) (xy -11.5438953224536 -5.9956766880907) (xy -11.5861037722821 -5.98287289481502) (xy -11.6250033024294 -5.96208066276805) (xy -11.659099025767 -5.93409902576695) (xy -11.6870806627681 -5.90000330242939) (xy -11.707872894815 -5.86110377228212) (xy -11.7206766880907 -5.81889532245361) (xy -11.725 -5.77499999999998) (xy -11.7206766880907 -5.73110467754635) (xy -11.707872894815 -5.68889622771783) (xy -11.6870806627681 -5.64999669757057) (xy -11.659099025767 -5.615900974233) (xy -11.6250033024294 -5.5879193372319) (xy -11.5861037722821 -5.56712710518494) (xy -11.5438953224536 -5.55432331190925) (xy -11.5 -5.54999999999998) (xy -11.4561046775464 -5.55432331190925) (xy -11.4138962277179 -5.56712710518494) (xy -11.3749966975706 -5.5879193372319) (xy -11.340900974233 -5.615900974233) (xy -11.3129193372319 -5.64999669757057) (xy -11.292127105185 -5.68889622771783) (xy -11.2793233119093 -5.73110467754635)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_line (start -13.65 8.77499999999998) (end 13.65 8.77499999999998) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp d71bc8a3-b811-8e10-c9a7-dcc095dd52d4)) + (fp_line (start 13.65 8.77499999999998) (end 13.65 -8.77499999999998) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 97f1dfd6-09ee-1ed4-c7d0-ea08bad74042)) + (fp_line (start 13.65 -8.77499999999998) (end -13.65 -8.77499999999998) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 78a15bcf-ea89-e3bb-5d15-5ff46c2e9dae)) + (fp_line (start -13.65 -8.77499999999998) (end -13.65 8.77499999999998) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp ca530736-bdce-3863-8574-3b825ee73f78))) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/SOIC_8_L4_9_W3_9_P1_27_LS6_0_BL.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/SOIC_8_L4_9_W3_9_P1_27_LS6_0_BL.kicad_mod new file mode 100644 index 0000000..f820fbc --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/SOIC_8_L4_9_W3_9_P1_27_LS6_0_BL.kicad_mod @@ -0,0 +1,69 @@ +(footprint SOIC_8_L4_9_W3_9_P1_27_LS6_0_BL (version 20221018) (generator jitx) (layer F.Cu) (tstamp 525e9503-2906-34e2-54c9-36a52f887640) + (pad 1 smd oval + (at -1.90499999999997 2.77249999999992 0.0) + (size 0.588 2.045) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp ce6716e1-3ef4-5cd9-62ce-9c28e0556522)) + (pad 2 smd oval + (at -0.634999999999991 2.77249999999992 0.0) + (size 0.588 2.045) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp 09d7920e-8818-1b23-c1fc-cd32d653f54f)) + (pad 3 smd oval + (at 0.634999999999991 2.77249999999992 0.0) + (size 0.588 2.045) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp 16b45d79-9ec8-5d54-fe11-2298a1dbaaa2)) + (pad 4 smd oval + (at 1.90500000000009 2.77249999999992 0.0) + (size 0.588 2.045) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp 3b68910e-f3a2-cdeb-b3ee-77c6d3c4f4f7)) + (pad 8 smd oval + (at -1.90499999999997 -2.77250000000004 0.0) + (size 0.588 2.045) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp de2b042b-7df3-d788-04e5-d8e21b24ae8c)) + (pad 7 smd oval + (at -0.634999999999991 -2.77250000000004 0.0) + (size 0.588 2.045) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp de94c135-10ab-86d0-98c1-8f96c86494bb)) + (pad 6 smd oval + (at 0.634999999999991 -2.77250000000004 0.0) + (size 0.588 2.045) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp 769c9502-a35f-3d2f-c549-890544583f37)) + (pad 5 smd oval + (at 1.90500000000009 -2.77250000000004 0.0) + (size 0.588 2.045) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp ad016b01-9949-8f85-9fdc-6668ee722571)) + (fp_text reference ">REF" (at -1.5 -4.47810000000004 0.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp 5c924d86-82f2-9832-41a5-9dca7ebc64c0) + ) + (fp_text value ">VALUE" (at -1.5 -3.47810000000004 0.0) (layer F.Fab) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp 6765161d-08fe-1ba4-8e53-f870e7186848) + ) + (fp_line (start -2.52599999999995 1.52149999999995) (end -2.52599999999995 -1.52150000000006) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp 8f476f96-d409-665d-9555-75420de1f382)) + (fp_line (start -2.52599999999995 -1.52150000000006) (end 2.52600000000007 -1.52150000000006) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp f6b6e64b-d3f8-35c2-b7f6-10a4941de7b5)) + (fp_line (start 2.52600000000007 -1.52150000000006) (end 2.52600000000007 1.52149999999995) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp 1557a9e0-9a69-ab43-ec45-33d633064444)) + (fp_line (start 2.52600000000007 1.52149999999995) (end -2.52599999999995 1.52149999999995) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp 4c781cfc-5945-b4cc-bf5d-1121b03bff1e)) + (fp_poly (pts (xy -1.75499999999997 0.76949999999988) (xy -1.75788220793949 0.740236451697461) (xy -1.76641807012328 0.712097485145117) (xy -1.78027955815459 0.68616446504694) (xy -1.79893398282199 0.663433982821898) (xy -1.82166446504703 0.644779558154498) (xy -1.84759748514521 0.630918070123187) (xy -1.87573645169755 0.622382207939395) (xy -1.90499999999997 0.61949999999988) (xy -1.93426354830239 0.622382207939395) (xy -1.96240251485474 0.630918070123187) (xy -1.98833553495291 0.644779558154498) (xy -2.01106601717795 0.663433982821898) (xy -2.02972044184535 0.68616446504694) (xy -2.04358192987667 0.712097485145117) (xy -2.05211779206046 0.740236451697461) (xy -2.05499999999997 0.76949999999988) (xy -2.05211779206046 0.798763548302299) (xy -2.04358192987667 0.826902514854643) (xy -2.02972044184535 0.85283553495282) (xy -2.01106601717796 0.875566017177862) (xy -1.98833553495291 0.894220441845262) (xy -1.96240251485474 0.908081929876573) (xy -1.93426354830239 0.916617792060364) (xy -1.90499999999997 0.91949999999988) (xy -1.87573645169755 0.916617792060365) (xy -1.84759748514521 0.908081929876573) (xy -1.82166446504703 0.894220441845262) (xy -1.79893398282199 0.875566017177862) (xy -1.78027955815459 0.85283553495282) (xy -1.76641807012328 0.826902514854644) (xy -1.75788220793949 0.798763548302299)) (layer F.SilkS) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -2.50099999999995 2.77249999999992) (xy -2.50388220793947 2.7432364516975) (xy -2.51241807012326 2.71509748514516) (xy -2.52627955815457 2.68916446504698) (xy -2.54493398282197 2.66643398282194) (xy -2.56766446504701 2.64777955815454) (xy -2.59359748514519 2.63391807012323) (xy -2.62173645169753 2.62538220793944) (xy -2.65099999999995 2.62249999999992) (xy -2.68026354830237 2.62538220793944) (xy -2.70840251485472 2.63391807012323) (xy -2.73433553495289 2.64777955815454) (xy -2.75706601717794 2.66643398282194) (xy -2.77572044184534 2.68916446504698) (xy -2.78958192987665 2.71509748514516) (xy -2.79811779206044 2.7432364516975) (xy -2.80099999999995 2.77249999999992) (xy -2.79811779206044 2.80176354830234) (xy -2.78958192987665 2.82990251485469) (xy -2.77572044184534 2.85583553495286) (xy -2.75706601717794 2.8785660171779) (xy -2.73433553495289 2.8972204418453) (xy -2.70840251485472 2.91108192987662) (xy -2.68026354830237 2.91961779206041) (xy -2.65099999999995 2.92249999999992) (xy -2.62173645169753 2.91961779206041) (xy -2.59359748514519 2.91108192987662) (xy -2.56766446504701 2.8972204418453) (xy -2.54493398282197 2.87856601717791) (xy -2.52627955815457 2.85583553495286) (xy -2.51241807012326 2.82990251485469) (xy -2.50388220793947 2.80176354830234)) (layer F.SilkS) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -1.75499999999997 3.40049999999997) (xy -1.75788220793949 3.37123645169755) (xy -1.76641807012328 3.3430974851452) (xy -1.78027955815459 3.31716446504702) (xy -1.79893398282199 3.29443398282198) (xy -1.82166446504703 3.27577955815458) (xy -1.84759748514521 3.26191807012327) (xy -1.87573645169755 3.25338220793948) (xy -1.90499999999997 3.25049999999997) (xy -1.93426354830239 3.25338220793948) (xy -1.96240251485474 3.26191807012327) (xy -1.98833553495291 3.27577955815458) (xy -2.01106601717795 3.29443398282198) (xy -2.02972044184535 3.31716446504702) (xy -2.04358192987667 3.3430974851452) (xy -2.05211779206046 3.37123645169755) (xy -2.05499999999997 3.40049999999997) (xy -2.05211779206046 3.42976354830238) (xy -2.04358192987667 3.45790251485473) (xy -2.02972044184535 3.48383553495291) (xy -2.01106601717796 3.50656601717795) (xy -1.98833553495291 3.52522044184535) (xy -1.96240251485474 3.53908192987666) (xy -1.93426354830239 3.54761779206045) (xy -1.90499999999997 3.55049999999997) (xy -1.87573645169755 3.54761779206045) (xy -1.84759748514521 3.53908192987666) (xy -1.82166446504703 3.52522044184535) (xy -1.79893398282199 3.50656601717795) (xy -1.78027955815459 3.48383553495291) (xy -1.76641807012328 3.45790251485473) (xy -1.75788220793949 3.42976354830238)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -2.41999999999993 3.00049999999987) (xy -2.42057644158783 2.99464729033939) (xy -2.42228361402459 2.98901949702892) (xy -2.42505591163086 2.98383289300929) (xy -2.42878679656434 2.97928679656428) (xy -2.43333289300934 2.9755559116308) (xy -2.43851949702898 2.97278361402454) (xy -2.44414729033945 2.97107644158778) (xy -2.44999999999993 2.97049999999987) (xy -2.45585270966042 2.97107644158778) (xy -2.46148050297088 2.97278361402454) (xy -2.46666710699052 2.9755559116308) (xy -2.47121320343553 2.97928679656428) (xy -2.47494408836901 2.98383289300929) (xy -2.47771638597527 2.98901949702892) (xy -2.47942355841203 2.99464729033939) (xy -2.47999999999993 3.00049999999987) (xy -2.47942355841203 3.00635270966036) (xy -2.47771638597527 3.01198050297083) (xy -2.47494408836901 3.01716710699046) (xy -2.47121320343553 3.02171320343547) (xy -2.46666710699052 3.02544408836895) (xy -2.46148050297088 3.02821638597521) (xy -2.45585270966042 3.02992355841197) (xy -2.44999999999993 3.03049999999987) (xy -2.44414729033945 3.02992355841197) (xy -2.43851949702898 3.02821638597521) (xy -2.43333289300934 3.02544408836895) (xy -2.42878679656434 3.02171320343547) (xy -2.42505591163086 3.01716710699046) (xy -2.42228361402459 3.01198050297083) (xy -2.42057644158783 3.00635270966036)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_line (start -2.52600000000001 2.77249999999998) (end 2.52600000000001 2.77249999999998) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 26711a6d-00e2-692a-3dd6-60488deb2009)) + (fp_line (start 2.52600000000001 2.77249999999998) (end 2.52600000000001 -2.77249999999998) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp b52c4e6a-ce71-9842-5b1a-235aa185856b)) + (fp_line (start 2.52600000000001 -2.77249999999998) (end -2.52600000000001 -2.77249999999998) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 932a0ff7-971c-7c13-bcc6-a15cbef6a231)) + (fp_line (start -2.52600000000001 -2.77249999999998) (end -2.52600000000001 2.77249999999998) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp ce98e18d-af69-39a8-1108-24162ba8b1b3))) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/TESTPAD.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/TESTPAD.kicad_mod new file mode 100644 index 0000000..05892d6 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/TESTPAD.kicad_mod @@ -0,0 +1,15 @@ +(footprint TESTPAD (version 20221018) (generator jitx) (layer F.Cu) (tstamp 21add8b8-0982-f06d-e54d-54725ca6778c) + (pad tp smd circle + (at 0.0 0.0 0.0) + (size 2.0 2.0) + (layers F.Cu F.Mask) + (solder_mask_margin 0.05) + (tstamp 1ffa0395-947d-3ba3-4180-0e70924490a2)) + (fp_text reference ">REF" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp 0157c087-05e4-70df-4416-40160cf6b243) + ) + (fp_text value ">VALUE" (at 0.0 0.0 0.0) (layer F.SilkS) hide + (effects (font (size 1.0 1.0) (thickness 0.10)) ) + (tstamp d6e2e216-815d-9d15-403b-c4f50f965315) + )) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/TO_252_3_L6_5_W5_8_P4_58_BR.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/TO_252_3_L6_5_W5_8_P4_58_BR.kicad_mod new file mode 100644 index 0000000..456f0e0 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/TO_252_3_L6_5_W5_8_P4_58_BR.kicad_mod @@ -0,0 +1,36 @@ +(footprint TO_252_3_L6_5_W5_8_P4_58_BR (version 20221018) (generator jitx) (layer F.Cu) (tstamp 17a3eba1-0070-e2bc-4b1b-c5480ddc8ca0) + (pad 1 smd rect + (at 4.1105 2.29949999999997 0.0) + (size 2.218 1.064) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp e634251b-7e9a-8be4-e7a0-c17aa20d5b70)) + (pad 3 smd rect + (at 4.1105 -2.29950000000008 0.0) + (size 2.218 1.064) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0509999999999999) + (tstamp 43135678-a85c-263c-0489-40c1b5bf1452)) + (pad 2 smd rect + (at -2.5865 0.00049999999987449 0.0) + (size 5.204 5.554) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.0510000000000002) + (tstamp a53c3342-be2e-f400-4117-160a71952f88)) + (fp_text reference ">REF" (at -1.5 -5.08210000000008 0.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp a6092b9d-c3ee-c9e0-99ac-b2d1ac08d21e) + ) + (fp_text value ">VALUE" (at -1.5 -4.08210000000008 0.0) (layer F.Fab) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp 8918c028-2f71-dafb-cc59-4d7fdd8c2020) + ) + (fp_line (start -4.1105 3.37649999999996) (end 2.14150000000006 3.37649999999996) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp dad60ec6-a434-f3dd-f1a4-730106783b6c)) + (fp_line (start -4.1105 -3.37650000000008) (end 2.14150000000006 -3.37650000000008) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp 9e9d6116-ff44-efb2-e524-62ca0ca1abab)) + (fp_line (start 2.14150000000006 3.37649999999996) (end 2.14150000000006 -3.37650000000008) (layer F.SilkS) (stroke (width 0.152) (type solid)) (tstamp 7e825ab5-4d75-3cfc-373a-5191457b777e)) + (fp_poly (pts (xy 4.79549999999997 3.29949999999997) (xy 4.79492355841207 3.29364729033948) (xy 4.79321638597531 3.28801949702901) (xy 4.79044408836905 3.28283289300938) (xy 4.78671320343557 3.27828679656437) (xy 4.78216710699056 3.27455591163089) (xy 4.77698050297093 3.27178361402463) (xy 4.77135270966046 3.27007644158787) (xy 4.76549999999997 3.26949999999997) (xy 4.75964729033949 3.27007644158787) (xy 4.75401949702902 3.27178361402463) (xy 4.74883289300939 3.27455591163089) (xy 4.74428679656438 3.27828679656437) (xy 4.7405559116309 3.28283289300938) (xy 4.73778361402464 3.28801949702901) (xy 4.73607644158788 3.29364729033948) (xy 4.73549999999997 3.29949999999997) (xy 4.73607644158788 3.30535270966045) (xy 4.73778361402464 3.31098050297092) (xy 4.7405559116309 3.31616710699055) (xy 4.74428679656438 3.32071320343556) (xy 4.74883289300939 3.32444408836904) (xy 4.75401949702902 3.32721638597531) (xy 4.75964729033949 3.32892355841206) (xy 4.76549999999997 3.32949999999997) (xy 4.77135270966046 3.32892355841206) (xy 4.77698050297093 3.32721638597531) (xy 4.78216710699056 3.32444408836904) (xy 4.78671320343557 3.32071320343556) (xy 4.79044408836905 3.31616710699055) (xy 4.79321638597531 3.31098050297092) (xy 4.79492355841207 3.30535270966045)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy 4.11050000000005 2.28649999999993) (xy 4.10473558412102 2.22797290339509) (xy 4.08766385975343 2.17169497029041) (xy 4.05994088369081 2.11982893009405) (xy 4.02263203435601 2.07436796564397) (xy 3.97717106990593 2.03705911630917) (xy 3.92530502970957 2.00933614024655) (xy 3.86902709660489 1.99226441587896) (xy 3.81050000000005 1.98649999999993) (xy 3.75197290339521 1.99226441587896) (xy 3.69569497029052 2.00933614024655) (xy 3.64382893009417 2.03705911630917) (xy 3.59836796564408 2.07436796564397) (xy 3.56105911630928 2.11982893009405) (xy 3.53333614024666 2.17169497029041) (xy 3.51626441587908 2.22797290339509) (xy 3.51050000000005 2.28649999999993) (xy 3.51626441587908 2.34502709660477) (xy 3.53333614024666 2.40130502970946) (xy 3.56105911630928 2.45317106990581) (xy 3.59836796564408 2.4986320343559) (xy 3.64382893009417 2.5359408836907) (xy 3.69569497029052 2.56366385975332) (xy 3.75197290339521 2.5807355841209) (xy 3.81050000000005 2.58649999999993) (xy 3.86902709660489 2.5807355841209) (xy 3.92530502970957 2.56366385975332) (xy 3.97717106990593 2.5359408836907) (xy 4.02263203435601 2.4986320343559) (xy 4.05994088369081 2.45317106990581) (xy 4.08766385975343 2.40130502970946) (xy 4.10473558412102 2.34502709660477)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_line (start -4.1105 3.37650000000002) (end 4.1105 3.37650000000002) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 00c02fd8-ae34-f25f-21ec-3cce39d8ae32)) + (fp_line (start 4.1105 3.37650000000002) (end 4.1105 -3.37650000000002) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 45e0c2ee-6cab-6e55-976a-03a90042eacc)) + (fp_line (start 4.1105 -3.37650000000002) (end -4.1105 -3.37650000000002) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp e87f97b2-a976-140d-a9ac-e7867d7e9387)) + (fp_line (start -4.1105 -3.37650000000002) (end -4.1105 3.37650000000002) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 0ac41677-8cbf-7a4f-667b-cb7398071dbd))) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/USB_C_SMD_TYPE_C_31_G_03.kicad_mod b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/USB_C_SMD_TYPE_C_31_G_03.kicad_mod new file mode 100644 index 0000000..5fe2e58 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jitx-design.pretty/USB_C_SMD_TYPE_C_31_G_03.kicad_mod @@ -0,0 +1,118 @@ +(footprint USB_C_SMD_TYPE_C_31_G_03 (version 20221018) (generator jitx) (layer F.Cu) (tstamp bdeb1e3a-391c-51aa-eb1c-b37cdfd86d4f) + (pad A1 smd rect + (at 2.75 -6.16250000000002 0.0) + (size 0.3 1.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp d6effd11-43fb-60c7-eb65-3f694d363d48)) + (pad A2 smd rect + (at 2.25 -6.16250000000002 0.0) + (size 0.3 1.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp fbf83d28-34cc-bb25-f51c-84c6bb4dcfc0)) + (pad A3 smd rect + (at 1.75 -6.16250000000002 0.0) + (size 0.3 1.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp d4929f7e-eeeb-33bb-3184-7da04fb9ba0c)) + (pad A4 smd rect + (at 1.25 -6.16250000000002 0.0) + (size 0.3 1.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp 22d067d7-f741-d004-de2e-3908e9785ff7)) + (pad B9 smd rect + (at -0.75 -6.16250000000002 0.0) + (size 0.3 1.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp de173b3a-abb7-5509-39fb-9b6d2cb0d6f3)) + (pad B10 smd rect + (at -0.25 -6.16250000000002 0.0) + (size 0.3 1.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp 61261282-a1ed-c209-76c2-435124430060)) + (pad B11 smd rect + (at 0.25 -6.16250000000002 0.0) + (size 0.3 1.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp 44b37529-abdf-f535-3cd6-60ab137a4d5b)) + (pad B12 smd rect + (at 0.75 -6.16250000000002 0.0) + (size 0.3 1.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp 51d05207-41a3-124b-ccba-155746319e59)) + (pad A5 smd rect + (at -1.25 -6.16250000000002 0.0) + (size 0.3 1.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp 9a669a0f-8e49-04cf-19c9-f45e1efe856b)) + (pad A6 smd rect + (at -1.75 -6.16250000000002 0.0) + (size 0.3 1.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp 867c9959-b234-02cd-dbc1-09779b38b332)) + (pad A7 smd rect + (at -2.25 -6.16250000000002 0.0) + (size 0.3 1.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp 4a66f10a-a864-c15d-226b-0602060bb417)) + (pad A12 smd rect + (at -2.75 -6.16250000000002 0.0) + (size 0.3 1.0) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp 50d22edf-df74-9704-3f43-69462be50de7)) + (pad 13 smd rect + (at -3.57499999999993 -5.26350000000002 0.0) + (size 0.5 1.2) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp 670abc1b-f8d5-f962-bdef-b503fb1234a9)) + (pad 16 smd rect + (at 3.57500000000005 -5.26350000000002 0.0) + (size 0.5 1.2) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp fc70b662-05d8-1c74-1e67-3a80e1c1bfc1)) + (pad 14 smd rect + (at -4.69999999999993 -5.71249999999998 0.0) + (size 1.3 2.1) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp ce5e2b23-10e7-e679-e5db-0846b790c5f7)) + (pad 15 smd rect + (at 4.70000000000005 -5.71249999999998 0.0) + (size 1.3 2.1) + (layers F.Cu F.Paste F.Mask) + (solder_mask_margin 0.05) + (tstamp 2f224e0b-02db-a11b-af09-6070c884054f)) + (fp_text reference ">REF" (at -1.5 -8.5181 0.0) (layer F.SilkS) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp 7a9cecc5-10ab-0d95-b541-e8a942ac1f36) + ) + (fp_text value ">VALUE" (at -1.5 -7.5181 0.0) (layer F.Fab) + (effects (font (size 1.0 1.0) (thickness 0.10)) (justify left)) + (tstamp 89dcf89d-9765-8bc4-51f4-0eee00c300d1) + ) + (fp_line (start 3.0 6.58749999999998) (end 3.0 -3.91250000000002) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 1088f979-6eea-d883-6682-59df312dbfbd)) + (fp_line (start -2.93899999999996 6.78750000000002) (end -2.93899999999996 -3.91250000000002) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 2ba5a4cc-0214-3789-68b9-1fdb7475b88a)) + (fp_line (start -4.14999999999998 6.78750000000002) (end -4.14999999999998 -4.43150000000003) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp b632cf40-9daf-2e68-baa7-11ce8dfa25b5)) + (fp_line (start 4.15000000000009 6.78750000000002) (end 4.15000000000009 -4.43150000000003) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 00f88b39-a55a-d016-6f92-0fb9cbfd7ea0)) + (fp_line (start 3.07500000000005 -6.8125) (end 3.82400000000007 -6.8125) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 72748215-6340-c800-a68c-ce1971932fc1)) + (fp_line (start -3.82399999999996 -6.8125) (end -3.07499999999993 -6.8125) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp f24ef690-b0fb-89e2-4a75-ae54a99f9c83)) + (fp_line (start -4.14999999999998 6.78750000000002) (end 4.15000000000009 6.78750000000002) (layer F.SilkS) (stroke (width 0.254) (type solid)) (tstamp 0dfeea7b-0d85-c0b2-76bc-d28669e72b39)) + (fp_poly (pts (xy 5.08000000000007 -6.8125) (xy 5.07942355841216 -6.81835270966048) (xy 5.07771638597541 -6.82398050297095) (xy 5.07494408836914 -6.82916710699059) (xy 5.07121320343566 -6.8337132034356) (xy 5.06666710699066 -6.83744408836908) (xy 5.06148050297102 -6.84021638597534) (xy 5.05585270966055 -6.8419235584121) (xy 5.05000000000007 -6.8425) (xy 5.04414729033958 -6.8419235584121) (xy 5.03851949702912 -6.84021638597534) (xy 5.03333289300948 -6.83744408836908) (xy 5.02878679656447 -6.8337132034356) (xy 5.02505591163099 -6.82916710699059) (xy 5.02228361402473 -6.82398050297095) (xy 5.02057644158797 -6.81835270966048) (xy 5.02000000000007 -6.8125) (xy 5.02057644158797 -6.80664729033952) (xy 5.02228361402473 -6.80101949702905) (xy 5.02505591163099 -6.79583289300941) (xy 5.02878679656447 -6.7912867965644) (xy 5.03333289300948 -6.78755591163092) (xy 5.03851949702912 -6.78478361402466) (xy 5.04414729033958 -6.7830764415879) (xy 5.05000000000007 -6.7825) (xy 5.05585270966055 -6.7830764415879) (xy 5.06148050297102 -6.78478361402466) (xy 5.06666710699066 -6.78755591163092) (xy 5.07121320343566 -6.7912867965644) (xy 5.07494408836914 -6.79583289300941) (xy 5.07771638597541 -6.80101949702905) (xy 5.07942355841216 -6.80664729033952)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_poly (pts (xy -2.51699999999998 -6.76249999999993) (xy -2.52084294391934 -6.80151806440316) (xy -2.53222409349773 -6.83903668647295) (xy -2.55070607753948 -6.87361404660385) (xy -2.57557864376267 -6.90392135623724) (xy -2.60588595339606 -6.92879392246044) (xy -2.64046331352697 -6.94727590650219) (xy -2.67798193559676 -6.95865705608058) (xy -2.71699999999998 -6.96249999999993) (xy -2.75601806440321 -6.95865705608058) (xy -2.793536686473 -6.94727590650219) (xy -2.8281140466039 -6.92879392246044) (xy -2.85842135623729 -6.90392135623724) (xy -2.88329392246049 -6.87361404660385) (xy -2.90177590650224 -6.83903668647295) (xy -2.91315705608063 -6.80151806440316) (xy -2.91699999999998 -6.76249999999993) (xy -2.91315705608063 -6.72348193559671) (xy -2.90177590650224 -6.68596331352691) (xy -2.88329392246049 -6.65138595339601) (xy -2.85842135623729 -6.62107864376262) (xy -2.8281140466039 -6.59620607753942) (xy -2.793536686473 -6.57772409349767) (xy -2.75601806440321 -6.56634294391929) (xy -2.71699999999998 -6.56249999999993) (xy -2.67798193559676 -6.56634294391929) (xy -2.64046331352697 -6.57772409349767) (xy -2.60588595339606 -6.59620607753942) (xy -2.57557864376267 -6.62107864376262) (xy -2.55070607753948 -6.65138595339601) (xy -2.53222409349773 -6.68596331352691) (xy -2.52084294391934 -6.72348193559671)) (layer F.Fab) (stroke (width 0) (type solid)) ) + (fp_line (start -4.69999999999999 6.8125) (end 4.69999999999999 6.8125) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 27673c77-ba65-efad-3298-7d4badb4fd51)) + (fp_line (start 4.69999999999999 6.8125) (end 4.69999999999999 -6.8125) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp f53947da-83b8-2768-f7b8-c752b0073db9)) + (fp_line (start 4.69999999999999 -6.8125) (end -4.69999999999999 -6.8125) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp a0b65177-85a4-ab4c-cd85-446a879163dd)) + (fp_line (start -4.69999999999999 -6.8125) (end -4.69999999999999 6.8125) (layer F.CrtYd) (stroke (width 0.05) (type solid)) (tstamp 43705dc2-f93a-0e8d-393b-4076cf303eb9))) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-CuBottom.gbr b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-CuBottom.gbr new file mode 100644 index 0000000..6fd4a2a --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-CuBottom.gbr @@ -0,0 +1,2434 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,7.0.6*% +%TF.CreationDate,2023-07-11T12:05:29-07:00*% +%TF.ProjectId,jitx-design,6a697478-2d64-4657-9369-676e2e6b6963,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Copper,L2,Bot*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 7.0.6) date 2023-07-11 12:05:29* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%TA.AperFunction,SMDPad,CuDef*% +%ADD10R,1.200000X0.500000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD11R,2.100000X1.300000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD12R,1.000000X0.300000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD13R,0.380278X0.600000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD14R,2.000000X1.000000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD15R,2.000000X0.700000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD16R,2.800000X1.500000*% +%TD*% +%TA.AperFunction,ViaPad*% +%ADD17C,0.460000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD18C,0.090000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD19C,0.381000*% +%TD*% +G04 APERTURE END LIST* +D10* +%TO.P,USB1,13,GND1*% +%TO.N,gnd*% +X150336500Y-104425000D03* +D11* +%TO.P,USB1,14,GND0*% +%TO.N,Net-(USB1-GND0)*% +X149887500Y-103300000D03* +%TO.P,USB1,15,GND2*% +%TO.N,Net-(USB1-GND2)*% +X149887500Y-112700000D03* +D10* +%TO.P,USB1,16,GND3*% +%TO.N,gnd*% +X150336500Y-111575000D03* +D12* +%TO.P,USB1,A1,GND6*% +X149437500Y-110750000D03* +%TO.P,USB1,A2,SSTXP1*% +%TO.N,unconnected-(USB1-SSTXP1-PadA2)*% +X149437500Y-110250000D03* +%TO.P,USB1,A3,SSTXN1*% +%TO.N,unconnected-(USB1-SSTXN1-PadA3)*% +X149437500Y-109750000D03* +%TO.P,USB1,A4,VBUS1*% +%TO.N,vdd50*% +X149437500Y-109250000D03* +%TO.P,USB1,A5,CC1*% +%TO.N,Net-(USB1-CC1)*% +X149437500Y-106750000D03* +%TO.P,USB1,A6,DP1*% +%TO.N,USB+*% +X149437500Y-106250000D03* +%TO.P,USB1,A7,DN1*% +%TO.N,USB-*% +X149437500Y-105750000D03* +%TO.P,USB1,A12,GND5*% +%TO.N,gnd*% +X149437500Y-105250000D03* +%TO.P,USB1,B9,VBUS0*% +%TO.N,vdd50*% +X149437500Y-107250000D03* +%TO.P,USB1,B10,SSRXN1*% +%TO.N,unconnected-(USB1-SSRXN1-PadB10)*% +X149437500Y-107750000D03* +%TO.P,USB1,B11,SSRXP1*% +%TO.N,unconnected-(USB1-SSRXP1-PadB11)*% +X149437500Y-108250000D03* +%TO.P,USB1,B12,GND4*% +%TO.N,gnd*% +X149437500Y-108750000D03* +%TD*% +D13* +%TO.P,R9,1,1*% +%TO.N,Net-(USB1-CC1)*% +X147502051Y-107938865D03* +%TO.P,R9,2,2*% +%TO.N,gnd*% +X146582329Y-107938865D03* +%TD*% +D14* +%TO.P,Card1,1,CD_DAT3*% +%TO.N,Net-(Card1-CD_DAT3)*% +X143275000Y-101130000D03* +%TO.P,Card1,2,CMD*% +%TO.N,Net-(Card1-CMD)*% +X143275000Y-103630000D03* +%TO.P,Card1,3,VSS1*% +%TO.N,gnd*% +X143275000Y-106130000D03* +%TO.P,Card1,4,VDD*% +%TO.N,Net-(Card1-VDD)*% +X143275000Y-108630000D03* +%TO.P,Card1,5,CLK*% +%TO.N,Net-(Card1-CLK)*% +X143275000Y-111130000D03* +%TO.P,Card1,6,VSS2*% +%TO.N,gnd*% +X143275000Y-113630000D03* +%TO.P,Card1,7,DAT0*% +%TO.N,Net-(Card1-DAT0)*% +X143275000Y-116060000D03* +%TO.P,Card1,8,DAT1*% +%TO.N,Net-(Card1-DAT1)*% +X143275000Y-117760000D03* +%TO.P,Card1,9,DAT2*% +%TO.N,Net-(Card1-DAT2)*% +X143275000Y-98630000D03* +D15* +%TO.P,Card1,10,CD*% +%TO.N,Net-(Card1-CD)*% +X143275000Y-119060000D03* +%TO.P,Card1,11,WP*% +%TO.N,Net-(Card1-WP)*% +X143275000Y-120260000D03* +D16* +%TO.P,Card1,12,SHELL0*% +%TO.N,gnd*% +X141325000Y-121650000D03* +%TO.P,Card1,13,SHELL1*% +X126825000Y-121650000D03* +%TO.P,Card1,14,SHELL2*% +X126725000Y-94350000D03* +%TO.P,Card1,15,SHELL3*% +X141225000Y-96550000D03* +%TD*% +D17* +%TO.N,Net-(USB1-GND0)*% +X148074784Y-103313947D03* +%TO.N,Net-(Card1-CD)*% +X132950211Y-105229456D03* +%TO.N,Net-(USB1-GND2)*% +X147864967Y-112698484D03* +%TO.N,Net-(Card1-WP)*% +X135623659Y-107175070D03* +%TO.N,gnd*% +X124968000Y-104902000D03* +X133604000Y-99060000D03* +X134620000Y-122174000D03* +X135636000Y-122174000D03* +X140970000Y-108458000D03* +X145862665Y-106835359D03* +X145034000Y-97536000D03* +X136906000Y-122174000D03* +X133604000Y-122174000D03* +X127254000Y-104648000D03* +X124968000Y-107950000D03* +X140208000Y-110744000D03* +X124968000Y-106934000D03* +X124968000Y-105918000D03* +X135382000Y-98298000D03* +X135128000Y-111252000D03* +X132080000Y-97282000D03* +X128016000Y-97790000D03* +X126238000Y-107442000D03* +%TO.N,Net-(Card1-CMD)*% +X138071854Y-99815084D03* +%TO.N,USB+*% +X148376429Y-106441460D03* +%TO.N,Net-(Card1-DAT2)*% +X132875267Y-104504289D03* +%TO.N,Net-(Card1-CLK)*% +X140277779Y-101538626D03* +%TO.N,Net-(Card1-DAT0)*% +X140163333Y-103703554D03* +%TO.N,USB-*% +X148479985Y-105658221D03* +%TO.N,vdd50*% +X148499059Y-109244183D03* +%TO.N,Net-(Card1-CD_DAT3)*% +X132924651Y-103789389D03* +%TO.N,Net-(Card1-VDD)*% +X132964004Y-102607356D03* +%TO.N,Net-(Card1-DAT1)*% +X140608833Y-104422235D03* +%TD*% +D18* +%TO.N,Net-(USB1-GND0)*% +X148074784Y-103313947D02* +X149887500Y-103300000D01* +%TO.N,Net-(Card1-CD)*% +X143275000Y-119060000D02* +X142141444Y-118567226D01* +X141998554Y-118449215D02* +X132950211Y-105229456D01* +X141998554Y-118449215D02* +G75* +G03* +X142141444Y-118567226I276446J189215D01* +G01* +%TO.N,Net-(USB1-GND2)*% +X147864967Y-112698484D02* +X149887500Y-112700000D01* +%TO.N,Net-(Card1-WP)*% +X142263503Y-118404543D02* +X144286497Y-118565457D01* +X144420000Y-118710000D02* +X144420000Y-119410000D01* +X135623659Y-107175070D02* +X142149836Y-118333206D01* +X144356128Y-119530180D02* +X143275000Y-120260000D01* +X144356128Y-119530180D02* +G75* +G03* +X144420000Y-119410000I-81128J120180D01* +G01* +X142149837Y-118333205D02* +G75* +G03* +X142263503Y-118404542I125163J73205D01* +G01* +X144419999Y-118710000D02* +G75* +G03* +X144286497Y-118565458I-144999J0D01* +G01* +%TO.N,Net-(Card1-CMD)*% +X144610000Y-99130000D02* +X144610000Y-98130000D01* +X143275000Y-103630000D02* +X144400214Y-101703119D01* +X141997095Y-97942933D02* +X141186467Y-99147195D01* +X144275000Y-97795000D02* +X142275000Y-97795000D01* +X140307233Y-99656079D02* +X138071854Y-99815084D01* +X144419581Y-101641020D02* +X144609031Y-99155460D01* +X142275000Y-97795000D02* +G75* +G03* +X141997095Y-97942933I0J-335000D01* +G01* +X144610000Y-98130000D02* +G75* +G03* +X144275000Y-97795000I-335000J0D01* +G01* +X144400214Y-101703119D02* +G75* +G03* +X144419581Y-101641020I-125214J73119D01* +G01* +X144609030Y-99155460D02* +G75* +G03* +X144610000Y-99130000I-333530J25460D01* +G01* +X140307233Y-99656078D02* +G75* +G03* +X141186466Y-99147195I-82233J1156078D01* +G01* +%TO.N,USB+*% +X149437500Y-106250000D02* +X148376429Y-106441460D01* +%TO.N,Net-(Card1-DAT2)*% +X133243606Y-104045413D02* +X132875267Y-104504289D01* +X140648995Y-99979442D02* +X132851325Y-102214184D01* +X143275000Y-98630000D02* +X140943556Y-99860955D01* +X132659360Y-102880253D02* +X133229295Y-103516492D01* +X140648995Y-99979442D02* +G75* +G03* +X140943556Y-99860955I-423995J1479442D01* +G01* +X132851345Y-102214255D02* +G75* +G03* +X132659360Y-102880253I112655J-393145D01* +G01* +X133243618Y-104045423D02* +G75* +G03* +X133229295Y-103516492I-318918J256023D01* +G01* +%TO.N,Net-(Card1-CLK)*% +X144800000Y-108130000D02* +X144800000Y-109130000D01* +X142222271Y-106765073D02* +X144465917Y-107640944D01* +X140277779Y-101538626D02* +X142138658Y-106679354D01* +X144676323Y-109468474D02* +X143275000Y-111130000D01* +X142138658Y-106679354D02* +G75* +G03* +X142222271Y-106765073I136342J49354D01* +G01* +X144800000Y-108130000D02* +G75* +G03* +X144465917Y-107640944I-525000J0D01* +G01* +X144676323Y-109468474D02* +G75* +G03* +X144800000Y-109130000I-401323J338474D01* +G01* +%TO.N,Net-(USB1-CC1)*% +X147502051Y-107938865D02* +X148853700Y-106981667D01* +X148884950Y-106964857D02* +X149437500Y-106750000D01* +X148884954Y-106964868D02* +G75* +G03* +X148853700Y-106981667I52546J-135232D01* +G01* +%TO.N,Net-(Card1-DAT0)*% +X144610000Y-108130000D02* +X144610000Y-109130000D01* +X144420804Y-109431606D02* +X142211891Y-110499454D01* +X142150992Y-114205147D02* +X143275000Y-116060000D01* +X140163333Y-103703554D02* +X140808855Y-104065483D01* +X140989538Y-104272753D02* +X141963176Y-106752437D01* +X142130000Y-110630000D02* +X142130000Y-114130000D01* +X142153177Y-106942064D02* +X144396823Y-107817936D01* +X140989507Y-104272765D02* +G75* +G03* +X140808855Y-104065483I-380707J-149435D01* +G01* +X144609999Y-108130000D02* +G75* +G03* +X144396823Y-107817937I-334999J0D01* +G01* +X144420804Y-109431606D02* +G75* +G03* +X144610000Y-109130000I-145804J301606D01* +G01* +X141963177Y-106752437D02* +G75* +G03* +X142153177Y-106942063I311823J122437D01* +G01* +X142211891Y-110499454D02* +G75* +G03* +X142130000Y-110630000I63109J-130546D01* +G01* +X142130000Y-114130000D02* +G75* +G03* +X142150992Y-114205147I145000J0D01* +G01* +%TO.N,USB-*% +X148479985Y-105658221D02* +X149437500Y-105750000D01* +D19* +%TO.N,vdd50*% +X149437500Y-109250000D02* +X149970734Y-109188593D01* +X150228000Y-108900000D02* +X150228000Y-107600000D01* +X149437500Y-109250000D02* +X148499059Y-109244183D01* +X149970734Y-107311407D02* +X149437500Y-107250000D01* +X149970734Y-109188593D02* +G75* +G03* +X150228000Y-108900000I-33234J288593D01* +G01* +X150228000Y-107600000D02* +G75* +G03* +X149970734Y-107311407I-290500J0D01* +G01* +D18* +%TO.N,Net-(Card1-CD_DAT3)*% +X132437705Y-102893379D02* +X132924651Y-103789389D01* +X142154713Y-98049031D02* +X141344085Y-99253293D01* +X144420000Y-99130000D02* +X144420000Y-98130000D01* +X140596650Y-99796795D02* +X132798980Y-102031536D01* +X143275000Y-101130000D02* +X144400214Y-99203119D01* +X144275000Y-97985000D02* +X142275000Y-97985000D01* +X142275000Y-97985001D02* +G75* +G03* +X142154714Y-98049031I0J-144999D01* +G01* +X144400214Y-99203119D02* +G75* +G03* +X144420000Y-99130000I-125214J73119D01* +G01* +X140596650Y-99796795D02* +G75* +G03* +X141344085Y-99253293I-371650J1296795D01* +G01* +X144420000Y-98130000D02* +G75* +G03* +X144275000Y-97985000I-145000J0D01* +G01* +X132798999Y-102031601D02* +G75* +G03* +X132437705Y-102893379I165001J-575799D01* +G01* +%TO.N,Net-(Card1-VDD)*% +X143275000Y-108630000D02* +X132964004Y-102607356D01* +%TO.N,Net-(Card1-DAT1)*% +X144420000Y-109130000D02* +X144420000Y-108130000D01* +X141940000Y-114130000D02* +X141940000Y-110630000D01* +X144327729Y-107994927D02* +X142084083Y-107119056D01* +X141803534Y-106860965D02* +X140608833Y-104422235D01* +X142129196Y-110328394D02* +X144338109Y-109260546D01* +X142130444Y-116571337D02* +X141941026Y-114156193D01* +X143275000Y-117760000D02* +X142172706Y-116662766D01* +X144420000Y-108130000D02* +G75* +G03* +X144327729Y-107994927I-145000J0D01* +G01* +X142130445Y-116571337D02* +G75* +G03* +X142172706Y-116662766I144555J11337D01* +G01* +X141803534Y-106860965D02* +G75* +G03* +X142084083Y-107119056I471466J230965D01* +G01* +X144338109Y-109260546D02* +G75* +G03* +X144420000Y-109130000I-63109J130546D01* +G01* +X141939998Y-114130000D02* +G75* +G03* +X141941026Y-114156193I334102J0D01* +G01* +X142129196Y-110328394D02* +G75* +G03* +X141940000Y-110630000I145804J-301606D01* +G01* +%TD*% +%TA.AperFunction,Conductor*% +%TO.N,gnd*% +G36* +X133180328Y-102902212D02* +G01* +X142167562Y-108151648D01* +X142174041Y-108160181D01* +X142174500Y-108163736D01* +X142174500Y-109139896D01* +X142176537Y-109150138D01* +X142180331Y-109169213D01* +X142202543Y-109202457D01* +X142235787Y-109224669D01* +X142265101Y-109230500D01* +X144004836Y-109230499D01* +X144014735Y-109234599D01* +X144018836Y-109244499D01* +X144014736Y-109254398D01* +X144010929Y-109257103D01* +X142085723Y-110187799D01* +X142072213Y-110194331D01* +X142065869Y-110197398D01* +X142017188Y-110220923D01* +X142017186Y-110220924D01* +X141932726Y-110288444D01* +X141865382Y-110373048D01* +X141818523Y-110470502D01* +X141794492Y-110575929D01* +X141794492Y-110575931D01* +X141794500Y-110630000D01* +X141794500Y-114124199D01* +X141794498Y-114124203D01* +X141794498Y-114136273D01* +X141794500Y-114136349D01* +X141794500Y-114147782D01* +X141794491Y-114148146D01* +X141794473Y-114148473D01* +X141794478Y-114148527D01* +X141794500Y-114149078D01* +X141794500Y-114149162D01* +X141794544Y-114149497D01* +X141794583Y-114149863D01* +X141795479Y-114161293D01* +X141795483Y-114161359D01* +X141795974Y-114167599D01* +X141983219Y-116555067D01* +X141983221Y-116555070D01* +X141985102Y-116579058D01* +X141986899Y-116601966D01* +X141986981Y-116602532D01* +X141988152Y-116617106D01* +X142009511Y-116682715D01* +X142009512Y-116682716D01* +X142045649Y-116741498D01* +X142045651Y-116741500D01* +X142055988Y-116751827D01* +X142056368Y-116752258D01* +X142056481Y-116752370D01* +X142056482Y-116752372D01* +X142228203Y-116923305D01* +X142441455Y-117135578D01* +X142445578Y-117145468D01* +X142441500Y-117155377D01* +X142431610Y-117159500D01* +X142265103Y-117159500D01* +X142235787Y-117165331D01* +X142202543Y-117187543D01* +X142180330Y-117220788D01* +X142174500Y-117250101D01* +X142174500Y-118035514D01* +X142170399Y-118045413D01* +X142160500Y-118049514D01* +X142150601Y-118045413D01* +X142148415Y-118042582D01* +X139262490Y-113108369D01* +X135918627Y-107391198D01* +X135917170Y-107380584D01* +X135918237Y-107377778D01* +X135965011Y-107285982D01* +X135982578Y-107175070D01* +X135965011Y-107064158D01* +X135914031Y-106964103D01* +X135914030Y-106964101D01* +X135834627Y-106884698D01* +X135734571Y-106833718D01* +X135734572Y-106833718D01* +X135623659Y-106816151D01* +X135512746Y-106833718D01* +X135412690Y-106884698D01* +X135333287Y-106964101D01* +X135282307Y-107064157D01* +X135264740Y-107175070D01* +X135282307Y-107285982D01* +X135333287Y-107386038D01* +X135412690Y-107465441D01* +X135412692Y-107465442D01* +X135512747Y-107516422D01* +X135623659Y-107533989D01* +X135652071Y-107529488D01* +X135662489Y-107531990D01* +X135666345Y-107536248D01* +X141111489Y-116846087D01* +X141112947Y-116856702D01* +X141106472Y-116865240D01* +X141095857Y-116866698D01* +X141087852Y-116861064D01* +X133258225Y-105421866D01* +X133256017Y-105411380D01* +X133257302Y-105407605D01* +X133291563Y-105340368D01* +X133309130Y-105229456D01* +X133291563Y-105118544D01* +X133240583Y-105018489D01* +X133240582Y-105018487D01* +X133161179Y-104939084D01* +X133061123Y-104888104D01* +X133061124Y-104888104D01* +X133021746Y-104881867D01* +X132976903Y-104874764D01* +X132967768Y-104869166D01* +X132965266Y-104858747D01* +X132970865Y-104849611D01* +X132976899Y-104847110D01* +X132986179Y-104845641D01* +X133086234Y-104794661D01* +X133165639Y-104715256D01* +X133216619Y-104615201D01* +X133234186Y-104504289D01* +X133216619Y-104393377D01* +X133195197Y-104351335D01* +X133194357Y-104340654D01* +X133196752Y-104336218D01* +X133353515Y-104140923D01* +X133353560Y-104140899D01* +X133357079Y-104136507D01* +X133357080Y-104136508D01* +X133362752Y-104129429D01* +X133368917Y-104121738D01* +X133370542Y-104119712D01* +X133370555Y-104119690D01* +X133397917Y-104085547D01* +X133453778Y-103967484D01* +X133480677Y-103839673D01* +X133477141Y-103709110D01* +X133443365Y-103582943D01* +X133411961Y-103524919D01* +X133381197Y-103468077D01* +X133368924Y-103454356D01* +X133350810Y-103434102D01* +X133350662Y-103433911D01* +X133035093Y-103081632D01* +X132952665Y-102989615D01* +X132949115Y-102979507D01* +X132953753Y-102969847D01* +X132963094Y-102966275D01* +X132964002Y-102966275D01* +X132964002Y-102966274D01* +X132964004Y-102966275D01* +X133074916Y-102948708D01* +X133166919Y-102901829D01* +X133177599Y-102900989D01* +X133180328Y-102902212D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X149295399Y-93204601D02* +G01* +X149299500Y-93214500D01* +X149299500Y-95045762D01* +X149308868Y-95065218D01* +X149309903Y-95068176D01* +X149314709Y-95089230D01* +X149314710Y-95089231D01* +X149325652Y-95102952D01* +X149328176Y-95106116D01* +X149329841Y-95108766D01* +X149339212Y-95128224D01* +X149339213Y-95128225D01* +X149356094Y-95141688D01* +X149358310Y-95143904D01* +X149371774Y-95160786D01* +X149371776Y-95160788D01* +X149371777Y-95160788D01* +X149371778Y-95160789D01* +X149391229Y-95170157D01* +X149393883Y-95171824D01* +X149405809Y-95181335D01* +X149410769Y-95185290D01* +X149431824Y-95190095D01* +X149434776Y-95191128D01* +X149454237Y-95200500D01* +X149477410Y-95200500D01* +X154285500Y-95200500D01* +X154295399Y-95204601D01* +X154299500Y-95214500D01* +X154299500Y-103663500D01* +X154295399Y-103673399D01* +X154285500Y-103677500D01* +X151135909Y-103677500D01* +X151128685Y-103679149D01* +X151125570Y-103679500D01* +X151109735Y-103679500D01* +X151095471Y-103686368D01* +X151092514Y-103687403D01* +X151069270Y-103692709D01* +X151069267Y-103692710D01* +X151060727Y-103699521D01* +X151050430Y-103702487D01* +X151041053Y-103697303D01* +X151037999Y-103688575D01* +X151037999Y-102640103D01* +X151037096Y-102635561D01* +X151032169Y-102610787D01* +X151009957Y-102577543D01* +X150976713Y-102555331D01* +X150976712Y-102555330D01* +X150976711Y-102555330D01* +X150954676Y-102550947D01* +X150947399Y-102549500D01* +X150947398Y-102549500D01* +X148827603Y-102549500D01* +X148798287Y-102555331D01* +X148765043Y-102577543D01* +X148742830Y-102610788D01* +X148737000Y-102640101D01* +X148737000Y-103149453D01* +X148732899Y-103159352D01* +X148723108Y-103163453D01* +X148405899Y-103165894D01* +X148395968Y-103161869D01* +X148393317Y-103158250D01* +X148365155Y-103102978D01* +X148285752Y-103023575D01* +X148185696Y-102972595D01* +X148185697Y-102972595D01* +X148074784Y-102955028D01* +X147963871Y-102972595D01* +X147863815Y-103023575D01* +X147784412Y-103102978D01* +X147733432Y-103203034D01* +X147715865Y-103313947D01* +X147733432Y-103424859D01* +X147784412Y-103524915D01* +X147863815Y-103604318D01* +X147863817Y-103604319D01* +X147963872Y-103655299D01* +X148074784Y-103672866D01* +X148185696Y-103655299D01* +X148285751Y-103604319D01* +X148365156Y-103524914D01* +X148395923Y-103464526D01* +X148404069Y-103457569D01* +X148408284Y-103456884D01* +X148722893Y-103454464D01* +X148732823Y-103458489D01* +X148737000Y-103468356D01* +X148737000Y-103959896D01* +X148741383Y-103981934D01* +X148742831Y-103989213D01* +X148765043Y-104022457D01* +X148798287Y-104044669D01* +X148827601Y-104050500D01* +X150941000Y-104050499D01* +X150950899Y-104054600D01* +X150955000Y-104064499D01* +X150955000Y-104131084D01* +X150950899Y-104140983D01* +X150941000Y-104145084D01* +X150939631Y-104145017D01* +X150939458Y-104145000D01* +X150354000Y-104145000D01* +X150354000Y-104704999D01* +X150939447Y-104704999D01* +X150939618Y-104704982D01* +X150939674Y-104704999D01* +X150940143Y-104704999D01* +X150940143Y-104705140D01* +X150949874Y-104708086D01* +X150954932Y-104717532D01* +X150955000Y-104718914D01* +X150955000Y-111281084D01* +X150950899Y-111290983D01* +X150941000Y-111295084D01* +X150939631Y-111295017D01* +X150939458Y-111295000D01* +X150354000Y-111295000D01* +X150354000Y-111854999D01* +X150939447Y-111854999D01* +X150939618Y-111854982D01* +X150939674Y-111854999D01* +X150940143Y-111854999D01* +X150940143Y-111855140D01* +X150949874Y-111858086D01* +X150954932Y-111867532D01* +X150955000Y-111868914D01* +X150955000Y-111935500D01* +X150950899Y-111945399D01* +X150941000Y-111949500D01* +X148827603Y-111949500D01* +X148798287Y-111955331D01* +X148765043Y-111977543D01* +X148742830Y-112010788D01* +X148737000Y-112040101D01* +X148737000Y-112539626D01* +X148732899Y-112549525D01* +X148723000Y-112553626D01* +X148722990Y-112553626D01* +X148197391Y-112553232D01* +X148187494Y-112549124D01* +X148184927Y-112545588D01* +X148181889Y-112539626D01* +X148155339Y-112487517D01* +X148155338Y-112487515D01* +X148075935Y-112408112D01* +X147975879Y-112357132D01* +X147975880Y-112357132D01* +X147864967Y-112339565D01* +X147754054Y-112357132D01* +X147653998Y-112408112D01* +X147574595Y-112487515D01* +X147523615Y-112587571D01* +X147506048Y-112698484D01* +X147523615Y-112809396D01* +X147574595Y-112909452D01* +X147653998Y-112988855D01* +X147654000Y-112988856D01* +X147754055Y-113039836D01* +X147864967Y-113057403D01* +X147975879Y-113039836D01* +X148075934Y-112988856D01* +X148155339Y-112909451D01* +X148184673Y-112851875D01* +X148192820Y-112844917D01* +X148197154Y-112844232D01* +X148723011Y-112844626D01* +X148732907Y-112848734D01* +X148737000Y-112858626D01* +X148737000Y-113359896D01* +X148737001Y-113359899D01* +X148742831Y-113389213D01* +X148765043Y-113422457D01* +X148798287Y-113444669D01* +X148827601Y-113450500D01* +X150947398Y-113450499D01* +X150976713Y-113444669D01* +X151009957Y-113422457D01* +X151032169Y-113389213D01* +X151038000Y-113359899D01* +X151037999Y-112318232D01* +X151042099Y-112308334D01* +X151051999Y-112304233D01* +X151058074Y-112305620D01* +X151070731Y-112311716D01* +X151073133Y-112313225D01* +X151073397Y-112313352D01* +X151076077Y-112314289D01* +X151109737Y-112330500D01* +X151201263Y-112330500D01* +X151201915Y-112330185D01* +X151202539Y-112329886D01* +X151208612Y-112328500D01* +X154285500Y-112328500D01* +X154295399Y-112332601D01* +X154299500Y-112342500D01* +X154299500Y-120785500D01* +X154295399Y-120795399D01* +X154285500Y-120799500D01* +X149454235Y-120799500D01* +X149434779Y-120808868D01* +X149431822Y-120809903D01* +X149410770Y-120814709D01* +X149410767Y-120814710D01* +X149393881Y-120828176D01* +X149391228Y-120829843D01* +X149371778Y-120839210D01* +X149371774Y-120839213D01* +X149358311Y-120856095D01* +X149356095Y-120858311D01* +X149339213Y-120871774D01* +X149339210Y-120871778D01* +X149329843Y-120891228D01* +X149328176Y-120893881D01* +X149314710Y-120910767D01* +X149314709Y-120910770D01* +X149309903Y-120931822D01* +X149308868Y-120934779D01* +X149299500Y-120954235D01* +X149299500Y-122785500D01* +X149295399Y-122795399D01* +X149285500Y-122799500D01* +X124714500Y-122799500D01* +X124704601Y-122795399D01* +X124700500Y-122785500D01* +X124700500Y-122402952D01* +X125395000Y-122402952D01* +X125396739Y-122411705D01* +X125403371Y-122421630D01* +X125413293Y-122428259D01* +X125422044Y-122429999D01* +X126807499Y-122429999D01* +X126842499Y-122429999D01* +X128227952Y-122429999D01* +X128236705Y-122428260D01* +X128246630Y-122421628D01* +X128253259Y-122411707D01* +X128253259Y-122411705D01* +X128255000Y-122402955D01* +X128255000Y-121667500D01* +X139895001Y-121667500D01* +X139895001Y-122402952D01* +X139896739Y-122411705D01* +X139903371Y-122421630D01* +X139913293Y-122428259D01* +X139922044Y-122429999D01* +X141307500Y-122429999D01* +X141307500Y-121667500D01* +X141342500Y-121667500D01* +X141342500Y-122429999D01* +X142727952Y-122429999D01* +X142736705Y-122428260D01* +X142746630Y-122421628D01* +X142753259Y-122411707D01* +X142753259Y-122411705D01* +X142755000Y-122402955D01* +X142755000Y-121667500D01* +X141342500Y-121667500D01* +X141307500Y-121667500D01* +X139895001Y-121667500D01* +X128255000Y-121667500D01* +X126842500Y-121667500D01* +X126842499Y-122429999D01* +X126807499Y-122429999D01* +X126807500Y-121667500D01* +X125395001Y-121667500D01* +X125395000Y-122402952D01* +X124700500Y-122402952D01* +X124700500Y-121632500D01* +X125395000Y-121632500D01* +X126807500Y-121632500D01* +X126807499Y-120870000D01* +X126842499Y-120870000D01* +X126842500Y-121632500D01* +X128254999Y-121632500D01* +X139895000Y-121632500D01* +X141307500Y-121632500D01* +X141307500Y-120870000D01* +X141342500Y-120870000D01* +X141342500Y-121632500D01* +X142754999Y-121632500D01* +X142754999Y-120897047D01* +X142753260Y-120888294D01* +X142746628Y-120878369D01* +X142736706Y-120871740D01* +X142727956Y-120870000D01* +X141342500Y-120870000D01* +X141307500Y-120870000D01* +X139922047Y-120870000D01* +X139913294Y-120871739D01* +X139903369Y-120878371D01* +X139896740Y-120888292D01* +X139896740Y-120888294D01* +X139895000Y-120897044D01* +X139895000Y-121632500D01* +X128254999Y-121632500D01* +X128254999Y-120897047D01* +X128253260Y-120888294D01* +X128246628Y-120878369D01* +X128236706Y-120871740D01* +X128227956Y-120870000D01* +X126842499Y-120870000D01* +X126807499Y-120870000D01* +X125422047Y-120870000D01* +X125413294Y-120871739D01* +X125403369Y-120878371D01* +X125396740Y-120888292D01* +X125396740Y-120888294D01* +X125395000Y-120897044D01* +X125395000Y-121632500D01* +X124700500Y-121632500D01* +X124700500Y-119453472D01* +X139416721Y-119453472D01* +X139426783Y-119639057D01* +X139476507Y-119818147D01* +X139476507Y-119818148D01* +X139563568Y-119982360D01* +X139563573Y-119982367D01* +X139683894Y-120124021D01* +X139831855Y-120236498D01* +X139831856Y-120236498D01* +X139831861Y-120236502D01* +X140000548Y-120314545D01* +X140182067Y-120354500D01* +X140182068Y-120354500D01* +X140321325Y-120354500D01* +X140321332Y-120354500D01* +X140459775Y-120339443D01* +X140635911Y-120280096D01* +X140795171Y-120184273D01* +X140930108Y-120056454D01* +X141034413Y-119902615D01* +X141103209Y-119729951D01* +X141133278Y-119546535D01* +X141132712Y-119536103D01* +X141123216Y-119360942D01* +X141073492Y-119181852D01* +X141073492Y-119181851D01* +X141017145Y-119075570D01* +X140986431Y-119017638D01* +X140923496Y-118943545D01* +X140866105Y-118875978D01* +X140718144Y-118763501D01* +X140718141Y-118763499D01* +X140718139Y-118763498D01* +X140549452Y-118685455D01* +X140367933Y-118645500D01* +X140228668Y-118645500D01* +X140228660Y-118645500D01* +X140090227Y-118660556D01* +X140090216Y-118660559D01* +X139914097Y-118719900D01* +X139914090Y-118719903D01* +X139754830Y-118815726D01* +X139754828Y-118815727D01* +X139619892Y-118943545D01* +X139515586Y-119097386D01* +X139446791Y-119270047D01* +X139416721Y-119453472D01* +X124700500Y-119453472D01* +X124700500Y-102607910D01* +X132215924Y-102607910D01* +X132220135Y-102649840D01* +X132230762Y-102755656D01* +X132274492Y-102897566D01* +X132277011Y-102902215D01* +X132300434Y-102945449D01* +X132300597Y-102945802D01* +X132300716Y-102946021D01* +X132300717Y-102946024D01* +X132302176Y-102948708D01* +X132309023Y-102961308D01* +X132309024Y-102961310D01* +X132326523Y-102993515D01* +X132326534Y-102993531D01* +X132635849Y-103562688D01* +X132636973Y-103573344D01* +X132634877Y-103577598D01* +X132634280Y-103578420D01* +X132583299Y-103678476D01* +X132565732Y-103789389D01* +X132583299Y-103900301D01* +X132634279Y-104000357D01* +X132713682Y-104079760D01* +X132811841Y-104129774D01* +X132818800Y-104137922D01* +X132817959Y-104148604D01* +X132809811Y-104155563D01* +X132807678Y-104156075D01* +X132778774Y-104160653D01* +X132764354Y-104162937D01* +X132664298Y-104213917D01* +X132584895Y-104293320D01* +X132533915Y-104393376D01* +X132516348Y-104504289D01* +X132533915Y-104615201D01* +X132584895Y-104715257D01* +X132664298Y-104794660D01* +X132664300Y-104794661D01* +X132764355Y-104845641D01* +X132848575Y-104858980D01* +X132857709Y-104864578D01* +X132860211Y-104874997D01* +X132854612Y-104884133D01* +X132848574Y-104886634D01* +X132839303Y-104888103D01* +X132839298Y-104888104D01* +X132739242Y-104939084D01* +X132659839Y-105018487D01* +X132608859Y-105118543D01* +X132591292Y-105229456D01* +X132608859Y-105340368D01* +X132659839Y-105440424D01* +X132739242Y-105519827D01* +X132739244Y-105519828D01* +X132839299Y-105570808D01* +X132950211Y-105588375D01* +X133004032Y-105579849D01* +X133014449Y-105582351D01* +X133017773Y-105585769D01* +X141860141Y-118504597D01* +X141860143Y-118504600D01* +X141873719Y-118524433D01* +X141873726Y-118524466D01* +X141878862Y-118531946D01* +X141889481Y-118547461D01* +X141889661Y-118547690D01* +X141903944Y-118568515D01* +X141967704Y-118632065D01* +X141967708Y-118632068D01* +X141967712Y-118632072D01* +X142042173Y-118682676D01* +X142048549Y-118685455D01* +X142065323Y-118692767D01* +X142065593Y-118692906D01* +X142083437Y-118700663D01* +X142120823Y-118716916D01* +X142120828Y-118716917D01* +X142166081Y-118736589D01* +X142173525Y-118744296D01* +X142174500Y-118749428D01* +X142174500Y-119419896D01* +X142176342Y-119429156D01* +X142180331Y-119449213D01* +X142202543Y-119482457D01* +X142235787Y-119504669D01* +X142265101Y-119510500D01* +X144079468Y-119510499D01* +X144089367Y-119514599D01* +X144093468Y-119524499D01* +X144089368Y-119534398D01* +X144087301Y-119536103D01* +X143685850Y-119807104D01* +X143678017Y-119809500D01* +X142265103Y-119809500D01* +X142235787Y-119815331D01* +X142202543Y-119837543D01* +X142180330Y-119870788D01* +X142174500Y-119900101D01* +X142174500Y-120619896D01* +X142174501Y-120619899D01* +X142180331Y-120649213D01* +X142202543Y-120682457D01* +X142235787Y-120704669D01* +X142265101Y-120710500D01* +X144284898Y-120710499D01* +X144314213Y-120704669D01* +X144347457Y-120682457D01* +X144369669Y-120649213D01* +X144375500Y-120619899D01* +X144375499Y-119900102D01* +X144369669Y-119870787D01* +X144347457Y-119837543D01* +X144314213Y-119815331D01* +X144314212Y-119815330D01* +X144314211Y-119815330D01* +X144284899Y-119809500D01* +X144248168Y-119809500D01* +X144238269Y-119805399D01* +X144234168Y-119795500D01* +X144238269Y-119785601D01* +X144240335Y-119783896D01* +X144253670Y-119774893D01* +X144453413Y-119640057D01* +X144453415Y-119640054D01* +X144453626Y-119639912D01* +X144453917Y-119639685D01* +X144467058Y-119630791D01* +X144514751Y-119577792D01* +X144548212Y-119514832D01* +X144565454Y-119445650D01* +X144565474Y-119429788D01* +X144565500Y-119429409D01* +X144565500Y-118707817D01* +X144565503Y-118700663D01* +X144565519Y-118666347D01* +X144539861Y-118582897D01* +X144507161Y-118534746D01* +X144490813Y-118510673D01* +X144490812Y-118510672D01* +X144465264Y-118490183D01* +X148641691Y-118490183D01* +X148651838Y-118729034D01* +X148651838Y-118729040D01* +X148651839Y-118729042D01* +X148670521Y-118815726D01* +X148702209Y-118962762D01* +X148791348Y-119184593D01* +X148791350Y-119184596D01* +X148916695Y-119388171D01* +X148916706Y-119388186D01* +X149074656Y-119567651D01* +X149074658Y-119567653D01* +X149260672Y-119717849D01* +X149469393Y-119834448D01* +X149694817Y-119914095D01* +X149930459Y-119954500D01* +X149930462Y-119954500D01* +X150109667Y-119954500D01* +X150145984Y-119951408D01* +X150288220Y-119939303D01* +X150519587Y-119879059D01* +X150737444Y-119780581D01* +X150935525Y-119646702D01* +X151108131Y-119481273D01* +X151250297Y-119289052D01* +X151357932Y-119075570D01* +X151427940Y-118846969D01* +X151458308Y-118609824D01* +X151458294Y-118609500D01* +X151448161Y-118370965D01* +X151448161Y-118370958D01* +X151397792Y-118137243D01* +X151397790Y-118137237D01* +X151308651Y-117915406D01* +X151308649Y-117915403D01* +X151183304Y-117711828D01* +X151183293Y-117711813D01* +X151025343Y-117532348D01* +X151025342Y-117532347D01* +X150839328Y-117382151D01* +X150630607Y-117265552D01* +X150503912Y-117220788D01* +X150405184Y-117185905D01* +X150346272Y-117175803D01* +X150169541Y-117145500D01* +X149990336Y-117145500D01* +X149990333Y-117145500D01* +X149811779Y-117160697D01* +X149811774Y-117160698D01* +X149580412Y-117220941D01* +X149580410Y-117220942D01* +X149362561Y-117319416D01* +X149362553Y-117319421D01* +X149164470Y-117453301D01* +X148991872Y-117618723D01* +X148991869Y-117618726D01* +X148849704Y-117810944D01* +X148742069Y-118024426D01* +X148742066Y-118024433D01* +X148672060Y-118253027D01* +X148672060Y-118253028D01* +X148641691Y-118490183D01* +X144465264Y-118490183D01* +X144422704Y-118456051D01* +X144422702Y-118456050D01* +X144422699Y-118456048D01* +X144341552Y-118423857D01* +X144341549Y-118423856D01* +X144303606Y-118420855D01* +X144300043Y-118420574D01* +X144298034Y-118420415D01* +X144290880Y-118419846D01* +X143896238Y-118388455D01* +X143886695Y-118383582D01* +X143883392Y-118373389D01* +X143888265Y-118363846D01* +X143897348Y-118360499D01* +X144284897Y-118360499D01* +X144284898Y-118360499D01* +X144314213Y-118354669D01* +X144347457Y-118332457D01* +X144369669Y-118299213D01* +X144375500Y-118269899D01* +X144375499Y-117250102D01* +X144369669Y-117220787D01* +X144347457Y-117187543D01* +X144314213Y-117165331D01* +X144314212Y-117165330D01* +X144314211Y-117165330D01* +X144284899Y-117159500D01* +X142883754Y-117159500D01* +X142873877Y-117155422D01* +X142583822Y-116866698D01* +X142400704Y-116684420D01* +X142396582Y-116674531D01* +X142400660Y-116664622D01* +X142410550Y-116660499D01* +X144284897Y-116660499D01* +X144284898Y-116660499D01* +X144314213Y-116654669D01* +X144347457Y-116632457D01* +X144369669Y-116599213D01* +X144375500Y-116569899D01* +X144375499Y-115550102D01* +X144369669Y-115520787D01* +X144347457Y-115487543D01* +X144314213Y-115465331D01* +X144314212Y-115465330D01* +X144314211Y-115465330D01* +X144284899Y-115459500D01* +X143089124Y-115459500D01* +X143079225Y-115455399D01* +X143077151Y-115452756D01* +X142306645Y-114181255D01* +X142305021Y-114170663D01* +X142311362Y-114162026D01* +X142318618Y-114159999D01* +X143257500Y-114159999D01* +X143257500Y-113647500D01* +X143292500Y-113647500D01* +X143292500Y-114159999D01* +X144277952Y-114159999D01* +X144286705Y-114158260D01* +X144296630Y-114151628D01* +X144303259Y-114141707D01* +X144303259Y-114141705D01* +X144305000Y-114132955D01* +X144305000Y-113647500D01* +X143292500Y-113647500D01* +X143257500Y-113647500D01* +X143257500Y-113100000D01* +X143292500Y-113100000D01* +X143292500Y-113612500D01* +X144304999Y-113612500D01* +X144304999Y-113127047D01* +X144303260Y-113118294D01* +X144296628Y-113108369D01* +X144286706Y-113101740D01* +X144277956Y-113100000D01* +X143292500Y-113100000D01* +X143257500Y-113100000D01* +X142289500Y-113100000D01* +X142279601Y-113095899D01* +X142275500Y-113086000D01* +X142275500Y-111744499D01* +X142279601Y-111734600D01* +X142289500Y-111730499D01* +X144284897Y-111730499D01* +X144284898Y-111730499D01* +X144314213Y-111724669D01* +X144347457Y-111702457D01* +X144369669Y-111669213D01* +X144375500Y-111639899D01* +X144375500Y-111592500D01* +X149706501Y-111592500D01* +X149706501Y-111827952D01* +X149708239Y-111836705D01* +X149714871Y-111846630D01* +X149724793Y-111853259D01* +X149733544Y-111854999D01* +X150319000Y-111854999D01* +X150319000Y-111592500D01* +X149706501Y-111592500D01* +X144375500Y-111592500D01* +X144375500Y-111557500D01* +X149706500Y-111557500D01* +X150319000Y-111557500D01* +X150319000Y-111295000D01* +X149733547Y-111295000D01* +X149724794Y-111296739D01* +X149714869Y-111303371D01* +X149708240Y-111313292D01* +X149708240Y-111313294D01* +X149706500Y-111322044D01* +X149706500Y-111557500D01* +X144375500Y-111557500D01* +X144375499Y-110767500D01* +X148907501Y-110767500D01* +X148907501Y-110902952D01* +X148909239Y-110911705D01* +X148915871Y-110921630D01* +X148925793Y-110928259D01* +X148934544Y-110929999D01* +X149420000Y-110929999D01* +X149420000Y-110767500D01* +X149455000Y-110767500D01* +X149455000Y-110929999D01* +X149940452Y-110929999D01* +X149949205Y-110928260D01* +X149959130Y-110921628D01* +X149965759Y-110911707D01* +X149965759Y-110911705D01* +X149967500Y-110902955D01* +X149967500Y-110767500D01* +X149455000Y-110767500D01* +X149420000Y-110767500D01* +X148907501Y-110767500D01* +X144375499Y-110767500D01* +X144375499Y-110732500D01* +X148907500Y-110732500D01* +X149420000Y-110732500D01* +X149420000Y-110570000D01* +X149455000Y-110570000D01* +X149455000Y-110732500D01* +X149967499Y-110732500D01* +X149967499Y-110597047D01* +X149965760Y-110588294D01* +X149959128Y-110578369D01* +X149949206Y-110571740D01* +X149940456Y-110570000D01* +X149455000Y-110570000D01* +X149420000Y-110570000D01* +X148934547Y-110570000D01* +X148925794Y-110571739D01* +X148915869Y-110578371D01* +X148909240Y-110588292D01* +X148909240Y-110588294D01* +X148907500Y-110597044D01* +X148907500Y-110732500D01* +X144375499Y-110732500D01* +X144375499Y-110620102D01* +X144369669Y-110590787D01* +X144347457Y-110557543D01* +X144314213Y-110535331D01* +X144314212Y-110535330D01* +X144314211Y-110535330D01* +X144284899Y-110529500D01* +X144001919Y-110529500D01* +X143992020Y-110525399D01* +X143987919Y-110515500D01* +X143991217Y-110506474D01* +X144047946Y-110439212D01* +X144775000Y-109577156D01* +X144787547Y-109562280D01* +X144788594Y-109561036D01* +X144799897Y-109547636D01* +X144799898Y-109547632D01* +X144800491Y-109546930D01* +X144800534Y-109546870D01* +X144825488Y-109517265D01* +X144884552Y-109415407D01* +X144924962Y-109304814D01* +X144945481Y-109188872D01* +X144945492Y-109150228D01* +X144945500Y-109150138D01* +X144945500Y-108732500D01* +X148907500Y-108732500D01* +X149420000Y-108732500D01* +X149420000Y-108570000D01* +X148934547Y-108570000D01* +X148925794Y-108571739D01* +X148915869Y-108578371D01* +X148909240Y-108588292D01* +X148909240Y-108588294D01* +X148907500Y-108597044D01* +X148907500Y-108732500D01* +X144945500Y-108732500D01* +X144945500Y-108129999D01* +X144945599Y-108062794D01* +X144924050Y-107956365D01* +X146362191Y-107956365D01* +X146362191Y-108241817D01* +X146363929Y-108250570D01* +X146370561Y-108260495D01* +X146380483Y-108267124D01* +X146389234Y-108268864D01* +X146564829Y-108268864D01* +X146564829Y-107956365D01* +X146599829Y-107956365D01* +X146599829Y-108268864D01* +X146775420Y-108268864D01* +X146784173Y-108267125D01* +X146794098Y-108260493D01* +X146800727Y-108250572D01* +X146800727Y-108250570D01* +X146801087Y-108248761D01* +X147211412Y-108248761D01* +X147215065Y-108267125D01* +X147217243Y-108278078D01* +X147239455Y-108311322D01* +X147272699Y-108333534D01* +X147302013Y-108339365D01* +X147702088Y-108339364D01* +X147731403Y-108333534D01* +X147764647Y-108311322D01* +X147786859Y-108278078D01* +X147792690Y-108248764D01* +X147792689Y-107918572D01* +X147796789Y-107908674D01* +X147798594Y-107907150D01* +X148814909Y-107187426D01* +X148825358Y-107185052D01* +X148834425Y-107190761D01* +X148837000Y-107198852D01* +X148837000Y-107409896D01* +X148841383Y-107431934D01* +X148842831Y-107439213D01* +X148865043Y-107472457D01* +X148888498Y-107488128D01* +X148888843Y-107488359D01* +X148894796Y-107497269D01* +X148892706Y-107507778D01* +X148888843Y-107511641D01* +X148865043Y-107527543D01* +X148842830Y-107560788D01* +X148837000Y-107590101D01* +X148837000Y-107909896D01* +X148837286Y-107911333D01* +X148842831Y-107939213D01* +X148865043Y-107972457D01* +X148888498Y-107988128D01* +X148888843Y-107988359D01* +X148894796Y-107997269D01* +X148892706Y-108007778D01* +X148888843Y-108011641D01* +X148865043Y-108027543D01* +X148842830Y-108060788D01* +X148837000Y-108090101D01* +X148837000Y-108409896D01* +X148841383Y-108431934D01* +X148842831Y-108439213D01* +X148865043Y-108472457D01* +X148898287Y-108494669D01* +X148927601Y-108500500D01* +X149923000Y-108500499D01* +X149932899Y-108504599D01* +X149937000Y-108514499D01* +X149937000Y-108556000D01* +X149932899Y-108565899D01* +X149923000Y-108570000D01* +X149455000Y-108570000D01* +X149455000Y-108753500D01* +X149450899Y-108763399D01* +X149441000Y-108767500D01* +X148907501Y-108767500D01* +X148907501Y-108902952D01* +X148909239Y-108911705D01* +X148915871Y-108921630D01* +X148925792Y-108928259D01* +X148927069Y-108928788D01* +X148926815Y-108929400D01* +X148933725Y-108934003D01* +X148935831Y-108944509D01* +X148929891Y-108953427D01* +X148922009Y-108955798D01* +X148714679Y-108954513D01* +X148708410Y-108952987D01* +X148609971Y-108902831D01* +X148609972Y-108902831D01* +X148499059Y-108885264D01* +X148388146Y-108902831D01* +X148288090Y-108953811D01* +X148208687Y-109033214D01* +X148157707Y-109133270D01* +X148140140Y-109244183D01* +X148157707Y-109355095D01* +X148208687Y-109455151D01* +X148288090Y-109534554D01* +X148288092Y-109534555D01* +X148388147Y-109585535D01* +X148499059Y-109603102D01* +X148609971Y-109585535D01* +X148703225Y-109538018D01* +X148709666Y-109536493D01* +X148832450Y-109537254D01* +X148842323Y-109541416D01* +X148846362Y-109551341D01* +X148844005Y-109559029D01* +X148842830Y-109560787D01* +X148837000Y-109590101D01* +X148837000Y-109909896D01* +X148837001Y-109909899D01* +X148842831Y-109939213D01* +X148865043Y-109972457D01* +X148888498Y-109988128D01* +X148888843Y-109988359D01* +X148894796Y-109997269D01* +X148892706Y-110007778D01* +X148888843Y-110011641D01* +X148865043Y-110027543D01* +X148842830Y-110060788D01* +X148837000Y-110090101D01* +X148837000Y-110409896D01* +X148837001Y-110409899D01* +X148842831Y-110439213D01* +X148865043Y-110472457D01* +X148898287Y-110494669D01* +X148927601Y-110500500D01* +X149947398Y-110500499D01* +X149976713Y-110494669D01* +X150009957Y-110472457D01* +X150032169Y-110439213D01* +X150038000Y-110409899D01* +X150037999Y-110090102D01* +X150032169Y-110060787D01* +X150009957Y-110027543D01* +X149986155Y-110011639D01* +X149980203Y-110002732D01* +X149982293Y-109992222D01* +X149986154Y-109988360D01* +X150009957Y-109972457D01* +X150032169Y-109939213D01* +X150038000Y-109909899D01* +X150037999Y-109590102D01* +X150032169Y-109560787D01* +X150009957Y-109527543D01* +X149986154Y-109511639D01* +X149980202Y-109502731D01* +X149982292Y-109492221D01* +X149986149Y-109488363D01* +X149998930Y-109479823D01* +X150005112Y-109477557D01* +X150048695Y-109472569D01* +X150064337Y-109470780D01* +X150179482Y-109432280D01* +X150284194Y-109370830D01* +X150373957Y-109289080D01* +X150444902Y-109190553D01* +X150493969Y-109079499D01* +X150519043Y-108960705D01* +X150519000Y-108900000D01* +X150519000Y-108848689D01* +X150519000Y-108848688D01* +X150519000Y-107599652D01* +X150519043Y-107539295D01* +X150493969Y-107420501D01* +X150444902Y-107309447D01* +X150373957Y-107210920D01* +X150284194Y-107129170D01* +X150284192Y-107129168D01* +X150284189Y-107129166D01* +X150179480Y-107067719D01* +X150179479Y-107067718D01* +X150064339Y-107029220D01* +X150064336Y-107029219D01* +X150005115Y-107022442D01* +X149998929Y-107020174D01* +X149986156Y-107011640D01* +X149980203Y-107002731D01* +X149982293Y-106992221D01* +X149986154Y-106988360D01* +X150009957Y-106972457D01* +X150032169Y-106939213D01* +X150038000Y-106909899D01* +X150037999Y-106590102D01* +X150032169Y-106560787D01* +X150009957Y-106527543D01* +X149986155Y-106511639D01* +X149980203Y-106502732D01* +X149982293Y-106492222D01* +X149986154Y-106488360D01* +X150009957Y-106472457D01* +X150032169Y-106439213D01* +X150038000Y-106409899D01* +X150037999Y-106090102D01* +X150032169Y-106060787D01* +X150009957Y-106027543D01* +X149986155Y-106011639D01* +X149980203Y-106002732D01* +X149982293Y-105992222D01* +X149986154Y-105988360D01* +X150009957Y-105972457D01* +X150032169Y-105939213D01* +X150038000Y-105909899D01* +X150037999Y-105590102D01* +X150032169Y-105560787D01* +X150009957Y-105527543D01* +X149976713Y-105505331D01* +X149976712Y-105505330D01* +X149976711Y-105505330D01* +X149954676Y-105500947D01* +X149947399Y-105499500D01* +X149947398Y-105499500D01* +X148927603Y-105499500D01* +X148898287Y-105505331D01* +X148865041Y-105527544D01* +X148856240Y-105540716D01* +X148847331Y-105546669D01* +X148843265Y-105546874D01* +X148827628Y-105545376D01* +X148818165Y-105540350D01* +X148816489Y-105537796D01* +X148796977Y-105499501D01* +X148770357Y-105447254D01* +X148770356Y-105447252D01* +X148690953Y-105367849D01* +X148590897Y-105316869D01* +X148590898Y-105316869D01* +X148479985Y-105299302D01* +X148369072Y-105316869D01* +X148269016Y-105367849D01* +X148189613Y-105447252D01* +X148138633Y-105547308D01* +X148121066Y-105658221D01* +X148138633Y-105769133D01* +X148189613Y-105869189D01* +X148269016Y-105948592D01* +X148269018Y-105948593D01* +X148369073Y-105999573D01* +X148479985Y-106017140D01* +X148590897Y-105999573D01* +X148690952Y-105948593D01* +X148770357Y-105869188D01* +X148783989Y-105842430D01* +X148792136Y-105835471D01* +X148797798Y-105834850D01* +X148824336Y-105837394D01* +X148833799Y-105842420D01* +X148837000Y-105851330D01* +X148837000Y-105909896D01* +X148837001Y-105909899D01* +X148842831Y-105939213D01* +X148865043Y-105972457D01* +X148888498Y-105988128D01* +X148888843Y-105988359D01* +X148894796Y-105997269D01* +X148892706Y-106007778D01* +X148888843Y-106011641D01* +X148865043Y-106027543D01* +X148842830Y-106060788D01* +X148837000Y-106090101D01* +X148837000Y-106198803D01* +X148832899Y-106208702D01* +X148825486Y-106212581D01* +X148682041Y-106238464D01* +X148671571Y-106236186D01* +X148667081Y-106231041D01* +X148666801Y-106230493D01* +X148666801Y-106230492D01* +X148587397Y-106151088D01* +X148487341Y-106100108D01* +X148487342Y-106100108D01* +X148376429Y-106082541D01* +X148265516Y-106100108D01* +X148165460Y-106151088D01* +X148086057Y-106230491D01* +X148035077Y-106330547D01* +X148017510Y-106441460D01* +X148035077Y-106552372D01* +X148086057Y-106652428D01* +X148165460Y-106731831D01* +X148165462Y-106731832D01* +X148265517Y-106782812D01* +X148376429Y-106800379D01* +X148487341Y-106782812D01* +X148587396Y-106731832D01* +X148666801Y-106652427D01* +X148717781Y-106552372D01* +X148720245Y-106536811D01* +X148725844Y-106527676D01* +X148731587Y-106525225D01* +X148853252Y-106503271D01* +X148863722Y-106505548D01* +X148869515Y-106514562D01* +X148867238Y-106525032D01* +X148865641Y-106526944D01* +X148865045Y-106527540D01* +X148842830Y-106560788D01* +X148837000Y-106590101D01* +X148837000Y-106817811D01* +X148832899Y-106827710D01* +X148828074Y-106830859D01* +X148814367Y-106836189D01* +X148814361Y-106836193D01* +X148812661Y-106837438D01* +X148810510Y-106838734D01* +X148799813Y-106843934D01* +X148799811Y-106843935D01* +X148789463Y-106850053D01* +X148787201Y-106851130D01* +X148785251Y-106851852D01* +X148785245Y-106851855D01* +X148768905Y-106863425D01* +X148741364Y-106882913D01* +X148741273Y-106882993D01* +X147778467Y-107564824D01* +X147768018Y-107567199D01* +X147762601Y-107565041D01* +X147731403Y-107544196D01* +X147731402Y-107544195D01* +X147731401Y-107544195D01* +X147706764Y-107539295D01* +X147702089Y-107538365D01* +X147702088Y-107538365D01* +X147302015Y-107538365D01* +X147272699Y-107544196D01* +X147239455Y-107566408D01* +X147217243Y-107599652D01* +X147211412Y-107628966D01* +X147211412Y-108248761D01* +X146801087Y-108248761D01* +X146802468Y-108241820D01* +X146802468Y-107956365D01* +X146599829Y-107956365D01* +X146564829Y-107956365D01* +X146362191Y-107956365D01* +X144924050Y-107956365D01* +X144918926Y-107931055D01* +X144918925Y-107931054D01* +X144918925Y-107931051D01* +X144914835Y-107921365D01* +X146362190Y-107921365D01* +X146564829Y-107921365D01* +X146564829Y-107608865D01* +X146599829Y-107608865D01* +X146599829Y-107921365D01* +X146802467Y-107921365D01* +X146802467Y-107635912D01* +X146800728Y-107627159D01* +X146794096Y-107617234D01* +X146784174Y-107610605D01* +X146775424Y-107608865D01* +X146599829Y-107608865D01* +X146564829Y-107608865D01* +X146389237Y-107608865D01* +X146380484Y-107610604D01* +X146370559Y-107617236D01* +X146363930Y-107627157D01* +X146363930Y-107627159D01* +X146362190Y-107635909D01* +X146362190Y-107921365D01* +X144914835Y-107921365D01* +X144866642Y-107807232D01* +X144866640Y-107807228D01* +X144790822Y-107696241D01* +X144790820Y-107696239D01* +X144694491Y-107602509D01* +X144636285Y-107565040D01* +X144581469Y-107529753D01* +X144581468Y-107529752D01* +X144581464Y-107529750D01* +X144519004Y-107505474D01* +X144497985Y-107497269D01* +X144491325Y-107494669D01* +X144487893Y-107493329D01* +X144487892Y-107493329D01* +X144486676Y-107492854D01* +X144486675Y-107492854D01* +X144416453Y-107465441D01* +X144191887Y-107377775D01* +X142422489Y-106687040D01* +X142414758Y-106679621D01* +X142414539Y-106668908D01* +X142421958Y-106661177D01* +X142427580Y-106659999D01* +X143257500Y-106659999D01* +X143257500Y-106147500D01* +X143292500Y-106147500D01* +X143292500Y-106659999D01* +X144277952Y-106659999D01* +X144286705Y-106658260D01* +X144296630Y-106651628D01* +X144303259Y-106641707D01* +X144303259Y-106641705D01* +X144305000Y-106632955D01* +X144305000Y-106147500D01* +X143292500Y-106147500D01* +X143257500Y-106147500D01* +X142245001Y-106147500D01* +X142245000Y-106465851D01* +X142240899Y-106475751D01* +X142231000Y-106479851D01* +X142221100Y-106475750D01* +X142217838Y-106470619D01* +X142088203Y-106112500D01* +X142245000Y-106112500D01* +X143257500Y-106112500D01* +X143257500Y-105600000D01* +X143292500Y-105600000D01* +X143292500Y-106112500D01* +X144304999Y-106112500D01* +X144304999Y-105627047D01* +X144303260Y-105618294D01* +X144296628Y-105608369D01* +X144286706Y-105601740D01* +X144277956Y-105600000D01* +X143292500Y-105600000D01* +X143257500Y-105600000D01* +X142272047Y-105600000D01* +X142263294Y-105601739D01* +X142253369Y-105608371D01* +X142246740Y-105618292D01* +X142246740Y-105618294D01* +X142245000Y-105627044D01* +X142245000Y-106112500D01* +X142088203Y-106112500D01* +X141782324Y-105267500D01* +X148907501Y-105267500D01* +X148907501Y-105402952D01* +X148909239Y-105411705D01* +X148915871Y-105421630D01* +X148925793Y-105428259D01* +X148934544Y-105429999D01* +X149420000Y-105429999D01* +X149420000Y-105267500D01* +X149455000Y-105267500D01* +X149455000Y-105429999D01* +X149940452Y-105429999D01* +X149949205Y-105428260D01* +X149959130Y-105421628D01* +X149965759Y-105411707D01* +X149965759Y-105411705D01* +X149967500Y-105402955D01* +X149967500Y-105267500D01* +X149455000Y-105267500D01* +X149420000Y-105267500D01* +X148907501Y-105267500D01* +X141782324Y-105267500D01* +X141769654Y-105232500D01* +X148907500Y-105232500D01* +X149420000Y-105232500D01* +X149420000Y-105070000D01* +X149455000Y-105070000D01* +X149455000Y-105232500D01* +X149967499Y-105232500D01* +X149967499Y-105097047D01* +X149965760Y-105088294D01* +X149959128Y-105078369D01* +X149949206Y-105071740D01* +X149940456Y-105070000D01* +X149455000Y-105070000D01* +X149420000Y-105070000D01* +X148934547Y-105070000D01* +X148925794Y-105071739D01* +X148915869Y-105078371D01* +X148909240Y-105088292D01* +X148909240Y-105088294D01* +X148907500Y-105097044D01* +X148907500Y-105232500D01* +X141769654Y-105232500D01* +X141483685Y-104442500D01* +X149706501Y-104442500D01* +X149706501Y-104677952D01* +X149708239Y-104686705D01* +X149714871Y-104696630D01* +X149724793Y-104703259D01* +X149733544Y-104704999D01* +X150319000Y-104704999D01* +X150319000Y-104442500D01* +X149706501Y-104442500D01* +X141483685Y-104442500D01* +X141471015Y-104407500D01* +X149706500Y-104407500D01* +X150319000Y-104407500D01* +X150319000Y-104145000D01* +X149733547Y-104145000D01* +X149724794Y-104146739D01* +X149714869Y-104153371D01* +X149708240Y-104163292D01* +X149708240Y-104163294D01* +X149706500Y-104172044D01* +X149706500Y-104407500D01* +X141471015Y-104407500D01* +X140527666Y-101801473D01* +X140528152Y-101790772D01* +X140530928Y-101786814D01* +X140568151Y-101749593D01* +X140619131Y-101649538D01* +X140636698Y-101538626D01* +X140619131Y-101427714D01* +X140568151Y-101327659D01* +X140568150Y-101327657D01* +X140488747Y-101248254D01* +X140388691Y-101197274D01* +X140388692Y-101197274D01* +X140277779Y-101179707D01* +X140166866Y-101197274D01* +X140066810Y-101248254D01* +X139987407Y-101327657D01* +X139936427Y-101427713D01* +X139918860Y-101538626D01* +X139936427Y-101649538D01* +X139987407Y-101749594D01* +X140066810Y-101828997D01* +X140066812Y-101828998D01* +X140166867Y-101879978D01* +X140243292Y-101892082D01* +X140252428Y-101897681D01* +X140254266Y-101901145D01* +X141015856Y-104005058D01* +X141015370Y-104015762D01* +X141007457Y-104022987D01* +X140996753Y-104022501D01* +X140993867Y-104020691D01* +X140921556Y-103961912D01* +X140921554Y-103961911D01* +X140921552Y-103961909D01* +X140904059Y-103952081D01* +X140897229Y-103948243D01* +X140897000Y-103948094D01* +X140877282Y-103937039D01* +X140849824Y-103921639D01* +X140849782Y-103921620D01* +X140525749Y-103739943D01* +X140519120Y-103731525D01* +X140518768Y-103725545D01* +X140522252Y-103703554D01* +X140504685Y-103592642D01* +X140453705Y-103492587D01* +X140453704Y-103492585D01* +X140374301Y-103413182D01* +X140274245Y-103362202D01* +X140274246Y-103362202D01* +X140163333Y-103344635D01* +X140052420Y-103362202D01* +X139952364Y-103413182D01* +X139872961Y-103492585D01* +X139821981Y-103592641D01* +X139804414Y-103703554D01* +X139821981Y-103814466D01* +X139872961Y-103914522D01* +X139952364Y-103993925D01* +X139952366Y-103993926D01* +X140052421Y-104044906D01* +X140163333Y-104062473D01* +X140274245Y-104044906D01* +X140372561Y-103994811D01* +X140383242Y-103993971D01* +X140385764Y-103995074D01* +X140496510Y-104057167D01* +X140503138Y-104065584D01* +X140501874Y-104076225D01* +X140496018Y-104081852D01* +X140397864Y-104131863D01* +X140318461Y-104211266D01* +X140267481Y-104311322D01* +X140249914Y-104422235D01* +X140267481Y-104533147D01* +X140318461Y-104633203D01* +X140397864Y-104712606D01* +X140397866Y-104712607D01* +X140497921Y-104763587D01* +X140608833Y-104781154D01* +X140611431Y-104780742D01* +X140621849Y-104783241D01* +X140626195Y-104788410D01* +X141658259Y-106895150D01* +X141658260Y-106895152D01* +X141660935Y-106900612D01* +X141681454Y-106942498D01* +X141681532Y-106942635D01* +X141688638Y-106957121D01* +X141700370Y-106981042D01* +X141700378Y-106981056D01* +X141775099Y-107081142D01* +X141775100Y-107081142D01* +X141775103Y-107081146D01* +X141867033Y-107165717D01* +X141973002Y-107231853D01* +X141973004Y-107231854D01* +X141973006Y-107231855D01* +X142012836Y-107247425D01* +X142012967Y-107247486D01* +X142013322Y-107247624D01* +X142013327Y-107247628D01* +X142046290Y-107260496D01* +X142062107Y-107266671D01* +X142062107Y-107266670D01* +X142068986Y-107269356D01* +X142068991Y-107269357D01* +X142758084Y-107538365D01* +X143946913Y-108002459D01* +X143954644Y-108009878D01* +X143954863Y-108020591D01* +X143947444Y-108028322D01* +X143941822Y-108029500D01* +X142539193Y-108029500D01* +X142532132Y-108027589D01* +X142532053Y-108027543D01* +X133325221Y-102649839D01* +X133318742Y-102641306D01* +X133318455Y-102635561D01* +X133322923Y-102607356D01* +X133305356Y-102496444D01* +X133254376Y-102396389D01* +X133254375Y-102396387D01* +X133174972Y-102316984D01* +X133151128Y-102304835D01* +X133144169Y-102296687D01* +X133145010Y-102286005D01* +X133153158Y-102279046D01* +X133153593Y-102278913D01* +X140653488Y-100129511D01* +X140653492Y-100129511D01* +X140657155Y-100128460D01* +X140657156Y-100128461D01* +X140668000Y-100125352D01* +X140695398Y-100117500D01* +X140695398Y-100117499D01* +X140744879Y-100103325D01* +X140744878Y-100103325D01* +X140744881Y-100103324D01* +X140771438Y-100093689D01* +X140854011Y-100063736D01* +X140854010Y-100063736D01* +X140854013Y-100063735D01* +X140918263Y-100035281D01* +X140960166Y-100016725D01* +X140960165Y-100016725D01* +X141011490Y-99989622D01* +X141040857Y-99974117D01* +X141040857Y-99974116D01* +X141044297Y-99972300D01* +X141044298Y-99972299D01* +X142222109Y-99350439D01* +X142446209Y-99232119D01* +X142452746Y-99230499D01* +X144191345Y-99230499D01* +X144201244Y-99234600D01* +X144205345Y-99244499D01* +X144203435Y-99251558D01* +X144133018Y-99372145D01* +X143461225Y-100522560D01* +X143452692Y-100529041D01* +X143449135Y-100529500D01* +X142265103Y-100529500D01* +X142235787Y-100535331D01* +X142202543Y-100557543D01* +X142180330Y-100590788D01* +X142174500Y-100620101D01* +X142174500Y-101639896D01* +X142176418Y-101649538D01* +X142180331Y-101669213D01* +X142202543Y-101702457D01* +X142235787Y-101724669D01* +X142265101Y-101730500D01* +X144191344Y-101730499D01* +X144201243Y-101734599D01* +X144205344Y-101744499D01* +X144203434Y-101751559D01* +X143461225Y-103022560D01* +X143452692Y-103029041D01* +X143449135Y-103029500D01* +X142265103Y-103029500D01* +X142235787Y-103035331D01* +X142202543Y-103057543D01* +X142180330Y-103090788D01* +X142174500Y-103120101D01* +X142174500Y-104139896D01* +X142176232Y-104148604D01* +X142180331Y-104169213D01* +X142202543Y-104202457D01* +X142235787Y-104224669D01* +X142265101Y-104230500D01* +X144284898Y-104230499D01* +X144314213Y-104224669D01* +X144347457Y-104202457D01* +X144369669Y-104169213D01* +X144375500Y-104139899D01* +X144375499Y-103120102D01* +X144369669Y-103090787D01* +X144347457Y-103057543D01* +X144314213Y-103035331D01* +X144314212Y-103035330D01* +X144314211Y-103035330D01* +X144284899Y-103029500D01* +X143818545Y-103029500D01* +X143808646Y-103025399D01* +X143804545Y-103015500D01* +X143806455Y-103008440D01* +X143816039Y-102992028D01* +X144535520Y-101759949D01* +X144535521Y-101759944D01* +X144535953Y-101759205D01* +X144536032Y-101759045D01* +X144536916Y-101757531D01* +X144553105Y-101716731D01* +X144562979Y-101673961D01* +X144563112Y-101672220D01* +X144563137Y-101672050D01* +X144563203Y-101671180D01* +X144563204Y-101671179D01* +X144563712Y-101664507D01* +X144564661Y-101652078D01* +X144565641Y-101639197D01* +X144567184Y-101618965D01* +X144567183Y-101618964D01* +X144654613Y-100471884D01* +X144755329Y-99150525D01* +X144755370Y-99150132D01* +X144755500Y-99149156D01* +X144755500Y-99148543D01* +X144755519Y-99148030D01* +X144755566Y-99147417D01* +X144755564Y-99147410D01* +X144755510Y-99146402D01* +X144755500Y-99146020D01* +X144755500Y-98066744D01* +X144755500Y-98066741D01* +X144722755Y-97944534D01* +X144671881Y-97856417D01* +X144659497Y-97834967D01* +X144659495Y-97834964D01* +X144570035Y-97745504D01* +X144570032Y-97745502D01* +X144460470Y-97682247D01* +X144460468Y-97682246D01* +X144460466Y-97682245D01* +X144338259Y-97649500D01* +X144294156Y-97649500D01* +X142255844Y-97649500D01* +X142255600Y-97649500D01* +X142255167Y-97649528D01* +X142215952Y-97649585D01* +X142101382Y-97678180D01* +X142101375Y-97678183D01* +X141997141Y-97733669D01* +X141997132Y-97733675D01* +X141909438Y-97812747D01* +X141909433Y-97812754D01* +X141887484Y-97845258D01* +X141887212Y-97845611D01* +X141346286Y-98649205D01* +X141337356Y-98655127D01* +X141326854Y-98653001D01* +X141320932Y-98644071D01* +X141320815Y-98639394D01* +X141333267Y-98552793D01* +X141323231Y-98342098D01* +X141316008Y-98312326D01* +X141273501Y-98137111D01* +X141273501Y-98137110D01* +X141185876Y-97945238D01* +X141063522Y-97773416D01* +X140910862Y-97627855D01* +X140733413Y-97513816D01* +X140723441Y-97509824D01* +X140537589Y-97435420D01* +X140330467Y-97395500D01* +X140172387Y-97395500D01* +X140034691Y-97408648D01* +X140015020Y-97410527D01* +X140015015Y-97410528D01* +X139812636Y-97469951D01* +X139812632Y-97469953D01* +X139625145Y-97566609D01* +X139459337Y-97697003D01* +X139459335Y-97697005D01* +X139321208Y-97856412D01* +X139321204Y-97856417D01* +X139215743Y-98039082D01* +X139215740Y-98039089D01* +X139146751Y-98238420D01* +X139136126Y-98312326D01* +X139116733Y-98447207D01* +X139116733Y-98447211D01* +X139116733Y-98447213D01* +X139126769Y-98657903D01* +X139126770Y-98657911D01* +X139176498Y-98862888D01* +X139176499Y-98862890D01* +X139264124Y-99054762D01* +X139386478Y-99226584D01* +X139539138Y-99372145D01* +X139716587Y-99486184D01* +X139800109Y-99519621D01* +X139807776Y-99527107D01* +X139807903Y-99537821D01* +X139800417Y-99545488D01* +X139795899Y-99546583D01* +X138393333Y-99646348D01* +X138383168Y-99642960D01* +X138379866Y-99638739D01* +X138362225Y-99604115D01* +X138282822Y-99524712D01* +X138182766Y-99473732D01* +X138182767Y-99473732D01* +X138071854Y-99456165D01* +X137960941Y-99473732D01* +X137860885Y-99524712D01* +X137781482Y-99604115D01* +X137730502Y-99704171D01* +X137712935Y-99815084D01* +X137730502Y-99925996D01* +X137781482Y-100026052D01* +X137860885Y-100105455D01* +X137860887Y-100105456D01* +X137960942Y-100156436D01* +X138071854Y-100174003D01* +X138182766Y-100156436D01* +X138282821Y-100105456D01* +X138362226Y-100026051D01* +X138403971Y-99944117D01* +X138412119Y-99937159D01* +X138415445Y-99936510D01* +X139832074Y-99835744D01* +X139842239Y-99839132D01* +X139847032Y-99848716D01* +X139843644Y-99858881D01* +X139836924Y-99863167D01* +X132740473Y-101896945D01* +X132740234Y-101897049D01* +X132739394Y-101897350D01* +X132687571Y-101912270D01* +X132687562Y-101912274D01* +X132555712Y-101980567D01* +X132555711Y-101980567D01* +X132439940Y-102073565D01* +X132439937Y-102073568D01* +X132344821Y-102187596D01* +X132274101Y-102318165D01* +X132274100Y-102318167D01* +X132230563Y-102460132D01* +X132230563Y-102460134D01* +X132215979Y-102607356D01* +X132215924Y-102607910D01* +X124700500Y-102607910D01* +X124700500Y-97390183D01* +X148641691Y-97390183D01* +X148651838Y-97629034D01* +X148651838Y-97629040D01* +X148651839Y-97629042D01* +X148666485Y-97697000D01* +X148702209Y-97862762D01* +X148791348Y-98084593D01* +X148791350Y-98084596D01* +X148916695Y-98288171D01* +X148916706Y-98288186D01* +X148998636Y-98381276D01* +X149074658Y-98467653D01* +X149260672Y-98617849D01* +X149469393Y-98734448D01* +X149694817Y-98814095D01* +X149930459Y-98854500D01* +X149930462Y-98854500D01* +X150109667Y-98854500D01* +X150145984Y-98851408D01* +X150288220Y-98839303D01* +X150519587Y-98779059D01* +X150737444Y-98680581D01* +X150935525Y-98546702D01* +X151108131Y-98381273D01* +X151250297Y-98189052D01* +X151357932Y-97975570D01* +X151427940Y-97746969D01* +X151458308Y-97509824D01* +X151456614Y-97469953D01* +X151450595Y-97328259D01* +X151448161Y-97270958D01* +X151397792Y-97037243D01* +X151397790Y-97037237D01* +X151308651Y-96815406D01* +X151308649Y-96815403D01* +X151183304Y-96611828D01* +X151183293Y-96611813D01* +X151025343Y-96432348D01* +X151025342Y-96432347D01* +X150839328Y-96282151D01* +X150630607Y-96165552D01* +X150504345Y-96120941D01* +X150405184Y-96085905D01* +X150346272Y-96075803D01* +X150169541Y-96045500D01* +X149990336Y-96045500D01* +X149990333Y-96045500D01* +X149811779Y-96060697D01* +X149811774Y-96060698D01* +X149580412Y-96120941D01* +X149580410Y-96120942D01* +X149362561Y-96219416D01* +X149362553Y-96219421D01* +X149164470Y-96353301D01* +X148991872Y-96518723D01* +X148991869Y-96518726D01* +X148849704Y-96710944D01* +X148742069Y-96924426D01* +X148742066Y-96924433D01* +X148672060Y-97153027D01* +X148672060Y-97153028D01* +X148641691Y-97390183D01* +X124700500Y-97390183D01* +X124700500Y-96567500D01* +X139795001Y-96567500D01* +X139795001Y-97302952D01* +X139796739Y-97311705D01* +X139803371Y-97321630D01* +X139813293Y-97328259D01* +X139822044Y-97329999D01* +X141207500Y-97329999D01* +X141207500Y-96567500D01* +X141242500Y-96567500D01* +X141242500Y-97329999D01* +X142627952Y-97329999D01* +X142636705Y-97328260D01* +X142646630Y-97321628D01* +X142653259Y-97311707D01* +X142653259Y-97311705D01* +X142655000Y-97302955D01* +X142655000Y-96567500D01* +X141242500Y-96567500D01* +X141207500Y-96567500D01* +X139795001Y-96567500D01* +X124700500Y-96567500D01* +X124700500Y-96532500D01* +X139795000Y-96532500D01* +X141207500Y-96532500D01* +X141207500Y-95770000D01* +X141242500Y-95770000D01* +X141242500Y-96532500D01* +X142654999Y-96532500D01* +X142654999Y-95797047D01* +X142653260Y-95788294D01* +X142646628Y-95778369D01* +X142636706Y-95771740D01* +X142627956Y-95770000D01* +X141242500Y-95770000D01* +X141207500Y-95770000D01* +X139822047Y-95770000D01* +X139813294Y-95771739D01* +X139803369Y-95778371D01* +X139796740Y-95788292D01* +X139796740Y-95788294D01* +X139795000Y-95797044D01* +X139795000Y-96532500D01* +X124700500Y-96532500D01* +X124700500Y-95102952D01* +X125295000Y-95102952D01* +X125296739Y-95111705D01* +X125303371Y-95121630D01* +X125313293Y-95128259D01* +X125322044Y-95129999D01* +X126707500Y-95129999D01* +X126707500Y-94367500D01* +X126742500Y-94367500D01* +X126742500Y-95129999D01* +X128127952Y-95129999D01* +X128136705Y-95128260D01* +X128146630Y-95121628D01* +X128153259Y-95111707D01* +X128153259Y-95111705D01* +X128155000Y-95102955D01* +X128155000Y-94367500D01* +X126742500Y-94367500D01* +X126707500Y-94367500D01* +X125295001Y-94367500D01* +X125295000Y-95102952D01* +X124700500Y-95102952D01* +X124700500Y-94332500D01* +X125295000Y-94332500D01* +X126707500Y-94332500D01* +X126707500Y-93570000D01* +X126742500Y-93570000D01* +X126742500Y-94332500D01* +X128154999Y-94332500D01* +X128154999Y-93597047D01* +X128153260Y-93588294D01* +X128146628Y-93578369D01* +X128136706Y-93571740D01* +X128127956Y-93570000D01* +X126742500Y-93570000D01* +X126707500Y-93570000D01* +X125322047Y-93570000D01* +X125313294Y-93571739D01* +X125303369Y-93578371D01* +X125296740Y-93588292D01* +X125296740Y-93588294D01* +X125295000Y-93597044D01* +X125295000Y-94332500D01* +X124700500Y-94332500D01* +X124700500Y-93214500D01* +X124704601Y-93204601D01* +X124714500Y-93200500D01* +X149285500Y-93200500D01* +X149295399Y-93204601D01* +G37* +%TD.AperFunction*% +%TD*% +M02* diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-CuTop.gbr b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-CuTop.gbr new file mode 100644 index 0000000..ce653c9 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-CuTop.gbr @@ -0,0 +1,5101 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,7.0.6*% +%TF.CreationDate,2023-07-11T12:05:29-07:00*% +%TF.ProjectId,jitx-design,6a697478-2d64-4657-9369-676e2e6b6963,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Copper,L1,Top*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 7.0.6) date 2023-07-11 12:05:29* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%TA.AperFunction,SMDPad,CuDef*% +%ADD10R,0.566000X0.540000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD11R,0.600000X0.372778*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD12R,0.417778X0.600000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD13R,1.064000X2.218000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD14R,5.554000X5.204000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD15R,0.380278X0.600000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD16C,2.000000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD17R,0.367778X0.600000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD18R,1.200000X1.400000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD19R,0.600000X0.380278*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD20O,0.588000X2.045000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD21R,0.600000X0.417778*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD22R,0.600000X0.430278*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD23R,0.512132X0.950000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD24R,0.890000X0.280000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD25R,0.280000X0.890000*% +%TD*% +%TA.AperFunction,SMDPad,CuDef*% +%ADD26R,4.100000X4.100000*% +%TD*% +%TA.AperFunction,ViaPad*% +%ADD27C,0.460000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD28C,0.090000*% +%TD*% +%TA.AperFunction,Conductor*% +%ADD29C,0.381000*% +%TD*% +G04 APERTURE END LIST* +D10* +%TO.P,R8,1,1*% +%TO.N,Net-(U5-LED)*% +X140693658Y-106840852D03* +%TO.P,R8,2,2*% +%TO.N,Net-(LED1-a)*% +X141559658Y-106840852D03* +%TD*% +D11* +%TO.P,R5,1,1*% +%TO.N,Net-(U5-RBIAS)*% +X138129245Y-109574220D03* +%TO.P,R5,2,2*% +%TO.N,gnd*% +X138129245Y-110486442D03* +%TD*% +D12* +%TO.P,C3,1,1*% +%TO.N,gnd*% +X143060672Y-110835572D03* +%TO.P,C3,2,2*% +%TO.N,vdd33*% +X142103450Y-110835572D03* +%TD*% +D13* +%TO.P,U3,1,VCC*% +%TO.N,vdd50*% +X146659619Y-113037221D03* +D14* +%TO.P,U3,2,FIN*% +%TO.N,gnd*% +X144360619Y-119734221D03* +D13* +%TO.P,U3,3,VOUT*% +%TO.N,vdd33*% +X142060619Y-113037221D03* +%TD*% +D15* +%TO.P,R7,1,1*% +%TO.N,Net-(U5-XTAL1_CLKIN)*% +X134176631Y-114068215D03* +%TO.P,R7,2,2*% +%TO.N,Net-(U5-XTAL2)*% +X133256909Y-114068215D03* +%TD*% +D16* +%TO.P,U6,tp,p*% +%TO.N,vdd33*% +X126859670Y-98770685D03* +%TD*% +D17* +%TO.P,R6,1,1*% +%TO.N,Net-(U5-RESET_N)*% +X134502123Y-97122587D03* +%TO.P,R6,2,2*% +%TO.N,vdd33*% +X135409345Y-97122587D03* +%TD*% +D18* +%TO.P,X1,1,IN*% +%TO.N,Net-(U5-XTAL1_CLKIN)*% +X135973506Y-112346485D03* +%TO.P,X1,2,GND0*% +%TO.N,gnd*% +X135973506Y-110146485D03* +%TO.P,X1,3,OUT*% +%TO.N,Net-(U5-XTAL2)*% +X134273506Y-110146485D03* +%TO.P,X1,4,GND1*% +%TO.N,gnd*% +X134273506Y-112346485D03* +%TD*% +D16* +%TO.P,U8,tp,p*% +%TO.N,RXD_SDA*% +X129640552Y-96501199D03* +%TD*% +D12* +%TO.P,C8,1,1*% +%TO.N,gnd*% +X137486311Y-97138773D03* +%TO.P,C8,2,2*% +%TO.N,vdd33*% +X136529089Y-97138773D03* +%TD*% +D19* +%TO.P,R1,1,1*% +%TO.N,gnd*% +X148106609Y-101082516D03* +%TO.P,R1,2,2*% +%TO.N,Net-(USB1-GND0)*% +X148106609Y-102002238D03* +%TD*% +D20* +%TO.P,U4,1,NC*% +%TO.N,unconnected-(U4-NC-Pad1)*% +X126467171Y-121212230D03* +%TO.P,U4,2,E1*% +%TO.N,unconnected-(U4-E1-Pad2)*% +X127737171Y-121212230D03* +%TO.P,U4,3,E2*% +%TO.N,unconnected-(U4-E2-Pad3)*% +X129007171Y-121212230D03* +%TO.P,U4,4,VSS*% +%TO.N,gnd*% +X130277171Y-121212230D03* +%TO.P,U4,5,SDA*% +%TO.N,RXD_SDA*% +X130277171Y-115667230D03* +%TO.P,U4,6,SCL*% +%TO.N,TXD_SCK_MS_SKT_SEL*% +X129007171Y-115667230D03* +%TO.P,U4,7,WC_NOT*% +%TO.N,Net-(U4-WC_NOT)*% +X127737171Y-115667230D03* +%TO.P,U4,8,VCC*% +%TO.N,vdd33*% +X126467171Y-115667230D03* +%TD*% +D21* +%TO.P,C6,1,1*% +%TO.N,gnd*% +X137482233Y-108498823D03* +%TO.P,C6,2,2*% +%TO.N,Net-(U5-VDD18PLL)*% +X137482233Y-107541601D03* +%TD*% +D12* +%TO.P,C4,1,1*% +%TO.N,gnd*% +X135731734Y-99695657D03* +%TO.P,C4,2,2*% +%TO.N,Net-(U5-RESET_N)*% +X134774512Y-99695657D03* +%TD*% +D21* +%TO.P,C1,1,1*% +%TO.N,Net-(USB1-GND2)*% +X148622184Y-114216203D03* +%TO.P,C1,2,2*% +%TO.N,gnd*% +X148622184Y-115173425D03* +%TD*% +D22* +%TO.P,C11,1,1*% +%TO.N,gnd*% +X132381115Y-100722671D03* +%TO.P,C11,2,2*% +%TO.N,Net-(Card1-VDD)*% +X132381115Y-101692393D03* +%TD*% +D12* +%TO.P,C7,1,1*% +%TO.N,gnd*% +X141652863Y-103134378D03* +%TO.P,C7,2,2*% +%TO.N,vdd33*% +X140695641Y-103134378D03* +%TD*% +%TO.P,C12,1,1*% +%TO.N,Net-(U5-XTAL1_CLKIN)*% +X137573127Y-112571302D03* +%TO.P,C12,2,2*% +%TO.N,gnd*% +X138530349Y-112571302D03* +%TD*% +D21* +%TO.P,C10,1,1*% +%TO.N,gnd*% +X138644942Y-108548873D03* +%TO.P,C10,2,2*% +%TO.N,vdd33*% +X138644942Y-107591651D03* +%TD*% +D23* +%TO.P,LED1,1,a*% +%TO.N,Net-(LED1-a)*% +X143607724Y-106840352D03* +%TO.P,LED1,2,c*% +%TO.N,gnd*% +X145045592Y-106840352D03* +%TD*% +D16* +%TO.P,U9,tp,p*% +%TO.N,TXD_SCK_MS_SKT_SEL*% +X129639143Y-98796163D03* +%TD*% +D21* +%TO.P,C5,1,1*% +%TO.N,gnd*% +X137089343Y-98689029D03* +%TO.P,C5,2,2*% +%TO.N,Net-(U5-VDD18)*% +X137089343Y-99646251D03* +%TD*% +D15* +%TO.P,R2,1,1*% +%TO.N,RXD_SDA*% +X125847533Y-110727391D03* +%TO.P,R2,2,2*% +%TO.N,vdd33*% +X126767255Y-110727391D03* +%TD*% +D12* +%TO.P,C9,1,1*% +%TO.N,gnd*% +X130884467Y-103715096D03* +%TO.P,C9,2,2*% +%TO.N,vdd33*% +X131841689Y-103715096D03* +%TD*% +%TO.P,C2,1,1*% +%TO.N,gnd*% +X145699373Y-110839534D03* +%TO.P,C2,2,2*% +%TO.N,vdd50*% +X146656595Y-110839534D03* +%TD*% +D15* +%TO.P,R4,1,1*% +%TO.N,Net-(U4-WC_NOT)*% +X128202801Y-106729721D03* +%TO.P,R4,2,2*% +%TO.N,vdd33*% +X129122523Y-106729721D03* +%TD*% +%TO.P,R3,1,1*% +%TO.N,TXD_SCK_MS_SKT_SEL*% +X126883250Y-108885762D03* +%TO.P,R3,2,2*% +%TO.N,vdd33*% +X127802972Y-108885762D03* +%TD*% +D24* +%TO.P,U5,1,LED*% +%TO.N,Net-(U5-LED)*% +X139405865Y-105604046D03* +%TO.P,U5,2,USB+*% +%TO.N,USB+*% +X139405865Y-105104046D03* +%TO.P,U5,3,USB-*% +%TO.N,USB-*% +X139405865Y-104604046D03* +%TO.P,U5,4,xD_D3_SD_D1_MS_D5*% +%TO.N,Net-(Card1-DAT1)*% +X139405865Y-104104046D03* +%TO.P,U5,5,xD_D2_SD_D0_MS_D4*% +%TO.N,Net-(Card1-DAT0)*% +X139405865Y-103604046D03* +%TO.P,U5,6,VDD330*% +%TO.N,vdd33*% +X139405865Y-103104046D03* +%TO.P,U5,7,xD_D1_SD_D7_MS_D6*% +%TO.N,unconnected-(U5-xD_D1_SD_D7_MS_D6-Pad7)*% +X139405865Y-102604046D03* +%TO.P,U5,8,xD_D0_SD_D6_MS_D7*% +%TO.N,unconnected-(U5-xD_D0_SD_D6_MS_D7-Pad8)*% +X139405865Y-102104046D03* +%TO.P,U5,9,xD_nWP_SD_CLK_MS_BS*% +%TO.N,Net-(Card1-CLK)*% +X139405865Y-101604046D03* +D25* +%TO.P,U5,10,xD_ALE_SD_D5_MS_D1*% +%TO.N,unconnected-(U5-xD_ALE_SD_D5_MS_D1-Pad10)*% +X138595865Y-100795046D03* +%TO.P,U5,11,xD_CLE_SD_CMD_MS_D0*% +%TO.N,Net-(Card1-CMD)*% +X138095865Y-100795046D03* +%TO.P,U5,12,xD_nWE*% +%TO.N,unconnected-(U5-xD_nWE-Pad12)*% +X137595865Y-100795046D03* +%TO.P,U5,13,VDD18*% +%TO.N,Net-(U5-VDD18)*% +X137095865Y-100795046D03* +%TO.P,U5,14,VDD331*% +%TO.N,vdd33*% +X136595865Y-100795046D03* +%TO.P,U5,15,xD_nCE*% +%TO.N,unconnected-(U5-xD_nCE-Pad15)*% +X136095865Y-100795046D03* +%TO.P,U5,16,xD_nRE*% +%TO.N,unconnected-(U5-xD_nRE-Pad16)*% +X135595865Y-100795046D03* +%TO.P,U5,17,xD_nB_R*% +%TO.N,unconnected-(U5-xD_nB_R-Pad17)*% +X135095865Y-100795046D03* +%TO.P,U5,18,RESET_N*% +%TO.N,Net-(U5-RESET_N)*% +X134595865Y-100795046D03* +D24* +%TO.P,U5,19,xD_nCD*% +%TO.N,unconnected-(U5-xD_nCD-Pad19)*% +X133785865Y-101604046D03* +%TO.P,U5,20,xD_D7_SD_D4_MS_D2*% +%TO.N,unconnected-(U5-xD_D7_SD_D4_MS_D2-Pad20)*% +X133785865Y-102104046D03* +%TO.P,U5,21,CRD_PWR*% +%TO.N,Net-(Card1-VDD)*% +X133785865Y-102604046D03* +%TO.P,U5,22,VDD332*% +%TO.N,vdd33*% +X133785865Y-103104046D03* +%TO.P,U5,23,xD_D6_SD_D3_MS_D3*% +%TO.N,Net-(Card1-CD_DAT3)*% +X133785865Y-103604046D03* +%TO.P,U5,24,MS_INS*% +%TO.N,unconnected-(U5-MS_INS-Pad24)*% +X133785865Y-104104046D03* +%TO.P,U5,25,xD_D5_SD_D2*% +%TO.N,Net-(Card1-DAT2)*% +X133785865Y-104604046D03* +%TO.P,U5,26,SD_nCD*% +%TO.N,Net-(Card1-CD)*% +X133785865Y-105104046D03* +%TO.P,U5,27,RXD_SDA*% +%TO.N,RXD_SDA*% +X133785865Y-105604046D03* +D25* +%TO.P,U5,28,TEST*% +%TO.N,gnd*% +X134595865Y-106414046D03* +%TO.P,U5,29,NC*% +%TO.N,unconnected-(U5-NC-Pad29)*% +X135095865Y-106414046D03* +%TO.P,U5,30,xD_D4_SD_WP_MS_SCLK*% +%TO.N,Net-(Card1-WP)*% +X135595865Y-106414046D03* +%TO.P,U5,31,TXD_SCK_MS_SKT_SEL*% +%TO.N,TXD_SCK_MS_SKT_SEL*% +X136095865Y-106414046D03* +%TO.P,U5,32,XTAL2*% +%TO.N,Net-(U5-XTAL2)*% +X136595865Y-106414046D03* +%TO.P,U5,33,XTAL1_CLKIN*% +%TO.N,Net-(U5-XTAL1_CLKIN)*% +X137095865Y-106414046D03* +%TO.P,U5,34,VDD18PLL*% +%TO.N,Net-(U5-VDD18PLL)*% +X137595865Y-106414046D03* +%TO.P,U5,35,RBIAS*% +%TO.N,Net-(U5-RBIAS)*% +X138095865Y-106414046D03* +%TO.P,U5,36,VDDA33*% +%TO.N,vdd33*% +X138595865Y-106414046D03* +D26* +%TO.P,U5,37,GND*% +%TO.N,gnd*% +X136595865Y-103604046D03* +%TD*% +D16* +%TO.P,U7,tp,p*% +%TO.N,gnd*% +X126853950Y-96515848D03* +%TD*% +D12* +%TO.P,C13,1,1*% +%TO.N,Net-(U5-XTAL2)*% +X134168661Y-108309522D03* +%TO.P,C13,2,2*% +%TO.N,gnd*% +X133211439Y-108309522D03* +%TD*% +D27* +%TO.N,Net-(USB1-GND0)*% +X148074784Y-103313947D03* +%TO.N,Net-(Card1-CD)*% +X132950211Y-105229456D03* +%TO.N,Net-(USB1-GND2)*% +X147864967Y-112698484D03* +%TO.N,Net-(Card1-WP)*% +X135623659Y-107175070D03* +%TO.N,gnd*% +X124968000Y-104902000D03* +X133604000Y-99060000D03* +X134620000Y-122174000D03* +X135636000Y-122174000D03* +X140970000Y-108458000D03* +X145862665Y-106835359D03* +X145034000Y-97536000D03* +X136906000Y-122174000D03* +X133604000Y-122174000D03* +X127254000Y-104648000D03* +X124968000Y-107950000D03* +X140208000Y-110744000D03* +X124968000Y-106934000D03* +X124968000Y-105918000D03* +X135382000Y-98298000D03* +X135128000Y-111252000D03* +X132080000Y-97282000D03* +X128016000Y-97790000D03* +X126238000Y-107442000D03* +%TO.N,Net-(Card1-CMD)*% +X138071854Y-99815084D03* +%TO.N,USB+*% +X148376429Y-106441460D03* +%TO.N,Net-(Card1-DAT2)*% +X132875267Y-104504289D03* +%TO.N,Net-(Card1-CLK)*% +X140277779Y-101538626D03* +%TO.N,Net-(Card1-DAT0)*% +X140163333Y-103703554D03* +%TO.N,USB-*% +X148479985Y-105658221D03* +%TO.N,vdd50*% +X148499059Y-109244183D03* +%TO.N,Net-(Card1-CD_DAT3)*% +X132924651Y-103789389D03* +%TO.N,Net-(Card1-VDD)*% +X132964004Y-102607356D03* +%TO.N,Net-(Card1-DAT1)*% +X140608833Y-104422235D03* +%TD*% +D28* +%TO.N,Net-(USB1-GND0)*% +X148074784Y-103313947D02* +X148106609Y-102002238D01* +%TO.N,Net-(Card1-CD)*% +X132950211Y-105229456D02* +X133785865Y-105104046D01* +%TO.N,Net-(LED1-a)*% +X143607724Y-106840352D02* +X141559658Y-106840852D01* +%TO.N,Net-(USB1-GND2)*% +X147864967Y-112698484D02* +X148622184Y-114216203D01* +%TO.N,Net-(U5-VDD18PLL)*% +X137482233Y-107541601D02* +X137595865Y-106414046D01* +%TO.N,Net-(U5-LED)*% +X140693658Y-106840852D02* +X139405865Y-105604046D01* +%TO.N,Net-(Card1-WP)*% +X135623659Y-107175070D02* +X135595865Y-106414046D01* +%TO.N,Net-(U5-XTAL1_CLKIN)*% +X135973506Y-112346485D02* +X134176631Y-114068215D01* +X136717985Y-110858768D02* +X137095865Y-106414046D01* +X137573127Y-112571302D02* +X135973506Y-112346485D01* +X135973506Y-112346485D02* +X136702758Y-110912203D01* +X136702763Y-110912206D02* +G75* +G03* +X136717984Y-110858768I-129263J65706D01* +G01* +%TO.N,Net-(U5-RBIAS)*% +X138129245Y-109574220D02* +X138095865Y-106414046D01* +%TO.N,Net-(U5-VDD18)*% +X137089343Y-99646251D02* +X137095865Y-100795046D01* +%TO.N,Net-(Card1-CMD)*% +X138071854Y-99815084D02* +X138095865Y-100795046D01* +%TO.N,USB+*% +X139405865Y-105104046D02* +X148376429Y-106441460D01* +%TO.N,Net-(Card1-DAT2)*% +X132875267Y-104504289D02* +X133785865Y-104604046D01* +%TO.N,Net-(U5-RESET_N)*% +X134774512Y-99695657D02* +X134502123Y-97122587D01* +X134595865Y-100795046D02* +X134774512Y-99695657D01* +%TO.N,Net-(U5-XTAL2)*% +X135797386Y-107545340D02* +X134168661Y-108309522D01* +X136595865Y-106414046D02* +X136368020Y-106918711D01* +X133544254Y-111580767D02* +X134273506Y-110146485D01* +X133256909Y-114068215D02* +X133529403Y-111630378D01* +X136346671Y-106952571D02* +X135936209Y-107438876D01* +X134273506Y-110146485D02* +X134168661Y-108309522D01* +X135797383Y-107545334D02* +G75* +G03* +X135936209Y-107438876I-173683J370234D01* +G01* +X133544259Y-111580769D02* +G75* +G03* +X133529403Y-111630378I129241J-65731D01* +G01* +X136346676Y-106952575D02* +G75* +G03* +X136368020Y-106918711I-110776J93475D01* +G01* +%TO.N,RXD_SDA*% +X131519888Y-104106067D02* +X132631720Y-105486058D01* +X125847533Y-110727391D02* +X125648782Y-114846323D01* +X125904070Y-116994211D02* +X126008997Y-117077888D01* +X129640552Y-96501199D02* +X130631807Y-98225511D01* +X129349966Y-116681580D02* +X130277171Y-115667230D01* +X130773422Y-98639843D02* +X131425219Y-103369360D01* +X127487341Y-95340672D02* +X129640552Y-96501199D01* +X125524674Y-98774072D02* +X125518954Y-96519235D01* +X126219506Y-117179264D02* +X126350348Y-117209128D01* +X125847533Y-110727391D02* +X125525157Y-98806775D01* +X125648171Y-114871626D02* +X125648171Y-116462833D01* +X129228420Y-116780792D02* +X129333347Y-116697115D01* +X132967211Y-105638102D02* +X133785865Y-105604046D01* +X126545715Y-117216382D02* +X129028864Y-116840659D01* +X125700163Y-116690622D02* +X125758393Y-116811539D01* +X129039437Y-116838655D02* +X129170279Y-116808791D01* +X131426840Y-103383268D02* +X131488456Y-104028872D01* +X125648780Y-114846323D02* +G75* +G03* +X125648171Y-114871626I524420J-25277D01* +G01* +X131488459Y-104028872D02* +G75* +G03* +X131519889Y-104106066I144341J13772D01* +G01* +X129170279Y-116808791D02* +G75* +G03* +X129228420Y-116780792I-32279J141391D01* +G01* +X131426839Y-103383268D02* +G75* +G03* +X131425219Y-103369360I-334539J-31932D01* +G01* +X129333346Y-116697114D02* +G75* +G03* +X129349965Y-116681579I-90346J113314D01* +G01* +X127487326Y-95340699D02* +G75* +G03* +X125518954Y-96519235I-633426J-1175101D01* +G01* +X125758409Y-116811531D02* +G75* +G03* +X125904070Y-116994211I472991J227731D01* +G01* +X129028864Y-116840661D02* +G75* +G03* +X129039437Y-116838654I-21764J143561D01* +G01* +X126008987Y-117077901D02* +G75* +G03* +X126219506Y-117179263I327313J410501D01* +G01* +X125648161Y-116462833D02* +G75* +G03* +X125700164Y-116690622I525039J33D01* +G01* +X132631727Y-105486052D02* +G75* +G03* +X132967211Y-105638101I318473J256552D01* +G01* +X125524675Y-98774072D02* +G75* +G03* +X125525157Y-98806775I1330425J3272D01* +G01* +X126350351Y-117209117D02* +G75* +G03* +X126545715Y-117216382I116849J511817D01* +G01* +X130773429Y-98639842D02* +G75* +G03* +X130631806Y-98225511I-1134329J-156358D01* +G01* +D29* +%TO.N,vdd33*% +X134318234Y-96532087D02* +X134686011Y-96532087D01* +X134888907Y-96614684D02* +X135409345Y-97122587D01* +X136498843Y-99855140D02* +X136498843Y-98480140D01* +X140663412Y-101140182D02* +X136529089Y-97138773D01* +X131832794Y-100356777D02* +X134069913Y-96671832D01* +X131841689Y-103715096D02* +X131790731Y-101915756D01* +X136498917Y-98473575D02* +X136529089Y-97138773D01* +X148926145Y-106514141D02* +X149029701Y-105730902D01* +X129122524Y-106729721D02* +X127802972Y-108885762D01* +X140695641Y-103134378D02* +X140830195Y-101586651D01* +X127802972Y-108885762D02* +X126767255Y-110727391D01* +X132674690Y-103294424D02* +X131841689Y-103715096D01* +X133785865Y-103104046D02* +X132844985Y-103240641D01* +X127267333Y-114578656D02* +X126467171Y-115667230D01* +X126467171Y-115667230D02* +X126767255Y-110727391D01* +X138644942Y-107591651D02* +X142103449Y-110835572D01* +X138644942Y-107591651D02* +X138595865Y-106414046D01* +X133034097Y-114656872D02* +X130309845Y-114348512D01* +X127425205Y-114439911D02* +X127320278Y-114523588D01* +X141245983Y-103646956D02* +X140695641Y-103134378D01* +X127672529Y-114353952D02* +X127541687Y-114383816D01* +X130277171Y-114346669D02* +X127737171Y-114346669D01* +X140695641Y-103134378D02* +X139405865Y-103104046D01* +X142708813Y-110282689D02* +X148649327Y-106924158D01* +X138833330Y-113146142D02* +X134460862Y-114643055D01* +X134366770Y-114658715D02* +X133066770Y-114658715D01* +X126859670Y-98770685D02* +X129122524Y-106729721D01* +X136529089Y-97138773D02* +X135409345Y-97122587D01* +X131790615Y-101907532D02* +X131790615Y-100507532D01* +X142103449Y-110835572D02* +X138907583Y-113108051D01* +X148585451Y-105113844D02* +X141388721Y-103719575D01* +X136595865Y-100795046D02* +X136500429Y-99885453D01* +X142103449Y-110835572D02* +X142653791Y-110322993D01* +X142060619Y-113037221D02* +X142103449Y-110835572D01* +X148649348Y-106924196D02* +G75* +G03* +X148926145Y-106514141I-272948J482696D01* +G01* +X134366770Y-114658704D02* +G75* +G03* +X134460862Y-114643054I30J290504D01* +G01* +X131832782Y-100356770D02* +G75* +G03* +X131790615Y-100507532I248318J-150730D01* +G01* +X142708813Y-110282690D02* +G75* +G03* +X142653792Y-110322994I142987J-252910D01* +G01* +X132844983Y-103240628D02* +G75* +G03* +X132674690Y-103294424I79717J-548772D01* +G01* +X136498918Y-98473575D02* +G75* +G03* +X136498843Y-98480140I283482J-6525D01* +G01* +X127541688Y-114383822D02* +G75* +G03* +X127425205Y-114439911I64612J-283178D01* +G01* +X130309845Y-114348509D02* +G75* +G03* +X130277171Y-114346669I-32645J-288691D01* +G01* +X134888904Y-96614687D02* +G75* +G03* +X134686011Y-96532087I-202904J-207913D01* +G01* +X138833333Y-113146150D02* +G75* +G03* +X138907583Y-113108051I-94133J274850D01* +G01* +X127320277Y-114523586D02* +G75* +G03* +X127267333Y-114578656I181123J-227114D01* +G01* +X141245995Y-103646943D02* +G75* +G03* +X141388721Y-103719575I198005J212543D01* +G01* +X134318234Y-96532123D02* +G75* +G03* +X134069914Y-96671832I-34J-290477D01* +G01* +X131790615Y-101907532D02* +G75* +G03* +X131790732Y-101915756I291585J32D01* +G01* +X133034097Y-114656869D02* +G75* +G03* +X133066770Y-114658715I32703J288669D01* +G01* +X140830180Y-101586650D02* +G75* +G03* +X140663411Y-101140183I-552380J48050D01* +G01* +X136498847Y-99855140D02* +G75* +G03* +X136500430Y-99885453I289953J-60D01* +G01* +X149029688Y-105730900D02* +G75* +G03* +X148585451Y-105113845I-549688J72700D01* +G01* +X127737171Y-114346666D02* +G75* +G03* +X127672529Y-114353953I29J-290634D01* +G01* +D28* +%TO.N,Net-(Card1-CLK)*% +X139405865Y-101604046D02* +X140277779Y-101538626D01* +%TO.N,Net-(Card1-DAT0)*% +X140163333Y-103703554D02* +X139405865Y-103604046D01* +%TO.N,USB-*% +X148479985Y-105658221D02* +X140566211Y-104829008D01* +X140530445Y-104823653D02* +X139405865Y-104604046D01* +X140530444Y-104823656D02* +G75* +G03* +X140566211Y-104829008I78356J401456D01* +G01* +%TO.N,Net-(U4-WC_NOT)*% +X126434906Y-116838655D02* +X126304064Y-116808791D01* +X126028767Y-114858501D02* +X126432712Y-110414266D01* +X127737171Y-115667230D02* +X126809966Y-116681580D01* +X126245923Y-116780792D02* +X126140996Y-116697115D01* +X126793347Y-116697115D02* +X126688420Y-116780792D01* +X126630279Y-116808791D02* +X126499437Y-116838655D01* +X126100761Y-116646663D02* +X126042531Y-116525746D01* +X126028171Y-116462833D02* +X126028171Y-114871626D01* +X127478300Y-108531671D02* +X128202801Y-106729721D01* +X127208854Y-109237473D02* +X127477368Y-108534051D01* +X126457350Y-110345654D02* +X127193155Y-109267499D01* +X127193160Y-109267502D02* +G75* +G03* +X127208854Y-109237473I-119760J81702D01* +G01* +X126434906Y-116838655D02* +G75* +G03* +X126499437Y-116838655I32265J141382D01* +G01* +X126028161Y-116462833D02* +G75* +G03* +X126042532Y-116525746I145039J33D01* +G01* +X126028765Y-114858501D02* +G75* +G03* +X126028171Y-114871626I144135J-13099D01* +G01* +X127478301Y-108531671D02* +G75* +G03* +X127477368Y-108534051I140699J-56529D01* +G01* +X126245913Y-116780805D02* +G75* +G03* +X126304064Y-116808791I90387J113405D01* +G01* +X126793346Y-116697114D02* +G75* +G03* +X126809965Y-116681579I-90346J113314D01* +G01* +X126457356Y-110345658D02* +G75* +G03* +X126432712Y-110414266I119744J-81742D01* +G01* +X126100777Y-116646655D02* +G75* +G03* +X126140996Y-116697115I130623J62855D01* +G01* +X126630279Y-116808791D02* +G75* +G03* +X126688420Y-116780792I-32279J141391D01* +G01* +D29* +%TO.N,vdd50*% +X148499059Y-109244183D02* +X146656595Y-110839534D01* +X146659619Y-113037221D02* +X146656595Y-110839534D01* +D28* +%TO.N,Net-(Card1-CD_DAT3)*% +X132924651Y-103789389D02* +X133785865Y-103604046D01* +%TO.N,Net-(Card1-VDD)*% +X132381115Y-101692393D02* +X132964004Y-102607356D01* +X133785865Y-102604046D02* +X132964004Y-102607356D01* +%TO.N,Net-(Card1-DAT1)*% +X140608833Y-104422235D02* +X139405865Y-104104046D01* +%TO.N,TXD_SCK_MS_SKT_SEL*% +X131299316Y-104046923D02* +X131237700Y-103401320D01* +X126392627Y-117023891D02* +X126261785Y-116994027D01* +X134230865Y-105889046D02* +X133340865Y-105889046D01* +X132483766Y-105605262D02* +X131371934Y-104225271D01* +X134404618Y-105833404D02* +X134282111Y-105879688D01* +X125839547Y-114841302D02* +X126243492Y-110397067D01* +X131230297Y-103367430D02* +X129639143Y-98796163D01* +X126127460Y-116929340D02* +X126022533Y-116845663D01* +X125929577Y-116729101D02* +X125871347Y-116608184D01* +X126269990Y-110293606D02* +X126883250Y-108885762D01* +X129007171Y-115667230D02* +X128079966Y-116681580D01* +X127900279Y-116808791D02* +X127769437Y-116838655D01* +X127758864Y-116840659D02* +X126517290Y-117028520D01* +X136095865Y-106414046D02* +X135868020Y-105909381D01* +X126883250Y-108885762D02* +X125722334Y-98902948D01* +X128063347Y-116697115D02* +X127958420Y-116780792D01* +X125714673Y-98773590D02* +X125708953Y-96518753D01* +X133320305Y-105887581D02* +X132865278Y-105822404D01* +X125838171Y-116462833D02* +X125838171Y-114871626D01* +X127823433Y-95906646D02* +X129639143Y-98796163D01* +X135735865Y-105824046D02* +X134455865Y-105824046D01* +X125838161Y-116462833D02* +G75* +G03* +X125871348Y-116608184I335039J33D01* +G01* +X131237697Y-103401320D02* +G75* +G03* +X131230296Y-103367430I-144397J-13780D01* +G01* +X126127450Y-116929352D02* +G75* +G03* +X126261785Y-116994026I208850J261952D01* +G01* +X128063346Y-116697114D02* +G75* +G03* +X128079965Y-116681579I-90346J113314D01* +G01* +X135868025Y-105909379D02* +G75* +G03* +X135735865Y-105824046I-132125J-59621D01* +G01* +X134455865Y-105824038D02* +G75* +G03* +X134404618Y-105833405I35J-145062D01* +G01* +X133320305Y-105887578D02* +G75* +G03* +X133340865Y-105889046I20595J143678D01* +G01* +X127900279Y-116808791D02* +G75* +G03* +X127958420Y-116780792I-32279J141391D01* +G01* +X125714676Y-98773590D02* +G75* +G03* +X125722335Y-98902948I1145024J2890D01* +G01* +X126269994Y-110293608D02* +G75* +G03* +X126243492Y-110397067I307106J-133792D01* +G01* +X126392629Y-117023881D02* +G75* +G03* +X126517290Y-117028520I74571J326581D01* +G01* +X134230865Y-105889030D02* +G75* +G03* +X134282111Y-105879688I35J145030D01* +G01* +X127758864Y-116840661D02* +G75* +G03* +X127769437Y-116838654I-21764J143561D01* +G01* +X131299319Y-104046923D02* +G75* +G03* +X131371935Y-104225270I333481J31823D01* +G01* +X125929593Y-116729093D02* +G75* +G03* +X126022533Y-116845663I301807J145293D01* +G01* +X125839545Y-114841302D02* +G75* +G03* +X125838171Y-114871626I333355J-30298D01* +G01* +X132483774Y-105605256D02* +G75* +G03* +X132865278Y-105822403I466426J375756D01* +G01* +X127823377Y-95906681D02* +G75* +G03* +X125708954Y-96518753I-969477J-609119D01* +G01* +%TD*% +%TA.AperFunction,Conductor*% +%TO.N,gnd*% +G36* +X127883455Y-96279096D02* +G01* +X127888707Y-96283992D01* +X128579413Y-97383180D01* +X128928714Y-97939057D01* +X128930509Y-97949621D01* +X128926292Y-97956852D01* +X128822379Y-98051583D01* +X128699469Y-98214342D01* +X128699464Y-98214351D01* +X128608565Y-98396903D01* +X128608562Y-98396909D01* +X128552746Y-98593078D01* +X128552744Y-98593088D01* +X128533928Y-98796160D01* +X128533928Y-98796165D01* +X128552744Y-98999237D01* +X128552746Y-98999247D01* +X128608562Y-99195416D01* +X128608565Y-99195422D01* +X128699464Y-99377974D01* +X128699469Y-99377983D01* +X128741311Y-99433391D01* +X128822379Y-99540742D01* +X128973102Y-99678144D01* +X129098307Y-99755667D01* +X129141576Y-99782459D01* +X129146504Y-99785510D01* +X129146503Y-99785510D01* +X129146506Y-99785511D01* +X129336687Y-99859187D01* +X129537167Y-99896663D01* +X129537168Y-99896663D01* +X129741118Y-99896663D01* +X129741119Y-99896663D01* +X129848543Y-99876581D01* +X129859027Y-99878793D01* +X129864337Y-99885741D01* +X131075908Y-103366494D01* +X131075290Y-103377191D01* +X131067288Y-103384318D01* +X131062686Y-103385096D01* +X130901967Y-103385096D01* +X130901967Y-104045095D01* +X131096308Y-104045095D01* +X131105061Y-104043356D01* +X131114986Y-104036724D01* +X131121615Y-104026803D01* +X131121616Y-104026801D01* +X131123024Y-104019720D01* +X131128976Y-104010810D01* +X131139485Y-104008719D01* +X131148395Y-104014671D01* +X131150691Y-104021118D01* +X131151234Y-104026801D01* +X131154772Y-104063873D01* +X131158879Y-104107383D01* +X131158880Y-104107384D01* +X131185621Y-104197165D01* +X131185624Y-104197172D01* +X131229206Y-104280106D01* +X131229208Y-104280109D01* +X131231751Y-104283259D01* +X131258632Y-104316555D01* +X131258631Y-104316555D01* +X131271485Y-104332510D01* +X131277772Y-104340314D01* +X131279466Y-104342416D01* +X131281441Y-104344868D01* +X131281454Y-104344882D01* +X132365501Y-105690387D01* +X132374893Y-105702044D01* +X132411611Y-105747755D01* +X132414333Y-105751143D01* +X132435385Y-105769057D01* +X132509013Y-105831712D01* +X132521019Y-105841928D01* +X132642765Y-105911225D01* +X132775299Y-105956600D01* +X132843718Y-105966301D01* +X133297611Y-106031315D01* +X133299660Y-106031609D01* +X133299660Y-106031608D01* +X133305970Y-106032514D01* +X133305983Y-106032514D01* +X133314836Y-106033782D01* +X133318635Y-106034327D01* +X133319757Y-106034340D01* +X133320594Y-106034399D01* +X133321709Y-106034546D01* +X133340830Y-106034546D01* +X133374039Y-106034554D01* +X133374041Y-106034552D01* +X133375545Y-106034553D01* +X133375618Y-106034546D01* +X134250023Y-106034546D01* +X134250022Y-106034545D01* +X134250279Y-106034476D01* +X134250496Y-106034419D01* +X134252448Y-106034041D01* +X134283101Y-106030342D01* +X134313278Y-106022939D01* +X134315231Y-106022606D01* +X134315615Y-106022568D01* +X134334691Y-106015360D01* +X134364558Y-106004089D01* +X134364558Y-106004087D01* +X134366077Y-106003515D01* +X134366164Y-106003469D01* +X134406919Y-105988072D01* +X134417627Y-105988410D01* +X134424962Y-105996221D01* +X134425865Y-106001169D01* +X134425865Y-106396546D01* +X134765864Y-106396546D01* +X134765864Y-105983546D01* +X134769965Y-105973647D01* +X134779864Y-105969546D01* +X134841365Y-105969546D01* +X134851264Y-105973647D01* +X134855365Y-105983546D01* +X134855365Y-106868942D01* +X134859018Y-106887306D01* +X134861196Y-106898259D01* +X134883408Y-106931503D01* +X134916652Y-106953715D01* +X134945966Y-106959546D01* +X135245763Y-106959545D01* +X135275078Y-106953715D01* +X135308322Y-106931503D01* +X135330534Y-106898259D01* +X135332134Y-106890213D01* +X135338087Y-106881305D01* +X135348596Y-106879214D01* +X135357505Y-106885167D01* +X135359596Y-106890214D01* +X135361195Y-106898258D01* +X135361196Y-106898259D01* +X135370007Y-106911446D01* +X135372097Y-106921954D01* +X135368266Y-106929122D01* +X135333286Y-106964103D01* +X135282307Y-107064157D01* +X135264740Y-107175070D01* +X135282307Y-107285982D01* +X135333287Y-107386038D01* +X135412690Y-107465441D01* +X135489033Y-107504339D01* +X135495992Y-107512487D01* +X135495151Y-107523169D01* +X135488624Y-107529487D01* +X134494969Y-107995701D01* +X134484265Y-107996194D01* +X134476348Y-107988974D01* +X134475291Y-107985758D01* +X134474397Y-107981262D01* +X134472219Y-107970309D01* +X134450007Y-107937065D01* +X134416763Y-107914853D01* +X134416762Y-107914852D01* +X134416761Y-107914852D01* +X134394726Y-107910469D01* +X134387449Y-107909022D01* +X134387448Y-107909022D01* +X133949875Y-107909022D01* +X133920559Y-107914853D01* +X133887315Y-107937065D01* +X133865102Y-107970310D01* +X133859272Y-107999623D01* +X133859272Y-108619418D01* +X133862925Y-108637782D01* +X133865103Y-108648735D01* +X133887315Y-108681979D01* +X133920559Y-108704191D01* +X133949873Y-108710022D01* +X134032558Y-108710021D01* +X134042457Y-108714121D01* +X134046535Y-108723223D01* +X134081235Y-109331187D01* +X134077706Y-109341304D01* +X134068056Y-109345962D01* +X134067258Y-109345985D01* +X133663609Y-109345985D01* +X133634293Y-109351816D01* +X133601049Y-109374028D01* +X133578836Y-109407273D01* +X133573006Y-109436586D01* +X133573006Y-110856381D01* +X133577005Y-110876484D01* +X133578837Y-110885698D01* +X133601049Y-110918942D01* +X133634293Y-110941154D01* +X133663607Y-110946985D01* +X133680444Y-110946984D01* +X133690343Y-110951084D01* +X133694444Y-110960983D01* +X133692924Y-110967329D01* +X133411233Y-111521356D01* +X133406642Y-111530373D01* +X133406592Y-111530480D01* +X133405875Y-111531892D01* +X133405872Y-111531903D01* +X133405675Y-111532828D01* +X133405402Y-111533777D01* +X133394703Y-111563018D01* +X133394703Y-111563019D01* +X133387558Y-111593382D01* +X133387264Y-111594325D01* +X133386931Y-111595178D01* +X133386930Y-111595180D01* +X133386776Y-111596555D01* +X133386738Y-111596827D01* +X133384805Y-111614200D01* +X133380974Y-111648429D01* +X133380974Y-111648461D01* +X133156660Y-113655270D01* +X133151486Y-113664653D01* +X133142747Y-113667715D01* +X133056873Y-113667715D01* +X133027557Y-113673546D01* +X132994313Y-113695758D01* +X132972100Y-113729003D01* +X132966270Y-113758316D01* +X132966270Y-114340662D01* +X132962169Y-114350561D01* +X132952270Y-114354662D01* +X132950695Y-114354573D01* +X130394159Y-114065196D01* +X130394095Y-114065184D01* +X130366794Y-114062097D01* +X130348037Y-114059976D01* +X130347823Y-114059951D01* +X130347818Y-114059949D01* +X130342264Y-114059320D01* +X130338784Y-114058464D01* +X130335769Y-114057296D01* +X130331568Y-114055669D01* +X130331567Y-114055669D01* +X130288094Y-114055669D01* +X130288067Y-114055668D01* +X130277142Y-114055669D01* +X127789685Y-114055669D01* +X127789626Y-114055664D01* +X127788453Y-114055664D01* +X127779905Y-114055664D01* +X127742944Y-114055668D01* +X127742936Y-114055665D01* +X127715389Y-114055668D01* +X127715362Y-114055669D01* +X127710196Y-114055669D01* +X127707350Y-114056201D01* +X127707116Y-114056245D01* +X127706357Y-114056344D01* +X127690696Y-114057519D01* +X127672005Y-114058922D01* +X127671998Y-114058923D01* +X127671995Y-114058923D01* +X127671156Y-114059049D01* +X127667062Y-114059056D01* +X127660806Y-114058142D01* +X127573071Y-114078168D01* +X127558519Y-114081488D01* +X127558517Y-114081490D01* +X127480811Y-114099226D01* +X127476953Y-114100107D01* +X127450390Y-114106170D01* +X127450308Y-114106192D01* +X127434460Y-114109809D01* +X127434455Y-114109811D01* +X127353335Y-114141644D01* +X127353322Y-114141651D01* +X127294691Y-114175498D01* +X127291880Y-114176732D01* +X127286299Y-114178481D01* +X127286298Y-114178482D01* +X127138863Y-114296055D01* +X127118812Y-114312037D01* +X127118660Y-114312168D01* +X127117758Y-114312888D01* +X127117754Y-114312892D01* +X127117216Y-114313514D01* +X127116753Y-114313999D01* +X127081805Y-114347293D01* +X127081802Y-114347297D01* +X127074041Y-114356111D01* +X127071060Y-114358664D01* +X127065079Y-114362476D01* +X127065078Y-114362477D01* +X127048140Y-114385518D01* +X127048023Y-114385667D01* +X127033100Y-114405982D01* +X126845641Y-114661006D01* +X126836474Y-114666554D01* +X126826069Y-114663994D01* +X126820521Y-114654827D01* +X126820387Y-114651865D01* +X126821001Y-114641770D01* +X127036567Y-111093230D01* +X127038901Y-111086303D01* +X127052061Y-111066607D01* +X127052061Y-111066606D01* +X127052063Y-111066604D01* +X127057894Y-111037290D01* +X127057893Y-110807913D01* +X127059690Y-110801051D01* +X127115908Y-110701090D01* +X127907582Y-109293397D01* +X127916009Y-109286780D01* +X127919785Y-109286261D01* +X128003008Y-109286261D01* +X128003009Y-109286261D01* +X128032324Y-109280431D01* +X128065568Y-109258219D01* +X128087780Y-109224975D01* +X128093611Y-109195661D01* +X128093610Y-108972276D01* +X128095669Y-108964969D01* +X128133700Y-108902831D01* +X128486109Y-108327022D01* +X132972551Y-108327022D01* +X132972551Y-108612474D01* +X132974289Y-108621227D01* +X132980921Y-108631152D01* +X132990843Y-108637781D01* +X132999594Y-108639521D01* +X133193939Y-108639521D01* +X133193939Y-108327022D01* +X133228939Y-108327022D01* +X133228939Y-108639521D01* +X133423280Y-108639521D01* +X133432033Y-108637782D01* +X133441958Y-108631150D01* +X133448587Y-108621229D01* +X133448587Y-108621227D01* +X133450328Y-108612477D01* +X133450328Y-108327022D01* +X133228939Y-108327022D01* +X133193939Y-108327022D01* +X132972551Y-108327022D01* +X128486109Y-108327022D01* +X128507530Y-108292022D01* +X132972550Y-108292022D01* +X133193939Y-108292022D01* +X133193939Y-107979522D01* +X133228939Y-107979522D01* +X133228939Y-108292022D01* +X133450327Y-108292022D01* +X133450327Y-108006569D01* +X133448588Y-107997816D01* +X133441956Y-107987891D01* +X133432034Y-107981262D01* +X133423284Y-107979522D01* +X133228939Y-107979522D01* +X133193939Y-107979522D01* +X132999597Y-107979522D01* +X132990844Y-107981261D01* +X132980919Y-107987893D01* +X132974290Y-107997814D01* +X132974290Y-107997816D01* +X132972550Y-108006566D01* +X132972550Y-108292022D01* +X128507530Y-108292022D01* +X129214487Y-107136911D01* +X129223152Y-107130609D01* +X129226428Y-107130220D01* +X129322559Y-107130220D01* +X129322560Y-107130220D01* +X129351875Y-107124390D01* +X129385119Y-107102178D01* +X129407331Y-107068934D01* +X129413162Y-107039620D01* +X129413161Y-106786868D01* +X129413707Y-106783910D01* +X129413570Y-106783885D01* +X129413802Y-106782608D01* +X129413784Y-106779054D01* +X129413595Y-106742771D01* +X129413624Y-106742122D01* +X129417307Y-106702463D01* +X129413837Y-106690262D01* +X129413304Y-106686506D01* +X129413277Y-106681257D01* +X129413239Y-106673815D01* +X129413238Y-106673812D01* +X129413233Y-106672837D01* +X129413161Y-106672074D01* +X129413161Y-106431546D01* +X134425866Y-106431546D01* +X134425866Y-106861998D01* +X134427604Y-106870751D01* +X134434236Y-106880676D01* +X134444158Y-106887305D01* +X134452909Y-106889045D01* +X134578365Y-106889045D01* +X134578365Y-106431546D01* +X134613365Y-106431546D01* +X134613365Y-106889045D01* +X134738817Y-106889045D01* +X134747570Y-106887306D01* +X134757495Y-106880674D01* +X134764124Y-106870753D01* +X134764124Y-106870751D01* +X134765865Y-106862001D01* +X134765865Y-106431546D01* +X134613365Y-106431546D01* +X134578365Y-106431546D01* +X134425866Y-106431546D01* +X129413161Y-106431546D01* +X129413161Y-106419824D01* +X129413161Y-106419822D01* +X129407331Y-106390508D01* +X129385119Y-106357264D01* +X129351875Y-106335052D01* +X129351874Y-106335051D01* +X129351873Y-106335051D01* +X129322561Y-106329221D01* +X129321763Y-106329221D01* +X129311864Y-106325120D01* +X129308297Y-106319050D01* +X129301659Y-106295702D01* +X128572936Y-103732596D01* +X130645579Y-103732596D01* +X130645579Y-104018048D01* +X130647317Y-104026801D01* +X130653949Y-104036726D01* +X130663871Y-104043355D01* +X130672622Y-104045095D01* +X130866966Y-104045095D01* +X130866967Y-103732596D01* +X130645579Y-103732596D01* +X128572936Y-103732596D01* +X128562985Y-103697596D01* +X130645578Y-103697596D01* +X130866967Y-103697596D01* +X130866966Y-103385096D01* +X130672625Y-103385096D01* +X130663872Y-103386835D01* +X130653947Y-103393467D01* +X130647318Y-103403388D01* +X130647318Y-103403390D01* +X130645578Y-103412140D01* +X130645578Y-103697596D01* +X128562985Y-103697596D01* +X127432728Y-99722192D01* +X127433965Y-99711550D01* +X127438821Y-99706464D01* +X127525711Y-99652666D01* +X127676434Y-99515264D01* +X127799343Y-99352506D01* +X127890252Y-99169935D01* +X127946067Y-98973768D01* +X127947258Y-98960913D01* +X127964885Y-98770687D01* +X127964885Y-98770682D01* +X127946068Y-98567610D01* +X127946067Y-98567607D01* +X127946067Y-98567602D01* +X127890252Y-98371435D01* +X127833957Y-98258379D01* +X127799348Y-98188873D01* +X127799343Y-98188864D01* +X127720604Y-98084597D01* +X127676434Y-98026106D01* +X127525711Y-97888704D01* +X127435796Y-97833031D01* +X127352308Y-97781337D01* +X127352309Y-97781337D01* +X127227890Y-97733138D01* +X127162126Y-97707661D01* +X127162123Y-97707660D01* +X127162122Y-97707660D01* +X126961648Y-97670185D01* +X126961646Y-97670185D01* +X126757694Y-97670185D01* +X126757691Y-97670185D01* +X126557217Y-97707660D01* +X126367030Y-97781337D01* +X126193630Y-97888703D01* +X126193629Y-97888704D01* +X126042906Y-98026105D01* +X125919996Y-98188864D01* +X125919991Y-98188873D01* +X125885381Y-98258379D01* +X125877298Y-98265413D01* +X125866609Y-98264671D01* +X125859575Y-98256588D01* +X125858849Y-98252180D01* +X125856329Y-97258846D01* +X126135699Y-97258846D01* +X126278945Y-97376406D01* +X126457883Y-97472050D01* +X126652028Y-97530943D01* +X126652032Y-97530944D01* +X126853950Y-97550831D01* +X127055867Y-97530944D01* +X127055871Y-97530943D01* +X127250016Y-97472050D01* +X127428954Y-97376406D01* +X127572200Y-97258846D01* +X126853951Y-96540597D01* +X126853950Y-96540597D01* +X126135699Y-97258846D01* +X125856329Y-97258846D01* +X125855334Y-96866511D01* +X125859409Y-96856604D01* +X125869298Y-96852478D01* +X125879208Y-96856553D01* +X125882731Y-96862414D01* +X125897747Y-96911914D01* +X125993391Y-97090852D01* +X126110950Y-97234098D01* +X126844051Y-96500998D01* +X126853950Y-96496897D01* +X126863849Y-96500998D01* +X126863850Y-96500998D01* +X127596948Y-97234097D01* +X127714508Y-97090852D01* +X127810152Y-96911914D01* +X127869045Y-96717769D01* +X127869046Y-96717765D01* +X127888933Y-96515848D01* +X127869046Y-96313930D01* +X127869045Y-96313926D01* +X127863458Y-96295507D01* +X127864508Y-96284843D01* +X127872791Y-96278046D01* +X127883455Y-96279096D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X136857505Y-106885167D02* +G01* +X136859596Y-106890214D01* +X136861195Y-106898258D01* +X136861196Y-106898259D01* +X136883408Y-106931503D01* +X136892546Y-106937608D01* +X136897768Y-106941097D01* +X136903721Y-106950006D01* +X136903940Y-106953924D01* +X136631455Y-110158963D01* +X136626530Y-110168480D01* +X136616319Y-110171727D01* +X136606802Y-110166802D01* +X136603505Y-110157777D01* +X136603505Y-109443532D01* +X136601766Y-109434779D01* +X136595134Y-109424854D01* +X136585212Y-109418225D01* +X136576462Y-109416485D01* +X135991006Y-109416485D01* +X135991006Y-110876484D01* +X136534867Y-110876484D01* +X136544766Y-110880585D01* +X136548867Y-110890484D01* +X136547347Y-110896829D01* +X136221180Y-111538330D01* +X136213038Y-111545296D01* +X136208700Y-111545985D01* +X135363609Y-111545985D01* +X135334293Y-111551816D01* +X135301049Y-111574028D01* +X135278836Y-111607273D01* +X135273006Y-111636586D01* +X135273006Y-112810202D01* +X135268905Y-112820101D01* +X135268692Y-112820311D01* +X134388241Y-113663942D01* +X134378256Y-113667830D01* +X134377184Y-113667766D01* +X134376672Y-113667715D01* +X134376669Y-113667715D01* +X134376665Y-113667715D01* +X133976595Y-113667715D01* +X133947279Y-113673546D01* +X133914035Y-113695758D01* +X133891822Y-113729003D01* +X133885992Y-113758315D01* +X133885992Y-113758316D01* +X133885992Y-114059976D01* +X133885993Y-114353715D01* +X133881893Y-114363614D01* +X133871993Y-114367715D01* +X133561548Y-114367715D01* +X133551649Y-114363614D01* +X133547548Y-114353715D01* +X133547547Y-113758318D01* +X133547547Y-113758316D01* +X133541717Y-113729002D01* +X133519505Y-113695758D01* +X133486261Y-113673546D01* +X133486260Y-113673545D01* +X133486259Y-113673545D01* +X133460885Y-113668498D01* +X133451975Y-113662545D01* +X133449703Y-113653212D01* +X133475339Y-113423866D01* +X133516300Y-113057403D01* +X133593808Y-112363985D01* +X133643507Y-112363985D01* +X133643507Y-113049437D01* +X133645245Y-113058190D01* +X133651877Y-113068115D01* +X133661799Y-113074744D01* +X133670550Y-113076484D01* +X134256006Y-113076484D01* +X134256006Y-112363985D01* +X134291006Y-112363985D01* +X134291006Y-113076484D01* +X134876458Y-113076484D01* +X134885211Y-113074745D01* +X134895136Y-113068113D01* +X134901765Y-113058192D01* +X134901765Y-113058190D01* +X134903506Y-113049440D01* +X134903506Y-112363985D01* +X134291006Y-112363985D01* +X134256006Y-112363985D01* +X133643507Y-112363985D01* +X133593808Y-112363985D01* +X133615593Y-112169089D01* +X133620767Y-112159706D01* +X133631061Y-112156731D01* +X133640444Y-112161905D01* +X133643506Y-112170644D01* +X133643506Y-112328985D01* +X134256006Y-112328985D01* +X134256006Y-111616485D01* +X134291006Y-111616485D01* +X134291006Y-112328985D01* +X134903505Y-112328985D01* +X134903505Y-111643532D01* +X134901766Y-111634779D01* +X134895134Y-111624854D01* +X134885212Y-111618225D01* +X134876462Y-111616485D01* +X134291006Y-111616485D01* +X134256006Y-111616485D01* +X133712143Y-111616485D01* +X133702244Y-111612384D01* +X133698143Y-111602485D01* +X133699662Y-111596144D01* +X134022561Y-110961071D01* +X134025831Y-110954639D01* +X134033973Y-110947673D01* +X134038311Y-110946984D01* +X134883403Y-110946984D01* +X134883404Y-110946984D01* +X134912719Y-110941154D01* +X134945963Y-110918942D01* +X134968175Y-110885698D01* +X134974006Y-110856384D01* +X134974005Y-110163985D01* +X135343507Y-110163985D01* +X135343507Y-110849437D01* +X135345245Y-110858190D01* +X135351877Y-110868115D01* +X135361799Y-110874744D01* +X135370550Y-110876484D01* +X135956006Y-110876484D01* +X135956006Y-110163985D01* +X135343507Y-110163985D01* +X134974005Y-110163985D01* +X134974005Y-110128985D01* +X135343506Y-110128985D01* +X135956006Y-110128985D01* +X135956006Y-109416485D01* +X135370553Y-109416485D01* +X135361800Y-109418224D01* +X135351875Y-109424856D01* +X135345246Y-109434777D01* +X135345246Y-109434779D01* +X135343506Y-109443529D01* +X135343506Y-110128985D01* +X134974005Y-110128985D01* +X134974005Y-109436587D01* +X134968175Y-109407272D01* +X134945963Y-109374028D01* +X134912719Y-109351816D01* +X134912718Y-109351815D01* +X134912717Y-109351815D01* +X134883405Y-109345985D01* +X134386777Y-109345985D01* +X134376878Y-109341884D01* +X134372800Y-109332783D01* +X134371806Y-109315374D01* +X134351807Y-108964969D01* +X134338101Y-108724819D01* +X134341631Y-108714702D01* +X134351280Y-108710044D01* +X134352078Y-108710021D01* +X134387447Y-108710021D01* +X134387448Y-108710021D01* +X134416763Y-108704191D01* +X134450007Y-108681979D01* +X134472219Y-108648735D01* +X134478050Y-108619421D01* +X134478049Y-108333973D01* +X134482149Y-108324075D01* +X134486099Y-108321301D01* +X135847959Y-107682329D01* +X135859181Y-107677066D01* +X135859180Y-107677065D01* +X135865752Y-107673984D01* +X135865763Y-107673976D01* +X135876530Y-107668925D01* +X135876530Y-107668924D01* +X135876864Y-107668768D01* +X135877043Y-107668668D01* +X135895299Y-107660095D01* +X135961957Y-107616198D01* +X136021642Y-107563208D01* +X136034374Y-107548136D01* +X136034467Y-107548042D01* +X136035039Y-107547363D01* +X136035042Y-107547362D01* +X136047396Y-107532725D01* +X136068817Y-107507347D01* +X136068817Y-107507346D01* +X136070412Y-107505457D01* +X136070413Y-107505453D01* +X136435333Y-107073105D01* +X136435362Y-107073079D01* +X136436453Y-107071785D01* +X136436455Y-107071785D01* +X136454142Y-107050822D01* +X136454159Y-107050813D01* +X136457876Y-107046408D01* +X136457877Y-107046409D01* +X136466532Y-107036152D01* +X136466537Y-107036144D01* +X136466583Y-107036090D01* +X136466714Y-107035926D01* +X136470215Y-107031780D01* +X136471029Y-107030047D01* +X136472208Y-107028003D01* +X136481877Y-107014128D01* +X136490180Y-106999495D01* +X136491523Y-106997536D01* +X136492749Y-106996041D01* +X136495023Y-106991000D01* +X136495076Y-106990894D01* +X136499513Y-106981058D01* +X136505505Y-106967785D01* +X136513315Y-106960449D01* +X136518265Y-106959545D01* +X136745762Y-106959545D01* +X136745763Y-106959545D01* +X136775078Y-106953715D01* +X136808322Y-106931503D01* +X136830534Y-106898259D01* +X136832134Y-106890213D01* +X136838087Y-106881305D01* +X136848596Y-106879214D01* +X136857505Y-106885167D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X137857505Y-106885167D02* +G01* +X137859596Y-106890214D01* +X137861195Y-106898258D01* +X137861196Y-106898259D01* +X137883408Y-106931503D01* +X137916652Y-106953715D01* +X137944993Y-106959352D01* +X137953900Y-106965304D01* +X137956259Y-106972934D01* +X137980556Y-109273183D01* +X137976561Y-109283125D01* +X137966705Y-109287330D01* +X137966557Y-109287331D01* +X137819348Y-109287331D01* +X137790032Y-109293162D01* +X137756788Y-109315374D01* +X137734575Y-109348619D01* +X137728745Y-109377932D01* +X137728745Y-109770505D01* +X137728746Y-109770508D01* +X137734576Y-109799822D01* +X137756788Y-109833066D01* +X137790032Y-109855278D01* +X137819346Y-109861109D01* +X138439143Y-109861108D01* +X138468458Y-109855278D01* +X138501702Y-109833066D01* +X138523914Y-109799822D01* +X138529745Y-109770508D01* +X138529744Y-109377933D01* +X138523914Y-109348618D01* +X138501702Y-109315374D01* +X138468458Y-109293162D01* +X138468457Y-109293161D01* +X138468456Y-109293161D01* +X138439144Y-109287331D01* +X138285575Y-109287331D01* +X138275676Y-109283230D01* +X138271576Y-109273479D01* +X138265828Y-108729340D01* +X138264107Y-108566373D01* +X138314943Y-108566373D01* +X138314943Y-108760714D01* +X138316681Y-108769467D01* +X138323313Y-108779392D01* +X138333235Y-108786021D01* +X138341986Y-108787761D01* +X138627442Y-108787761D01* +X138627442Y-108566373D01* +X138662442Y-108566373D01* +X138662442Y-108787761D01* +X138947894Y-108787761D01* +X138956647Y-108786022D01* +X138966572Y-108779390D01* +X138973201Y-108769469D01* +X138973201Y-108769467D01* +X138974942Y-108760717D01* +X138974942Y-108566373D01* +X138662442Y-108566373D01* +X138627442Y-108566373D01* +X138314943Y-108566373D01* +X138264107Y-108566373D01* +X138263737Y-108531373D01* +X138314942Y-108531373D01* +X138627442Y-108531373D01* +X138627442Y-108309984D01* +X138341989Y-108309984D01* +X138333236Y-108311723D01* +X138323311Y-108318355D01* +X138316682Y-108328276D01* +X138316682Y-108328278D01* +X138314942Y-108337028D01* +X138314942Y-108531373D01* +X138263737Y-108531373D01* +X138256951Y-107888955D01* +X138260946Y-107879015D01* +X138270802Y-107874810D01* +X138278727Y-107877167D01* +X138305729Y-107895209D01* +X138335043Y-107901040D01* +X138543892Y-107901039D01* +X138553470Y-107904828D01* +X138959819Y-108285965D01* +X138964234Y-108295728D01* +X138960452Y-108305754D01* +X138950689Y-108310169D01* +X138948585Y-108309995D01* +X138948580Y-108310051D01* +X138947901Y-108309984D01* +X138662442Y-108309984D01* +X138662442Y-108531373D01* +X138974941Y-108531373D01* +X138974941Y-108337031D01* +X138974433Y-108334478D01* +X138976523Y-108323968D01* +X138985432Y-108318015D01* +X138995942Y-108320105D01* +X138997742Y-108321535D01* +X140345355Y-109585534D01* +X141517055Y-110684536D01* +X141632490Y-110792808D01* +X141636905Y-110802571D01* +X141633123Y-110812597D01* +X141631025Y-110814429D01* +X138791350Y-112833633D01* +X138780906Y-112836028D01* +X138771827Y-112830336D01* +X138769237Y-112822223D01* +X138769238Y-112588802D01* +X138547849Y-112588802D01* +X138547849Y-112901301D01* +X138565948Y-112901301D01* +X138575847Y-112905402D01* +X138579948Y-112915301D01* +X138575847Y-112925200D01* +X138570483Y-112928546D01* +X134485804Y-114326934D01* +X134475110Y-114326261D01* +X134468024Y-114318224D01* +X134467269Y-114313689D01* +X134467269Y-113997216D01* +X134471370Y-113987317D01* +X134471583Y-113987107D01* +X135345727Y-113149519D01* +X135355711Y-113145632D01* +X135358143Y-113145898D01* +X135358933Y-113146055D01* +X135363607Y-113146985D01* +X136583404Y-113146984D01* +X136612719Y-113141154D01* +X136645963Y-113118942D01* +X136668175Y-113085698D01* +X136674006Y-113056384D01* +X136674005Y-112607970D01* +X136678105Y-112598072D01* +X136688005Y-112593971D01* +X136689947Y-112594106D01* +X137251686Y-112673055D01* +X137260919Y-112678494D01* +X137263738Y-112686919D01* +X137263738Y-112881198D01* +X137267737Y-112901301D01* +X137269569Y-112910515D01* +X137291781Y-112943759D01* +X137325025Y-112965971D01* +X137354339Y-112971802D01* +X137791914Y-112971801D01* +X137821229Y-112965971D01* +X137854473Y-112943759D01* +X137876685Y-112910515D01* +X137882516Y-112881201D01* +X137882515Y-112588802D01* +X138291461Y-112588802D01* +X138291461Y-112874254D01* +X138293199Y-112883007D01* +X138299831Y-112892932D01* +X138309753Y-112899561D01* +X138318504Y-112901301D01* +X138512849Y-112901301D01* +X138512849Y-112588802D01* +X138291461Y-112588802D01* +X137882515Y-112588802D01* +X137882515Y-112553802D01* +X138291460Y-112553802D01* +X138512849Y-112553802D01* +X138512849Y-112241302D01* +X138547849Y-112241302D01* +X138547849Y-112553802D01* +X138769237Y-112553802D01* +X138769237Y-112268349D01* +X138767498Y-112259596D01* +X138760866Y-112249671D01* +X138750944Y-112243042D01* +X138742194Y-112241302D01* +X138547849Y-112241302D01* +X138512849Y-112241302D01* +X138318507Y-112241302D01* +X138309754Y-112243041D01* +X138299829Y-112249673D01* +X138293200Y-112259594D01* +X138293200Y-112259596D01* +X138291460Y-112268346D01* +X138291460Y-112553802D01* +X137882515Y-112553802D01* +X137882515Y-112261404D01* +X137876685Y-112232089D01* +X137854473Y-112198845D01* +X137821229Y-112176633D01* +X137821228Y-112176632D01* +X137821227Y-112176632D01* +X137799192Y-112172249D01* +X137791915Y-112170802D01* +X137791914Y-112170802D01* +X137354341Y-112170802D01* +X137325025Y-112176633D01* +X137291781Y-112198845D01* +X137269568Y-112232090D01* +X137263738Y-112261403D01* +X137263738Y-112364783D01* +X137259637Y-112374682D01* +X137249738Y-112378783D01* +X137247790Y-112378647D01* +X136686057Y-112299698D01* +X136676824Y-112294259D01* +X136674005Y-112285834D01* +X136674005Y-111636588D01* +X136673645Y-111634779D01* +X136668175Y-111607272D01* +X136645963Y-111574028D01* +X136612719Y-111551816D01* +X136612718Y-111551815D01* +X136612717Y-111551815D01* +X136583405Y-111545985D01* +X136566566Y-111545985D01* +X136556667Y-111541884D01* +X136552566Y-111531985D01* +X136554086Y-111525640D01* +X136604283Y-111426913D01* +X136816541Y-111009446D01* +X136816559Y-111009420D01* +X136817413Y-111007738D01* +X136817415Y-111007738D01* +X136829702Y-110983563D01* +X136829716Y-110983551D01* +X136832467Y-110978135D01* +X136832468Y-110978136D01* +X136840936Y-110961470D01* +X136840936Y-110961468D01* +X136841135Y-110961078D01* +X136841153Y-110961028D01* +X136841380Y-110960219D01* +X136853466Y-110926245D01* +X136861081Y-110891069D01* +X136861336Y-110890188D01* +X136861339Y-110890181D01* +X136894176Y-110503942D01* +X137799246Y-110503942D01* +X137799246Y-110675783D01* +X137800984Y-110684536D01* +X137807616Y-110694461D01* +X137817538Y-110701090D01* +X137826289Y-110702830D01* +X138111745Y-110702830D01* +X138111745Y-110503942D01* +X138146745Y-110503942D01* +X138146745Y-110702830D01* +X138432197Y-110702830D01* +X138440950Y-110701091D01* +X138450875Y-110694459D01* +X138457504Y-110684538D01* +X138457504Y-110684536D01* +X138459245Y-110675786D01* +X138459245Y-110503942D01* +X138146745Y-110503942D01* +X138111745Y-110503942D01* +X137799246Y-110503942D01* +X136894176Y-110503942D01* +X136897152Y-110468942D01* +X137799245Y-110468942D01* +X138111745Y-110468942D01* +X138111745Y-110270053D01* +X138146745Y-110270053D01* +X138146745Y-110468942D01* +X138459244Y-110468942D01* +X138459244Y-110297100D01* +X138457505Y-110288347D01* +X138450873Y-110278422D01* +X138440951Y-110271793D01* +X138432201Y-110270053D01* +X138146745Y-110270053D01* +X138111745Y-110270053D01* +X137826292Y-110270053D01* +X137817539Y-110271792D01* +X137807614Y-110278424D01* +X137800985Y-110288345D01* +X137800985Y-110288347D01* +X137799245Y-110297097D01* +X137799245Y-110468942D01* +X136897152Y-110468942D01* +X137063158Y-108516323D01* +X137152234Y-108516323D01* +X137152234Y-108710664D01* +X137153972Y-108719417D01* +X137160604Y-108729342D01* +X137170526Y-108735971D01* +X137179277Y-108737711D01* +X137464733Y-108737711D01* +X137464733Y-108516323D01* +X137499733Y-108516323D01* +X137499733Y-108737711D01* +X137785185Y-108737711D01* +X137793938Y-108735972D01* +X137803863Y-108729340D01* +X137810492Y-108719419D01* +X137810492Y-108719417D01* +X137812233Y-108710667D01* +X137812233Y-108516323D01* +X137499733Y-108516323D01* +X137464733Y-108516323D01* +X137152234Y-108516323D01* +X137063158Y-108516323D01* +X137066134Y-108481323D01* +X137152233Y-108481323D01* +X137464733Y-108481323D01* +X137464733Y-108259934D01* +X137499733Y-108259934D01* +X137499733Y-108481323D01* +X137812232Y-108481323D01* +X137812232Y-108286981D01* +X137810493Y-108278228D01* +X137803861Y-108268303D01* +X137793939Y-108261674D01* +X137785189Y-108259934D01* +X137499733Y-108259934D01* +X137464733Y-108259934D01* +X137179280Y-108259934D01* +X137170527Y-108261673D01* +X137160602Y-108268305D01* +X137153973Y-108278226D01* +X137153973Y-108278228D01* +X137152233Y-108286978D01* +X137152233Y-108481323D01* +X137066134Y-108481323D01* +X137119436Y-107854372D01* +X137124361Y-107844856D01* +X137134572Y-107841609D01* +X137141163Y-107843918D01* +X137143020Y-107845159D01* +X137172334Y-107850990D01* +X137792131Y-107850989D01* +X137821446Y-107845159D01* +X137854690Y-107822947D01* +X137876902Y-107789703D01* +X137882733Y-107760389D01* +X137882732Y-107322814D01* +X137876902Y-107293499D01* +X137854690Y-107260255D01* +X137821446Y-107238043D01* +X137821445Y-107238042D01* +X137821444Y-107238042D01* +X137792132Y-107232212D01* +X137675130Y-107232212D01* +X137665231Y-107228111D01* +X137661130Y-107218212D01* +X137661201Y-107216808D01* +X137662339Y-107205521D01* +X137677924Y-107050872D01* +X137685858Y-106972141D01* +X137690930Y-106962703D01* +X137699787Y-106959545D01* +X137745762Y-106959545D01* +X137745763Y-106959545D01* +X137775078Y-106953715D01* +X137808322Y-106931503D01* +X137830534Y-106898259D01* +X137832134Y-106890213D01* +X137838087Y-106881305D01* +X137848596Y-106879214D01* +X137857505Y-106885167D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X134210999Y-97027162D02* +G01* +X134217333Y-97035804D01* +X134217734Y-97039129D01* +X134217734Y-97432483D01* +X134220954Y-97448671D01* +X134223565Y-97461800D01* +X134245777Y-97495044D01* +X134279021Y-97517256D01* +X134308335Y-97523087D01* +X134385611Y-97523086D01* +X134395510Y-97527186D01* +X134399533Y-97535612D01* +X134584162Y-99279683D01* +X134581127Y-99289959D01* +X134571714Y-99295079D01* +X134570241Y-99295157D01* +X134555726Y-99295157D01* +X134526410Y-99300988D01* +X134493166Y-99323200D01* +X134470953Y-99356445D01* +X134465123Y-99385758D01* +X134465123Y-100005553D01* +X134468776Y-100023917D01* +X134470954Y-100034870D01* +X134493166Y-100068114D01* +X134526410Y-100090326D01* +X134548572Y-100094734D01* +X134557479Y-100100686D01* +X134559658Y-100110709D01* +X134539008Y-100237791D01* +X134533373Y-100246905D01* +X134525189Y-100249546D01* +X134445968Y-100249546D01* +X134416652Y-100255377D01* +X134383408Y-100277589D01* +X134361195Y-100310834D01* +X134355365Y-100340147D01* +X134355365Y-101249942D01* +X134355366Y-101249945D01* +X134361196Y-101279259D01* +X134383408Y-101312503D01* +X134416652Y-101334715D01* +X134445966Y-101340546D01* +X134745763Y-101340545D01* +X134775078Y-101334715D01* +X134808322Y-101312503D01* +X134830534Y-101279259D01* +X134832134Y-101271213D01* +X134838087Y-101262305D01* +X134848596Y-101260214D01* +X134857505Y-101266167D01* +X134859596Y-101271214D01* +X134861195Y-101279258D01* +X134868566Y-101290289D01* +X134883408Y-101312503D01* +X134916652Y-101334715D01* +X134945966Y-101340546D01* +X135245763Y-101340545D01* +X135275078Y-101334715D01* +X135308322Y-101312503D01* +X135330534Y-101279259D01* +X135332134Y-101271213D01* +X135338087Y-101262305D01* +X135348596Y-101260214D01* +X135357505Y-101266167D01* +X135359596Y-101271214D01* +X135361195Y-101279258D01* +X135368566Y-101290289D01* +X135383408Y-101312503D01* +X135416652Y-101334715D01* +X135445966Y-101340546D01* +X135745763Y-101340545D01* +X135775078Y-101334715D01* +X135808322Y-101312503D01* +X135830534Y-101279259D01* +X135832134Y-101271213D01* +X135838087Y-101262305D01* +X135848596Y-101260214D01* +X135857505Y-101266167D01* +X135859596Y-101271214D01* +X135861195Y-101279258D01* +X135868566Y-101290289D01* +X135883408Y-101312503D01* +X135916652Y-101334715D01* +X135945966Y-101340546D01* +X136245763Y-101340545D01* +X136275078Y-101334715D01* +X136308322Y-101312503D01* +X136330534Y-101279259D01* +X136332134Y-101271213D01* +X136338087Y-101262305D01* +X136348596Y-101260214D01* +X136357505Y-101266167D01* +X136359596Y-101271214D01* +X136361195Y-101279258D01* +X136368566Y-101290289D01* +X136383408Y-101312503D01* +X136416652Y-101334715D01* +X136445966Y-101340546D01* +X136745763Y-101340545D01* +X136775078Y-101334715D01* +X136808322Y-101312503D01* +X136830534Y-101279259D01* +X136832134Y-101271213D01* +X136838087Y-101262305D01* +X136848596Y-101260214D01* +X136857505Y-101266167D01* +X136859596Y-101271214D01* +X136861195Y-101279258D01* +X136868566Y-101290289D01* +X136883408Y-101312503D01* +X136916652Y-101334715D01* +X136945966Y-101340546D01* +X137245763Y-101340545D01* +X137275078Y-101334715D01* +X137308322Y-101312503D01* +X137330534Y-101279259D01* +X137332134Y-101271213D01* +X137338087Y-101262305D01* +X137348596Y-101260214D01* +X137357505Y-101266167D01* +X137359596Y-101271214D01* +X137361195Y-101279258D01* +X137368566Y-101290289D01* +X137383408Y-101312503D01* +X137416652Y-101334715D01* +X137445966Y-101340546D01* +X137745763Y-101340545D01* +X137775078Y-101334715D01* +X137808322Y-101312503D01* +X137830534Y-101279259D01* +X137832134Y-101271213D01* +X137838087Y-101262305D01* +X137848596Y-101260214D01* +X137857505Y-101266167D01* +X137859596Y-101271214D01* +X137861195Y-101279258D01* +X137868566Y-101290289D01* +X137883408Y-101312503D01* +X137916652Y-101334715D01* +X137945966Y-101340546D01* +X138245763Y-101340545D01* +X138275078Y-101334715D01* +X138308322Y-101312503D01* +X138330534Y-101279259D01* +X138332134Y-101271213D01* +X138338087Y-101262305D01* +X138348596Y-101260214D01* +X138357505Y-101266167D01* +X138359596Y-101271214D01* +X138361195Y-101279258D01* +X138368566Y-101290289D01* +X138383408Y-101312503D01* +X138416652Y-101334715D01* +X138445966Y-101340546D01* +X138745763Y-101340545D01* +X138775078Y-101334715D01* +X138808322Y-101312503D01* +X138830534Y-101279259D01* +X138836365Y-101249945D01* +X138836364Y-100340148D01* +X138830534Y-100310833D01* +X138808322Y-100277589D01* +X138775078Y-100255377D01* +X138775077Y-100255376D01* +X138775076Y-100255376D01* +X138746035Y-100249600D01* +X138745764Y-100249546D01* +X138745763Y-100249546D01* +X138445968Y-100249546D01* +X138416652Y-100255377D01* +X138383408Y-100277589D01* +X138361195Y-100310833D01* +X138359595Y-100318878D01* +X138353641Y-100327787D01* +X138343132Y-100329877D01* +X138334223Y-100323923D01* +X138332134Y-100318878D01* +X138330534Y-100310833D01* +X138308322Y-100277589D01* +X138275078Y-100255377D01* +X138275077Y-100255376D01* +X138275076Y-100255376D01* +X138245764Y-100249546D01* +X138241703Y-100249546D01* +X138231804Y-100245445D01* +X138227707Y-100235889D01* +X138227545Y-100229273D01* +X138225446Y-100143610D01* +X138229303Y-100133616D01* +X138233082Y-100130798D01* +X138282821Y-100105456D01* +X138362226Y-100026051D01* +X138413206Y-99925996D01* +X138430773Y-99815084D01* +X138413206Y-99704172D01* +X138362226Y-99604117D01* +X138362225Y-99604115D01* +X138282822Y-99524712D01* +X138182766Y-99473732D01* +X138182767Y-99473732D01* +X138071854Y-99456165D01* +X137960941Y-99473732D01* +X137860885Y-99524712D01* +X137781482Y-99604115D01* +X137730502Y-99704171D01* +X137712935Y-99815084D01* +X137730502Y-99925996D01* +X137781482Y-100026052D01* +X137860885Y-100105455D01* +X137860887Y-100105456D01* +X137916155Y-100133616D01* +X137926905Y-100139093D01* +X137933864Y-100147241D01* +X137934545Y-100151224D01* +X137936710Y-100239554D01* +X137932853Y-100249551D01* +X137925445Y-100253628D01* +X137916652Y-100255376D01* +X137883408Y-100277589D01* +X137861195Y-100310833D01* +X137859595Y-100318878D01* +X137853641Y-100327787D01* +X137843132Y-100329877D01* +X137834223Y-100323923D01* +X137832134Y-100318878D01* +X137830534Y-100310833D01* +X137808322Y-100277589D01* +X137775078Y-100255377D01* +X137775077Y-100255376D01* +X137775076Y-100255376D01* +X137746035Y-100249600D01* +X137745764Y-100249546D01* +X137745763Y-100249546D01* +X137445968Y-100249546D01* +X137416652Y-100255377D01* +X137383408Y-100277589D01* +X137361195Y-100310833D01* +X137359595Y-100318878D01* +X137353641Y-100327787D01* +X137343132Y-100329877D01* +X137334223Y-100323923D01* +X137332134Y-100318878D01* +X137330534Y-100310833D01* +X137308322Y-100277589D01* +X137275078Y-100255377D01* +X137275077Y-100255376D01* +X137275076Y-100255376D01* +X137249465Y-100250282D01* +X137240555Y-100244329D01* +X137238196Y-100236632D01* +X137236680Y-99969718D01* +X137240725Y-99959796D01* +X137250602Y-99955639D01* +X137399240Y-99955639D01* +X137399241Y-99955639D01* +X137428556Y-99949809D01* +X137461800Y-99927597D01* +X137484012Y-99894353D01* +X137489843Y-99865039D01* +X137489842Y-99427464D01* +X137484012Y-99398149D01* +X137461800Y-99364905D01* +X137428556Y-99342693D01* +X137428555Y-99342692D01* +X137428554Y-99342692D01* +X137399242Y-99336862D01* +X136803843Y-99336862D01* +X136793944Y-99332761D01* +X136789843Y-99322862D01* +X136789843Y-98941917D01* +X136793944Y-98932018D01* +X136803843Y-98927917D01* +X137071843Y-98927917D01* +X137071843Y-98706529D01* +X137106843Y-98706529D01* +X137106843Y-98927917D01* +X137392295Y-98927917D01* +X137401048Y-98926178D01* +X137410973Y-98919546D01* +X137417602Y-98909625D01* +X137417602Y-98909623D01* +X137419343Y-98900873D01* +X137419343Y-98706529D01* +X137106843Y-98706529D01* +X137071843Y-98706529D01* +X137071843Y-98450140D01* +X137106843Y-98450140D01* +X137106843Y-98671529D01* +X137419342Y-98671529D01* +X137419342Y-98477187D01* +X137417603Y-98468434D01* +X137410971Y-98458509D01* +X137401049Y-98451880D01* +X137392299Y-98450140D01* +X137106843Y-98450140D01* +X137071843Y-98450140D01* +X136804859Y-98450140D01* +X136794960Y-98446039D01* +X136790859Y-98436140D01* +X136790863Y-98435816D01* +X136791046Y-98427868D01* +X136791029Y-98427611D01* +X136804249Y-97842774D01* +X136808572Y-97832970D01* +X136818561Y-97829095D01* +X136827980Y-97833030D01* +X140264543Y-101159111D01* +X140268805Y-101168941D01* +X140264867Y-101178906D01* +X140256997Y-101182998D01* +X140166866Y-101197274D01* +X140066810Y-101248254D01* +X139987407Y-101327657D01* +X139952043Y-101397061D01* +X139943895Y-101404020D01* +X139933213Y-101403179D01* +X139927928Y-101398483D01* +X139926978Y-101397061D01* +X139923322Y-101391589D01* +X139890078Y-101369377D01* +X139890077Y-101369376D01* +X139890076Y-101369376D01* +X139868041Y-101364993D01* +X139860764Y-101363546D01* +X139860763Y-101363546D01* +X138950968Y-101363546D01* +X138921652Y-101369377D01* +X138888408Y-101391589D01* +X138866195Y-101424834D01* +X138860365Y-101454147D01* +X138860365Y-101753942D01* +X138860366Y-101753945D01* +X138866196Y-101783259D01* +X138888408Y-101816503D01* +X138916236Y-101835096D01* +X138921652Y-101838715D01* +X138929696Y-101840315D01* +X138938605Y-101846268D01* +X138940696Y-101856777D01* +X138934743Y-101865686D01* +X138929696Y-101867777D01* +X138921652Y-101869376D01* +X138888408Y-101891589D01* +X138866195Y-101924834D01* +X138860365Y-101954147D01* +X138860365Y-102253942D01* +X138862764Y-102266004D01* +X138866196Y-102283259D01* +X138888408Y-102316503D01* +X138921652Y-102338715D01* +X138929696Y-102340315D01* +X138938605Y-102346268D01* +X138940696Y-102356777D01* +X138934743Y-102365686D01* +X138929696Y-102367777D01* +X138921652Y-102369376D01* +X138888408Y-102391589D01* +X138866195Y-102424834D01* +X138860365Y-102454147D01* +X138860365Y-102753942D01* +X138860366Y-102753945D01* +X138866196Y-102783259D01* +X138888408Y-102816503D01* +X138917620Y-102836021D01* +X138921652Y-102838715D01* +X138929696Y-102840315D01* +X138938605Y-102846268D01* +X138940696Y-102856777D01* +X138934743Y-102865686D01* +X138929696Y-102867777D01* +X138921652Y-102869376D01* +X138888408Y-102891589D01* +X138866195Y-102924834D01* +X138860365Y-102954147D01* +X138860365Y-103253942D01* +X138860366Y-103253945D01* +X138866196Y-103283259D01* +X138888408Y-103316503D01* +X138921652Y-103338715D01* +X138929696Y-103340315D01* +X138938605Y-103346268D01* +X138940696Y-103356777D01* +X138934743Y-103365686D01* +X138929696Y-103367777D01* +X138921652Y-103369376D01* +X138888408Y-103391589D01* +X138866195Y-103424834D01* +X138860365Y-103454147D01* +X138860365Y-103753942D01* +X138864748Y-103775980D01* +X138866196Y-103783259D01* +X138888408Y-103816503D01* +X138911957Y-103832237D01* +X138921652Y-103838715D01* +X138929696Y-103840315D01* +X138938605Y-103846268D01* +X138940696Y-103856777D01* +X138934743Y-103865686D01* +X138929696Y-103867777D01* +X138921652Y-103869376D01* +X138888408Y-103891589D01* +X138866195Y-103924834D01* +X138860365Y-103954147D01* +X138860365Y-104253942D01* +X138860366Y-104253945D01* +X138866196Y-104283259D01* +X138888408Y-104316503D01* +X138921652Y-104338715D01* +X138929696Y-104340315D01* +X138938605Y-104346268D01* +X138940696Y-104356777D01* +X138934743Y-104365686D01* +X138929696Y-104367777D01* +X138921652Y-104369376D01* +X138888408Y-104391589D01* +X138866195Y-104424834D01* +X138860365Y-104454147D01* +X138860365Y-104753942D01* +X138860366Y-104753945D01* +X138866196Y-104783259D01* +X138888408Y-104816503D01* +X138921652Y-104838715D01* +X138929696Y-104840315D01* +X138938605Y-104846268D01* +X138940696Y-104856777D01* +X138934743Y-104865686D01* +X138929696Y-104867777D01* +X138921652Y-104869376D01* +X138888408Y-104891589D01* +X138866195Y-104924834D01* +X138860365Y-104954147D01* +X138860365Y-105253942D01* +X138860366Y-105253945D01* +X138866196Y-105283259D01* +X138888408Y-105316503D01* +X138912765Y-105332777D01* +X138921652Y-105338715D01* +X138929696Y-105340315D01* +X138938605Y-105346268D01* +X138940696Y-105356777D01* +X138934743Y-105365686D01* +X138929696Y-105367777D01* +X138921652Y-105369376D01* +X138888408Y-105391589D01* +X138866195Y-105424834D01* +X138860365Y-105454147D01* +X138860365Y-105753942D01* +X138863387Y-105769133D01* +X138866196Y-105783259D01* +X138888408Y-105816503D01* +X138921652Y-105838715D01* +X138950966Y-105844546D01* +X139440591Y-105844545D01* +X139450289Y-105848448D01* +X140069770Y-106443401D01* +X140287413Y-106652427D01* +X140305856Y-106670139D01* +X140310155Y-106679953D01* +X140310158Y-106680236D01* +X140310158Y-107120748D01* +X140312152Y-107130771D01* +X140315989Y-107150065D01* +X140338201Y-107183309D01* +X140371445Y-107205521D01* +X140400759Y-107211352D01* +X140986556Y-107211351D01* +X141015871Y-107205521D01* +X141049115Y-107183309D01* +X141071327Y-107150065D01* +X141077158Y-107120751D01* +X141077158Y-107120748D01* +X141176158Y-107120748D01* +X141178152Y-107130771D01* +X141181989Y-107150065D01* +X141204201Y-107183309D01* +X141237445Y-107205521D01* +X141266759Y-107211352D01* +X141852556Y-107211351D01* +X141881871Y-107205521D01* +X141915115Y-107183309D01* +X141937327Y-107150065D01* +X141943158Y-107120751D01* +X141943157Y-107000253D01* +X141947257Y-106990355D01* +X141957152Y-106986254D01* +X143237156Y-106985941D01* +X143247055Y-106990039D01* +X143251158Y-106999938D01* +X143251158Y-107325248D01* +X143254811Y-107343612D01* +X143256989Y-107354565D01* +X143279201Y-107387809D01* +X143312445Y-107410021D01* +X143341759Y-107415852D01* +X143873688Y-107415851D01* +X143903003Y-107410021D01* +X143936247Y-107387809D01* +X143958459Y-107354565D01* +X143964290Y-107325251D01* +X143964289Y-106857852D01* +X144759527Y-106857852D01* +X144759527Y-107318304D01* +X144761265Y-107327057D01* +X144767897Y-107336982D01* +X144777819Y-107343611D01* +X144786570Y-107345351D01* +X145028092Y-107345351D01* +X145028092Y-106857852D01* +X145063092Y-106857852D01* +X145063092Y-107345351D01* +X145304610Y-107345351D01* +X145313363Y-107343612D01* +X145323288Y-107336980D01* +X145329917Y-107327059D01* +X145329917Y-107327057D01* +X145331658Y-107318307D01* +X145331658Y-106857852D01* +X145063092Y-106857852D01* +X145028092Y-106857852D01* +X144759527Y-106857852D01* +X143964289Y-106857852D01* +X143964289Y-106822852D01* +X144759526Y-106822852D01* +X145028092Y-106822852D01* +X145028092Y-106335352D01* +X145063092Y-106335352D01* +X145063092Y-106822852D01* +X145331657Y-106822852D01* +X145331657Y-106362399D01* +X145329918Y-106353646D01* +X145323286Y-106343721D01* +X145313364Y-106337092D01* +X145304614Y-106335352D01* +X145063092Y-106335352D01* +X145028092Y-106335352D01* +X144786573Y-106335352D01* +X144777820Y-106337091D01* +X144767895Y-106343723D01* +X144761266Y-106353644D01* +X144761266Y-106353646D01* +X144759526Y-106362396D01* +X144759526Y-106822852D01* +X143964289Y-106822852D01* +X143964289Y-106355454D01* +X143958459Y-106326139D01* +X143936247Y-106292895D01* +X143903003Y-106270683D01* +X143903002Y-106270682D01* +X143903001Y-106270682D01* +X143880966Y-106266299D01* +X143873689Y-106264852D01* +X143873688Y-106264852D01* +X143341761Y-106264852D01* +X143312445Y-106270683D01* +X143279201Y-106292895D01* +X143256988Y-106326140D01* +X143251158Y-106355453D01* +X143251158Y-106680941D01* +X143247057Y-106690840D01* +X143237161Y-106694941D01* +X141957160Y-106695254D01* +X141947260Y-106691156D01* +X141943157Y-106681257D01* +X141943157Y-106560955D01* +X141939252Y-106541320D01* +X141937327Y-106531639D01* +X141915115Y-106498395D01* +X141881871Y-106476183D01* +X141881870Y-106476182D01* +X141881869Y-106476182D01* +X141859834Y-106471799D01* +X141852557Y-106470352D01* +X141852556Y-106470352D01* +X141266761Y-106470352D01* +X141237445Y-106476183D01* +X141204201Y-106498395D01* +X141181988Y-106531640D01* +X141176158Y-106560953D01* +X141176158Y-107120748D01* +X141077158Y-107120748D01* +X141077157Y-106560954D01* +X141071327Y-106531639D01* +X141049115Y-106498395D01* +X141015871Y-106476183D01* +X141015870Y-106476182D01* +X141015869Y-106476182D01* +X140986557Y-106470352D01* +X140523571Y-106470352D01* +X140513873Y-106466449D01* +X140434801Y-106390508D01* +X140064173Y-106034553D01* +X139884692Y-105862178D01* +X139880393Y-105852364D01* +X139884293Y-105842383D01* +X139889040Y-105839144D01* +X139890071Y-105838716D01* +X139890078Y-105838715D01* +X139923322Y-105816503D01* +X139945534Y-105783259D01* +X139951365Y-105753945D01* +X139951364Y-105454148D01* +X139945534Y-105424833D01* +X139923322Y-105391589D01* +X139897627Y-105374421D01* +X139890077Y-105369376D01* +X139882032Y-105367776D01* +X139873123Y-105361822D01* +X139871033Y-105351313D01* +X139876987Y-105342404D01* +X139882030Y-105340315D01* +X139890078Y-105338715D01* +X139898965Y-105332777D01* +X139904389Y-105329153D01* +X139914230Y-105326946D01* +X148022536Y-106535805D01* +X148031722Y-106541320D01* +X148034298Y-106547460D01* +X148035076Y-106552367D01* +X148035077Y-106552372D01* +X148086057Y-106652428D01* +X148165460Y-106731831D01* +X148165462Y-106731832D01* +X148264668Y-106782379D01* +X148271626Y-106790526D01* +X148270785Y-106801208D01* +X148265201Y-106807039D01* +X142609282Y-110004672D01* +X142609260Y-110004683D01* +X142562301Y-110031234D01* +X142545664Y-110040638D01* +X142545633Y-110040657D01* +X142542123Y-110042642D01* +X142542115Y-110042648D01* +X142540076Y-110044363D01* +X142539482Y-110044811D01* +X142507885Y-110066105D01* +X142504873Y-110068498D01* +X142501363Y-110070535D01* +X142495265Y-110072973D01* +X142472164Y-110094489D01* +X142472159Y-110094494D01* +X142466322Y-110099930D01* +X142455464Y-110110044D01* +X142417915Y-110145015D01* +X142417913Y-110145017D01* +X142113722Y-110428335D01* +X142103683Y-110432081D01* +X142094602Y-110428301D01* +X141992700Y-110332722D01* +X141044691Y-109443532D01* +X139049863Y-107572474D01* +X139045448Y-107562711D01* +X139045441Y-107562263D01* +X139045441Y-107372865D01* +X139045441Y-107372864D01* +X139039611Y-107343549D01* +X139017399Y-107310305D01* +X138984155Y-107288093D01* +X138984154Y-107288092D01* +X138984153Y-107288092D01* +X138954841Y-107282262D01* +X138936730Y-107282262D01* +X138926831Y-107278161D01* +X138922742Y-107268845D01* +X138917273Y-107137611D01* +X138885490Y-106374985D01* +X138867223Y-106295702D01* +X138852036Y-106273314D01* +X138838778Y-106253769D01* +X138836364Y-106245910D01* +X138836364Y-105959149D01* +X138835857Y-105956600D01* +X138830534Y-105929833D01* +X138808322Y-105896589D01* +X138775078Y-105874377D01* +X138775077Y-105874376D01* +X138775076Y-105874376D01* +X138753041Y-105869993D01* +X138745764Y-105868546D01* +X138745763Y-105868546D01* +X138445968Y-105868546D01* +X138416652Y-105874377D01* +X138383408Y-105896589D01* +X138361195Y-105929833D01* +X138359595Y-105937878D01* +X138353641Y-105946787D01* +X138343132Y-105948877D01* +X138334223Y-105942923D01* +X138332134Y-105937878D01* +X138330534Y-105929833D01* +X138308322Y-105896589D01* +X138275078Y-105874377D01* +X138275077Y-105874376D01* +X138275076Y-105874376D01* +X138253041Y-105869993D01* +X138245764Y-105868546D01* +X138245763Y-105868546D01* +X137945968Y-105868546D01* +X137916652Y-105874377D01* +X137883408Y-105896589D01* +X137861195Y-105929833D01* +X137859595Y-105937878D01* +X137853641Y-105946787D01* +X137843132Y-105948877D01* +X137834223Y-105942923D01* +X137832134Y-105937878D01* +X137830534Y-105929833D01* +X137808322Y-105896589D01* +X137775078Y-105874377D01* +X137775077Y-105874376D01* +X137775076Y-105874376D01* +X137753041Y-105869993D01* +X137745764Y-105868546D01* +X137745763Y-105868546D01* +X137445968Y-105868546D01* +X137416652Y-105874377D01* +X137383408Y-105896589D01* +X137361195Y-105929833D01* +X137359595Y-105937878D01* +X137353641Y-105946787D01* +X137343132Y-105948877D01* +X137334223Y-105942923D01* +X137332134Y-105937878D01* +X137330534Y-105929833D01* +X137308322Y-105896589D01* +X137275078Y-105874377D01* +X137275077Y-105874376D01* +X137275076Y-105874376D01* +X137253041Y-105869993D01* +X137245764Y-105868546D01* +X137245763Y-105868546D01* +X136945968Y-105868546D01* +X136916652Y-105874377D01* +X136883408Y-105896589D01* +X136861195Y-105929833D01* +X136859595Y-105937878D01* +X136853641Y-105946787D01* +X136843132Y-105948877D01* +X136834223Y-105942923D01* +X136832134Y-105937878D01* +X136830534Y-105929833D01* +X136808322Y-105896589D01* +X136775078Y-105874377D01* +X136775077Y-105874376D01* +X136775076Y-105874376D01* +X136753041Y-105869993D01* +X136745764Y-105868546D01* +X136745763Y-105868546D01* +X136445968Y-105868546D01* +X136416652Y-105874377D01* +X136383408Y-105896589D01* +X136361195Y-105929833D01* +X136359595Y-105937878D01* +X136353641Y-105946787D01* +X136343132Y-105948877D01* +X136334223Y-105942923D01* +X136332134Y-105937878D01* +X136330534Y-105929833D01* +X136308322Y-105896589D01* +X136275078Y-105874377D01* +X136275077Y-105874376D01* +X136275076Y-105874376D01* +X136245764Y-105868546D01* +X136018266Y-105868546D01* +X136008367Y-105864445D01* +X136005507Y-105860308D01* +X136003104Y-105854987D01* +X136003103Y-105854969D01* +X136000646Y-105849533D01* +X136000647Y-105849533D01* +X135995634Y-105838442D01* +X135992749Y-105832051D01* +X135992746Y-105832047D01* +X135992607Y-105831739D01* +X135992593Y-105831712D01* +X135983379Y-105811325D01* +X135983378Y-105811324D01* +X135983377Y-105811321D01* +X135928667Y-105747757D01* +X135928666Y-105747756D01* +X135928665Y-105747755D01* +X135869891Y-105709806D01* +X135863799Y-105700992D01* +X135865724Y-105690451D01* +X135874538Y-105684359D01* +X135877485Y-105684045D01* +X136578365Y-105684045D01* +X136578365Y-103621546D01* +X136613365Y-103621546D01* +X136613365Y-105684045D01* +X138648817Y-105684045D01* +X138657570Y-105682306D01* +X138667495Y-105675674D01* +X138674124Y-105665753D01* +X138674124Y-105665751D01* +X138675865Y-105657001D01* +X138675865Y-103621546D01* +X136613365Y-103621546D01* +X136578365Y-103621546D01* +X134515866Y-103621546D01* +X134515866Y-105656999D01* +X134516823Y-105661819D01* +X134514729Y-105672328D01* +X134505818Y-105678278D01* +X134503091Y-105678546D01* +X134490618Y-105678546D01* +X134490545Y-105678538D01* +X134489039Y-105678538D01* +X134479662Y-105678540D01* +X134461638Y-105678544D01* +X134461624Y-105678538D01* +X134455830Y-105678538D01* +X134438322Y-105678538D01* +X134438240Y-105678538D01* +X134437980Y-105678546D01* +X134436709Y-105678546D01* +X134436707Y-105678546D01* +X134436699Y-105678547D01* +X134435901Y-105678761D01* +X134434937Y-105678947D01* +X134403568Y-105682749D01* +X134372968Y-105690267D01* +X134371996Y-105690435D01* +X134371118Y-105690522D01* +X134371112Y-105690524D01* +X134369828Y-105691009D01* +X134369681Y-105691060D01* +X134355480Y-105696430D01* +X134353181Y-105697299D01* +X134350308Y-105698384D01* +X134339598Y-105698044D01* +X134332266Y-105690230D01* +X134331364Y-105685286D01* +X134331364Y-105454149D01* +X134328634Y-105440423D01* +X134325534Y-105424833D01* +X134303322Y-105391589D01* +X134277627Y-105374421D01* +X134270077Y-105369376D01* +X134262032Y-105367776D01* +X134253123Y-105361822D01* +X134251033Y-105351313D01* +X134256987Y-105342404D01* +X134262030Y-105340315D01* +X134270078Y-105338715D01* +X134303322Y-105316503D01* +X134325534Y-105283259D01* +X134331365Y-105253945D01* +X134331364Y-104954148D01* +X134325534Y-104924833D01* +X134303322Y-104891589D01* +X134278142Y-104874765D01* +X134270077Y-104869376D01* +X134262032Y-104867776D01* +X134253123Y-104861822D01* +X134251033Y-104851313D01* +X134256987Y-104842404D01* +X134262030Y-104840315D01* +X134270078Y-104838715D01* +X134303322Y-104816503D01* +X134325534Y-104783259D01* +X134331365Y-104753945D01* +X134331364Y-104454148D01* +X134325534Y-104424833D01* +X134303322Y-104391589D01* +X134270078Y-104369377D01* +X134270077Y-104369376D01* +X134262032Y-104367776D01* +X134253123Y-104361822D01* +X134251033Y-104351313D01* +X134256987Y-104342404D01* +X134262030Y-104340315D01* +X134270078Y-104338715D01* +X134303322Y-104316503D01* +X134325534Y-104283259D01* +X134331365Y-104253945D01* +X134331364Y-103954148D01* +X134325534Y-103924833D01* +X134303322Y-103891589D01* +X134270078Y-103869377D01* +X134270077Y-103869376D01* +X134262032Y-103867776D01* +X134253123Y-103861822D01* +X134251033Y-103851313D01* +X134256987Y-103842404D01* +X134262030Y-103840315D01* +X134270078Y-103838715D01* +X134303322Y-103816503D01* +X134325534Y-103783259D01* +X134331365Y-103753945D01* +X134331364Y-103586546D01* +X134515865Y-103586546D01* +X136578365Y-103586546D01* +X136578365Y-101524046D01* +X136613365Y-101524046D01* +X136613365Y-103586546D01* +X138675864Y-103586546D01* +X138675864Y-101551093D01* +X138674125Y-101542340D01* +X138667493Y-101532415D01* +X138657571Y-101525786D01* +X138648821Y-101524046D01* +X136613365Y-101524046D01* +X136578365Y-101524046D01* +X134542912Y-101524046D01* +X134534159Y-101525785D01* +X134524234Y-101532417D01* +X134517605Y-101542338D01* +X134517605Y-101542340D01* +X134515865Y-101551090D01* +X134515865Y-103586546D01* +X134331364Y-103586546D01* +X134331364Y-103454148D01* +X134325534Y-103424833D01* +X134303322Y-103391589D01* +X134281109Y-103376747D01* +X134270077Y-103369376D01* +X134262032Y-103367776D01* +X134253123Y-103361822D01* +X134251033Y-103351313D01* +X134256987Y-103342404D01* +X134262030Y-103340315D01* +X134270078Y-103338715D01* +X134303322Y-103316503D01* +X134325534Y-103283259D01* +X134331365Y-103253945D01* +X134331364Y-102954148D01* +X134325534Y-102924833D01* +X134303322Y-102891589D01* +X134270078Y-102869377D01* +X134270077Y-102869376D01* +X134262032Y-102867776D01* +X134253123Y-102861822D01* +X134251033Y-102851313D01* +X134256987Y-102842404D01* +X134262030Y-102840315D01* +X134270078Y-102838715D01* +X134303322Y-102816503D01* +X134325534Y-102783259D01* +X134331365Y-102753945D01* +X134331364Y-102454148D01* +X134325534Y-102424833D01* +X134303322Y-102391589D01* +X134270078Y-102369377D01* +X134270077Y-102369376D01* +X134262032Y-102367776D01* +X134253123Y-102361822D01* +X134251033Y-102351313D01* +X134256987Y-102342404D01* +X134262030Y-102340315D01* +X134270078Y-102338715D01* +X134303322Y-102316503D01* +X134325534Y-102283259D01* +X134331365Y-102253945D01* +X134331364Y-101954148D01* +X134325534Y-101924833D01* +X134303322Y-101891589D01* +X134270442Y-101869620D01* +X134270077Y-101869376D01* +X134262032Y-101867776D01* +X134253123Y-101861822D01* +X134251033Y-101851313D01* +X134256987Y-101842404D01* +X134262030Y-101840315D01* +X134270078Y-101838715D01* +X134303322Y-101816503D01* +X134325534Y-101783259D01* +X134331365Y-101753945D01* +X134331364Y-101454148D01* +X134325534Y-101424833D01* +X134303322Y-101391589D01* +X134270078Y-101369377D01* +X134270077Y-101369376D01* +X134270076Y-101369376D01* +X134248041Y-101364993D01* +X134240764Y-101363546D01* +X134240763Y-101363546D01* +X133330968Y-101363546D01* +X133301652Y-101369377D01* +X133268408Y-101391589D01* +X133246195Y-101424834D01* +X133240365Y-101454147D01* +X133240365Y-101753942D01* +X133240366Y-101753945D01* +X133246196Y-101783259D01* +X133268408Y-101816503D01* +X133296236Y-101835096D01* +X133301652Y-101838715D01* +X133309696Y-101840315D01* +X133318605Y-101846268D01* +X133320696Y-101856777D01* +X133314743Y-101865686D01* +X133309696Y-101867777D01* +X133301652Y-101869376D01* +X133268408Y-101891589D01* +X133246195Y-101924834D01* +X133240365Y-101954147D01* +X133240365Y-102253942D01* +X133242764Y-102266004D01* +X133246196Y-102283259D01* +X133268408Y-102316503D01* +X133301652Y-102338715D01* +X133309696Y-102340315D01* +X133318605Y-102346268D01* +X133320696Y-102356777D01* +X133314743Y-102365686D01* +X133309696Y-102367777D01* +X133301652Y-102369376D01* +X133275185Y-102387060D01* +X133269133Y-102391105D01* +X133267262Y-102392355D01* +X133266961Y-102391904D01* +X133258992Y-102395206D01* +X133249093Y-102391105D01* +X133174972Y-102316984D01* +X133074916Y-102266004D01* +X133074917Y-102266004D01* +X133014993Y-102256513D01* +X132964004Y-102248437D01* +X132964003Y-102248437D01* +X132922077Y-102255077D01* +X132911658Y-102252575D01* +X132908079Y-102248771D01* +X132749201Y-101999379D01* +X132747341Y-101988827D01* +X132752670Y-101981038D01* +X132752597Y-101980965D01* +X132752987Y-101980574D01* +X132753232Y-101980215D01* +X132753572Y-101979989D01* +X132775784Y-101946745D01* +X132781615Y-101917431D01* +X132781614Y-101467356D01* +X132775784Y-101438041D01* +X132753572Y-101404797D01* +X132720328Y-101382585D01* +X132720327Y-101382584D01* +X132720326Y-101382584D01* +X132691014Y-101376754D01* +X132095615Y-101376754D01* +X132085716Y-101372653D01* +X132081615Y-101362754D01* +X132081615Y-100981809D01* +X132085716Y-100971910D01* +X132095615Y-100967809D01* +X132363615Y-100967809D01* +X132398614Y-100967809D01* +X132684067Y-100967809D01* +X132692820Y-100966070D01* +X132702745Y-100959438D01* +X132709374Y-100949517D01* +X132709374Y-100949515D01* +X132711115Y-100940765D01* +X132711115Y-100740171D01* +X132398615Y-100740171D01* +X132398614Y-100967809D01* +X132363615Y-100967809D01* +X132363615Y-100477532D01* +X132398614Y-100477532D01* +X132398615Y-100705171D01* +X132711114Y-100705171D01* +X132711114Y-100504579D01* +X132709375Y-100495826D01* +X132702743Y-100485901D01* +X132692821Y-100479272D01* +X132684071Y-100477532D01* +X132398614Y-100477532D01* +X132363615Y-100477532D01* +X132124788Y-100477532D01* +X132114889Y-100473431D01* +X132110788Y-100463532D01* +X132112819Y-100456270D01* +X134191767Y-97031863D01* +X134200409Y-97025530D01* +X134210999Y-97027162D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X125734989Y-100299620D02* +G01* +X125739267Y-100308166D01* +X126688545Y-108471077D01* +X126685616Y-108481384D01* +X126677370Y-108486425D01* +X126653898Y-108491093D01* +X126620654Y-108513305D01* +X126598441Y-108546550D01* +X126592611Y-108575863D01* +X126592611Y-109185720D01* +X126591446Y-109191311D01* +X126128784Y-110253433D01* +X126128756Y-110253509D01* +X126126354Y-110259026D01* +X126110983Y-110308002D01* +X126110981Y-110308013D01* +X126106706Y-110329383D01* +X126100743Y-110338286D01* +X126090232Y-110340365D01* +X126085200Y-110338278D01* +X126076885Y-110332722D01* +X126076884Y-110332721D01* +X126076883Y-110332721D01* +X126047571Y-110326891D01* +X125995882Y-110326891D01* +X125985983Y-110322790D01* +X125981887Y-110313269D01* +X125886309Y-106779049D01* +X125711366Y-100310159D01* +X125715198Y-100300155D01* +X125724983Y-100295788D01* +X125734989Y-100299620D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X125949835Y-99392766D02* +G01* +X125952317Y-99395306D01* +X125959910Y-99405360D01* +X126042906Y-99515264D01* +X126193629Y-99652666D01* +X126367031Y-99760032D01* +X126367030Y-99760032D01* +X126367033Y-99760033D01* +X126557214Y-99833709D01* +X126757694Y-99871185D01* +X126859449Y-99871185D01* +X126869348Y-99875286D01* +X126872914Y-99881355D01* +X127477555Y-102008031D01* +X128806055Y-106680704D01* +X128804818Y-106691348D01* +X128804530Y-106691841D01* +X128005241Y-107997816D01* +X127715481Y-108471262D01* +X127711008Y-108478570D01* +X127702343Y-108484873D01* +X127699067Y-108485262D01* +X127674497Y-108485262D01* +X127664598Y-108481161D01* +X127660497Y-108471262D01* +X127661508Y-108466039D01* +X128095027Y-107387808D01* +X128195065Y-107138996D01* +X128202562Y-107131342D01* +X128208054Y-107130220D01* +X128402837Y-107130220D01* +X128402838Y-107130220D01* +X128432153Y-107124390D01* +X128465397Y-107102178D01* +X128487609Y-107068934D01* +X128493440Y-107039620D01* +X128493439Y-106419823D01* +X128487609Y-106390508D01* +X128465397Y-106357264D01* +X128432153Y-106335052D01* +X128432152Y-106335051D01* +X128432151Y-106335051D01* +X128410116Y-106330668D01* +X128402839Y-106329221D01* +X128402838Y-106329221D01* +X128002765Y-106329221D01* +X127973449Y-106335052D01* +X127940205Y-106357264D01* +X127917992Y-106390509D01* +X127912162Y-106419822D01* +X127912162Y-107039619D01* +X127914400Y-107050872D01* +X127913658Y-107058825D01* +X127356218Y-108445268D01* +X127356183Y-108445335D01* +X127349603Y-108461707D01* +X127348655Y-108463429D01* +X127348703Y-108463455D01* +X127348268Y-108464259D01* +X127347589Y-108466039D01* +X127342353Y-108479756D01* +X127340139Y-108485263D01* +X127336157Y-108495165D01* +X127335929Y-108496054D01* +X127335874Y-108496039D01* +X127335401Y-108497940D01* +X127329078Y-108514479D01* +X127329036Y-108514638D01* +X127200967Y-108850140D01* +X127193606Y-108857926D01* +X127182895Y-108858226D01* +X127175109Y-108850865D01* +X127173888Y-108845147D01* +X127173888Y-108575865D01* +X127172000Y-108566373D01* +X127168058Y-108546549D01* +X127145846Y-108513305D01* +X127112602Y-108491093D01* +X127112601Y-108491092D01* +X127112600Y-108491092D01* +X127083288Y-108485262D01* +X126995622Y-108485262D01* +X126985723Y-108481161D01* +X126981716Y-108472879D01* +X126909789Y-107854373D01* +X125927239Y-99405357D01* +X125930168Y-99395053D01* +X125939528Y-99389837D01* +X125949835Y-99392766D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X134810288Y-96944568D02* +G01* +X135120734Y-97247538D01* +X135124955Y-97257385D01* +X135124956Y-97257556D01* +X135124956Y-97432483D01* +X135128176Y-97448671D01* +X135130787Y-97461800D01* +X135152999Y-97495044D01* +X135186243Y-97517256D01* +X135215557Y-97523087D01* +X135603132Y-97523086D01* +X135632447Y-97517256D01* +X135665691Y-97495044D01* +X135687903Y-97461800D01* +X135693734Y-97432486D01* +X135693733Y-97431939D01* +X135697826Y-97422039D01* +X135707722Y-97417931D01* +X135707904Y-97417931D01* +X136205903Y-97425130D01* +X136215742Y-97429374D01* +X136219700Y-97439128D01* +X136219700Y-97448669D01* +X136225531Y-97477986D01* +X136225532Y-97477988D01* +X136227733Y-97481282D01* +X136230089Y-97489376D01* +X136209045Y-98420327D01* +X136208107Y-98425060D01* +X136207843Y-98425741D01* +X136207843Y-98473564D01* +X136207381Y-98493956D01* +X136207381Y-98493957D01* +X136207659Y-98495650D01* +X136207843Y-98497913D01* +X136207843Y-99850634D01* +X136207354Y-99854301D01* +X136205341Y-99861716D01* +X136205341Y-99861717D01* +X136205341Y-99861718D01* +X136207862Y-99885741D01* +X136211017Y-99915815D01* +X136215195Y-99955640D01* +X136244410Y-100234085D01* +X136241364Y-100244358D01* +X136231947Y-100249470D01* +X136230486Y-100249546D01* +X135945968Y-100249546D01* +X135916652Y-100255377D01* +X135883408Y-100277589D01* +X135861195Y-100310833D01* +X135859595Y-100318878D01* +X135853641Y-100327787D01* +X135843132Y-100329877D01* +X135834223Y-100323923D01* +X135832134Y-100318878D01* +X135830534Y-100310833D01* +X135808322Y-100277589D01* +X135775078Y-100255377D01* +X135775077Y-100255376D01* +X135775076Y-100255376D01* +X135746035Y-100249600D01* +X135745764Y-100249546D01* +X135745763Y-100249546D01* +X135445968Y-100249546D01* +X135416652Y-100255377D01* +X135383408Y-100277589D01* +X135361195Y-100310833D01* +X135359595Y-100318878D01* +X135353641Y-100327787D01* +X135343132Y-100329877D01* +X135334223Y-100323923D01* +X135332134Y-100318878D01* +X135330534Y-100310833D01* +X135308322Y-100277589D01* +X135275078Y-100255377D01* +X135275077Y-100255376D01* +X135275076Y-100255376D01* +X135246035Y-100249600D01* +X135245764Y-100249546D01* +X135245763Y-100249546D01* +X134945968Y-100249546D01* +X134916652Y-100255377D01* +X134883408Y-100277589D01* +X134861195Y-100310833D01* +X134859595Y-100318878D01* +X134853641Y-100327787D01* +X134843132Y-100329877D01* +X134834223Y-100323923D01* +X134832134Y-100318878D01* +X134830534Y-100310833D01* +X134826694Y-100305086D01* +X134824517Y-100295067D01* +X134854930Y-100107909D01* +X134860566Y-100098797D01* +X134868749Y-100096156D01* +X134993298Y-100096156D01* +X134993299Y-100096156D01* +X135022614Y-100090326D01* +X135055858Y-100068114D01* +X135078070Y-100034870D01* +X135083901Y-100005556D01* +X135083900Y-99713157D01* +X135492846Y-99713157D01* +X135492846Y-99998609D01* +X135494584Y-100007362D01* +X135501216Y-100017287D01* +X135511138Y-100023916D01* +X135519889Y-100025656D01* +X135714234Y-100025656D01* +X135714234Y-99713157D01* +X135749234Y-99713157D01* +X135749234Y-100025656D01* +X135943575Y-100025656D01* +X135952328Y-100023917D01* +X135962253Y-100017285D01* +X135968882Y-100007364D01* +X135968882Y-100007362D01* +X135970623Y-99998612D01* +X135970623Y-99713157D01* +X135749234Y-99713157D01* +X135714234Y-99713157D01* +X135492846Y-99713157D01* +X135083900Y-99713157D01* +X135083900Y-99678157D01* +X135492845Y-99678157D01* +X135714234Y-99678157D01* +X135714234Y-99365657D01* +X135749234Y-99365657D01* +X135749234Y-99678157D01* +X135970622Y-99678157D01* +X135970622Y-99392704D01* +X135968883Y-99383951D01* +X135962251Y-99374026D01* +X135952329Y-99367397D01* +X135943579Y-99365657D01* +X135749234Y-99365657D01* +X135714234Y-99365657D01* +X135519892Y-99365657D01* +X135511139Y-99367396D01* +X135501214Y-99374028D01* +X135494585Y-99383949D01* +X135494585Y-99383951D01* +X135492845Y-99392701D01* +X135492845Y-99678157D01* +X135083900Y-99678157D01* +X135083900Y-99385759D01* +X135078070Y-99356444D01* +X135055858Y-99323200D01* +X135022614Y-99300988D01* +X135022613Y-99300987D01* +X135022612Y-99300987D01* +X134993300Y-99295157D01* +X134891023Y-99295157D01* +X134881124Y-99291056D01* +X134877101Y-99282631D01* +X134843043Y-98960910D01* +X134692283Y-97536785D01* +X134695318Y-97526510D01* +X134703473Y-97521581D01* +X134725225Y-97517256D01* +X134758469Y-97495044D01* +X134780681Y-97461800D01* +X134786512Y-97432486D01* +X134786511Y-96954587D01* +X134790611Y-96944689D01* +X134800511Y-96940588D01* +X134810288Y-96944568D01* +G37* +%TD.AperFunction*% +%TA.AperFunction,Conductor*% +G36* +X149295399Y-93204601D02* +G01* +X149299500Y-93214500D01* +X149299500Y-95045762D01* +X149308868Y-95065218D01* +X149309903Y-95068176D01* +X149314709Y-95089230D01* +X149328176Y-95106116D01* +X149329841Y-95108766D01* +X149339212Y-95128224D01* +X149339213Y-95128225D01* +X149356094Y-95141688D01* +X149358310Y-95143904D01* +X149371774Y-95160786D01* +X149371776Y-95160788D01* +X149371777Y-95160788D01* +X149371778Y-95160789D01* +X149391229Y-95170157D01* +X149393883Y-95171824D01* +X149405809Y-95181335D01* +X149410769Y-95185290D01* +X149431824Y-95190095D01* +X149434776Y-95191128D01* +X149454237Y-95200500D01* +X149477410Y-95200500D01* +X154285500Y-95200500D01* +X154295399Y-95204601D01* +X154299500Y-95214500D01* +X154299500Y-103663500D01* +X154295399Y-103673399D01* +X154285500Y-103677500D01* +X151135909Y-103677500D01* +X151128685Y-103679149D01* +X151125570Y-103679500D01* +X151109735Y-103679500D01* +X151095471Y-103686368D01* +X151092514Y-103687403D01* +X151069270Y-103692709D01* +X151069268Y-103692710D01* +X151050623Y-103707578D01* +X151047970Y-103709245D01* +X151027278Y-103719210D01* +X151027274Y-103719213D01* +X151012951Y-103737173D01* +X151010735Y-103739389D01* +X150997713Y-103749774D01* +X150997710Y-103749778D01* +X150990485Y-103764780D01* +X150988818Y-103767433D01* +X150970210Y-103790768D01* +X150970209Y-103790770D01* +X150963568Y-103819862D01* +X150962534Y-103822818D01* +X150958000Y-103832237D01* +X150958000Y-103842687D01* +X150957649Y-103845802D01* +X150955000Y-103857408D01* +X150955000Y-112152590D01* +X150970209Y-112219229D01* +X150970210Y-112219231D01* +X151027276Y-112290788D01* +X151027277Y-112290788D01* +X151027278Y-112290789D01* +X151070731Y-112311716D01* +X151073133Y-112313225D01* +X151073397Y-112313352D01* +X151076077Y-112314289D01* +X151109737Y-112330500D01* +X151201263Y-112330500D01* +X151201915Y-112330185D01* +X151202539Y-112329886D01* +X151208612Y-112328500D01* +X154285500Y-112328500D01* +X154295399Y-112332601D01* +X154299500Y-112342500D01* +X154299500Y-120785500D01* +X154295399Y-120795399D01* +X154285500Y-120799500D01* +X149454235Y-120799500D01* +X149434779Y-120808868D01* +X149431822Y-120809903D01* +X149410770Y-120814709D01* +X149410767Y-120814710D01* +X149393881Y-120828176D01* +X149391228Y-120829843D01* +X149371778Y-120839210D01* +X149371774Y-120839213D01* +X149358311Y-120856095D01* +X149356095Y-120858311D01* +X149339213Y-120871774D01* +X149339210Y-120871778D01* +X149329843Y-120891228D01* +X149328176Y-120893881D01* +X149314710Y-120910767D01* +X149314709Y-120910770D01* +X149309903Y-120931822D01* +X149308868Y-120934779D01* +X149299500Y-120954235D01* +X149299500Y-122785500D01* +X149295399Y-122795399D01* +X149285500Y-122799500D01* +X124714500Y-122799500D01* +X124704601Y-122795399D01* +X124700500Y-122785500D01* +X124700500Y-121971774D01* +X126072671Y-121971774D01* +X126087303Y-122064157D01* +X126144036Y-122175502D01* +X126232398Y-122263864D01* +X126232400Y-122263865D01* +X126343744Y-122320598D01* +X126467171Y-122340147D01* +X126590598Y-122320598D01* +X126701942Y-122263865D01* +X126790306Y-122175501D01* +X126847039Y-122064157D01* +X126861671Y-121971775D01* +X126861671Y-121971774D01* +X127342670Y-121971774D01* +X127357303Y-122064157D01* +X127414036Y-122175502D01* +X127502398Y-122263864D01* +X127502400Y-122263865D01* +X127613744Y-122320598D01* +X127737171Y-122340147D01* +X127860598Y-122320598D01* +X127971942Y-122263865D01* +X128060306Y-122175501D01* +X128117039Y-122064157D01* +X128131671Y-121971775D01* +X128131671Y-121971774D01* +X128612671Y-121971774D01* +X128627303Y-122064157D01* +X128684036Y-122175502D01* +X128772398Y-122263864D01* +X128772400Y-122263865D01* +X128883744Y-122320598D01* +X129007171Y-122340147D01* +X129130598Y-122320598D01* +X129241942Y-122263865D01* +X129330306Y-122175501D01* +X129387039Y-122064157D01* +X129401671Y-121971775D01* +X129401671Y-121229730D01* +X129953171Y-121229730D01* +X129953171Y-121969074D01* +X129968013Y-122053253D01* +X130025141Y-122152203D01* +X130112672Y-122225650D01* +X130220039Y-122264729D01* +X130220042Y-122264730D01* +X130259671Y-122264730D01* +X130259671Y-121229730D01* +X130294671Y-121229730D01* +X130294671Y-122264730D01* +X130334300Y-122264730D01* +X130334302Y-122264729D01* +X130441669Y-122225650D01* +X130529200Y-122152203D01* +X130586328Y-122053253D01* +X130601170Y-121969074D01* +X130601171Y-121229730D01* +X130294671Y-121229730D01* +X130259671Y-121229730D01* +X129953171Y-121229730D01* +X129401671Y-121229730D01* +X129401671Y-121194730D01* +X129953171Y-121194730D01* +X130259671Y-121194730D01* +X130259671Y-120159730D01* +X130294671Y-120159730D01* +X130294671Y-121194730D01* +X130601171Y-121194730D01* +X130601170Y-120455385D01* +X130586328Y-120371206D01* +X130529200Y-120272256D01* +X130441669Y-120198809D01* +X130334302Y-120159730D01* +X130294671Y-120159730D01* +X130259671Y-120159730D01* +X130220039Y-120159730D01* +X130112672Y-120198809D01* +X130025141Y-120272256D01* +X129968013Y-120371206D01* +X129953171Y-120455385D01* +X129953171Y-121194730D01* +X129401671Y-121194730D01* +X129401671Y-120452685D01* +X129387039Y-120360303D01* +X129330306Y-120248959D01* +X129330305Y-120248957D01* +X129241943Y-120160595D01* +X129130598Y-120103862D01* +X129130599Y-120103862D01* +X129068884Y-120094087D01* +X129007171Y-120084313D01* +X129007170Y-120084313D01* +X128883743Y-120103862D01* +X128772398Y-120160595D01* +X128684036Y-120248957D01* +X128627303Y-120360302D01* +X128612671Y-120452685D01* +X128612671Y-121971774D01* +X128131671Y-121971774D01* +X128131671Y-120452685D01* +X128117039Y-120360303D01* +X128060306Y-120248959D01* +X128060305Y-120248957D01* +X127971943Y-120160595D01* +X127860598Y-120103862D01* +X127860599Y-120103862D01* +X127737171Y-120084313D01* +X127613743Y-120103862D01* +X127502398Y-120160595D01* +X127414036Y-120248957D01* +X127357303Y-120360302D01* +X127342670Y-120452685D01* +X127342670Y-121971774D01* +X126861671Y-121971774D01* +X126861671Y-120452685D01* +X126847039Y-120360303D01* +X126790306Y-120248959D01* +X126790305Y-120248957D01* +X126701943Y-120160595D01* +X126590598Y-120103862D01* +X126590599Y-120103862D01* +X126467171Y-120084313D01* +X126343743Y-120103862D01* +X126232398Y-120160595D01* +X126144036Y-120248957D01* +X126087303Y-120360302D01* +X126072671Y-120452685D01* +X126072671Y-121971774D01* +X124700500Y-121971774D01* +X124700500Y-119453472D01* +X139416721Y-119453472D01* +X139426783Y-119639057D01* +X139476507Y-119818147D01* +X139476507Y-119818148D01* +X139563568Y-119982360D01* +X139563573Y-119982367D01* +X139683894Y-120124021D01* +X139831855Y-120236498D01* +X139831856Y-120236498D01* +X139831861Y-120236502D01* +X140000548Y-120314545D01* +X140182067Y-120354500D01* +X140182068Y-120354500D01* +X140321325Y-120354500D01* +X140321332Y-120354500D01* +X140459775Y-120339443D01* +X140635911Y-120280096D01* +X140795171Y-120184273D01* +X140930108Y-120056454D01* +X141034413Y-119902615D01* +X141094535Y-119751721D01* +X141553620Y-119751721D01* +X141553620Y-122339173D01* +X141555358Y-122347926D01* +X141561990Y-122357851D01* +X141571912Y-122364480D01* +X141580663Y-122366220D01* +X144343119Y-122366220D01* +X144343119Y-119751721D01* +X144378119Y-119751721D01* +X144378119Y-122366220D01* +X147140571Y-122366220D01* +X147149324Y-122364481D01* +X147159249Y-122357849D01* +X147165878Y-122347928D01* +X147165878Y-122347926D01* +X147167619Y-122339176D01* +X147167619Y-119751721D01* +X144378119Y-119751721D01* +X144343119Y-119751721D01* +X141553620Y-119751721D01* +X141094535Y-119751721D01* +X141103209Y-119729951D01* +X141105378Y-119716721D01* +X141553619Y-119716721D01* +X144343119Y-119716721D01* +X144343119Y-117102221D01* +X144378119Y-117102221D01* +X144378119Y-119716721D01* +X147167618Y-119716721D01* +X147167618Y-118490183D01* +X148641691Y-118490183D01* +X148651838Y-118729034D01* +X148651838Y-118729040D01* +X148651839Y-118729042D01* +X148670521Y-118815726D01* +X148702209Y-118962762D01* +X148791348Y-119184593D01* +X148791350Y-119184596D01* +X148916695Y-119388171D01* +X148916706Y-119388186D01* +X149074656Y-119567651D01* +X149074658Y-119567653D01* +X149260672Y-119717849D01* +X149469393Y-119834448D01* +X149694817Y-119914095D01* +X149930459Y-119954500D01* +X149930462Y-119954500D01* +X150109667Y-119954500D01* +X150145984Y-119951408D01* +X150288220Y-119939303D01* +X150519587Y-119879059D01* +X150737444Y-119780581D01* +X150935525Y-119646702D01* +X151108131Y-119481273D01* +X151250297Y-119289052D01* +X151357932Y-119075570D01* +X151427940Y-118846969D01* +X151458308Y-118609824D01* +X151448161Y-118370958D01* +X151397792Y-118137243D01* +X151397790Y-118137237D01* +X151308651Y-117915406D01* +X151308649Y-117915403D01* +X151183304Y-117711828D01* +X151183293Y-117711813D01* +X151025343Y-117532348D01* +X151025342Y-117532347D01* +X150839328Y-117382151D01* +X150630607Y-117265552D01* +X150510150Y-117222992D01* +X150405184Y-117185905D01* +X150346272Y-117175803D01* +X150169541Y-117145500D01* +X149990336Y-117145500D01* +X149990333Y-117145500D01* +X149811779Y-117160697D01* +X149811774Y-117160698D01* +X149580412Y-117220941D01* +X149580410Y-117220942D01* +X149362561Y-117319416D01* +X149362553Y-117319421D01* +X149164470Y-117453301D01* +X148991872Y-117618723D01* +X148991869Y-117618726D01* +X148849704Y-117810944D01* +X148742069Y-118024426D01* +X148742066Y-118024433D01* +X148672060Y-118253027D01* +X148672060Y-118253028D01* +X148641691Y-118490183D01* +X147167618Y-118490183D01* +X147167618Y-117129268D01* +X147165879Y-117120515D01* +X147159247Y-117110590D01* +X147149325Y-117103961D01* +X147140575Y-117102221D01* +X144378119Y-117102221D01* +X144343119Y-117102221D01* +X141580666Y-117102221D01* +X141571913Y-117103960D01* +X141561988Y-117110592D01* +X141555359Y-117120513D01* +X141555359Y-117120515D01* +X141553619Y-117129265D01* +X141553619Y-119716721D01* +X141105378Y-119716721D01* +X141133278Y-119546535D01* +X141123216Y-119360942D01* +X141073492Y-119181852D01* +X141073492Y-119181851D01* +X141017145Y-119075570D01* +X140986431Y-119017638D01* +X140923496Y-118943545D01* +X140866105Y-118875978D01* +X140718144Y-118763501D01* +X140718141Y-118763499D01* +X140718139Y-118763498D01* +X140549452Y-118685455D01* +X140367933Y-118645500D01* +X140228668Y-118645500D01* +X140228660Y-118645500D01* +X140090227Y-118660556D01* +X140090216Y-118660559D01* +X139914097Y-118719900D01* +X139914090Y-118719903D01* +X139754830Y-118815726D01* +X139754828Y-118815727D01* +X139619892Y-118943545D01* +X139515586Y-119097386D01* +X139446791Y-119270047D01* +X139416721Y-119453472D01* +X124700500Y-119453472D01* +X124700500Y-96410092D01* +X125373258Y-96410092D01* +X125373419Y-96499893D01* +X125373405Y-96500125D01* +X125373440Y-96513798D01* +X125373439Y-96513802D01* +X125373483Y-96531054D01* +X125379150Y-98764669D01* +X125379172Y-98773715D01* +X125379215Y-98790945D01* +X125379189Y-98791464D01* +X125379220Y-98792610D01* +X125379223Y-98793696D01* +X125379262Y-98794180D01* +X125690759Y-110312513D01* +X125686927Y-110322519D01* +X125677142Y-110326886D01* +X125676764Y-110326891D01* +X125647497Y-110326891D01* +X125618181Y-110332722D01* +X125584937Y-110354934D01* +X125562724Y-110388179D01* +X125556894Y-110417492D01* +X125556894Y-111037287D01* +X125556895Y-111037290D01* +X125562725Y-111066604D01* +X125584937Y-111099848D01* +X125618181Y-111122060D01* +X125647495Y-111127891D01* +X125667845Y-111127890D01* +X125677744Y-111131990D01* +X125681845Y-111141889D01* +X125681829Y-111142565D01* +X125505081Y-114805503D01* +X125505078Y-114805527D01* +X125503720Y-114833720D01* +X125503187Y-114844749D01* +X125503181Y-114844885D01* +X125502919Y-114850317D01* +X125502731Y-114851557D01* +X125502790Y-114851565D01* +X125502671Y-114852469D01* +X125502671Y-114855306D01* +X125502663Y-114855642D01* +X125502528Y-114858443D01* +X125502604Y-114859357D01* +X125502537Y-114859362D01* +X125502671Y-114860603D01* +X125502671Y-114866180D01* +X125502670Y-114866243D01* +X125502671Y-114871600D01* +X125502671Y-116428287D01* +X125502669Y-116428309D01* +X125502670Y-116457034D01* +X125502661Y-116457057D01* +X125502663Y-116513088D01* +X125511772Y-116573501D01* +X125517647Y-116612459D01* +X125517648Y-116612462D01* +X125517648Y-116612463D01* +X125547274Y-116708492D01* +X125553224Y-116720845D01* +X125560685Y-116736336D01* +X125560693Y-116736355D01* +X125635757Y-116892228D01* +X125635884Y-116892452D01* +X125649107Y-116919915D01* +X125649112Y-116919925D01* +X125670051Y-116950641D01* +X125705715Y-117002959D01* +X125705717Y-117002961D01* +X125705719Y-117002964D01* +X125774058Y-117076626D01* +X125774063Y-117076631D01* +X125798117Y-117095816D01* +X125798136Y-117095833D01* +X125798374Y-117096022D01* +X125798375Y-117096024D01* +X125817290Y-117111108D01* +X125839309Y-117128670D01* +X125839310Y-117128670D01* +X125841164Y-117130149D01* +X125841171Y-117130152D01* +X125890961Y-117169858D01* +X125890982Y-117169879D01* +X125892321Y-117170947D01* +X125892322Y-117170948D01* +X125913794Y-117188067D01* +X125913818Y-117188109D01* +X125918276Y-117191664D01* +X125918277Y-117191664D01* +X125957565Y-117222990D01* +X126044600Y-117273231D01* +X126138150Y-117309940D01* +X126138152Y-117309940D01* +X126138156Y-117309942D01* +X126186491Y-117320970D01* +X126337747Y-117355494D01* +X126337779Y-117355498D01* +X126358820Y-117360312D01* +X126358824Y-117360313D01* +X126442236Y-117368648D01* +X126526036Y-117366531D01* +X126550832Y-117362769D01* +X126567030Y-117360313D01* +X126567475Y-117360245D01* +X126567475Y-117360246D01* +X126600311Y-117355279D01* +X126600312Y-117355277D01* +X126602523Y-117354943D01* +X126602530Y-117354940D01* +X129016160Y-116989736D01* +X129016244Y-116989734D01* +X129017837Y-116989492D01* +X129017839Y-116989493D01* +X129048517Y-116984841D01* +X129051129Y-116984694D01* +X129053138Y-116984770D01* +X129061063Y-116982960D01* +X129061528Y-116982872D01* +X129069572Y-116981656D01* +X129071416Y-116980849D01* +X129073901Y-116980030D01* +X129168832Y-116958362D01* +X129168849Y-116958360D01* +X129170283Y-116958032D01* +X129170286Y-116958033D01* +X129196089Y-116952141D01* +X129196093Y-116952142D01* +X129202663Y-116950641D01* +X129202663Y-116950642D01* +X129218512Y-116947023D01* +X129221332Y-116946380D01* +X129221332Y-116946379D01* +X129223885Y-116945797D01* +X129223888Y-116945795D01* +X129224189Y-116945727D01* +X129224333Y-116945620D01* +X129264411Y-116929891D01* +X129302114Y-116908124D01* +X129302292Y-116907981D01* +X129302303Y-116907977D01* +X129302301Y-116907975D01* +X129325565Y-116889423D01* +X129325564Y-116889423D01* +X129345099Y-116873847D01* +X129345099Y-116873845D01* +X129346894Y-116872414D01* +X129346899Y-116872408D01* +X129439042Y-116798928D01* +X129439729Y-116797997D01* +X129443460Y-116794508D01* +X129444435Y-116793886D01* +X129457357Y-116779749D01* +X129457358Y-116779749D01* +X129479765Y-116755238D01* +X129479765Y-116755235D01* +X129480936Y-116753955D01* +X129480944Y-116753945D01* +X129496897Y-116736493D01* +X129858339Y-116341079D01* +X129868043Y-116336540D01* +X129878117Y-116340193D01* +X129882657Y-116349898D01* +X129882671Y-116350526D01* +X129882671Y-116426775D01* +X129882914Y-116428309D01* +X129897303Y-116519157D01* +X129954036Y-116630502D01* +X130042398Y-116718864D01* +X130042400Y-116718865D01* +X130153744Y-116775598D01* +X130277171Y-116795147D01* +X130400598Y-116775598D01* +X130511942Y-116718865D01* +X130600306Y-116630501D01* +X130657039Y-116519157D01* +X130671671Y-116426775D01* +X130671671Y-115190925D01* +X148292185Y-115190925D01* +X148292185Y-115385266D01* +X148293923Y-115394019D01* +X148300555Y-115403944D01* +X148310477Y-115410573D01* +X148319228Y-115412313D01* +X148604684Y-115412313D01* +X148604684Y-115190925D01* +X148639684Y-115190925D01* +X148639684Y-115412313D01* +X148925136Y-115412313D01* +X148933889Y-115410574D01* +X148943814Y-115403942D01* +X148950443Y-115394021D01* +X148950443Y-115394019D01* +X148952184Y-115385269D01* +X148952184Y-115190925D01* +X148639684Y-115190925D01* +X148604684Y-115190925D01* +X148292185Y-115190925D01* +X130671671Y-115190925D01* +X130671671Y-115155925D01* +X148292184Y-115155925D01* +X148604684Y-115155925D01* +X148604684Y-114934536D01* +X148639684Y-114934536D01* +X148639684Y-115155925D01* +X148952183Y-115155925D01* +X148952183Y-114961583D01* +X148950444Y-114952830D01* +X148943812Y-114942905D01* +X148933890Y-114936276D01* +X148925140Y-114934536D01* +X148639684Y-114934536D01* +X148604684Y-114934536D01* +X148319231Y-114934536D01* +X148310478Y-114936275D01* +X148300553Y-114942907D01* +X148293924Y-114952828D01* +X148293924Y-114952830D01* +X148292184Y-114961580D01* +X148292184Y-115155925D01* +X130671671Y-115155925D01* +X130671671Y-114907685D01* +X130657039Y-114815303D01* +X130600306Y-114703959D01* +X130600305Y-114703957D01* +X130595116Y-114698768D01* +X130591015Y-114688869D01* +X130595116Y-114678970D01* +X130605015Y-114674869D01* +X130606578Y-114674957D01* +X133001667Y-114946059D01* +X133005143Y-114946914D01* +X133012373Y-114949715D01* +X133012374Y-114949715D01* +X133066740Y-114949715D01* +X133118051Y-114949720D01* +X133118054Y-114949718D01* +X133119224Y-114949719D01* +X133119283Y-114949715D01* +X134394058Y-114949715D01* +X134394138Y-114949710D01* +X134398739Y-114949712D01* +X134462352Y-114942696D01* +X134492307Y-114936003D01* +X134495907Y-114935678D01* +X134503651Y-114935987D01* +X134503651Y-114935986D01* +X134503652Y-114935987D01* +X134503653Y-114935987D01* +X134555084Y-114918379D01* +X134555083Y-114918378D01* +X134603631Y-114901765D01* +X134603633Y-114901762D01* +X134604837Y-114901351D01* +X134604884Y-114901329D01* +X138877768Y-113438508D01* +X138877826Y-113438495D01* +X138879070Y-113438068D01* +X138879074Y-113438069D01* +X138913497Y-113426278D01* +X138920536Y-113423868D01* +X138920807Y-113423774D01* +X138922082Y-113423338D01* +X138922104Y-113423339D01* +X138927619Y-113421451D01* +X138927620Y-113421452D01* +X138943204Y-113416119D01* +X138954063Y-113412404D01* +X138954066Y-113412402D01* +X138954074Y-113412400D01* +X139004994Y-113389290D01* +X139021152Y-113379991D01* +X139024692Y-113378556D01* +X139031886Y-113376731D01* +X139053181Y-113361588D01* +X139053441Y-113361413D01* +X139053462Y-113361402D01* +X139074854Y-113346177D01* +X141778616Y-111423615D01* +X141789060Y-111421221D01* +X141798139Y-111426913D01* +X141800726Y-111435298D01* +X141793360Y-111813993D01* +X141789068Y-111823811D01* +X141779363Y-111827721D01* +X141518722Y-111827721D01* +X141489406Y-111833552D01* +X141456162Y-111855764D01* +X141433949Y-111889009D01* +X141428119Y-111918322D01* +X141428119Y-114156117D01* +X141432219Y-114176732D01* +X141433950Y-114185434D01* +X141456162Y-114218678D01* +X141489406Y-114240890D01* +X141518720Y-114246721D01* +X142602517Y-114246720D01* +X142631832Y-114240890D01* +X142665076Y-114218678D01* +X142687288Y-114185434D01* +X142693119Y-114156120D01* +X142693119Y-114156117D01* +X146027119Y-114156117D01* +X146031219Y-114176732D01* +X146032950Y-114185434D01* +X146055162Y-114218678D01* +X146088406Y-114240890D01* +X146117720Y-114246721D01* +X147201517Y-114246720D01* +X147230832Y-114240890D01* +X147264076Y-114218678D01* +X147286288Y-114185434D01* +X147292119Y-114156120D01* +X147292118Y-112698484D01* +X147506048Y-112698484D01* +X147523615Y-112809396D01* +X147574595Y-112909452D01* +X147653998Y-112988855D01* +X147654000Y-112988856D01* +X147754055Y-113039836D01* +X147864967Y-113057403D01* +X147870090Y-113056591D01* +X147880509Y-113059091D01* +X147884809Y-113064168D01* +X148297674Y-113891688D01* +X148298425Y-113902377D01* +X148291397Y-113910465D01* +X148287878Y-113911669D01* +X148282971Y-113912644D01* +X148249727Y-113934857D01* +X148227514Y-113968102D01* +X148221684Y-113997415D01* +X148221684Y-114434988D01* +X148221685Y-114434991D01* +X148227515Y-114464305D01* +X148249727Y-114497549D01* +X148282971Y-114519761D01* +X148312285Y-114525592D01* +X148932082Y-114525591D01* +X148961397Y-114519761D01* +X148994641Y-114497549D01* +X149016853Y-114464305D01* +X149022684Y-114434991D01* +X149022683Y-113997416D01* +X149016853Y-113968101D01* +X148994641Y-113934857D01* +X148961397Y-113912645D01* +X148961396Y-113912644D01* +X148961395Y-113912644D01* +X148932083Y-113906814D01* +X148639088Y-113906814D01* +X148629189Y-113902713D01* +X148626561Y-113899064D01* +X148622881Y-113891688D01* +X148144818Y-112933489D01* +X148144068Y-112922802D01* +X148147445Y-112917343D01* +X148155339Y-112909451D01* +X148206319Y-112809396D01* +X148223886Y-112698484D01* +X148206319Y-112587572D01* +X148155339Y-112487517D01* +X148155338Y-112487515D01* +X148075935Y-112408112D01* +X147975879Y-112357132D01* +X147975880Y-112357132D01* +X147864967Y-112339565D01* +X147754054Y-112357132D01* +X147653998Y-112408112D01* +X147574595Y-112487515D01* +X147523615Y-112587571D01* +X147506048Y-112698484D01* +X147292118Y-112698484D01* +X147292118Y-111918323D01* +X147286288Y-111889008D01* +X147264076Y-111855764D01* +X147230832Y-111833552D01* +X147230831Y-111833551D01* +X147230830Y-111833551D01* +X147201518Y-111827721D01* +X146962936Y-111827721D01* +X146953037Y-111823620D01* +X146948936Y-111813740D01* +X146948692Y-111636586D01* +X146948092Y-111201059D01* +X146950451Y-111193266D01* +X146960153Y-111178747D01* +X146965984Y-111149433D01* +X146965983Y-110962965D01* +X146970083Y-110953067D01* +X146970809Y-110952390D01* +X148532799Y-109599896D01* +X148539770Y-109596653D01* +X148609971Y-109585535D01* +X148710026Y-109534555D01* +X148789431Y-109455150D01* +X148840411Y-109355095D01* +X148857978Y-109244183D01* +X148840411Y-109133271D01* +X148789431Y-109033216D01* +X148789430Y-109033214D01* +X148710027Y-108953811D01* +X148609971Y-108902831D01* +X148609972Y-108902831D01* +X148499059Y-108885264D01* +X148388146Y-108902831D01* +X148288090Y-108953811D01* +X148208687Y-109033214D01* +X148157706Y-109133272D01* +X148157706Y-109133273D01* +X148154548Y-109153201D01* +X148149885Y-109161594D01* +X146678522Y-110435618D01* +X146669358Y-110439034D01* +X146437809Y-110439034D01* +X146408493Y-110444865D01* +X146375249Y-110467077D01* +X146353036Y-110500322D01* +X146347206Y-110529635D01* +X146347206Y-111149430D01* +X146353037Y-111178747D01* +X146353037Y-111178748D01* +X146363733Y-111194757D01* +X146366092Y-111202515D01* +X146366934Y-111813702D01* +X146362847Y-111823607D01* +X146352953Y-111827721D01* +X146117722Y-111827721D01* +X146088406Y-111833552D01* +X146055162Y-111855764D01* +X146032949Y-111889009D01* +X146027119Y-111918322D01* +X146027119Y-114156117D01* +X142693119Y-114156117D01* +X142693118Y-111918323D01* +X142687288Y-111889008D01* +X142665076Y-111855764D01* +X142631832Y-111833552D01* +X142631831Y-111833551D01* +X142631830Y-111833551D01* +X142602518Y-111827721D01* +X142389477Y-111827721D01* +X142379578Y-111823620D01* +X142375477Y-111813721D01* +X142375480Y-111813449D01* +X142383110Y-111421221D01* +X142387251Y-111208330D01* +X142389607Y-111200826D01* +X142407008Y-111174785D01* +X142412839Y-111145471D01* +X142412838Y-110951171D01* +X142416938Y-110941273D01* +X142417270Y-110940951D01* +X142511623Y-110853072D01* +X142821784Y-110853072D01* +X142821784Y-111138524D01* +X142823522Y-111147277D01* +X142830154Y-111157202D01* +X142840076Y-111163831D01* +X142848827Y-111165571D01* +X143043172Y-111165571D01* +X143043172Y-110853072D01* +X143078172Y-110853072D01* +X143078172Y-111165571D01* +X143272513Y-111165571D01* +X143281266Y-111163832D01* +X143291191Y-111157200D01* +X143297820Y-111147279D01* +X143297820Y-111147277D01* +X143299561Y-111138527D01* +X143299561Y-110857034D01* +X145460485Y-110857034D01* +X145460485Y-111142486D01* +X145462223Y-111151239D01* +X145468855Y-111161164D01* +X145478777Y-111167793D01* +X145487528Y-111169533D01* +X145681873Y-111169533D01* +X145681873Y-110857034D01* +X145716873Y-110857034D01* +X145716873Y-111169533D01* +X145911214Y-111169533D01* +X145919967Y-111167794D01* +X145929892Y-111161162D01* +X145936521Y-111151241D01* +X145936521Y-111151239D01* +X145938262Y-111142489D01* +X145938262Y-110857034D01* +X145716873Y-110857034D01* +X145681873Y-110857034D01* +X145460485Y-110857034D01* +X143299561Y-110857034D01* +X143299561Y-110853072D01* +X143078172Y-110853072D01* +X143043172Y-110853072D01* +X142821784Y-110853072D01* +X142511623Y-110853072D01* +X142544948Y-110822034D01* +X145460484Y-110822034D01* +X145681873Y-110822034D01* +X145681873Y-110509534D01* +X145716873Y-110509534D01* +X145716873Y-110822034D01* +X145938261Y-110822034D01* +X145938261Y-110536581D01* +X145936522Y-110527828D01* +X145929890Y-110517903D01* +X145919968Y-110511274D01* +X145911218Y-110509534D01* +X145716873Y-110509534D01* +X145681873Y-110509534D01* +X145487531Y-110509534D01* +X145478778Y-110511273D01* +X145468853Y-110517905D01* +X145462224Y-110527826D01* +X145462224Y-110527828D01* +X145460484Y-110536578D01* +X145460484Y-110822034D01* +X142544948Y-110822034D01* +X142798242Y-110586120D01* +X142808280Y-110582375D01* +X142818028Y-110586824D01* +X142821783Y-110596366D01* +X142821783Y-110818072D01* +X143043172Y-110818072D01* +X143043172Y-110505572D01* +X143078172Y-110505572D01* +X143078172Y-110818072D01* +X143299560Y-110818072D01* +X143299560Y-110532619D01* +X143297821Y-110523866D01* +X143291189Y-110513941D01* +X143281267Y-110507312D01* +X143272517Y-110505572D01* +X143078172Y-110505572D01* +X143043172Y-110505572D01* +X142959068Y-110505572D01* +X142949169Y-110501471D01* +X142945068Y-110491572D01* +X142949169Y-110481673D01* +X142952171Y-110479389D01* +X148746587Y-107203457D01* +X148746619Y-107203444D01* +X148747897Y-107202721D01* +X148747899Y-107202721D01* +X148787487Y-107180335D01* +X148787599Y-107180321D01* +X148792584Y-107177501D01* +X148792585Y-107177502D01* +X148860840Y-107138899D01* +X148980832Y-107037914D01* +X149080205Y-106916585D01* +X149155571Y-106779049D01* +X149167441Y-106742787D01* +X149204356Y-106630007D01* +X149204356Y-106630005D01* +X149204358Y-106630000D01* +X149207200Y-106608500D01* +X149207202Y-106608496D01* +X149317667Y-105773002D01* +X149318617Y-105765823D01* +X149318616Y-105765815D01* +X149320241Y-105753527D01* +X149321009Y-105747755D01* +X149328738Y-105689669D01* +X149319553Y-105529761D01* +X149280510Y-105374421D01* +X149212996Y-105229174D01* +X149119413Y-105099186D01* +X149119411Y-105099184D01* +X149119409Y-105099181D01* +X149119408Y-105099180D01* +X149003096Y-104989084D01* +X149003090Y-104989079D01* +X149003089Y-104989078D01* +X148868162Y-104902769D01* +X148868159Y-104902767D01* +X148719431Y-104843326D01* +X148719432Y-104843326D01* +X148691170Y-104837874D01* +X148642339Y-104828454D01* +X143851537Y-103900301D01* +X141744657Y-103492121D01* +X141735718Y-103486213D01* +X141733576Y-103475714D01* +X141739484Y-103466775D01* +X141747320Y-103464377D01* +X141864704Y-103464377D01* +X141873457Y-103462638D01* +X141883382Y-103456006D01* +X141890011Y-103446085D01* +X141890011Y-103446083D01* +X141891752Y-103437333D01* +X141891752Y-103151878D01* +X141413975Y-103151878D01* +X141413974Y-103373580D01* +X141409873Y-103383480D01* +X141399974Y-103387580D01* +X141390432Y-103383825D01* +X141103818Y-103116878D01* +X141413974Y-103116878D01* +X141635363Y-103116878D01* +X141635363Y-102804378D01* +X141670363Y-102804378D01* +X141670363Y-103116878D01* +X141891751Y-103116878D01* +X141891751Y-102831425D01* +X141890012Y-102822672D01* +X141883380Y-102812747D01* +X141873458Y-102806118D01* +X141864708Y-102804378D01* +X141670363Y-102804378D01* +X141635363Y-102804378D01* +X141441021Y-102804378D01* +X141432268Y-102806117D01* +X141422343Y-102812749D01* +X141415714Y-102822670D01* +X141415714Y-102822672D01* +X141413974Y-102831422D01* +X141413974Y-103116878D01* +X141103818Y-103116878D01* +X141009487Y-103029020D01* +X141005038Y-103019272D01* +X141005029Y-103018775D01* +X141005029Y-102935787D01* +X141005054Y-102935196D01* +X141068772Y-102202273D01* +X147706109Y-102202273D01* +X147706110Y-102202276D01* +X147711940Y-102231590D01* +X147734152Y-102264834D01* +X147767396Y-102287046D01* +X147796710Y-102292877D01* +X147939670Y-102292876D01* +X147949569Y-102296976D01* +X147953670Y-102306876D01* +X147953666Y-102307216D01* +X147937395Y-102977843D01* +X147933055Y-102987640D01* +X147929755Y-102989977D01* +X147863815Y-103023575D01* +X147784412Y-103102978D01* +X147733432Y-103203034D01* +X147715865Y-103313947D01* +X147733432Y-103424859D01* +X147784412Y-103524915D01* +X147863815Y-103604318D01* +X147863817Y-103604319D01* +X147963872Y-103655299D01* +X148074784Y-103672866D01* +X148185696Y-103655299D01* +X148285751Y-103604319D01* +X148365156Y-103524914D01* +X148416136Y-103424859D01* +X148433703Y-103313947D01* +X148416136Y-103203035D01* +X148365156Y-103102980D01* +X148365155Y-103102978D01* +X148285752Y-103023575D01* +X148235938Y-102998194D01* +X148228979Y-102990046D01* +X148228298Y-102985384D01* +X148242366Y-102405580D01* +X148244769Y-102306536D01* +X148249109Y-102296739D01* +X148258765Y-102292876D01* +X148416506Y-102292876D01* +X148416507Y-102292876D01* +X148445822Y-102287046D01* +X148479066Y-102264834D01* +X148501278Y-102231590D01* +X148507109Y-102202276D01* +X148507108Y-101802201D01* +X148501278Y-101772886D01* +X148479066Y-101739642D01* +X148445822Y-101717430D01* +X148445821Y-101717429D01* +X148445820Y-101717429D01* +X148423785Y-101713046D01* +X148416508Y-101711599D01* +X148416507Y-101711599D01* +X147796712Y-101711599D01* +X147767396Y-101717430D01* +X147734152Y-101739642D01* +X147711939Y-101772887D01* +X147706109Y-101802200D01* +X147706109Y-102202273D01* +X141068772Y-102202273D01* +X141121466Y-101596150D01* +X141126681Y-101536833D01* +X141117548Y-101436680D01* +X141113002Y-101386814D01* +X141113001Y-101386812D01* +X141113001Y-101386807D01* +X141078152Y-101260214D01* +X141073019Y-101241566D01* +X141051824Y-101197274D01* +X141007989Y-101105673D01* +X141003916Y-101100016D01* +X147776610Y-101100016D01* +X147776610Y-101275607D01* +X147778348Y-101284360D01* +X147784980Y-101294285D01* +X147794902Y-101300914D01* +X147803653Y-101302654D01* +X148089109Y-101302654D01* +X148089109Y-101100016D01* +X148124109Y-101100016D01* +X148124109Y-101302654D01* +X148409561Y-101302654D01* +X148418314Y-101300915D01* +X148428239Y-101294283D01* +X148434868Y-101284362D01* +X148434868Y-101284360D01* +X148436609Y-101275610D01* +X148436609Y-101100016D01* +X148124109Y-101100016D01* +X148089109Y-101100016D01* +X147776610Y-101100016D01* +X141003916Y-101100016D01* +X140978716Y-101065016D01* +X147776609Y-101065016D01* +X148089109Y-101065016D01* +X148089109Y-100862377D01* +X148124109Y-100862377D01* +X148124109Y-101065016D01* +X148436608Y-101065016D01* +X148436608Y-100889424D01* +X148434869Y-100880671D01* +X148428237Y-100870746D01* +X148418315Y-100864117D01* +X148409565Y-100862377D01* +X148124109Y-100862377D01* +X148089109Y-100862377D01* +X147803656Y-100862377D01* +X147794903Y-100864116D01* +X147784978Y-100870748D01* +X147778349Y-100880669D01* +X147778349Y-100880671D01* +X147776609Y-100889421D01* +X147776609Y-101065016D01* +X140978716Y-101065016D01* +X140919967Y-100983420D01* +X140918299Y-100981809D01* +X140866581Y-100931845D01* +X138299418Y-98447213D01* +X139116733Y-98447213D01* +X139126769Y-98657903D01* +X139126770Y-98657911D01* +X139176498Y-98862888D01* +X139176499Y-98862890D01* +X139264124Y-99054762D01* +X139386478Y-99226584D01* +X139539138Y-99372145D01* +X139716587Y-99486184D01* +X139912411Y-99564580D01* +X140119533Y-99604500D01* +X140119534Y-99604500D01* +X140277606Y-99604500D01* +X140277613Y-99604500D01* +X140434979Y-99589473D01* +X140637368Y-99530047D01* +X140824854Y-99433391D01* +X140990659Y-99303000D01* +X141128792Y-99143587D01* +X141234259Y-98960913D01* +X141303248Y-98761580D01* +X141333267Y-98552793D01* +X141323231Y-98342098D01* +X141315774Y-98311361D01* +X141273501Y-98137111D01* +X141249519Y-98084597D01* +X141185876Y-97945238D01* +X141063522Y-97773416D01* +X140910862Y-97627855D01* +X140733413Y-97513816D01* +X140723441Y-97509824D01* +X140537589Y-97435420D01* +X140484200Y-97425130D01* +X140330467Y-97395500D01* +X140172387Y-97395500D01* +X140034691Y-97408648D01* +X140015020Y-97410527D01* +X140015015Y-97410528D01* +X139812636Y-97469951D01* +X139812632Y-97469953D01* +X139625145Y-97566609D01* +X139459337Y-97697003D01* +X139459335Y-97697005D01* +X139321208Y-97856412D01* +X139321204Y-97856417D01* +X139215743Y-98039082D01* +X139215740Y-98039089D01* +X139146751Y-98238420D01* +X139131847Y-98342088D01* +X139116733Y-98447207D01* +X139116733Y-98447211D01* +X139116733Y-98447213D01* +X138299418Y-98447213D01* +X137313334Y-97492831D01* +X137309073Y-97483001D01* +X137313011Y-97473036D01* +X137322842Y-97468774D01* +X137323071Y-97468772D01* +X137468811Y-97468772D01* +X137468811Y-97156273D01* +X137503811Y-97156273D01* +X137503811Y-97468772D01* +X137698152Y-97468772D01* +X137706905Y-97467033D01* +X137716830Y-97460401D01* +X137723459Y-97450480D01* +X137723459Y-97450478D01* +X137725200Y-97441728D01* +X137725200Y-97390183D01* +X148641691Y-97390183D01* +X148651838Y-97629034D01* +X148651838Y-97629040D01* +X148651839Y-97629042D01* +X148677254Y-97746969D01* +X148702209Y-97862762D01* +X148791348Y-98084593D01* +X148791350Y-98084596D01* +X148916695Y-98288171D01* +X148916706Y-98288186D01* +X149060776Y-98451880D01* +X149074658Y-98467653D01* +X149260672Y-98617849D01* +X149469393Y-98734448D01* +X149694817Y-98814095D01* +X149930459Y-98854500D01* +X149930462Y-98854500D01* +X150109667Y-98854500D01* +X150145984Y-98851408D01* +X150288220Y-98839303D01* +X150519587Y-98779059D01* +X150737444Y-98680581D01* +X150935525Y-98546702D01* +X151108131Y-98381273D01* +X151250297Y-98189052D01* +X151357932Y-97975570D01* +X151427940Y-97746969D01* +X151458308Y-97509824D01* +X151457439Y-97489376D01* +X151451966Y-97360537D01* +X151448161Y-97270958D01* +X151397792Y-97037243D01* +X151397214Y-97035804D01* +X151308651Y-96815406D01* +X151308649Y-96815403D01* +X151183304Y-96611828D01* +X151183293Y-96611813D01* +X151025343Y-96432348D01* +X151025342Y-96432347D01* +X150839328Y-96282151D01* +X150630607Y-96165552D01* +X150504345Y-96120941D01* +X150405184Y-96085905D01* +X150346272Y-96075803D01* +X150169541Y-96045500D01* +X149990336Y-96045500D01* +X149990333Y-96045500D01* +X149811779Y-96060697D01* +X149811774Y-96060698D01* +X149580412Y-96120941D01* +X149580410Y-96120942D01* +X149362561Y-96219416D01* +X149362553Y-96219421D01* +X149164470Y-96353301D01* +X148991872Y-96518723D01* +X148991869Y-96518726D01* +X148849704Y-96710944D01* +X148742069Y-96924426D01* +X148742066Y-96924433D01* +X148672060Y-97153027D01* +X148672060Y-97153028D01* +X148641691Y-97390183D01* +X137725200Y-97390183D01* +X137725200Y-97156273D01* +X137503811Y-97156273D01* +X137468811Y-97156273D01* +X137247423Y-97156273D01* +X137247422Y-97396005D01* +X137243321Y-97405905D01* +X137233422Y-97410005D01* +X137223686Y-97406065D01* +X136929435Y-97121273D01* +X137247422Y-97121273D01* +X137468811Y-97121273D01* +X137468811Y-96808773D01* +X137503811Y-96808773D01* +X137503811Y-97121273D01* +X137725199Y-97121273D01* +X137725199Y-96835820D01* +X137723460Y-96827067D01* +X137716828Y-96817142D01* +X137706906Y-96810513D01* +X137698156Y-96808773D01* +X137503811Y-96808773D01* +X137468811Y-96808773D01* +X137274469Y-96808773D01* +X137265716Y-96810512D01* +X137255791Y-96817144D01* +X137249162Y-96827065D01* +X137249162Y-96827067D01* +X137247422Y-96835817D01* +X137247422Y-97121273D01* +X136929435Y-97121273D01* +X136842741Y-97037366D01* +X136838479Y-97027535D01* +X136838477Y-97027306D01* +X136838477Y-96828876D01* +X136837083Y-96821867D01* +X136832647Y-96799560D01* +X136810435Y-96766316D01* +X136777191Y-96744104D01* +X136777190Y-96744103D01* +X136777189Y-96744103D01* +X136755154Y-96739720D01* +X136747877Y-96738273D01* +X136747876Y-96738273D01* +X136310303Y-96738273D01* +X136280987Y-96744104D01* +X136247743Y-96766316D01* +X136225530Y-96799561D01* +X136219700Y-96828874D01* +X136219700Y-96829065D01* +X136219674Y-96829125D01* +X136219632Y-96829560D01* +X136219500Y-96829547D01* +X136215599Y-96838964D01* +X136205700Y-96843065D01* +X136205498Y-96843064D01* +X135707531Y-96835866D01* +X135697691Y-96831622D01* +X135693733Y-96821867D01* +X135693733Y-96812690D01* +X135691122Y-96799561D01* +X135687903Y-96783374D01* +X135665691Y-96750130D01* +X135632447Y-96727918D01* +X135632446Y-96727917D01* +X135632445Y-96727917D01* +X135603133Y-96722087D01* +X135421305Y-96722087D01* +X135411527Y-96718106D01* +X135072857Y-96387591D01* +X135072719Y-96387480D01* +X135072246Y-96387059D01* +X135051750Y-96367114D01* +X135051748Y-96367112D01* +X134957451Y-96305343D01* +X134957444Y-96305339D01* +X134853026Y-96262829D01* +X134742388Y-96241169D01* +X134742113Y-96241169D01* +X134741234Y-96241087D01* +X134740408Y-96241087D01* +X134686022Y-96241087D01* +X134634711Y-96241085D01* +X134634710Y-96241085D01* +X134633386Y-96241085D01* +X134633366Y-96241087D01* +X134291264Y-96241087D01* +X134290871Y-96241123D01* +X134290248Y-96241151D01* +X134258453Y-96241186D01* +X134237016Y-96245641D01* +X134141332Y-96265527D01* +X134141327Y-96265528D01* +X134141326Y-96265529D01* +X134141321Y-96265530D01* +X134141324Y-96265530D01* +X134031609Y-96313210D01* +X133933896Y-96382232D01* +X133852286Y-96469702D01* +X133852285Y-96469703D01* +X133850307Y-96472952D01* +X133849842Y-96473579D01* +X133821180Y-96520793D01* +X133794216Y-96565197D01* +X133794195Y-96565239D01* +X131610983Y-100161389D01* +X131610965Y-100161416D01* +X131587987Y-100199269D01* +X131586873Y-100201102D01* +X131586829Y-100201136D01* +X131578156Y-100215462D01* +X131570001Y-100228895D01* +X131569794Y-100229273D01* +X131556564Y-100251129D01* +X131556564Y-100251130D01* +X131518843Y-100350239D01* +X131518842Y-100350243D01* +X131500453Y-100450288D01* +X131499741Y-100452808D01* +X131499615Y-100453133D01* +X131499615Y-101855020D01* +X131499610Y-101855078D01* +X131499610Y-101863540D01* +X131498805Y-101868217D01* +X131498394Y-101869377D01* +X131498308Y-101869620D01* +X131498307Y-101869622D01* +X131499615Y-101915769D01* +X131499615Y-101934501D01* +X131500039Y-101936768D01* +X131500271Y-101938944D01* +X131525391Y-102826003D01* +X131521573Y-102836014D01* +X131511793Y-102840393D01* +X131501782Y-102836575D01* +X131497529Y-102828312D01* +X130922313Y-98654472D01* +X130922313Y-98654465D01* +X130918349Y-98625706D01* +X130918353Y-98625688D01* +X130917565Y-98619974D01* +X130917566Y-98619974D01* +X130906249Y-98537876D01* +X130894779Y-98495650D01* +X130862802Y-98377931D01* +X130862801Y-98377929D01* +X130862800Y-98377924D01* +X130799250Y-98224843D01* +X130768062Y-98170591D01* +X130768056Y-98170576D01* +X130317979Y-97387656D01* +X130316600Y-97377030D01* +X130320684Y-97370333D01* +X130331430Y-97360537D01* +X130457316Y-97245778D01* +X130580225Y-97083020D01* +X130671134Y-96900449D01* +X130726949Y-96704282D01* +X130735517Y-96611818D01* +X130745767Y-96501201D01* +X130745767Y-96501196D01* +X130726950Y-96298124D01* +X130726949Y-96298121D01* +X130726949Y-96298116D01* +X130671134Y-96101949D01* +X130612217Y-95983626D01* +X130580230Y-95919387D01* +X130580225Y-95919378D01* +X130518656Y-95837848D01* +X130457316Y-95756620D01* +X130306593Y-95619218D01* +X130258394Y-95589374D01* +X130133190Y-95511851D01* +X130133191Y-95511851D01* +X130021927Y-95468748D01* +X129943008Y-95438175D01* +X129943005Y-95438174D01* +X129943004Y-95438174D01* +X129742530Y-95400699D01* +X129742528Y-95400699D01* +X129538576Y-95400699D01* +X129538573Y-95400699D01* +X129338099Y-95438174D01* +X129338096Y-95438174D01* +X129338096Y-95438175D01* +X129314806Y-95447197D01* +X129147912Y-95511851D01* +X128974512Y-95619217D01* +X128974511Y-95619218D01* +X128823788Y-95756619D01* +X128756383Y-95845877D01* +X128747145Y-95851306D01* +X128738569Y-95849764D01* +X127539417Y-95203451D01* +X127538797Y-95203168D01* +X127512965Y-95189270D01* +X127459920Y-95160730D01* +X127459918Y-95160729D01* +X127253916Y-95086304D01* +X127253909Y-95086302D01* +X127253908Y-95086301D01* +X127253906Y-95086301D01* +X127039185Y-95042999D01* +X127039189Y-95042999D01* +X126914181Y-95036580D01* +X126820429Y-95031767D01* +X126820427Y-95031767D01* +X126820426Y-95031767D01* +X126820421Y-95031767D01* +X126602400Y-95052850D01* +X126389847Y-95105790D01* +X126187413Y-95189426D01* +X126187407Y-95189429D01* +X126187406Y-95189430D01* +X126093439Y-95245690D01* +X125999466Y-95301956D01* +X125830147Y-95440903D01* +X125830145Y-95440905D01* +X125757543Y-95521073D01* +X125683108Y-95603265D01* +X125683106Y-95603267D01* +X125683104Y-95603270D01* +X125561565Y-95785495D01* +X125561563Y-95785499D01* +X125468164Y-95983626D01* +X125404936Y-96193345D01* +X125391957Y-96282150D01* +X125376548Y-96387588D01* +X125373259Y-96410089D01* +X125373258Y-96410092D01* +X124700500Y-96410092D01* +X124700500Y-93214500D01* +X124704601Y-93204601D01* +X124714500Y-93200500D01* +X149285500Y-93200500D01* +X149295399Y-93204601D01* +G37* +%TD.AperFunction*% +%TD*% +M02* diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-EdgeCuts.gbr b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-EdgeCuts.gbr new file mode 100644 index 0000000..48d677d --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-EdgeCuts.gbr @@ -0,0 +1,47 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,7.0.6*% +%TF.CreationDate,2023-07-11T12:05:29-07:00*% +%TF.ProjectId,jitx-design,6a697478-2d64-4657-9369-676e2e6b6963,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Profile,NP*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 7.0.6) date 2023-07-11 12:05:29* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%TA.AperFunction,Profile*% +%ADD10C,0.050000*% +%TD*% +%TA.AperFunction,Profile*% +%ADD11C,0.254000*% +%TD*% +G04 APERTURE END LIST* +D10* +X149500000Y-95000000D02* +X149500000Y-93000000D01* +D11* +X151162500Y-112128000D02* +X162412500Y-112128000D01* +X151155500Y-103880000D02* +X151155500Y-112130000D01* +D10* +X149500000Y-121000000D02* +X154500000Y-121000000D01* +X149500000Y-123000000D02* +X149500000Y-121000000D01* +D11* +X151158500Y-103878000D02* +X162408500Y-103878000D01* +D10* +X149500000Y-93000000D02* +X124500000Y-93000000D01* +X124500000Y-93000000D02* +X124500000Y-123000000D01* +X154500000Y-95000000D02* +X149500000Y-95000000D01* +X154500000Y-121000000D02* +X154500000Y-95000000D01* +X124500000Y-123000000D02* +X149500000Y-123000000D01* +M02* diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-MaskBottom.gbr b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-MaskBottom.gbr new file mode 100644 index 0000000..631ef90 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-MaskBottom.gbr @@ -0,0 +1,107 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,7.0.6*% +%TF.CreationDate,2023-07-11T12:05:29-07:00*% +%TF.ProjectId,jitx-design,6a697478-2d64-4657-9369-676e2e6b6963,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Soldermask,Bot*% +%TF.FilePolarity,Negative*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 7.0.6) date 2023-07-11 12:05:29* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 Aperture macros list* +%AMRoundRect* +0 Rectangle with rounded corners* +0 $1 Rounding radius* +0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* +0 Add a 4 corners polygon primitive as box body* +4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* +0 Add four circle primitives for the rounded corners* +1,1,$1+$1,$2,$3* +1,1,$1+$1,$4,$5* +1,1,$1+$1,$6,$7* +1,1,$1+$1,$8,$9* +0 Add four rect primitives between the rounded corners* +20,1,$1+$1,$2,$3,$4,$5,0* +20,1,$1+$1,$4,$5,$6,$7,0* +20,1,$1+$1,$6,$7,$8,$9,0* +20,1,$1+$1,$8,$9,$2,$3,0*% +G04 Aperture macros list end* +%ADD10C,2.300000*% +%ADD11C,3.700000*% +%ADD12RoundRect,0.050000X0.600000X-0.250000X0.600000X0.250000X-0.600000X0.250000X-0.600000X-0.250000X0*% +%ADD13RoundRect,0.050000X1.050000X-0.650000X1.050000X0.650000X-1.050000X0.650000X-1.050000X-0.650000X0*% +%ADD14RoundRect,0.050000X0.500000X-0.150000X0.500000X0.150000X-0.500000X0.150000X-0.500000X-0.150000X0*% +%ADD15RoundRect,0.050000X-0.190139X0.300000X-0.190139X-0.300000X0.190139X-0.300000X0.190139X0.300000X0*% +%ADD16C,1.700000*% +%ADD17C,1.200000*% +%ADD18RoundRect,0.051000X-1.000000X0.500000X-1.000000X-0.500000X1.000000X-0.500000X1.000000X0.500000X0*% +%ADD19RoundRect,0.051000X-1.000000X0.350000X-1.000000X-0.350000X1.000000X-0.350000X1.000000X0.350000X0*% +%ADD20RoundRect,0.051000X-1.400000X0.750000X-1.400000X-0.750000X1.400000X-0.750000X1.400000X0.750000X0*% +G04 APERTURE END LIST* +D10* +%TO.C,U1*% +X150050000Y-97450000D03* +D11* +X150050000Y-97450000D03* +%TD*% +D10* +%TO.C,U2*% +X150050000Y-118550000D03* +D11* +X150050000Y-118550000D03* +%TD*% +D12* +%TO.C,USB1*% +X150336500Y-104425000D03* +D13* +X149887500Y-103300000D03* +X149887500Y-112700000D03* +D12* +X150336500Y-111575000D03* +D14* +X149437500Y-110750000D03* +X149437500Y-110250000D03* +X149437500Y-109750000D03* +X149437500Y-109250000D03* +X149437500Y-106750000D03* +X149437500Y-106250000D03* +X149437500Y-105750000D03* +X149437500Y-105250000D03* +X149437500Y-107250000D03* +X149437500Y-107750000D03* +X149437500Y-108250000D03* +X149437500Y-108750000D03* +%TD*% +D15* +%TO.C,R9*% +X147502051Y-107938865D03* +X146582329Y-107938865D03* +%TD*% +D16* +%TO.C,Card1*% +X140225000Y-98500000D03* +D17* +X140275000Y-119500000D03* +D18* +X143275000Y-101130000D03* +X143275000Y-103630000D03* +X143275000Y-106130000D03* +X143275000Y-108630000D03* +X143275000Y-111130000D03* +X143275000Y-113630000D03* +X143275000Y-116060000D03* +X143275000Y-117760000D03* +X143275000Y-98630000D03* +D19* +X143275000Y-119060000D03* +X143275000Y-120260000D03* +D20* +X141325000Y-121650000D03* +X126825000Y-121650000D03* +X126725000Y-94350000D03* +X141225000Y-96550000D03* +%TD*% +M02* diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-MaskTop.gbr b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-MaskTop.gbr new file mode 100644 index 0000000..63dc15b --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-MaskTop.gbr @@ -0,0 +1,269 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,7.0.6*% +%TF.CreationDate,2023-07-11T12:05:29-07:00*% +%TF.ProjectId,jitx-design,6a697478-2d64-4657-9369-676e2e6b6963,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Soldermask,Top*% +%TF.FilePolarity,Negative*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 7.0.6) date 2023-07-11 12:05:29* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 Aperture macros list* +%AMRoundRect* +0 Rectangle with rounded corners* +0 $1 Rounding radius* +0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* +0 Add a 4 corners polygon primitive as box body* +4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* +0 Add four circle primitives for the rounded corners* +1,1,$1+$1,$2,$3* +1,1,$1+$1,$4,$5* +1,1,$1+$1,$6,$7* +1,1,$1+$1,$8,$9* +0 Add four rect primitives between the rounded corners* +20,1,$1+$1,$2,$3,$4,$5,0* +20,1,$1+$1,$4,$5,$6,$7,0* +20,1,$1+$1,$6,$7,$8,$9,0* +20,1,$1+$1,$8,$9,$2,$3,0*% +G04 Aperture macros list end* +%ADD10RoundRect,0.051000X-0.283000X-0.270000X0.283000X-0.270000X0.283000X0.270000X-0.283000X0.270000X0*% +%ADD11RoundRect,0.050000X-0.300000X-0.186389X0.300000X-0.186389X0.300000X0.186389X-0.300000X0.186389X0*% +%ADD12RoundRect,0.050000X-0.208889X0.300000X-0.208889X-0.300000X0.208889X-0.300000X0.208889X0.300000X0*% +%ADD13RoundRect,0.051000X0.532000X-1.109000X0.532000X1.109000X-0.532000X1.109000X-0.532000X-1.109000X0*% +%ADD14RoundRect,0.051000X2.777000X-2.602000X2.777000X2.602000X-2.777000X2.602000X-2.777000X-2.602000X0*% +%ADD15RoundRect,0.050000X-0.190139X0.300000X-0.190139X-0.300000X0.190139X-0.300000X0.190139X0.300000X0*% +%ADD16C,2.100000*% +%ADD17RoundRect,0.050000X0.183889X-0.300000X0.183889X0.300000X-0.183889X0.300000X-0.183889X-0.300000X0*% +%ADD18RoundRect,0.051000X0.600000X-0.700000X0.600000X0.700000X-0.600000X0.700000X-0.600000X-0.700000X0*% +%ADD19RoundRect,0.050000X-0.300000X-0.190139X0.300000X-0.190139X0.300000X0.190139X-0.300000X0.190139X0*% +%ADD20O,0.690000X2.147000*% +%ADD21RoundRect,0.050000X0.300000X0.208889X-0.300000X0.208889X-0.300000X-0.208889X0.300000X-0.208889X0*% +%ADD22RoundRect,0.050000X-0.300000X-0.208889X0.300000X-0.208889X0.300000X0.208889X-0.300000X0.208889X0*% +%ADD23RoundRect,0.050000X-0.300000X-0.215139X0.300000X-0.215139X0.300000X0.215139X-0.300000X0.215139X0*% +%ADD24C,2.300000*% +%ADD25C,3.700000*% +%ADD26RoundRect,0.050000X0.208889X-0.300000X0.208889X0.300000X-0.208889X0.300000X-0.208889X-0.300000X0*% +%ADD27RoundRect,0.050000X0.256066X-0.475000X0.256066X0.475000X-0.256066X0.475000X-0.256066X-0.475000X0*% +%ADD28RoundRect,0.050000X0.190139X-0.300000X0.190139X0.300000X-0.190139X0.300000X-0.190139X-0.300000X0*% +%ADD29RoundRect,0.050000X-0.445000X0.140000X-0.445000X-0.140000X0.445000X-0.140000X0.445000X0.140000X0*% +%ADD30RoundRect,0.050000X-0.140000X-0.445000X0.140000X-0.445000X0.140000X0.445000X-0.140000X0.445000X0*% +%ADD31RoundRect,0.050000X2.050000X2.050000X-2.050000X2.050000X-2.050000X-2.050000X2.050000X-2.050000X0*% +%ADD32C,1.700000*% +%ADD33C,1.200000*% +G04 APERTURE END LIST* +D10* +%TO.C,R8*% +X140693658Y-106840852D03* +X141559658Y-106840852D03* +%TD*% +D11* +%TO.C,R5*% +X138129245Y-109574220D03* +X138129245Y-110486442D03* +%TD*% +D12* +%TO.C,C3*% +X143060672Y-110835572D03* +X142103450Y-110835572D03* +%TD*% +D13* +%TO.C,U3*% +X146659619Y-113037221D03* +D14* +X144360619Y-119734221D03* +D13* +X142060619Y-113037221D03* +%TD*% +D15* +%TO.C,R7*% +X134176631Y-114068215D03* +X133256909Y-114068215D03* +%TD*% +D16* +%TO.C,U6*% +X126859670Y-98770685D03* +%TD*% +D17* +%TO.C,R6*% +X134502123Y-97122587D03* +X135409345Y-97122587D03* +%TD*% +D18* +%TO.C,X1*% +X135973506Y-112346485D03* +X135973506Y-110146485D03* +X134273506Y-110146485D03* +X134273506Y-112346485D03* +%TD*% +D16* +%TO.C,U8*% +X129640552Y-96501199D03* +%TD*% +D12* +%TO.C,C8*% +X137486311Y-97138773D03* +X136529089Y-97138773D03* +%TD*% +D19* +%TO.C,R1*% +X148106609Y-101082516D03* +X148106609Y-102002238D03* +%TD*% +D20* +%TO.C,U4*% +X126467171Y-121212230D03* +X127737171Y-121212230D03* +X129007171Y-121212230D03* +X130277171Y-121212230D03* +X130277171Y-115667230D03* +X129007171Y-115667230D03* +X127737171Y-115667230D03* +X126467171Y-115667230D03* +%TD*% +D21* +%TO.C,C6*% +X137482233Y-108498823D03* +X137482233Y-107541601D03* +%TD*% +D12* +%TO.C,C4*% +X135731734Y-99695657D03* +X134774512Y-99695657D03* +%TD*% +D22* +%TO.C,C1*% +X148622184Y-114216203D03* +X148622184Y-115173425D03* +%TD*% +D23* +%TO.C,C11*% +X132381115Y-100722671D03* +X132381115Y-101692393D03* +%TD*% +D12* +%TO.C,C7*% +X141652863Y-103134378D03* +X140695641Y-103134378D03* +%TD*% +D24* +%TO.C,U1*% +X150050000Y-97450000D03* +D25* +X150050000Y-97450000D03* +%TD*% +D26* +%TO.C,C12*% +X137573127Y-112571302D03* +X138530349Y-112571302D03* +%TD*% +D21* +%TO.C,C10*% +X138644942Y-108548873D03* +X138644942Y-107591651D03* +%TD*% +D27* +%TO.C,LED1*% +X143607724Y-106840352D03* +X145045592Y-106840352D03* +%TD*% +D16* +%TO.C,U9*% +X129639143Y-98796163D03* +%TD*% +D22* +%TO.C,C5*% +X137089343Y-98689029D03* +X137089343Y-99646251D03* +%TD*% +D28* +%TO.C,R2*% +X125847533Y-110727391D03* +X126767255Y-110727391D03* +%TD*% +D26* +%TO.C,C9*% +X130884467Y-103715096D03* +X131841689Y-103715096D03* +%TD*% +%TO.C,C2*% +X145699373Y-110839534D03* +X146656595Y-110839534D03* +%TD*% +D28* +%TO.C,R4*% +X128202801Y-106729721D03* +X129122523Y-106729721D03* +%TD*% +%TO.C,R3*% +X126883250Y-108885762D03* +X127802972Y-108885762D03* +%TD*% +D29* +%TO.C,U5*% +X139405865Y-105604046D03* +X139405865Y-105104046D03* +X139405865Y-104604046D03* +X139405865Y-104104046D03* +X139405865Y-103604046D03* +X139405865Y-103104046D03* +X139405865Y-102604046D03* +X139405865Y-102104046D03* +X139405865Y-101604046D03* +D30* +X138595865Y-100795046D03* +X138095865Y-100795046D03* +X137595865Y-100795046D03* +X137095865Y-100795046D03* +X136595865Y-100795046D03* +X136095865Y-100795046D03* +X135595865Y-100795046D03* +X135095865Y-100795046D03* +X134595865Y-100795046D03* +D29* +X133785865Y-101604046D03* +X133785865Y-102104046D03* +X133785865Y-102604046D03* +X133785865Y-103104046D03* +X133785865Y-103604046D03* +X133785865Y-104104046D03* +X133785865Y-104604046D03* +X133785865Y-105104046D03* +X133785865Y-105604046D03* +D30* +X134595865Y-106414046D03* +X135095865Y-106414046D03* +X135595865Y-106414046D03* +X136095865Y-106414046D03* +X136595865Y-106414046D03* +X137095865Y-106414046D03* +X137595865Y-106414046D03* +X138095865Y-106414046D03* +X138595865Y-106414046D03* +D31* +X136595865Y-103604046D03* +%TD*% +D16* +%TO.C,U7*% +X126853950Y-96515848D03* +%TD*% +D24* +%TO.C,U2*% +X150050000Y-118550000D03* +D25* +X150050000Y-118550000D03* +%TD*% +D12* +%TO.C,C13*% +X134168661Y-108309522D03* +X133211439Y-108309522D03* +%TD*% +D32* +%TO.C,Card1*% +X140225000Y-98500000D03* +D33* +X140275000Y-119500000D03* +%TD*% +M02* diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-NPTH-drl_map.pdf b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-NPTH-drl_map.pdf new file mode 100644 index 0000000..f28021e Binary files /dev/null and b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-NPTH-drl_map.pdf differ diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-NPTH.drl b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-NPTH.drl new file mode 100644 index 0000000..f53874e --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-NPTH.drl @@ -0,0 +1,26 @@ +M48 +; DRILL file {KiCad 7.0.6} date Tue 11 Jul 2023 12:05:29 PM PDT +; FORMAT={-:-/ absolute / inch / decimal} +; #@! TF.CreationDate,2023-07-11T12:05:29-07:00 +; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.6 +; #@! TF.FileFunction,NonPlated,1,2,NPTH +FMAT,2 +INCH +; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill +T1C0.0472 +; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill +T2C0.0669 +; #@! TA.AperFunction,NonPlated,NPTH,ComponentDrill +T3C0.0906 +% +G90 +G05 +T1 +X5.5226Y-4.7047 +T2 +X5.5207Y-3.878 +T3 +X5.9075Y-3.8366 +X5.9075Y-4.6673 +T0 +M30 diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-PTH-drl_map.pdf b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-PTH-drl_map.pdf new file mode 100644 index 0000000..01a669f Binary files /dev/null and b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-PTH-drl_map.pdf differ diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-PTH.drl b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-PTH.drl new file mode 100644 index 0000000..387b605 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-PTH.drl @@ -0,0 +1,49 @@ +M48 +; DRILL file {KiCad 7.0.6} date Tue 11 Jul 2023 12:05:29 PM PDT +; FORMAT={-:-/ absolute / inch / decimal} +; #@! TF.CreationDate,2023-07-11T12:05:29-07:00 +; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.6 +; #@! TF.FileFunction,Plated,1,2,PTH +FMAT,2 +INCH +; #@! TA.AperFunction,Plated,PTH,ViaDrill +T1C0.0079 +% +G90 +G05 +T1 +X4.92Y-4.13 +X4.92Y-4.17 +X4.92Y-4.21 +X4.92Y-4.25 +X4.97Y-4.23 +X5.01Y-4.12 +X5.04Y-3.85 +X5.2Y-3.83 +X5.2313Y-4.1143 +X5.2333Y-4.0862 +X5.2343Y-4.1429 +X5.2348Y-4.0397 +X5.26Y-3.9 +X5.26Y-4.81 +X5.3Y-4.81 +X5.32Y-4.38 +X5.33Y-3.87 +X5.3395Y-4.2195 +X5.34Y-4.81 +X5.39Y-4.81 +X5.4359Y-3.9297 +X5.5182Y-4.0828 +X5.52Y-4.36 +X5.5227Y-3.9976 +X5.5358Y-4.1111 +X5.55Y-4.27 +X5.71Y-3.84 +X5.7426Y-4.2061 +X5.8215Y-4.4369 +X5.8297Y-4.0675 +X5.8416Y-4.1906 +X5.8457Y-4.1598 +X5.8464Y-4.301 +T0 +M30 diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-PasteBottom.gbr b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-PasteBottom.gbr new file mode 100644 index 0000000..e7a4d84 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-PasteBottom.gbr @@ -0,0 +1,69 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,7.0.6*% +%TF.CreationDate,2023-07-11T12:05:29-07:00*% +%TF.ProjectId,jitx-design,6a697478-2d64-4657-9369-676e2e6b6963,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Paste,Bot*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 7.0.6) date 2023-07-11 12:05:29* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%ADD10R,1.200000X0.500000*% +%ADD11R,2.100000X1.300000*% +%ADD12R,1.000000X0.300000*% +%ADD13R,0.380278X0.600000*% +%ADD14R,2.000000X1.000000*% +%ADD15R,2.000000X0.700000*% +%ADD16R,2.800000X1.500000*% +G04 APERTURE END LIST* +D10* +%TO.C,USB1*% +X150336500Y-104425000D03* +D11* +X149887500Y-103300000D03* +X149887500Y-112700000D03* +D10* +X150336500Y-111575000D03* +D12* +X149437500Y-110750000D03* +X149437500Y-110250000D03* +X149437500Y-109750000D03* +X149437500Y-109250000D03* +X149437500Y-106750000D03* +X149437500Y-106250000D03* +X149437500Y-105750000D03* +X149437500Y-105250000D03* +X149437500Y-107250000D03* +X149437500Y-107750000D03* +X149437500Y-108250000D03* +X149437500Y-108750000D03* +%TD*% +D13* +%TO.C,R9*% +X147502051Y-107938865D03* +X146582329Y-107938865D03* +%TD*% +D14* +%TO.C,Card1*% +X143275000Y-101130000D03* +X143275000Y-103630000D03* +X143275000Y-106130000D03* +X143275000Y-108630000D03* +X143275000Y-111130000D03* +X143275000Y-113630000D03* +X143275000Y-116060000D03* +X143275000Y-117760000D03* +X143275000Y-98630000D03* +D15* +X143275000Y-119060000D03* +X143275000Y-120260000D03* +D16* +X141325000Y-121650000D03* +X126825000Y-121650000D03* +X126725000Y-94350000D03* +X141225000Y-96550000D03* +%TD*% +M02* diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-PasteTop.gbr b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-PasteTop.gbr new file mode 100644 index 0000000..197990a --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-PasteTop.gbr @@ -0,0 +1,478 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,7.0.6*% +%TF.CreationDate,2023-07-11T12:05:29-07:00*% +%TF.ProjectId,jitx-design,6a697478-2d64-4657-9369-676e2e6b6963,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Paste,Top*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 7.0.6) date 2023-07-11 12:05:29* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +%ADD10R,0.600000X0.372778*% +%ADD11R,0.417778X0.600000*% +%ADD12R,1.064000X2.218000*% +%ADD13R,5.554000X5.204000*% +%ADD14R,0.380278X0.600000*% +%ADD15R,0.367778X0.600000*% +%ADD16R,1.200000X1.400000*% +%ADD17R,0.600000X0.380278*% +%ADD18O,0.588000X2.045000*% +%ADD19R,0.600000X0.417778*% +%ADD20R,0.600000X0.430278*% +%ADD21R,0.512132X0.950000*% +G04 APERTURE END LIST* +%TO.C,R8*% +G36* +X140991658Y-106610852D02* +G01* +X140991658Y-107070852D01* +X140951658Y-107110852D01* +X140450658Y-107110852D01* +X140410658Y-107070852D01* +X140410658Y-106610852D01* +X140450658Y-106570852D01* +X140951658Y-106570852D01* +X140991658Y-106610852D01* +G37* +G36* +X141842658Y-106610852D02* +G01* +X141842658Y-107070852D01* +X141802658Y-107110852D01* +X141301658Y-107110852D01* +X141261658Y-107070852D01* +X141261658Y-106610852D01* +X141301658Y-106570852D01* +X141802658Y-106570852D01* +X141842658Y-106610852D01* +G37* +%TO.C,U5*% +G36* +X139850865Y-105244046D02* +G01* +X138960865Y-105244046D01* +X138960865Y-104964046D01* +X139850865Y-104964046D01* +X139850865Y-105244046D01* +G37* +G36* +X139850865Y-104744046D02* +G01* +X138960865Y-104744046D01* +X138960865Y-104464046D01* +X139850865Y-104464046D01* +X139850865Y-104744046D01* +G37* +G36* +X139850865Y-104244046D02* +G01* +X138960865Y-104244046D01* +X138960865Y-103964046D01* +X139850865Y-103964046D01* +X139850865Y-104244046D01* +G37* +G36* +X139850865Y-103744046D02* +G01* +X138960865Y-103744046D01* +X138960865Y-103464046D01* +X139850865Y-103464046D01* +X139850865Y-103744046D01* +G37* +G36* +X139850865Y-105744046D02* +G01* +X138960865Y-105744046D01* +X138960865Y-105464046D01* +X139850865Y-105464046D01* +X139850865Y-105744046D01* +G37* +G36* +X139850865Y-103244046D02* +G01* +X138960865Y-103244046D01* +X138960865Y-102964046D01* +X139850865Y-102964046D01* +X139850865Y-103244046D01* +G37* +G36* +X139850865Y-102744046D02* +G01* +X138960865Y-102744046D01* +X138960865Y-102464046D01* +X139850865Y-102464046D01* +X139850865Y-102744046D01* +G37* +G36* +X139850865Y-102244046D02* +G01* +X138960865Y-102244046D01* +X138960865Y-101964046D01* +X139850865Y-101964046D01* +X139850865Y-102244046D01* +G37* +G36* +X139850865Y-101744046D02* +G01* +X138960865Y-101744046D01* +X138960865Y-101464046D01* +X139850865Y-101464046D01* +X139850865Y-101744046D01* +G37* +G36* +X138735865Y-106859046D02* +G01* +X138455865Y-106859046D01* +X138455865Y-105969046D01* +X138735865Y-105969046D01* +X138735865Y-106859046D01* +G37* +G36* +X138735865Y-101239046D02* +G01* +X138455865Y-101239046D01* +X138455865Y-100349046D01* +X138735865Y-100349046D01* +X138735865Y-101239046D01* +G37* +G36* +X138235865Y-106859046D02* +G01* +X137955865Y-106859046D01* +X137955865Y-105969046D01* +X138235865Y-105969046D01* +X138235865Y-106859046D01* +G37* +G36* +X138235865Y-105244046D02* +G01* +X134955865Y-105244046D01* +X134955865Y-101964046D01* +X138235865Y-101964046D01* +X138235865Y-105244046D01* +G37* +G36* +X138235865Y-101239046D02* +G01* +X137955865Y-101239046D01* +X137955865Y-100349046D01* +X138235865Y-100349046D01* +X138235865Y-101239046D01* +G37* +G36* +X137735865Y-106859046D02* +G01* +X137455865Y-106859046D01* +X137455865Y-105969046D01* +X137735865Y-105969046D01* +X137735865Y-106859046D01* +G37* +G36* +X137735865Y-101239046D02* +G01* +X137455865Y-101239046D01* +X137455865Y-100349046D01* +X137735865Y-100349046D01* +X137735865Y-101239046D01* +G37* +G36* +X137235865Y-106859046D02* +G01* +X136955865Y-106859046D01* +X136955865Y-105969046D01* +X137235865Y-105969046D01* +X137235865Y-106859046D01* +G37* +G36* +X137235865Y-101239046D02* +G01* +X136955865Y-101239046D01* +X136955865Y-100349046D01* +X137235865Y-100349046D01* +X137235865Y-101239046D01* +G37* +G36* +X136735865Y-106859046D02* +G01* +X136455865Y-106859046D01* +X136455865Y-105969046D01* +X136735865Y-105969046D01* +X136735865Y-106859046D01* +G37* +G36* +X136735865Y-101239046D02* +G01* +X136455865Y-101239046D01* +X136455865Y-100349046D01* +X136735865Y-100349046D01* +X136735865Y-101239046D01* +G37* +G36* +X136235865Y-106859046D02* +G01* +X135955865Y-106859046D01* +X135955865Y-105969046D01* +X136235865Y-105969046D01* +X136235865Y-106859046D01* +G37* +G36* +X136235865Y-101239046D02* +G01* +X135955865Y-101239046D01* +X135955865Y-100349046D01* +X136235865Y-100349046D01* +X136235865Y-101239046D01* +G37* +G36* +X135735865Y-101239046D02* +G01* +X135455865Y-101239046D01* +X135455865Y-100349046D01* +X135735865Y-100349046D01* +X135735865Y-101239046D01* +G37* +G36* +X135735865Y-106859046D02* +G01* +X135455865Y-106859046D01* +X135455865Y-105969046D01* +X135735865Y-105969046D01* +X135735865Y-106859046D01* +G37* +G36* +X135235865Y-106859046D02* +G01* +X134955865Y-106859046D01* +X134955865Y-105969046D01* +X135235865Y-105969046D01* +X135235865Y-106859046D01* +G37* +G36* +X135235865Y-101239046D02* +G01* +X134955865Y-101239046D01* +X134955865Y-100349046D01* +X135235865Y-100349046D01* +X135235865Y-101239046D01* +G37* +G36* +X134735865Y-106859046D02* +G01* +X134455865Y-106859046D01* +X134455865Y-105969046D01* +X134735865Y-105969046D01* +X134735865Y-106859046D01* +G37* +G36* +X134735865Y-101239046D02* +G01* +X134455865Y-101239046D01* +X134455865Y-100349046D01* +X134735865Y-100349046D01* +X134735865Y-101239046D01* +G37* +G36* +X134230865Y-103244046D02* +G01* +X133340865Y-103244046D01* +X133340865Y-102964046D01* +X134230865Y-102964046D01* +X134230865Y-103244046D01* +G37* +G36* +X134230865Y-102744046D02* +G01* +X133340865Y-102744046D01* +X133340865Y-102464046D01* +X134230865Y-102464046D01* +X134230865Y-102744046D01* +G37* +G36* +X134230865Y-102244046D02* +G01* +X133340865Y-102244046D01* +X133340865Y-101964046D01* +X134230865Y-101964046D01* +X134230865Y-102244046D01* +G37* +G36* +X134230865Y-101744046D02* +G01* +X133340865Y-101744046D01* +X133340865Y-101464046D01* +X134230865Y-101464046D01* +X134230865Y-101744046D01* +G37* +G36* +X134230865Y-105744046D02* +G01* +X133340865Y-105744046D01* +X133340865Y-105464046D01* +X134230865Y-105464046D01* +X134230865Y-105744046D01* +G37* +G36* +X134230865Y-105244046D02* +G01* +X133340865Y-105244046D01* +X133340865Y-104964046D01* +X134230865Y-104964046D01* +X134230865Y-105244046D01* +G37* +G36* +X134230865Y-104744046D02* +G01* +X133340865Y-104744046D01* +X133340865Y-104464046D01* +X134230865Y-104464046D01* +X134230865Y-104744046D01* +G37* +G36* +X134230865Y-104244046D02* +G01* +X133340865Y-104244046D01* +X133340865Y-103964046D01* +X134230865Y-103964046D01* +X134230865Y-104244046D01* +G37* +G36* +X134230865Y-103744046D02* +G01* +X133340865Y-103744046D01* +X133340865Y-103464046D01* +X134230865Y-103464046D01* +X134230865Y-103744046D01* +G37* +%TD*% +D10* +%TO.C,R5*% +X138129245Y-109574220D03* +X138129245Y-110486442D03* +%TD*% +D11* +%TO.C,C3*% +X143060672Y-110835572D03* +X142103450Y-110835572D03* +%TD*% +D12* +%TO.C,U3*% +X146659619Y-113037221D03* +D13* +X144360619Y-119734221D03* +D12* +X142060619Y-113037221D03* +%TD*% +D14* +%TO.C,R7*% +X134176631Y-114068215D03* +X133256909Y-114068215D03* +%TD*% +D15* +%TO.C,R6*% +X134502123Y-97122587D03* +X135409345Y-97122587D03* +%TD*% +D16* +%TO.C,X1*% +X135973506Y-112346485D03* +X135973506Y-110146485D03* +X134273506Y-110146485D03* +X134273506Y-112346485D03* +%TD*% +D11* +%TO.C,C8*% +X137486311Y-97138773D03* +X136529089Y-97138773D03* +%TD*% +D17* +%TO.C,R1*% +X148106609Y-101082516D03* +X148106609Y-102002238D03* +%TD*% +D18* +%TO.C,U4*% +X126467171Y-121212230D03* +X127737171Y-121212230D03* +X129007171Y-121212230D03* +X130277171Y-121212230D03* +X130277171Y-115667230D03* +X129007171Y-115667230D03* +X127737171Y-115667230D03* +X126467171Y-115667230D03* +%TD*% +D19* +%TO.C,C6*% +X137482233Y-108498823D03* +X137482233Y-107541601D03* +%TD*% +D11* +%TO.C,C4*% +X135731734Y-99695657D03* +X134774512Y-99695657D03* +%TD*% +D19* +%TO.C,C1*% +X148622184Y-114216203D03* +X148622184Y-115173425D03* +%TD*% +D20* +%TO.C,C11*% +X132381115Y-100722671D03* +X132381115Y-101692393D03* +%TD*% +D11* +%TO.C,C7*% +X141652863Y-103134378D03* +X140695641Y-103134378D03* +%TD*% +%TO.C,C12*% +X137573127Y-112571302D03* +X138530349Y-112571302D03* +%TD*% +D19* +%TO.C,C10*% +X138644942Y-108548873D03* +X138644942Y-107591651D03* +%TD*% +D21* +%TO.C,LED1*% +X143607724Y-106840352D03* +X145045592Y-106840352D03* +%TD*% +D19* +%TO.C,C5*% +X137089343Y-98689029D03* +X137089343Y-99646251D03* +%TD*% +D14* +%TO.C,R2*% +X125847533Y-110727391D03* +X126767255Y-110727391D03* +%TD*% +D11* +%TO.C,C9*% +X130884467Y-103715096D03* +X131841689Y-103715096D03* +%TD*% +%TO.C,C2*% +X145699373Y-110839534D03* +X146656595Y-110839534D03* +%TD*% +D14* +%TO.C,R4*% +X128202801Y-106729721D03* +X129122523Y-106729721D03* +%TD*% +%TO.C,R3*% +X126883250Y-108885762D03* +X127802972Y-108885762D03* +%TD*% +D11* +%TO.C,C13*% +X134168661Y-108309522D03* +X133211439Y-108309522D03* +%TD*% +M02* diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-SilkBottom.gbr b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-SilkBottom.gbr new file mode 100644 index 0000000..b4d56a8 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-SilkBottom.gbr @@ -0,0 +1,424 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,7.0.6*% +%TF.CreationDate,2023-07-11T12:05:29-07:00*% +%TF.ProjectId,jitx-design,6a697478-2d64-4657-9369-676e2e6b6963,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Legend,Bot*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 7.0.6) date 2023-07-11 12:05:29* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 Aperture macros list* +%AMRoundRect* +0 Rectangle with rounded corners* +0 $1 Rounding radius* +0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* +0 Add a 4 corners polygon primitive as box body* +4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* +0 Add four circle primitives for the rounded corners* +1,1,$1+$1,$2,$3* +1,1,$1+$1,$4,$5* +1,1,$1+$1,$6,$7* +1,1,$1+$1,$8,$9* +0 Add four rect primitives between the rounded corners* +20,1,$1+$1,$2,$3,$4,$5,0* +20,1,$1+$1,$4,$5,$6,$7,0* +20,1,$1+$1,$6,$7,$8,$9,0* +20,1,$1+$1,$8,$9,$2,$3,0*% +G04 Aperture macros list end* +%ADD10C,0.100000*% +%ADD11C,0.254000*% +%ADD12C,2.300000*% +%ADD13C,3.700000*% +%ADD14RoundRect,0.050000X0.600000X-0.250000X0.600000X0.250000X-0.600000X0.250000X-0.600000X-0.250000X0*% +%ADD15RoundRect,0.050000X1.050000X-0.650000X1.050000X0.650000X-1.050000X0.650000X-1.050000X-0.650000X0*% +%ADD16RoundRect,0.050000X0.500000X-0.150000X0.500000X0.150000X-0.500000X0.150000X-0.500000X-0.150000X0*% +%ADD17RoundRect,0.050000X-0.190139X0.300000X-0.190139X-0.300000X0.190139X-0.300000X0.190139X0.300000X0*% +%ADD18C,1.700000*% +%ADD19C,1.200000*% +%ADD20RoundRect,0.051000X-1.000000X0.500000X-1.000000X-0.500000X1.000000X-0.500000X1.000000X0.500000X0*% +%ADD21RoundRect,0.051000X-1.000000X0.350000X-1.000000X-0.350000X1.000000X-0.350000X1.000000X0.350000X0*% +%ADD22RoundRect,0.051000X-1.400000X0.750000X-1.400000X-0.750000X1.400000X-0.750000X1.400000X0.750000X0*% +G04 APERTURE END LIST* +D10* +X146539319Y-106803884D02* +X147348842Y-106803884D01* +X147348842Y-106803884D02* +X147444080Y-106851503D01* +X147444080Y-106851503D02* +X147491700Y-106899122D01* +X147491700Y-106899122D02* +X147539319Y-106994360D01* +X147539319Y-106994360D02* +X147539319Y-107184836D01* +X147539319Y-107184836D02* +X147491700Y-107280074D01* +X147491700Y-107280074D02* +X147444080Y-107327693D01* +X147444080Y-107327693D02* +X147348842Y-107375312D01* +X147348842Y-107375312D02* +X146539319Y-107375312D01* +X147491700Y-107803884D02* +X147539319Y-107946741D01* +X147539319Y-107946741D02* +X147539319Y-108184836D01* +X147539319Y-108184836D02* +X147491700Y-108280074D01* +X147491700Y-108280074D02* +X147444080Y-108327693D01* +X147444080Y-108327693D02* +X147348842Y-108375312D01* +X147348842Y-108375312D02* +X147253604Y-108375312D01* +X147253604Y-108375312D02* +X147158366Y-108327693D01* +X147158366Y-108327693D02* +X147110747Y-108280074D01* +X147110747Y-108280074D02* +X147063128Y-108184836D01* +X147063128Y-108184836D02* +X147015509Y-107994360D01* +X147015509Y-107994360D02* +X146967890Y-107899122D01* +X146967890Y-107899122D02* +X146920271Y-107851503D01* +X146920271Y-107851503D02* +X146825033Y-107803884D01* +X146825033Y-107803884D02* +X146729795Y-107803884D01* +X146729795Y-107803884D02* +X146634557Y-107851503D01* +X146634557Y-107851503D02* +X146586938Y-107899122D01* +X146586938Y-107899122D02* +X146539319Y-107994360D01* +X146539319Y-107994360D02* +X146539319Y-108232455D01* +X146539319Y-108232455D02* +X146586938Y-108375312D01* +X147015509Y-109137217D02* +X147063128Y-109280074D01* +X147063128Y-109280074D02* +X147110747Y-109327693D01* +X147110747Y-109327693D02* +X147205985Y-109375312D01* +X147205985Y-109375312D02* +X147348842Y-109375312D01* +X147348842Y-109375312D02* +X147444080Y-109327693D01* +X147444080Y-109327693D02* +X147491700Y-109280074D01* +X147491700Y-109280074D02* +X147539319Y-109184836D01* +X147539319Y-109184836D02* +X147539319Y-108803884D01* +X147539319Y-108803884D02* +X146539319Y-108803884D01* +X146539319Y-108803884D02* +X146539319Y-109137217D01* +X146539319Y-109137217D02* +X146586938Y-109232455D01* +X146586938Y-109232455D02* +X146634557Y-109280074D01* +X146634557Y-109280074D02* +X146729795Y-109327693D01* +X146729795Y-109327693D02* +X146825033Y-109327693D01* +X146825033Y-109327693D02* +X146920271Y-109280074D01* +X146920271Y-109280074D02* +X146967890Y-109232455D01* +X146967890Y-109232455D02* +X147015509Y-109137217D01* +X147015509Y-109137217D02* +X147015509Y-108803884D01* +X147539319Y-110327693D02* +X147539319Y-109756265D01* +X147539319Y-110041979D02* +X146539319Y-110041979D01* +X146539319Y-110041979D02* +X146682176Y-109946741D01* +X146682176Y-109946741D02* +X146777414Y-109851503D01* +X146777414Y-109851503D02* +X146825033Y-109756265D01* +X147208856Y-107446284D02* +X147542189Y-106970093D01* +X147780284Y-107446284D02* +X147780284Y-106446284D01* +X147780284Y-106446284D02* +X147399332Y-106446284D01* +X147399332Y-106446284D02* +X147304094Y-106493903D01* +X147304094Y-106493903D02* +X147256475Y-106541522D01* +X147256475Y-106541522D02* +X147208856Y-106636760D01* +X147208856Y-106636760D02* +X147208856Y-106779617D01* +X147208856Y-106779617D02* +X147256475Y-106874855D01* +X147256475Y-106874855D02* +X147304094Y-106922474D01* +X147304094Y-106922474D02* +X147399332Y-106970093D01* +X147399332Y-106970093D02* +X147780284Y-106970093D01* +X146732665Y-107446284D02* +X146542189Y-107446284D01* +X146542189Y-107446284D02* +X146446951Y-107398665D01* +X146446951Y-107398665D02* +X146399332Y-107351045D01* +X146399332Y-107351045D02* +X146304094Y-107208188D01* +X146304094Y-107208188D02* +X146256475Y-107017712D01* +X146256475Y-107017712D02* +X146256475Y-106636760D01* +X146256475Y-106636760D02* +X146304094Y-106541522D01* +X146304094Y-106541522D02* +X146351713Y-106493903D01* +X146351713Y-106493903D02* +X146446951Y-106446284D01* +X146446951Y-106446284D02* +X146637427Y-106446284D01* +X146637427Y-106446284D02* +X146732665Y-106493903D01* +X146732665Y-106493903D02* +X146780284Y-106541522D01* +X146780284Y-106541522D02* +X146827903Y-106636760D01* +X146827903Y-106636760D02* +X146827903Y-106874855D01* +X146827903Y-106874855D02* +X146780284Y-106970093D01* +X146780284Y-106970093D02* +X146732665Y-107017712D01* +X146732665Y-107017712D02* +X146637427Y-107065331D01* +X146637427Y-107065331D02* +X146446951Y-107065331D01* +X146446951Y-107065331D02* +X146351713Y-107017712D01* +X146351713Y-107017712D02* +X146304094Y-106970093D01* +X146304094Y-106970093D02* +X146256475Y-106874855D01* +X145342780Y-105862781D02* +X145390400Y-105815162D01* +X145390400Y-105815162D02* +X145438019Y-105672305D01* +X145438019Y-105672305D02* +X145438019Y-105577067D01* +X145438019Y-105577067D02* +X145390400Y-105434210D01* +X145390400Y-105434210D02* +X145295161Y-105338972D01* +X145295161Y-105338972D02* +X145199923Y-105291353D01* +X145199923Y-105291353D02* +X145009447Y-105243734D01* +X145009447Y-105243734D02* +X144866590Y-105243734D01* +X144866590Y-105243734D02* +X144676114Y-105291353D01* +X144676114Y-105291353D02* +X144580876Y-105338972D01* +X144580876Y-105338972D02* +X144485638Y-105434210D01* +X144485638Y-105434210D02* +X144438019Y-105577067D01* +X144438019Y-105577067D02* +X144438019Y-105672305D01* +X144438019Y-105672305D02* +X144485638Y-105815162D01* +X144485638Y-105815162D02* +X144533257Y-105862781D01* +X145438019Y-106719924D02* +X144914209Y-106719924D01* +X144914209Y-106719924D02* +X144818971Y-106672305D01* +X144818971Y-106672305D02* +X144771352Y-106577067D01* +X144771352Y-106577067D02* +X144771352Y-106386591D01* +X144771352Y-106386591D02* +X144818971Y-106291353D01* +X145390400Y-106719924D02* +X145438019Y-106624686D01* +X145438019Y-106624686D02* +X145438019Y-106386591D01* +X145438019Y-106386591D02* +X145390400Y-106291353D01* +X145390400Y-106291353D02* +X145295161Y-106243734D01* +X145295161Y-106243734D02* +X145199923Y-106243734D01* +X145199923Y-106243734D02* +X145104685Y-106291353D01* +X145104685Y-106291353D02* +X145057066Y-106386591D01* +X145057066Y-106386591D02* +X145057066Y-106624686D01* +X145057066Y-106624686D02* +X145009447Y-106719924D01* +X145438019Y-107196115D02* +X144771352Y-107196115D01* +X144961828Y-107196115D02* +X144866590Y-107243734D01* +X144866590Y-107243734D02* +X144818971Y-107291353D01* +X144818971Y-107291353D02* +X144771352Y-107386591D01* +X144771352Y-107386591D02* +X144771352Y-107481829D01* +X145438019Y-108243734D02* +X144438019Y-108243734D01* +X145390400Y-108243734D02* +X145438019Y-108148496D01* +X145438019Y-108148496D02* +X145438019Y-107958020D01* +X145438019Y-107958020D02* +X145390400Y-107862782D01* +X145390400Y-107862782D02* +X145342780Y-107815163D01* +X145342780Y-107815163D02* +X145247542Y-107767544D01* +X145247542Y-107767544D02* +X144961828Y-107767544D01* +X144961828Y-107767544D02* +X144866590Y-107815163D01* +X144866590Y-107815163D02* +X144818971Y-107862782D01* +X144818971Y-107862782D02* +X144771352Y-107958020D01* +X144771352Y-107958020D02* +X144771352Y-108148496D01* +X144771352Y-108148496D02* +X144818971Y-108243734D01* +X145438019Y-109243734D02* +X145438019Y-108672306D01* +X145438019Y-108958020D02* +X144438019Y-108958020D01* +X144438019Y-108958020D02* +X144580876Y-108862782D01* +X144580876Y-108862782D02* +X144676114Y-108767544D01* +X144676114Y-108767544D02* +X144723733Y-108672306D01* +D11* +%TO.C,USB1*% +X162387500Y-112150000D02* +X151168500Y-112150000D01* +X148787500Y-111075000D02* +X148787500Y-111824000D01* +X162187500Y-111000000D02* +X151687500Y-111000000D01* +X162387500Y-105061000D02* +X151687500Y-105061000D01* +X148787500Y-104176000D02* +X148787500Y-104925000D01* +X162387500Y-103850000D02* +X162387500Y-112150000D01* +X162387500Y-103850000D02* +X151168500Y-103850000D01* +%TO.C,Card1*% +X135225000Y-94800000D02* +X137425000Y-97000000D01* +X128357000Y-94800000D02* +X135225000Y-94800000D01* +X125725000Y-95331000D02* +X125725000Y-120669000D01* +X137425000Y-97000000D02* +X139594000Y-97000000D01* +X142225000Y-97904000D02* +X142225000Y-97531000D01* +X142225000Y-100404000D02* +X142225000Y-99355000D01* +X142225000Y-102904000D02* +X142225000Y-101856000D01* +X142225000Y-105404000D02* +X142225000Y-104355000D01* +X142225000Y-107904000D02* +X142225000Y-106856000D01* +X142225000Y-110404000D02* +X142225000Y-109356000D01* +X142225000Y-112904000D02* +X142225000Y-111856000D01* +X142225000Y-115400000D02* +X142225000Y-114356000D01* +X128456000Y-121200000D02* +X139694000Y-121200000D01* +%TD*% +%LPC*% +D12* +%TO.C,U1*% +X150050000Y-97450000D03* +D13* +X150050000Y-97450000D03* +%TD*% +D12* +%TO.C,U2*% +X150050000Y-118550000D03* +D13* +X150050000Y-118550000D03* +%TD*% +D14* +%TO.C,USB1*% +X150336500Y-104425000D03* +D15* +X149887500Y-103300000D03* +X149887500Y-112700000D03* +D14* +X150336500Y-111575000D03* +D16* +X149437500Y-110750000D03* +X149437500Y-110250000D03* +X149437500Y-109750000D03* +X149437500Y-109250000D03* +X149437500Y-106750000D03* +X149437500Y-106250000D03* +X149437500Y-105750000D03* +X149437500Y-105250000D03* +X149437500Y-107250000D03* +X149437500Y-107750000D03* +X149437500Y-108250000D03* +X149437500Y-108750000D03* +%TD*% +D17* +%TO.C,R9*% +X147502051Y-107938865D03* +X146582329Y-107938865D03* +%TD*% +D18* +%TO.C,Card1*% +X140225000Y-98500000D03* +D19* +X140275000Y-119500000D03* +D20* +X143275000Y-101130000D03* +X143275000Y-103630000D03* +X143275000Y-106130000D03* +X143275000Y-108630000D03* +X143275000Y-111130000D03* +X143275000Y-113630000D03* +X143275000Y-116060000D03* +X143275000Y-117760000D03* +X143275000Y-98630000D03* +D21* +X143275000Y-119060000D03* +X143275000Y-120260000D03* +D22* +X141325000Y-121650000D03* +X126825000Y-121650000D03* +X126725000Y-94350000D03* +X141225000Y-96550000D03* +%TD*% +%LPD*% +M02* diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-SilkTop.gbr b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-SilkTop.gbr new file mode 100644 index 0000000..5510579 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-SilkTop.gbr @@ -0,0 +1,1912 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,7.0.6*% +%TF.CreationDate,2023-07-11T12:05:29-07:00*% +%TF.ProjectId,jitx-design,6a697478-2d64-4657-9369-676e2e6b6963,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Legend,Top*% +%TF.FilePolarity,Positive*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 7.0.6) date 2023-07-11 12:05:29* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 Aperture macros list* +%AMRoundRect* +0 Rectangle with rounded corners* +0 $1 Rounding radius* +0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners* +0 Add a 4 corners polygon primitive as box body* +4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0* +0 Add four circle primitives for the rounded corners* +1,1,$1+$1,$2,$3* +1,1,$1+$1,$4,$5* +1,1,$1+$1,$6,$7* +1,1,$1+$1,$8,$9* +0 Add four rect primitives between the rounded corners* +20,1,$1+$1,$2,$3,$4,$5,0* +20,1,$1+$1,$4,$5,$6,$7,0* +20,1,$1+$1,$6,$7,$8,$9,0* +20,1,$1+$1,$8,$9,$2,$3,0*% +G04 Aperture macros list end* +%ADD10C,0.100000*% +%ADD11C,0.152000*% +%ADD12C,0.150000*% +%ADD13RoundRect,0.051000X-0.283000X-0.270000X0.283000X-0.270000X0.283000X0.270000X-0.283000X0.270000X0*% +%ADD14RoundRect,0.050000X-0.300000X-0.186389X0.300000X-0.186389X0.300000X0.186389X-0.300000X0.186389X0*% +%ADD15RoundRect,0.050000X-0.208889X0.300000X-0.208889X-0.300000X0.208889X-0.300000X0.208889X0.300000X0*% +%ADD16RoundRect,0.051000X0.532000X-1.109000X0.532000X1.109000X-0.532000X1.109000X-0.532000X-1.109000X0*% +%ADD17RoundRect,0.051000X2.777000X-2.602000X2.777000X2.602000X-2.777000X2.602000X-2.777000X-2.602000X0*% +%ADD18RoundRect,0.050000X-0.190139X0.300000X-0.190139X-0.300000X0.190139X-0.300000X0.190139X0.300000X0*% +%ADD19C,2.100000*% +%ADD20RoundRect,0.050000X0.183889X-0.300000X0.183889X0.300000X-0.183889X0.300000X-0.183889X-0.300000X0*% +%ADD21RoundRect,0.051000X0.600000X-0.700000X0.600000X0.700000X-0.600000X0.700000X-0.600000X-0.700000X0*% +%ADD22RoundRect,0.050000X-0.300000X-0.190139X0.300000X-0.190139X0.300000X0.190139X-0.300000X0.190139X0*% +%ADD23O,0.690000X2.147000*% +%ADD24RoundRect,0.050000X0.300000X0.208889X-0.300000X0.208889X-0.300000X-0.208889X0.300000X-0.208889X0*% +%ADD25RoundRect,0.050000X-0.300000X-0.208889X0.300000X-0.208889X0.300000X0.208889X-0.300000X0.208889X0*% +%ADD26RoundRect,0.050000X-0.300000X-0.215139X0.300000X-0.215139X0.300000X0.215139X-0.300000X0.215139X0*% +%ADD27C,2.300000*% +%ADD28C,3.700000*% +%ADD29RoundRect,0.050000X0.208889X-0.300000X0.208889X0.300000X-0.208889X0.300000X-0.208889X-0.300000X0*% +%ADD30RoundRect,0.050000X0.256066X-0.475000X0.256066X0.475000X-0.256066X0.475000X-0.256066X-0.475000X0*% +%ADD31RoundRect,0.050000X0.190139X-0.300000X0.190139X0.300000X-0.190139X0.300000X-0.190139X-0.300000X0*% +%ADD32RoundRect,0.050000X-0.445000X0.140000X-0.445000X-0.140000X0.445000X-0.140000X0.445000X0.140000X0*% +%ADD33RoundRect,0.050000X-0.140000X-0.445000X0.140000X-0.445000X0.140000X0.445000X-0.140000X0.445000X0*% +%ADD34RoundRect,0.050000X2.050000X2.050000X-2.050000X2.050000X-2.050000X-2.050000X2.050000X-2.050000X0*% +%ADD35C,1.700000*% +%ADD36C,1.200000*% +G04 APERTURE END LIST* +D10* +X141031353Y-105867419D02* +X140698020Y-105391228D01* +X140459925Y-105867419D02* +X140459925Y-104867419D01* +X140459925Y-104867419D02* +X140840877Y-104867419D01* +X140840877Y-104867419D02* +X140936115Y-104915038D01* +X140936115Y-104915038D02* +X140983734Y-104962657D01* +X140983734Y-104962657D02* +X141031353Y-105057895D01* +X141031353Y-105057895D02* +X141031353Y-105200752D01* +X141031353Y-105200752D02* +X140983734Y-105295990D01* +X140983734Y-105295990D02* +X140936115Y-105343609D01* +X140936115Y-105343609D02* +X140840877Y-105391228D01* +X140840877Y-105391228D02* +X140459925Y-105391228D01* +X141602782Y-105295990D02* +X141507544Y-105248371D01* +X141507544Y-105248371D02* +X141459925Y-105200752D01* +X141459925Y-105200752D02* +X141412306Y-105105514D01* +X141412306Y-105105514D02* +X141412306Y-105057895D01* +X141412306Y-105057895D02* +X141459925Y-104962657D01* +X141459925Y-104962657D02* +X141507544Y-104915038D01* +X141507544Y-104915038D02* +X141602782Y-104867419D01* +X141602782Y-104867419D02* +X141793258Y-104867419D01* +X141793258Y-104867419D02* +X141888496Y-104915038D01* +X141888496Y-104915038D02* +X141936115Y-104962657D01* +X141936115Y-104962657D02* +X141983734Y-105057895D01* +X141983734Y-105057895D02* +X141983734Y-105105514D01* +X141983734Y-105105514D02* +X141936115Y-105200752D01* +X141936115Y-105200752D02* +X141888496Y-105248371D01* +X141888496Y-105248371D02* +X141793258Y-105295990D01* +X141793258Y-105295990D02* +X141602782Y-105295990D01* +X141602782Y-105295990D02* +X141507544Y-105343609D01* +X141507544Y-105343609D02* +X141459925Y-105391228D01* +X141459925Y-105391228D02* +X141412306Y-105486466D01* +X141412306Y-105486466D02* +X141412306Y-105676942D01* +X141412306Y-105676942D02* +X141459925Y-105772180D01* +X141459925Y-105772180D02* +X141507544Y-105819800D01* +X141507544Y-105819800D02* +X141602782Y-105867419D01* +X141602782Y-105867419D02* +X141793258Y-105867419D01* +X141793258Y-105867419D02* +X141888496Y-105819800D01* +X141888496Y-105819800D02* +X141936115Y-105772180D01* +X141936115Y-105772180D02* +X141983734Y-105676942D01* +X141983734Y-105676942D02* +X141983734Y-105486466D01* +X141983734Y-105486466D02* +X141936115Y-105391228D01* +X141936115Y-105391228D02* +X141888496Y-105343609D01* +X141888496Y-105343609D02* +X141793258Y-105295990D01* +X139649419Y-111418666D02* +X139173228Y-111751999D01* +X139649419Y-111990094D02* +X138649419Y-111990094D01* +X138649419Y-111990094D02* +X138649419Y-111609142D01* +X138649419Y-111609142D02* +X138697038Y-111513904D01* +X138697038Y-111513904D02* +X138744657Y-111466285D01* +X138744657Y-111466285D02* +X138839895Y-111418666D01* +X138839895Y-111418666D02* +X138982752Y-111418666D01* +X138982752Y-111418666D02* +X139077990Y-111466285D01* +X139077990Y-111466285D02* +X139125609Y-111513904D01* +X139125609Y-111513904D02* +X139173228Y-111609142D01* +X139173228Y-111609142D02* +X139173228Y-111990094D01* +X138649419Y-110513904D02* +X138649419Y-110990094D01* +X138649419Y-110990094D02* +X139125609Y-111037713D01* +X139125609Y-111037713D02* +X139077990Y-110990094D01* +X139077990Y-110990094D02* +X139030371Y-110894856D01* +X139030371Y-110894856D02* +X139030371Y-110656761D01* +X139030371Y-110656761D02* +X139077990Y-110561523D01* +X139077990Y-110561523D02* +X139125609Y-110513904D01* +X139125609Y-110513904D02* +X139220847Y-110466285D01* +X139220847Y-110466285D02* +X139458942Y-110466285D01* +X139458942Y-110466285D02* +X139554180Y-110513904D01* +X139554180Y-110513904D02* +X139601800Y-110561523D01* +X139601800Y-110561523D02* +X139649419Y-110656761D01* +X139649419Y-110656761D02* +X139649419Y-110894856D01* +X139649419Y-110894856D02* +X139601800Y-110990094D01* +X139601800Y-110990094D02* +X139554180Y-111037713D01* +X142415394Y-110090180D02* +X142367775Y-110137800D01* +X142367775Y-110137800D02* +X142224918Y-110185419D01* +X142224918Y-110185419D02* +X142129680Y-110185419D01* +X142129680Y-110185419D02* +X141986823Y-110137800D01* +X141986823Y-110137800D02* +X141891585Y-110042561D01* +X141891585Y-110042561D02* +X141843966Y-109947323D01* +X141843966Y-109947323D02* +X141796347Y-109756847D01* +X141796347Y-109756847D02* +X141796347Y-109613990D01* +X141796347Y-109613990D02* +X141843966Y-109423514D01* +X141843966Y-109423514D02* +X141891585Y-109328276D01* +X141891585Y-109328276D02* +X141986823Y-109233038D01* +X141986823Y-109233038D02* +X142129680Y-109185419D01* +X142129680Y-109185419D02* +X142224918Y-109185419D01* +X142224918Y-109185419D02* +X142367775Y-109233038D01* +X142367775Y-109233038D02* +X142415394Y-109280657D01* +X142748728Y-109185419D02* +X143367775Y-109185419D01* +X143367775Y-109185419D02* +X143034442Y-109566371D01* +X143034442Y-109566371D02* +X143177299Y-109566371D01* +X143177299Y-109566371D02* +X143272537Y-109613990D01* +X143272537Y-109613990D02* +X143320156Y-109661609D01* +X143320156Y-109661609D02* +X143367775Y-109756847D01* +X143367775Y-109756847D02* +X143367775Y-109994942D01* +X143367775Y-109994942D02* +X143320156Y-110090180D01* +X143320156Y-110090180D02* +X143272537Y-110137800D01* +X143272537Y-110137800D02* +X143177299Y-110185419D01* +X143177299Y-110185419D02* +X142891585Y-110185419D01* +X142891585Y-110185419D02* +X142796347Y-110137800D01* +X142796347Y-110137800D02* +X142748728Y-110090180D01* +X139665419Y-117044115D02* +X140474942Y-117044115D01* +X140474942Y-117044115D02* +X140570180Y-116996496D01* +X140570180Y-116996496D02* +X140617800Y-116948877D01* +X140617800Y-116948877D02* +X140665419Y-116853639D01* +X140665419Y-116853639D02* +X140665419Y-116663163D01* +X140665419Y-116663163D02* +X140617800Y-116567925D01* +X140617800Y-116567925D02* +X140570180Y-116520306D01* +X140570180Y-116520306D02* +X140474942Y-116472687D01* +X140474942Y-116472687D02* +X139665419Y-116472687D01* +X139665419Y-116091734D02* +X139665419Y-115472687D01* +X139665419Y-115472687D02* +X140046371Y-115806020D01* +X140046371Y-115806020D02* +X140046371Y-115663163D01* +X140046371Y-115663163D02* +X140093990Y-115567925D01* +X140093990Y-115567925D02* +X140141609Y-115520306D01* +X140141609Y-115520306D02* +X140236847Y-115472687D01* +X140236847Y-115472687D02* +X140474942Y-115472687D01* +X140474942Y-115472687D02* +X140570180Y-115520306D01* +X140570180Y-115520306D02* +X140617800Y-115567925D01* +X140617800Y-115567925D02* +X140665419Y-115663163D01* +X140665419Y-115663163D02* +X140665419Y-115948877D01* +X140665419Y-115948877D02* +X140617800Y-116044115D01* +X140617800Y-116044115D02* +X140570180Y-116091734D01* +X133550103Y-115519419D02* +X133216770Y-115043228D01* +X132978675Y-115519419D02* +X132978675Y-114519419D01* +X132978675Y-114519419D02* +X133359627Y-114519419D01* +X133359627Y-114519419D02* +X133454865Y-114567038D01* +X133454865Y-114567038D02* +X133502484Y-114614657D01* +X133502484Y-114614657D02* +X133550103Y-114709895D01* +X133550103Y-114709895D02* +X133550103Y-114852752D01* +X133550103Y-114852752D02* +X133502484Y-114947990D01* +X133502484Y-114947990D02* +X133454865Y-114995609D01* +X133454865Y-114995609D02* +X133359627Y-115043228D01* +X133359627Y-115043228D02* +X132978675Y-115043228D01* +X133883437Y-114519419D02* +X134550103Y-114519419D01* +X134550103Y-114519419D02* +X134121532Y-115519419D01* +X134789067Y-96630006D02* +X134455734Y-96153815D01* +X134217639Y-96630006D02* +X134217639Y-95630006D01* +X134217639Y-95630006D02* +X134598591Y-95630006D01* +X134598591Y-95630006D02* +X134693829Y-95677625D01* +X134693829Y-95677625D02* +X134741448Y-95725244D01* +X134741448Y-95725244D02* +X134789067Y-95820482D01* +X134789067Y-95820482D02* +X134789067Y-95963339D01* +X134789067Y-95963339D02* +X134741448Y-96058577D01* +X134741448Y-96058577D02* +X134693829Y-96106196D01* +X134693829Y-96106196D02* +X134598591Y-96153815D01* +X134598591Y-96153815D02* +X134217639Y-96153815D01* +X135646210Y-95630006D02* +X135455734Y-95630006D01* +X135455734Y-95630006D02* +X135360496Y-95677625D01* +X135360496Y-95677625D02* +X135312877Y-95725244D01* +X135312877Y-95725244D02* +X135217639Y-95868101D01* +X135217639Y-95868101D02* +X135170020Y-96058577D01* +X135170020Y-96058577D02* +X135170020Y-96439529D01* +X135170020Y-96439529D02* +X135217639Y-96534767D01* +X135217639Y-96534767D02* +X135265258Y-96582387D01* +X135265258Y-96582387D02* +X135360496Y-96630006D01* +X135360496Y-96630006D02* +X135550972Y-96630006D01* +X135550972Y-96630006D02* +X135646210Y-96582387D01* +X135646210Y-96582387D02* +X135693829Y-96534767D01* +X135693829Y-96534767D02* +X135741448Y-96439529D01* +X135741448Y-96439529D02* +X135741448Y-96201434D01* +X135741448Y-96201434D02* +X135693829Y-96106196D01* +X135693829Y-96106196D02* +X135646210Y-96058577D01* +X135646210Y-96058577D02* +X135550972Y-96010958D01* +X135550972Y-96010958D02* +X135360496Y-96010958D01* +X135360496Y-96010958D02* +X135265258Y-96058577D01* +X135265258Y-96058577D02* +X135217639Y-96106196D01* +X135217639Y-96106196D02* +X135170020Y-96201434D01* +X131196325Y-112651838D02* +X132196325Y-111985172D01* +X131196325Y-111985172D02* +X132196325Y-112651838D01* +X132196325Y-111080410D02* +X132196325Y-111651838D01* +X132196325Y-111366124D02* +X131196325Y-111366124D01* +X131196325Y-111366124D02* +X131339182Y-111461362D01* +X131339182Y-111461362D02* +X131434420Y-111556600D01* +X131434420Y-111556600D02* +X131482039Y-111651838D01* +X136739333Y-96374180D02* +X136691714Y-96421800D01* +X136691714Y-96421800D02* +X136548857Y-96469419D01* +X136548857Y-96469419D02* +X136453619Y-96469419D01* +X136453619Y-96469419D02* +X136310762Y-96421800D01* +X136310762Y-96421800D02* +X136215524Y-96326561D01* +X136215524Y-96326561D02* +X136167905Y-96231323D01* +X136167905Y-96231323D02* +X136120286Y-96040847D01* +X136120286Y-96040847D02* +X136120286Y-95897990D01* +X136120286Y-95897990D02* +X136167905Y-95707514D01* +X136167905Y-95707514D02* +X136215524Y-95612276D01* +X136215524Y-95612276D02* +X136310762Y-95517038D01* +X136310762Y-95517038D02* +X136453619Y-95469419D01* +X136453619Y-95469419D02* +X136548857Y-95469419D01* +X136548857Y-95469419D02* +X136691714Y-95517038D01* +X136691714Y-95517038D02* +X136739333Y-95564657D01* +X137310762Y-95897990D02* +X137215524Y-95850371D01* +X137215524Y-95850371D02* +X137167905Y-95802752D01* +X137167905Y-95802752D02* +X137120286Y-95707514D01* +X137120286Y-95707514D02* +X137120286Y-95659895D01* +X137120286Y-95659895D02* +X137167905Y-95564657D01* +X137167905Y-95564657D02* +X137215524Y-95517038D01* +X137215524Y-95517038D02* +X137310762Y-95469419D01* +X137310762Y-95469419D02* +X137501238Y-95469419D01* +X137501238Y-95469419D02* +X137596476Y-95517038D01* +X137596476Y-95517038D02* +X137644095Y-95564657D01* +X137644095Y-95564657D02* +X137691714Y-95659895D01* +X137691714Y-95659895D02* +X137691714Y-95707514D01* +X137691714Y-95707514D02* +X137644095Y-95802752D01* +X137644095Y-95802752D02* +X137596476Y-95850371D01* +X137596476Y-95850371D02* +X137501238Y-95897990D01* +X137501238Y-95897990D02* +X137310762Y-95897990D01* +X137310762Y-95897990D02* +X137215524Y-95945609D01* +X137215524Y-95945609D02* +X137167905Y-95993228D01* +X137167905Y-95993228D02* +X137120286Y-96088466D01* +X137120286Y-96088466D02* +X137120286Y-96278942D01* +X137120286Y-96278942D02* +X137167905Y-96374180D01* +X137167905Y-96374180D02* +X137215524Y-96421800D01* +X137215524Y-96421800D02* +X137310762Y-96469419D01* +X137310762Y-96469419D02* +X137501238Y-96469419D01* +X137501238Y-96469419D02* +X137596476Y-96421800D01* +X137596476Y-96421800D02* +X137644095Y-96374180D01* +X137644095Y-96374180D02* +X137691714Y-96278942D01* +X137691714Y-96278942D02* +X137691714Y-96088466D01* +X137691714Y-96088466D02* +X137644095Y-95993228D01* +X137644095Y-95993228D02* +X137596476Y-95945609D01* +X137596476Y-95945609D02* +X137501238Y-95897990D01* +X149809419Y-101709043D02* +X149333228Y-102042376D01* +X149809419Y-102280471D02* +X148809419Y-102280471D01* +X148809419Y-102280471D02* +X148809419Y-101899519D01* +X148809419Y-101899519D02* +X148857038Y-101804281D01* +X148857038Y-101804281D02* +X148904657Y-101756662D01* +X148904657Y-101756662D02* +X148999895Y-101709043D01* +X148999895Y-101709043D02* +X149142752Y-101709043D01* +X149142752Y-101709043D02* +X149237990Y-101756662D01* +X149237990Y-101756662D02* +X149285609Y-101804281D01* +X149285609Y-101804281D02* +X149333228Y-101899519D01* +X149333228Y-101899519D02* +X149333228Y-102280471D01* +X149809419Y-100756662D02* +X149809419Y-101328090D01* +X149809419Y-101042376D02* +X148809419Y-101042376D01* +X148809419Y-101042376D02* +X148952276Y-101137614D01* +X148952276Y-101137614D02* +X149047514Y-101232852D01* +X149047514Y-101232852D02* +X149095133Y-101328090D01* +X127176055Y-113419049D02* +X127176055Y-114228572D01* +X127176055Y-114228572D02* +X127223674Y-114323810D01* +X127223674Y-114323810D02* +X127271293Y-114371430D01* +X127271293Y-114371430D02* +X127366531Y-114419049D01* +X127366531Y-114419049D02* +X127557007Y-114419049D01* +X127557007Y-114419049D02* +X127652245Y-114371430D01* +X127652245Y-114371430D02* +X127699864Y-114323810D01* +X127699864Y-114323810D02* +X127747483Y-114228572D01* +X127747483Y-114228572D02* +X127747483Y-113419049D01* +X128652245Y-113752382D02* +X128652245Y-114419049D01* +X128414150Y-113371430D02* +X128176055Y-114085715D01* +X128176055Y-114085715D02* +X128795102Y-114085715D01* +X136894413Y-108186878D02* +X136942033Y-108234497D01* +X136942033Y-108234497D02* +X136989652Y-108377354D01* +X136989652Y-108377354D02* +X136989652Y-108472592D01* +X136989652Y-108472592D02* +X136942033Y-108615449D01* +X136942033Y-108615449D02* +X136846794Y-108710687D01* +X136846794Y-108710687D02* +X136751556Y-108758306D01* +X136751556Y-108758306D02* +X136561080Y-108805925D01* +X136561080Y-108805925D02* +X136418223Y-108805925D01* +X136418223Y-108805925D02* +X136227747Y-108758306D01* +X136227747Y-108758306D02* +X136132509Y-108710687D01* +X136132509Y-108710687D02* +X136037271Y-108615449D01* +X136037271Y-108615449D02* +X135989652Y-108472592D01* +X135989652Y-108472592D02* +X135989652Y-108377354D01* +X135989652Y-108377354D02* +X136037271Y-108234497D01* +X136037271Y-108234497D02* +X136084890Y-108186878D01* +X135989652Y-107329735D02* +X135989652Y-107520211D01* +X135989652Y-107520211D02* +X136037271Y-107615449D01* +X136037271Y-107615449D02* +X136084890Y-107663068D01* +X136084890Y-107663068D02* +X136227747Y-107758306D01* +X136227747Y-107758306D02* +X136418223Y-107805925D01* +X136418223Y-107805925D02* +X136799175Y-107805925D01* +X136799175Y-107805925D02* +X136894413Y-107758306D01* +X136894413Y-107758306D02* +X136942033Y-107710687D01* +X136942033Y-107710687D02* +X136989652Y-107615449D01* +X136989652Y-107615449D02* +X136989652Y-107424973D01* +X136989652Y-107424973D02* +X136942033Y-107329735D01* +X136942033Y-107329735D02* +X136894413Y-107282116D01* +X136894413Y-107282116D02* +X136799175Y-107234497D01* +X136799175Y-107234497D02* +X136561080Y-107234497D01* +X136561080Y-107234497D02* +X136465842Y-107282116D01* +X136465842Y-107282116D02* +X136418223Y-107329735D01* +X136418223Y-107329735D02* +X136370604Y-107424973D01* +X136370604Y-107424973D02* +X136370604Y-107615449D01* +X136370604Y-107615449D02* +X136418223Y-107710687D01* +X136418223Y-107710687D02* +X136465842Y-107758306D01* +X136465842Y-107758306D02* +X136561080Y-107805925D01* +X135086456Y-98914180D02* +X135038837Y-98961800D01* +X135038837Y-98961800D02* +X134895980Y-99009419D01* +X134895980Y-99009419D02* +X134800742Y-99009419D01* +X134800742Y-99009419D02* +X134657885Y-98961800D01* +X134657885Y-98961800D02* +X134562647Y-98866561D01* +X134562647Y-98866561D02* +X134515028Y-98771323D01* +X134515028Y-98771323D02* +X134467409Y-98580847D01* +X134467409Y-98580847D02* +X134467409Y-98437990D01* +X134467409Y-98437990D02* +X134515028Y-98247514D01* +X134515028Y-98247514D02* +X134562647Y-98152276D01* +X134562647Y-98152276D02* +X134657885Y-98057038D01* +X134657885Y-98057038D02* +X134800742Y-98009419D01* +X134800742Y-98009419D02* +X134895980Y-98009419D01* +X134895980Y-98009419D02* +X135038837Y-98057038D01* +X135038837Y-98057038D02* +X135086456Y-98104657D01* +X135943599Y-98342752D02* +X135943599Y-99009419D01* +X135705504Y-97961800D02* +X135467409Y-98676085D01* +X135467409Y-98676085D02* +X136086456Y-98676085D01* +X149934364Y-114861480D02* +X149981984Y-114909099D01* +X149981984Y-114909099D02* +X150029603Y-115051956D01* +X150029603Y-115051956D02* +X150029603Y-115147194D01* +X150029603Y-115147194D02* +X149981984Y-115290051D01* +X149981984Y-115290051D02* +X149886745Y-115385289D01* +X149886745Y-115385289D02* +X149791507Y-115432908D01* +X149791507Y-115432908D02* +X149601031Y-115480527D01* +X149601031Y-115480527D02* +X149458174Y-115480527D01* +X149458174Y-115480527D02* +X149267698Y-115432908D01* +X149267698Y-115432908D02* +X149172460Y-115385289D01* +X149172460Y-115385289D02* +X149077222Y-115290051D01* +X149077222Y-115290051D02* +X149029603Y-115147194D01* +X149029603Y-115147194D02* +X149029603Y-115051956D01* +X149029603Y-115051956D02* +X149077222Y-114909099D01* +X149077222Y-114909099D02* +X149124841Y-114861480D01* +X150029603Y-113909099D02* +X150029603Y-114480527D01* +X150029603Y-114194813D02* +X149029603Y-114194813D01* +X149029603Y-114194813D02* +X149172460Y-114290051D01* +X149172460Y-114290051D02* +X149267698Y-114385289D01* +X149267698Y-114385289D02* +X149315317Y-114480527D01* +X131680180Y-101480857D02* +X131727800Y-101528476D01* +X131727800Y-101528476D02* +X131775419Y-101671333D01* +X131775419Y-101671333D02* +X131775419Y-101766571D01* +X131775419Y-101766571D02* +X131727800Y-101909428D01* +X131727800Y-101909428D02* +X131632561Y-102004666D01* +X131632561Y-102004666D02* +X131537323Y-102052285D01* +X131537323Y-102052285D02* +X131346847Y-102099904D01* +X131346847Y-102099904D02* +X131203990Y-102099904D01* +X131203990Y-102099904D02* +X131013514Y-102052285D01* +X131013514Y-102052285D02* +X130918276Y-102004666D01* +X130918276Y-102004666D02* +X130823038Y-101909428D01* +X130823038Y-101909428D02* +X130775419Y-101766571D01* +X130775419Y-101766571D02* +X130775419Y-101671333D01* +X130775419Y-101671333D02* +X130823038Y-101528476D01* +X130823038Y-101528476D02* +X130870657Y-101480857D01* +X131775419Y-100528476D02* +X131775419Y-101099904D01* +X131775419Y-100814190D02* +X130775419Y-100814190D01* +X130775419Y-100814190D02* +X130918276Y-100909428D01* +X130918276Y-100909428D02* +X131013514Y-101004666D01* +X131013514Y-101004666D02* +X131061133Y-101099904D01* +X131775419Y-99576095D02* +X131775419Y-100147523D01* +X131775419Y-99861809D02* +X130775419Y-99861809D01* +X130775419Y-99861809D02* +X130918276Y-99957047D01* +X130918276Y-99957047D02* +X131013514Y-100052285D01* +X131013514Y-100052285D02* +X131061133Y-100147523D01* +X141007585Y-104446558D02* +X140959966Y-104494178D01* +X140959966Y-104494178D02* +X140817109Y-104541797D01* +X140817109Y-104541797D02* +X140721871Y-104541797D01* +X140721871Y-104541797D02* +X140579014Y-104494178D01* +X140579014Y-104494178D02* +X140483776Y-104398939D01* +X140483776Y-104398939D02* +X140436157Y-104303701D01* +X140436157Y-104303701D02* +X140388538Y-104113225D01* +X140388538Y-104113225D02* +X140388538Y-103970368D01* +X140388538Y-103970368D02* +X140436157Y-103779892D01* +X140436157Y-103779892D02* +X140483776Y-103684654D01* +X140483776Y-103684654D02* +X140579014Y-103589416D01* +X140579014Y-103589416D02* +X140721871Y-103541797D01* +X140721871Y-103541797D02* +X140817109Y-103541797D01* +X140817109Y-103541797D02* +X140959966Y-103589416D01* +X140959966Y-103589416D02* +X141007585Y-103637035D01* +X141340919Y-103541797D02* +X142007585Y-103541797D01* +X142007585Y-103541797D02* +X141579014Y-104541797D01* +X137787142Y-114154180D02* +X137739523Y-114201800D01* +X137739523Y-114201800D02* +X137596666Y-114249419D01* +X137596666Y-114249419D02* +X137501428Y-114249419D01* +X137501428Y-114249419D02* +X137358571Y-114201800D01* +X137358571Y-114201800D02* +X137263333Y-114106561D01* +X137263333Y-114106561D02* +X137215714Y-114011323D01* +X137215714Y-114011323D02* +X137168095Y-113820847D01* +X137168095Y-113820847D02* +X137168095Y-113677990D01* +X137168095Y-113677990D02* +X137215714Y-113487514D01* +X137215714Y-113487514D02* +X137263333Y-113392276D01* +X137263333Y-113392276D02* +X137358571Y-113297038D01* +X137358571Y-113297038D02* +X137501428Y-113249419D01* +X137501428Y-113249419D02* +X137596666Y-113249419D01* +X137596666Y-113249419D02* +X137739523Y-113297038D01* +X137739523Y-113297038D02* +X137787142Y-113344657D01* +X138739523Y-114249419D02* +X138168095Y-114249419D01* +X138453809Y-114249419D02* +X138453809Y-113249419D01* +X138453809Y-113249419D02* +X138358571Y-113392276D01* +X138358571Y-113392276D02* +X138263333Y-113487514D01* +X138263333Y-113487514D02* +X138168095Y-113535133D01* +X139120476Y-113344657D02* +X139168095Y-113297038D01* +X139168095Y-113297038D02* +X139263333Y-113249419D01* +X139263333Y-113249419D02* +X139501428Y-113249419D01* +X139501428Y-113249419D02* +X139596666Y-113297038D01* +X139596666Y-113297038D02* +X139644285Y-113344657D01* +X139644285Y-113344657D02* +X139691904Y-113439895D01* +X139691904Y-113439895D02* +X139691904Y-113535133D01* +X139691904Y-113535133D02* +X139644285Y-113677990D01* +X139644285Y-113677990D02* +X139072857Y-114249419D01* +X139072857Y-114249419D02* +X139691904Y-114249419D01* +X140062180Y-109354857D02* +X140109800Y-109402476D01* +X140109800Y-109402476D02* +X140157419Y-109545333D01* +X140157419Y-109545333D02* +X140157419Y-109640571D01* +X140157419Y-109640571D02* +X140109800Y-109783428D01* +X140109800Y-109783428D02* +X140014561Y-109878666D01* +X140014561Y-109878666D02* +X139919323Y-109926285D01* +X139919323Y-109926285D02* +X139728847Y-109973904D01* +X139728847Y-109973904D02* +X139585990Y-109973904D01* +X139585990Y-109973904D02* +X139395514Y-109926285D01* +X139395514Y-109926285D02* +X139300276Y-109878666D01* +X139300276Y-109878666D02* +X139205038Y-109783428D01* +X139205038Y-109783428D02* +X139157419Y-109640571D01* +X139157419Y-109640571D02* +X139157419Y-109545333D01* +X139157419Y-109545333D02* +X139205038Y-109402476D01* +X139205038Y-109402476D02* +X139252657Y-109354857D01* +X140157419Y-108402476D02* +X140157419Y-108973904D01* +X140157419Y-108688190D02* +X139157419Y-108688190D01* +X139157419Y-108688190D02* +X139300276Y-108783428D01* +X139300276Y-108783428D02* +X139395514Y-108878666D01* +X139395514Y-108878666D02* +X139443133Y-108973904D01* +X139157419Y-107783428D02* +X139157419Y-107688190D01* +X139157419Y-107688190D02* +X139205038Y-107592952D01* +X139205038Y-107592952D02* +X139252657Y-107545333D01* +X139252657Y-107545333D02* +X139347895Y-107497714D01* +X139347895Y-107497714D02* +X139538371Y-107450095D01* +X139538371Y-107450095D02* +X139776466Y-107450095D01* +X139776466Y-107450095D02* +X139966942Y-107497714D01* +X139966942Y-107497714D02* +X140062180Y-107545333D01* +X140062180Y-107545333D02* +X140109800Y-107592952D01* +X140109800Y-107592952D02* +X140157419Y-107688190D01* +X140157419Y-107688190D02* +X140157419Y-107783428D01* +X140157419Y-107783428D02* +X140109800Y-107878666D01* +X140109800Y-107878666D02* +X140062180Y-107926285D01* +X140062180Y-107926285D02* +X139966942Y-107973904D01* +X139966942Y-107973904D02* +X139776466Y-108021523D01* +X139776466Y-108021523D02* +X139538371Y-108021523D01* +X139538371Y-108021523D02* +X139347895Y-107973904D01* +X139347895Y-107973904D02* +X139252657Y-107926285D01* +X139252657Y-107926285D02* +X139205038Y-107878666D01* +X139205038Y-107878666D02* +X139157419Y-107783428D01* +X143285829Y-105867419D02* +X142809639Y-105867419D01* +X142809639Y-105867419D02* +X142809639Y-104867419D01* +X143619163Y-105343609D02* +X143952496Y-105343609D01* +X144095353Y-105867419D02* +X143619163Y-105867419D01* +X143619163Y-105867419D02* +X143619163Y-104867419D01* +X143619163Y-104867419D02* +X144095353Y-104867419D01* +X144523925Y-105867419D02* +X144523925Y-104867419D01* +X144523925Y-104867419D02* +X144762020Y-104867419D01* +X144762020Y-104867419D02* +X144904877Y-104915038D01* +X144904877Y-104915038D02* +X145000115Y-105010276D01* +X145000115Y-105010276D02* +X145047734Y-105105514D01* +X145047734Y-105105514D02* +X145095353Y-105295990D01* +X145095353Y-105295990D02* +X145095353Y-105438847D01* +X145095353Y-105438847D02* +X145047734Y-105629323D01* +X145047734Y-105629323D02* +X145000115Y-105724561D01* +X145000115Y-105724561D02* +X144904877Y-105819800D01* +X144904877Y-105819800D02* +X144762020Y-105867419D01* +X144762020Y-105867419D02* +X144523925Y-105867419D01* +X146047734Y-105867419D02* +X145476306Y-105867419D01* +X145762020Y-105867419D02* +X145762020Y-104867419D01* +X145762020Y-104867419D02* +X145666782Y-105010276D01* +X145666782Y-105010276D02* +X145571544Y-105105514D01* +X145571544Y-105105514D02* +X145476306Y-105153133D01* +X138401523Y-99334306D02* +X138449143Y-99381925D01* +X138449143Y-99381925D02* +X138496762Y-99524782D01* +X138496762Y-99524782D02* +X138496762Y-99620020D01* +X138496762Y-99620020D02* +X138449143Y-99762877D01* +X138449143Y-99762877D02* +X138353904Y-99858115D01* +X138353904Y-99858115D02* +X138258666Y-99905734D01* +X138258666Y-99905734D02* +X138068190Y-99953353D01* +X138068190Y-99953353D02* +X137925333Y-99953353D01* +X137925333Y-99953353D02* +X137734857Y-99905734D01* +X137734857Y-99905734D02* +X137639619Y-99858115D01* +X137639619Y-99858115D02* +X137544381Y-99762877D01* +X137544381Y-99762877D02* +X137496762Y-99620020D01* +X137496762Y-99620020D02* +X137496762Y-99524782D01* +X137496762Y-99524782D02* +X137544381Y-99381925D01* +X137544381Y-99381925D02* +X137592000Y-99334306D01* +X137496762Y-98429544D02* +X137496762Y-98905734D01* +X137496762Y-98905734D02* +X137972952Y-98953353D01* +X137972952Y-98953353D02* +X137925333Y-98905734D01* +X137925333Y-98905734D02* +X137877714Y-98810496D01* +X137877714Y-98810496D02* +X137877714Y-98572401D01* +X137877714Y-98572401D02* +X137925333Y-98477163D01* +X137925333Y-98477163D02* +X137972952Y-98429544D01* +X137972952Y-98429544D02* +X138068190Y-98381925D01* +X138068190Y-98381925D02* +X138306285Y-98381925D01* +X138306285Y-98381925D02* +X138401523Y-98429544D01* +X138401523Y-98429544D02* +X138449143Y-98477163D01* +X138449143Y-98477163D02* +X138496762Y-98572401D01* +X138496762Y-98572401D02* +X138496762Y-98810496D01* +X138496762Y-98810496D02* +X138449143Y-98905734D01* +X138449143Y-98905734D02* +X138401523Y-98953353D01* +X126140727Y-112217419D02* +X125807394Y-111741228D01* +X125569299Y-112217419D02* +X125569299Y-111217419D01* +X125569299Y-111217419D02* +X125950251Y-111217419D01* +X125950251Y-111217419D02* +X126045489Y-111265038D01* +X126045489Y-111265038D02* +X126093108Y-111312657D01* +X126093108Y-111312657D02* +X126140727Y-111407895D01* +X126140727Y-111407895D02* +X126140727Y-111550752D01* +X126140727Y-111550752D02* +X126093108Y-111645990D01* +X126093108Y-111645990D02* +X126045489Y-111693609D01* +X126045489Y-111693609D02* +X125950251Y-111741228D01* +X125950251Y-111741228D02* +X125569299Y-111741228D01* +X126521680Y-111312657D02* +X126569299Y-111265038D01* +X126569299Y-111265038D02* +X126664537Y-111217419D01* +X126664537Y-111217419D02* +X126902632Y-111217419D01* +X126902632Y-111217419D02* +X126997870Y-111265038D01* +X126997870Y-111265038D02* +X127045489Y-111312657D01* +X127045489Y-111312657D02* +X127093108Y-111407895D01* +X127093108Y-111407895D02* +X127093108Y-111503133D01* +X127093108Y-111503133D02* +X127045489Y-111645990D01* +X127045489Y-111645990D02* +X126474061Y-112217419D01* +X126474061Y-112217419D02* +X127093108Y-112217419D01* +X131196411Y-103127276D02* +X131148792Y-103174896D01* +X131148792Y-103174896D02* +X131005935Y-103222515D01* +X131005935Y-103222515D02* +X130910697Y-103222515D01* +X130910697Y-103222515D02* +X130767840Y-103174896D01* +X130767840Y-103174896D02* +X130672602Y-103079657D01* +X130672602Y-103079657D02* +X130624983Y-102984419D01* +X130624983Y-102984419D02* +X130577364Y-102793943D01* +X130577364Y-102793943D02* +X130577364Y-102651086D01* +X130577364Y-102651086D02* +X130624983Y-102460610D01* +X130624983Y-102460610D02* +X130672602Y-102365372D01* +X130672602Y-102365372D02* +X130767840Y-102270134D01* +X130767840Y-102270134D02* +X130910697Y-102222515D01* +X130910697Y-102222515D02* +X131005935Y-102222515D01* +X131005935Y-102222515D02* +X131148792Y-102270134D01* +X131148792Y-102270134D02* +X131196411Y-102317753D01* +X131672602Y-103222515D02* +X131863078Y-103222515D01* +X131863078Y-103222515D02* +X131958316Y-103174896D01* +X131958316Y-103174896D02* +X132005935Y-103127276D01* +X132005935Y-103127276D02* +X132101173Y-102984419D01* +X132101173Y-102984419D02* +X132148792Y-102793943D01* +X132148792Y-102793943D02* +X132148792Y-102412991D01* +X132148792Y-102412991D02* +X132101173Y-102317753D01* +X132101173Y-102317753D02* +X132053554Y-102270134D01* +X132053554Y-102270134D02* +X131958316Y-102222515D01* +X131958316Y-102222515D02* +X131767840Y-102222515D01* +X131767840Y-102222515D02* +X131672602Y-102270134D01* +X131672602Y-102270134D02* +X131624983Y-102317753D01* +X131624983Y-102317753D02* +X131577364Y-102412991D01* +X131577364Y-102412991D02* +X131577364Y-102651086D01* +X131577364Y-102651086D02* +X131624983Y-102746324D01* +X131624983Y-102746324D02* +X131672602Y-102793943D01* +X131672602Y-102793943D02* +X131767840Y-102841562D01* +X131767840Y-102841562D02* +X131958316Y-102841562D01* +X131958316Y-102841562D02* +X132053554Y-102793943D01* +X132053554Y-102793943D02* +X132101173Y-102746324D01* +X132101173Y-102746324D02* +X132148792Y-102651086D01* +X146011317Y-110251714D02* +X145963698Y-110299334D01* +X145963698Y-110299334D02* +X145820841Y-110346953D01* +X145820841Y-110346953D02* +X145725603Y-110346953D01* +X145725603Y-110346953D02* +X145582746Y-110299334D01* +X145582746Y-110299334D02* +X145487508Y-110204095D01* +X145487508Y-110204095D02* +X145439889Y-110108857D01* +X145439889Y-110108857D02* +X145392270Y-109918381D01* +X145392270Y-109918381D02* +X145392270Y-109775524D01* +X145392270Y-109775524D02* +X145439889Y-109585048D01* +X145439889Y-109585048D02* +X145487508Y-109489810D01* +X145487508Y-109489810D02* +X145582746Y-109394572D01* +X145582746Y-109394572D02* +X145725603Y-109346953D01* +X145725603Y-109346953D02* +X145820841Y-109346953D01* +X145820841Y-109346953D02* +X145963698Y-109394572D01* +X145963698Y-109394572D02* +X146011317Y-109442191D01* +X146392270Y-109442191D02* +X146439889Y-109394572D01* +X146439889Y-109394572D02* +X146535127Y-109346953D01* +X146535127Y-109346953D02* +X146773222Y-109346953D01* +X146773222Y-109346953D02* +X146868460Y-109394572D01* +X146868460Y-109394572D02* +X146916079Y-109442191D01* +X146916079Y-109442191D02* +X146963698Y-109537429D01* +X146963698Y-109537429D02* +X146963698Y-109632667D01* +X146963698Y-109632667D02* +X146916079Y-109775524D01* +X146916079Y-109775524D02* +X146344651Y-110346953D01* +X146344651Y-110346953D02* +X146963698Y-110346953D01* +X128495995Y-106237140D02* +X128162662Y-105760949D01* +X127924567Y-106237140D02* +X127924567Y-105237140D01* +X127924567Y-105237140D02* +X128305519Y-105237140D01* +X128305519Y-105237140D02* +X128400757Y-105284759D01* +X128400757Y-105284759D02* +X128448376Y-105332378D01* +X128448376Y-105332378D02* +X128495995Y-105427616D01* +X128495995Y-105427616D02* +X128495995Y-105570473D01* +X128495995Y-105570473D02* +X128448376Y-105665711D01* +X128448376Y-105665711D02* +X128400757Y-105713330D01* +X128400757Y-105713330D02* +X128305519Y-105760949D01* +X128305519Y-105760949D02* +X127924567Y-105760949D01* +X129353138Y-105570473D02* +X129353138Y-106237140D01* +X129115043Y-105189521D02* +X128876948Y-105903806D01* +X128876948Y-105903806D02* +X129495995Y-105903806D01* +X127176444Y-108393181D02* +X126843111Y-107916990D01* +X126605016Y-108393181D02* +X126605016Y-107393181D01* +X126605016Y-107393181D02* +X126985968Y-107393181D01* +X126985968Y-107393181D02* +X127081206Y-107440800D01* +X127081206Y-107440800D02* +X127128825Y-107488419D01* +X127128825Y-107488419D02* +X127176444Y-107583657D01* +X127176444Y-107583657D02* +X127176444Y-107726514D01* +X127176444Y-107726514D02* +X127128825Y-107821752D01* +X127128825Y-107821752D02* +X127081206Y-107869371D01* +X127081206Y-107869371D02* +X126985968Y-107916990D01* +X126985968Y-107916990D02* +X126605016Y-107916990D01* +X127509778Y-107393181D02* +X128128825Y-107393181D01* +X128128825Y-107393181D02* +X127795492Y-107774133D01* +X127795492Y-107774133D02* +X127938349Y-107774133D01* +X127938349Y-107774133D02* +X128033587Y-107821752D01* +X128033587Y-107821752D02* +X128081206Y-107869371D01* +X128081206Y-107869371D02* +X128128825Y-107964609D01* +X128128825Y-107964609D02* +X128128825Y-108202704D01* +X128128825Y-108202704D02* +X128081206Y-108297942D01* +X128081206Y-108297942D02* +X128033587Y-108345562D01* +X128033587Y-108345562D02* +X127938349Y-108393181D01* +X127938349Y-108393181D02* +X127652635Y-108393181D01* +X127652635Y-108393181D02* +X127557397Y-108345562D01* +X127557397Y-108345562D02* +X127509778Y-108297942D01* +X131791419Y-106729693D02* +X132600942Y-106729693D01* +X132600942Y-106729693D02* +X132696180Y-106682074D01* +X132696180Y-106682074D02* +X132743800Y-106634455D01* +X132743800Y-106634455D02* +X132791419Y-106539217D01* +X132791419Y-106539217D02* +X132791419Y-106348741D01* +X132791419Y-106348741D02* +X132743800Y-106253503D01* +X132743800Y-106253503D02* +X132696180Y-106205884D01* +X132696180Y-106205884D02* +X132600942Y-106158265D01* +X132600942Y-106158265D02* +X131791419Y-106158265D01* +X131791419Y-105205884D02* +X131791419Y-105682074D01* +X131791419Y-105682074D02* +X132267609Y-105729693D01* +X132267609Y-105729693D02* +X132219990Y-105682074D01* +X132219990Y-105682074D02* +X132172371Y-105586836D01* +X132172371Y-105586836D02* +X132172371Y-105348741D01* +X132172371Y-105348741D02* +X132219990Y-105253503D01* +X132219990Y-105253503D02* +X132267609Y-105205884D01* +X132267609Y-105205884D02* +X132362847Y-105158265D01* +X132362847Y-105158265D02* +X132600942Y-105158265D01* +X132600942Y-105158265D02* +X132696180Y-105205884D01* +X132696180Y-105205884D02* +X132743800Y-105253503D01* +X132743800Y-105253503D02* +X132791419Y-105348741D01* +X132791419Y-105348741D02* +X132791419Y-105586836D01* +X132791419Y-105586836D02* +X132743800Y-105682074D01* +X132743800Y-105682074D02* +X132696180Y-105729693D01* +X130675142Y-108820180D02* +X130627523Y-108867800D01* +X130627523Y-108867800D02* +X130484666Y-108915419D01* +X130484666Y-108915419D02* +X130389428Y-108915419D01* +X130389428Y-108915419D02* +X130246571Y-108867800D01* +X130246571Y-108867800D02* +X130151333Y-108772561D01* +X130151333Y-108772561D02* +X130103714Y-108677323D01* +X130103714Y-108677323D02* +X130056095Y-108486847D01* +X130056095Y-108486847D02* +X130056095Y-108343990D01* +X130056095Y-108343990D02* +X130103714Y-108153514D01* +X130103714Y-108153514D02* +X130151333Y-108058276D01* +X130151333Y-108058276D02* +X130246571Y-107963038D01* +X130246571Y-107963038D02* +X130389428Y-107915419D01* +X130389428Y-107915419D02* +X130484666Y-107915419D01* +X130484666Y-107915419D02* +X130627523Y-107963038D01* +X130627523Y-107963038D02* +X130675142Y-108010657D01* +X131627523Y-108915419D02* +X131056095Y-108915419D01* +X131341809Y-108915419D02* +X131341809Y-107915419D01* +X131341809Y-107915419D02* +X131246571Y-108058276D01* +X131246571Y-108058276D02* +X131151333Y-108153514D01* +X131151333Y-108153514D02* +X131056095Y-108201133D01* +X131960857Y-107915419D02* +X132579904Y-107915419D01* +X132579904Y-107915419D02* +X132246571Y-108296371D01* +X132246571Y-108296371D02* +X132389428Y-108296371D01* +X132389428Y-108296371D02* +X132484666Y-108343990D01* +X132484666Y-108343990D02* +X132532285Y-108391609D01* +X132532285Y-108391609D02* +X132579904Y-108486847D01* +X132579904Y-108486847D02* +X132579904Y-108724942D01* +X132579904Y-108724942D02* +X132532285Y-108820180D01* +X132532285Y-108820180D02* +X132484666Y-108867800D01* +X132484666Y-108867800D02* +X132389428Y-108915419D01* +X132389428Y-108915419D02* +X132103714Y-108915419D01* +X132103714Y-108915419D02* +X132008476Y-108867800D01* +X132008476Y-108867800D02* +X131960857Y-108820180D01* +D11* +%TO.C,R8*% +X140182658Y-106341852D02* +X140900658Y-106341852D01* +X140182658Y-107338852D02* +X140182658Y-106341852D01* +X140900658Y-107338852D02* +X140182658Y-107338852D01* +X141352658Y-107338852D02* +X142070658Y-107338852D01* +X142070658Y-106341852D02* +X141352658Y-106341852D01* +X142070658Y-107338852D02* +X142070658Y-106341852D01* +%TO.C,U3*% +X140983619Y-121258221D02* +X140983619Y-115006221D01* +X147736619Y-121258221D02* +X147736619Y-115006221D01* +X147736619Y-115006221D02* +X140983619Y-115006221D01* +%TO.C,X1*% +X135373506Y-113503485D02* +X137030506Y-113503485D01* +X137030506Y-113503485D02* +X137030506Y-111646485D01* +X133444506Y-113275485D02* +X133444506Y-109217485D01* +X136801506Y-113275485D02* +X133444506Y-113275485D01* +X133444506Y-109217485D02* +X136801506Y-109217485D01* +X136801506Y-109217485D02* +X136801506Y-113275485D01* +%TO.C,U4*% +X125846171Y-116918230D02* +X130898171Y-116918230D01* +X125846171Y-119961230D02* +X125846171Y-116918230D01* +X130898171Y-116918230D02* +X130898171Y-119961230D01* +X130898171Y-119961230D02* +X125846171Y-119961230D01* +G36* +X125750435Y-121065112D02* +G01* +X125778574Y-121073648D01* +X125804507Y-121087510D01* +X125827237Y-121106164D01* +X125845891Y-121128894D01* +X125859753Y-121154827D01* +X125868289Y-121182966D01* +X125871171Y-121212230D01* +X125868289Y-121241494D01* +X125859753Y-121269633D01* +X125845891Y-121295566D01* +X125827237Y-121318296D01* +X125804507Y-121336950D01* +X125778574Y-121350812D01* +X125750435Y-121359348D01* +X125721171Y-121362230D01* +X125691907Y-121359348D01* +X125663768Y-121350812D01* +X125637835Y-121336950D01* +X125615105Y-121318296D01* +X125596451Y-121295566D01* +X125582589Y-121269633D01* +X125574053Y-121241494D01* +X125571171Y-121212230D01* +X125574053Y-121182966D01* +X125582589Y-121154827D01* +X125596451Y-121128894D01* +X125615105Y-121106164D01* +X125637835Y-121087510D01* +X125663768Y-121073648D01* +X125691907Y-121065112D01* +X125721171Y-121062230D01* +X125750435Y-121065112D01* +G37* +G36* +X126496435Y-119062112D02* +G01* +X126524574Y-119070648D01* +X126550507Y-119084510D01* +X126573237Y-119103164D01* +X126591891Y-119125894D01* +X126605753Y-119151827D01* +X126614289Y-119179966D01* +X126617171Y-119209230D01* +X126614289Y-119238494D01* +X126605753Y-119266633D01* +X126591891Y-119292566D01* +X126573237Y-119315296D01* +X126550507Y-119333950D01* +X126524574Y-119347812D01* +X126496435Y-119356348D01* +X126467171Y-119359230D01* +X126437907Y-119356348D01* +X126409768Y-119347812D01* +X126383835Y-119333950D01* +X126361105Y-119315296D01* +X126342451Y-119292566D01* +X126328589Y-119266633D01* +X126320053Y-119238494D01* +X126317171Y-119209230D01* +X126320053Y-119179966D01* +X126328589Y-119151827D01* +X126342451Y-119125894D01* +X126361105Y-119103164D01* +X126383835Y-119084510D01* +X126409768Y-119070648D01* +X126437907Y-119062112D01* +X126467171Y-119059230D01* +X126496435Y-119062112D01* +G37* +%TO.C,JITX1*% +G36* +X138419474Y-119654074D02* +G01* +X137513126Y-119654189D01* +X137075674Y-118609902D01* +X137688908Y-117773428D01* +X138419474Y-119654074D01* +G37* +G36* +X135189617Y-116720464D02* +G01* +X135883115Y-116720759D01* +X135788975Y-117261096D01* +X135093902Y-117262120D01* +X134673004Y-119654151D01* +X134148684Y-119654163D01* +X134757056Y-116195811D01* +X135281132Y-116195773D01* +X135189617Y-116720464D01* +G37* +G36* +X139259140Y-115980617D02* +G01* +X139098726Y-116032978D01* +X138953427Y-116118784D01* +X138830119Y-116233977D01* +X137688908Y-117773428D01* +X137373628Y-116961821D01* +X137918891Y-116179718D01* +X138043780Y-116081314D01* +X138186358Y-116010941D01* +X138340429Y-115971659D01* +X138499296Y-115965174D01* +X139427081Y-115964180D01* +X139259140Y-115980617D01* +G37* +G36* +X136987193Y-115967048D02* +G01* +X137373628Y-116961821D01* +X137688908Y-117773428D01* +X137075674Y-118609902D01* +X136493715Y-119378451D01* +X136373327Y-119494721D01* +X136230469Y-119581920D01* +X136072027Y-119635847D01* +X135905636Y-119653901D01* +X134965129Y-119654035D01* +X135175194Y-119605624D01* +X135368343Y-119509895D01* +X135534084Y-119372051D01* +X136715398Y-117813083D01* +X136022937Y-115966177D01* +X136987193Y-115967048D01* +G37* +G36* +X133482187Y-117030373D02* +G01* +X133009987Y-119719145D01* +X132881538Y-120043832D01* +X132689976Y-120335765D01* +X132443245Y-120582838D01* +X132151578Y-120774803D01* +X131827069Y-120903702D01* +X131483176Y-120964188D01* +X131570106Y-120441455D01* +X131771757Y-120417615D01* +X131963848Y-120351790D01* +X132137740Y-120246942D01* +X132285614Y-120107785D01* +X132400821Y-119940575D01* +X132478180Y-119752833D01* +X132957303Y-117030348D01* +X133482187Y-117030373D01* +G37* +G36* +X134222903Y-116208752D02* +G01* +X134282082Y-116236236D01* +X134320494Y-116272819D01* +X134349804Y-116317032D01* +X134368540Y-116366658D01* +X134375763Y-116419210D01* +X134371112Y-116472051D01* +X134354818Y-116522532D01* +X134327701Y-116568122D01* +X134293666Y-116620095D01* +X134249929Y-116664216D01* +X134198257Y-116698705D01* +X134140733Y-116722169D01* +X134079681Y-116733663D01* +X134017563Y-116732722D01* +X133956886Y-116719384D01* +X133917092Y-116694229D01* +X133882970Y-116661794D01* +X133855831Y-116623326D01* +X133836719Y-116580302D01* +X133826367Y-116534376D01* +X133825174Y-116487313D01* +X133833185Y-116440922D01* +X133850093Y-116396985D01* +X133850092Y-116396986D01* +X133889557Y-116329923D01* +X133943309Y-116273661D01* +X134008502Y-116231180D01* +X134081681Y-116204731D01* +X134158969Y-116195714D01* +X134222903Y-116208752D01* +G37* +G36* +X134100798Y-117041635D02* +G01* +X134143867Y-117062583D01* +X134181196Y-117092590D01* +X134210911Y-117130150D01* +X134231523Y-117173382D01* +X134241999Y-117220116D01* +X134241813Y-117268009D01* +X133868888Y-119423288D01* +X133867187Y-119468278D01* +X133875540Y-119512518D01* +X133893528Y-119553790D01* +X133920249Y-119590025D01* +X133954364Y-119619406D01* +X133994160Y-119640458D01* +X134037644Y-119652128D01* +X133584508Y-119653062D01* +X133545047Y-119647839D01* +X133507363Y-119635018D01* +X133472904Y-119615091D01* +X133442995Y-119588824D01* +X133418785Y-119557228D01* +X133401205Y-119521515D01* +X133390929Y-119483059D01* +X133388354Y-119443337D01* +X133764092Y-117262925D01* +X133764418Y-117216752D01* +X133754574Y-117171640D01* +X133735043Y-117129801D01* +X133706783Y-117093286D01* +X133671179Y-117063887D01* +X133629977Y-117043044D01* +X133585199Y-117031781D01* +X134054147Y-117030796D01* +X134100798Y-117041635D01* +G37* +D12* +%TO.C,U5*% +X139595865Y-106604046D02* +X139595865Y-106004046D01* +X139595865Y-101204046D02* +X139595865Y-100604046D01* +X139595865Y-100604046D02* +X138995865Y-100604046D01* +X138995865Y-106604046D02* +X139595865Y-106604046D01* +X134195865Y-100604046D02* +X133595865Y-100604046D01* +X133595865Y-106604046D02* +X134195865Y-106604046D01* +X133595865Y-106004046D02* +X133595865Y-106604046D01* +X133595865Y-100604046D02* +X133595865Y-101204046D01* +G36* +X140308129Y-105996928D02* +G01* +X140336268Y-106005464D01* +X140362201Y-106019326D01* +X140384931Y-106037980D01* +X140403585Y-106060710D01* +X140417447Y-106086643D01* +X140425983Y-106114782D01* +X140428865Y-106144046D01* +X140425983Y-106173310D01* +X140417447Y-106201449D01* +X140403585Y-106227382D01* +X140384931Y-106250112D01* +X140362201Y-106268766D01* +X140336268Y-106282628D01* +X140308129Y-106291164D01* +X140278865Y-106294046D01* +X140249601Y-106291164D01* +X140221462Y-106282628D01* +X140195529Y-106268766D01* +X140172799Y-106250112D01* +X140154145Y-106227382D01* +X140140283Y-106201449D01* +X140131747Y-106173310D01* +X140128865Y-106144046D01* +X140131747Y-106114782D01* +X140140283Y-106086643D01* +X140154145Y-106060710D01* +X140172799Y-106037980D01* +X140195529Y-106019326D01* +X140221462Y-106005464D01* +X140249601Y-105996928D01* +X140278865Y-105994046D01* +X140308129Y-105996928D01* +G37* +%TD*% +%LPC*% +D13* +%TO.C,R8*% +X140693658Y-106840852D03* +X141559658Y-106840852D03* +%TD*% +D14* +%TO.C,R5*% +X138129245Y-109574220D03* +X138129245Y-110486442D03* +%TD*% +D15* +%TO.C,C3*% +X143060672Y-110835572D03* +X142103450Y-110835572D03* +%TD*% +D16* +%TO.C,U3*% +X146659619Y-113037221D03* +D17* +X144360619Y-119734221D03* +D16* +X142060619Y-113037221D03* +%TD*% +D18* +%TO.C,R7*% +X134176631Y-114068215D03* +X133256909Y-114068215D03* +%TD*% +D19* +%TO.C,U6*% +X126859670Y-98770685D03* +%TD*% +D20* +%TO.C,R6*% +X134502123Y-97122587D03* +X135409345Y-97122587D03* +%TD*% +D21* +%TO.C,X1*% +X135973506Y-112346485D03* +X135973506Y-110146485D03* +X134273506Y-110146485D03* +X134273506Y-112346485D03* +%TD*% +D19* +%TO.C,U8*% +X129640552Y-96501199D03* +%TD*% +D15* +%TO.C,C8*% +X137486311Y-97138773D03* +X136529089Y-97138773D03* +%TD*% +D22* +%TO.C,R1*% +X148106609Y-101082516D03* +X148106609Y-102002238D03* +%TD*% +D23* +%TO.C,U4*% +X126467171Y-121212230D03* +X127737171Y-121212230D03* +X129007171Y-121212230D03* +X130277171Y-121212230D03* +X130277171Y-115667230D03* +X129007171Y-115667230D03* +X127737171Y-115667230D03* +X126467171Y-115667230D03* +%TD*% +D24* +%TO.C,C6*% +X137482233Y-108498823D03* +X137482233Y-107541601D03* +%TD*% +D15* +%TO.C,C4*% +X135731734Y-99695657D03* +X134774512Y-99695657D03* +%TD*% +D25* +%TO.C,C1*% +X148622184Y-114216203D03* +X148622184Y-115173425D03* +%TD*% +D26* +%TO.C,C11*% +X132381115Y-100722671D03* +X132381115Y-101692393D03* +%TD*% +D15* +%TO.C,C7*% +X141652863Y-103134378D03* +X140695641Y-103134378D03* +%TD*% +D27* +%TO.C,U1*% +X150050000Y-97450000D03* +D28* +X150050000Y-97450000D03* +%TD*% +D29* +%TO.C,C12*% +X137573127Y-112571302D03* +X138530349Y-112571302D03* +%TD*% +D24* +%TO.C,C10*% +X138644942Y-108548873D03* +X138644942Y-107591651D03* +%TD*% +D30* +%TO.C,LED1*% +X143607724Y-106840352D03* +X145045592Y-106840352D03* +%TD*% +D19* +%TO.C,U9*% +X129639143Y-98796163D03* +%TD*% +D25* +%TO.C,C5*% +X137089343Y-98689029D03* +X137089343Y-99646251D03* +%TD*% +D31* +%TO.C,R2*% +X125847533Y-110727391D03* +X126767255Y-110727391D03* +%TD*% +D29* +%TO.C,C9*% +X130884467Y-103715096D03* +X131841689Y-103715096D03* +%TD*% +%TO.C,C2*% +X145699373Y-110839534D03* +X146656595Y-110839534D03* +%TD*% +D31* +%TO.C,R4*% +X128202801Y-106729721D03* +X129122523Y-106729721D03* +%TD*% +%TO.C,R3*% +X126883250Y-108885762D03* +X127802972Y-108885762D03* +%TD*% +D32* +%TO.C,U5*% +X139405865Y-105604046D03* +X139405865Y-105104046D03* +X139405865Y-104604046D03* +X139405865Y-104104046D03* +X139405865Y-103604046D03* +X139405865Y-103104046D03* +X139405865Y-102604046D03* +X139405865Y-102104046D03* +X139405865Y-101604046D03* +D33* +X138595865Y-100795046D03* +X138095865Y-100795046D03* +X137595865Y-100795046D03* +X137095865Y-100795046D03* +X136595865Y-100795046D03* +X136095865Y-100795046D03* +X135595865Y-100795046D03* +X135095865Y-100795046D03* +X134595865Y-100795046D03* +D32* +X133785865Y-101604046D03* +X133785865Y-102104046D03* +X133785865Y-102604046D03* +X133785865Y-103104046D03* +X133785865Y-103604046D03* +X133785865Y-104104046D03* +X133785865Y-104604046D03* +X133785865Y-105104046D03* +X133785865Y-105604046D03* +D33* +X134595865Y-106414046D03* +X135095865Y-106414046D03* +X135595865Y-106414046D03* +X136095865Y-106414046D03* +X136595865Y-106414046D03* +X137095865Y-106414046D03* +X137595865Y-106414046D03* +X138095865Y-106414046D03* +X138595865Y-106414046D03* +D34* +X136595865Y-103604046D03* +%TD*% +D19* +%TO.C,U7*% +X126853950Y-96515848D03* +%TD*% +D27* +%TO.C,U2*% +X150050000Y-118550000D03* +D28* +X150050000Y-118550000D03* +%TD*% +D15* +%TO.C,C13*% +X134168661Y-108309522D03* +X133211439Y-108309522D03* +%TD*% +D35* +%TO.C,Card1*% +X140225000Y-98500000D03* +D36* +X140275000Y-119500000D03* +%TD*% +%LPD*% +M02* diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-VScore.gbr b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-VScore.gbr new file mode 100644 index 0000000..87fb715 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/gerber/jitx-design-VScore.gbr @@ -0,0 +1,14 @@ +%TF.GenerationSoftware,KiCad,Pcbnew,7.0.6*% +%TF.CreationDate,2023-07-11T12:05:29-07:00*% +%TF.ProjectId,jitx-design,6a697478-2d64-4657-9369-676e2e6b6963,rev?*% +%TF.SameCoordinates,Original*% +%TF.FileFunction,Other,Comment*% +%FSLAX46Y46*% +G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* +G04 Created by KiCad (PCBNEW 7.0.6) date 2023-07-11 12:05:29* +%MOMM*% +%LPD*% +G01* +G04 APERTURE LIST* +G04 APERTURE END LIST* +M02* diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/production_files/BOM-jitx-design.csv b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/production_files/BOM-jitx-design.csv new file mode 100644 index 0000000..c884f40 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/production_files/BOM-jitx-design.csv @@ -0,0 +1,25 @@ +Comment,Designator,Footprint,LCSC +100n,"C1,C2,C3",Pkg0402_4,C100072 +12K,R5,Pkg0402_3,C102781 +M24C04-WMN6TP,U4,SOIC_8_L4_9_W3_9_P1_27_LS6_0_BL,C118280 +100K,R1,Pkg0402,C138080 +100R,R8,R0402,C22775 +1M,R7,Pkg0402,C22935 +10K,R6,Pkg0402_2,C25804 +5K,"R2,R3,R4,R9",Pkg0402,C25905 +SD-101,Card1,SD_SMD_SD_101,C266601 +BD433M5FP-CE2,U3,TO_252_3_L6_5_W5_8_P4_58_BR,C442601 +USB2240-AEZG-06,U5,QFN_36_L6_0_W6_0_P0_50_TL_EP4_1,C633328 +7B024000Q01,X1,CRYSTAL_SMD_4P_L3_2_W2_5_BL,C654991 +4.7u,C11,Pkg0402_1,C76995 +TYPE-C-31-G-03,USB1,USB_C_SMD_TYPE_C_31_G_03,C840338 +27p,"C12,C13",Pkg0402_4,C86287 +1u,"C10,C4,C5,C6,C7,C8,C9",Pkg0402_4,C92755 +19-21/R6C-FP1Q2L/3T,LED1,Pkg0603,C93128 +non-BOM,JITX1,JITX_SM_LP, +~,U8,TESTPAD, +~,U6,TESTPAD, +~,U7,TESTPAD, +~,U9,TESTPAD, +~,U1,NPTH, +~,U2,NPTH, diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/production_files/CPL-jitx-design.csv b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/production_files/CPL-jitx-design.csv new file mode 100644 index 0000000..63cdd3c --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/production_files/CPL-jitx-design.csv @@ -0,0 +1,37 @@ +Designator,Val,Package,Mid X,Mid Y,Rotation,Layer +C1,100n,Pkg0402_4,148.622184,-114.694814,0.0,top +C2,100n,Pkg0402_4,146.177984,-110.839534,90.0,top +C3,100n,Pkg0402_4,142.582061,-110.835572,-90.0,top +C4,1u,Pkg0402_4,135.253123,-99.695657,-90.0,top +C5,1u,Pkg0402_4,137.089343,-99.16764,0.0,top +C6,1u,Pkg0402_4,137.482233,-108.020212,180.0,top +C7,1u,Pkg0402_4,141.174252,-103.134378,-90.0,top +C8,1u,Pkg0402_4,137.0077,-97.138773,-90.0,top +C9,1u,Pkg0402_4,131.363078,-103.715096,90.0,top +C10,1u,Pkg0402_4,138.644942,-108.070262,180.0,top +C11,4.7u,Pkg0402_1,132.381115,-101.207532,0.0,top +C12,27p,Pkg0402_4,138.051738,-112.571302,90.0,top +C13,27p,Pkg0402_4,133.69005,-108.309522,-90.0,top +Card1,SD-101,SD_SMD_SD_101,134.8,-108.0,270.0,bottom +JITX1,non-BOM,JITX_SM_LP,134.917543,-118.922789,0.0,top +LED1,19-21/R6C-FP1Q2L/3T,Pkg0603,144.326658,-106.840352,90.0,top +R1,100K,Pkg0402,148.106609,-101.542377,0.0,top +R2,5K,Pkg0402,126.307394,-110.727391,90.0,top +R3,5K,Pkg0402,127.343111,-108.885762,90.0,top +R4,5K,Pkg0402,128.662662,-106.729721,90.0,top +R5,12K,Pkg0402_3,138.129245,-110.030331,0.0,top +R6,10K,Pkg0402_2,134.955734,-97.122587,90.0,top +R7,1M,Pkg0402,133.71677,-114.068215,-90.0,top +R8,100R,R0402,141.126658,-106.840352,0.0,top +R9,5K1,Pkg0402,147.04219,-107.938865,270.0,bottom +U1,~,NPTH,150.05,-97.45,0.0,top +U2,~,NPTH,150.05,-118.55,0.0,top +U3,BD433M5FP-CE2,TO_252_3_L6_5_W5_8_P4_58_BR,144.360119,-117.132221,90.0,top +U4,M24C04-WMN6TP,SOIC_8_L4_9_W3_9_P1_27_LS6_0_BL,128.272671,-118.43973,0.0,top +U5,USB2240-AEZG-06,QFN_36_L6_0_W6_0_P0_50_TL_EP4_1,136.872365,-103.604046,180.0,top +U6,~,TESTPAD,126.85967,-98.770685,0.0,top +U7,~,TESTPAD,126.85395,-96.515848,0.0,top +U8,~,TESTPAD,129.640552,-96.501199,90.0,top +U9,~,TESTPAD,129.639143,-98.796163,0.0,top +USB1,TYPE-C-31-G-03,USB_C_SMD_TYPE_C_31_G_03,155.576,-108.0,90.0,bottom +X1,7B024000Q01,CRYSTAL_SMD_4P_L3_2_W2_5_BL,135.237506,-111.360485,90.0,top diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/production_files/GERBER-jitx-design.zip b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/production_files/GERBER-jitx-design.zip new file mode 100644 index 0000000..7a16be4 Binary files /dev/null and b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/production_files/GERBER-jitx-design.zip differ diff --git a/sd_card_reader/designs/jitx-design/kicad/jlcpcb/project.db b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/project.db new file mode 100644 index 0000000..634a537 Binary files /dev/null and b/sd_card_reader/designs/jitx-design/kicad/jlcpcb/project.db differ diff --git a/sd_card_reader/designs/jitx-design/kicad/project_symbols.lib b/sd_card_reader/designs/jitx-design/kicad/project_symbols.lib new file mode 100644 index 0000000..2c58d31 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/project_symbols.lib @@ -0,0 +1,2234 @@ + + (lib_symbols + + (symbol "vdd50" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "vdd50" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "vdd50_1_0" + + (pin power_in line (at 0.0 0.0 90) (length 0.0) + (name "vdd50" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "gnd" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "gnd" (id 1) (at -2.54 -2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "gnd_1_0" + + (pin power_in line (at 0.0 0.0 270) (length 0.0) + (name "gnd" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 -1.27)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.27) (xy 1.27 -1.27)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.762 -1.778) (xy 0.762 -1.778)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.254 -2.286) (xy 0.254 -2.286)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "vdd33" (power) + (in_bom yes) (on_board yes) + + (property "Reference" "#PWR" (id 0) (at 35.0 60.0 0.0) + (effects (font (size 5.0 5.0)) (justify left bottom ))) + + (property "Value" "vdd33" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "vdd33_1_0" + + (pin power_in line (at 0.0 0.0 90) (length 0.0) + (name "vdd33" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "test_point_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "test_point_sym" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "test_point_sym_1_0" + + (pin unspecified line (at 2.54 0.0 180) (length 0.0) + (name "p" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -0.635 0.0) (xy 2.54 0.0)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "unplated_hole_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "unplated_hole_sym" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "unplated_hole_sym_1_0" + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -1.27 0.0) (radius 1.143) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "BD433M5FP_CE2" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "BD433M5FP_CE2" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "BD433M5FP_CE2_1_0" + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 0.0 0) (length 2.54000508001016) + (name "FIN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "VOUT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ALTIUM_POWER_ARROW" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ALTIUM_POWER_ARROW" (id 1) (at 2.54 -0.508 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ALTIUM_POWER_ARROW_1_0" + + (pin unspecified line (at 0.0 0.0 0) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 1.27 0.0)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.794 0.0) (xy 1.27 0.762) (xy 1.27 -0.762) (xy 2.794 0.0)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "TYPE_C_31_G_03" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 18.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "TYPE_C_31_G_03" (id 1) (at 0.0 17.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "TYPE_C_31_G_03_1_0" + + (pin unspecified line (at 2.54 -22.86 90) (length 5.08001016002032) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -22.86 90) (length 5.08001016002032) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 2.54 20.32 270) (length 5.08001016002032) + (name "GND2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 20.32 270) (length 5.08001016002032) + (name "GND3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 12.7 180) (length 2.54000508001016) + (name "GND4" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 10.16 180) (length 2.54000508001016) + (name "SSRXP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 7.62 180) (length 2.54000508001016) + (name "SSRXN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 16.51 5.08 180) (length 2.54000508001016) + (name "VBUS0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 -15.24 0) (length 2.54000508001016) + (name "GND5" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 -2.54 0) (length 2.54000508001016) + (name "DN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 0.0 0) (length 2.54000508001016) + (name "DP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 2.54 0) (length 2.54000508001016) + (name "CC1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 5.08 0) (length 2.54000508001016) + (name "VBUS1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 7.62 0) (length 2.54000508001016) + (name "SSTXN1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 10.16 0) (length 2.54000508001016) + (name "SSTXP1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -13.97 12.7 0) (length 2.54000508001016) + (name "GND6" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -11.4300228600457 -17.7800355600711) (end 13.9700279400559 15.240030480061) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -10.1600203200406 13.9700279400559) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "JITX_symbol" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 3.902 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + + (property "Value" "JITX_symbol" (id 1) (at -2.54 2.84 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "JITX_symbol_1_0" + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045) (xy 10.64306775 2.736906) (xy 9.40420775 2.7367485) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 9.6444795 5.3075045) (xy 11.204365675778 7.41173405617841)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 11.204365675778 7.41173405617841) (mid 11.5715164132218 7.68647346428221) (end 12.02033525 7.780511) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 12.02033525 7.780511) (xy 10.7521741568897 7.77915244080762)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 10.7521741568897 7.77915244080762) (mid 10.3244289019203 7.71659474940583) (end 9.95883526617392 7.48589849585123) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.95883526617392 7.48589849585123) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 4.80545275 2.7367835) (xy 5.52213025 2.736801) (xy 6.09744275 6.006396) (xy 7.04751775 6.007796) (xy 7.17619525 6.746366) (xy 6.22827275 6.7467685) (xy 6.35336275 7.4639535) (xy 5.63701775 7.463901) (xy 4.80545275 2.7367835)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.81951158629631 7.46403410472138) (mid 4.56761122169657 7.38909574502682) (end 4.39731705832001 7.1889221969265) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.39731705832001 7.1889221969265) (xy 4.39731771337896 7.18892347769723)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.39731771337896 7.18892347769723) (mid 4.37903669579069 6.93835280018836) (end 4.54329029777422 6.74824595058332) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.54329029777422 6.74824595058332) (xy 4.54329042972881 6.74824604286013)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.54329042972881 6.74824604286013) (mid 4.8347064457627 6.7584952028342) (end 5.05014573460892 6.95500029819479) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.05014573460892 6.95500029819479) (xy 5.0501454400865 6.95500033093321)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 5.0501454400865 6.95500033093321) (mid 5.11292088648779 7.19473733498076) (end 4.98779016906679 7.4086459400865) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.98779016906679 7.4086459400865) (xy 4.98779016800714 7.40864611461444)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.98779016800714 7.40864611461444) (mid 4.90690057503162 7.44621327349144) (end 4.81951161284777 7.46403424333775) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.81951161284777 7.46403424333775) (xy 4.81951158629631 7.46403410472138)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 3.89443775 6.3231635) (xy 3.17699025 6.3231985)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.17699025 6.3231985) (xy 2.52209151060913 2.60191506576061)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 2.52209151060913 2.60191506576061) (mid 2.05675349031717 1.92653195318543) (end 1.2808715 1.660658) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 1.2808715 1.660658) (xy 1.16204986761718 0.946150157081704)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 1.16204986761718 0.946150157081704) (mid 2.47433952610446 1.46740670189427) (end 3.24900260539611 2.64796150657934) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.24900260539611 2.64796150657934) (xy 3.89443775 6.3231635)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.6536755 2.739566) (mid 4.47355971115545 2.84819051977396) (end 4.42300775 3.05236075) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.42300775 3.05236075) (xy 4.93274772036982 5.99834598533872)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.93274772036982 5.99834598533872) (mid 4.87164254214732 6.21359196465728) (end 4.67623276466128 6.32258597036982) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.67623276466128 6.32258597036982) (xy 4.03524193183806 6.32123973631567)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.03524193183806 6.32123973631567) (mid 4.22213158850411 6.21328643348833) (end 4.27976525 6.005296) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.27976525 6.005296) (xy 3.7661802699951 3.02495606296363)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 3.7661802699951 3.02495606296363) (mid 3.84086820737184 2.8260933338554) (end 4.03429774834461 2.73828851794516) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.03429774834461 2.73828851794516) (xy 4.6536755 2.739566)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.6444795 5.3075045) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 8.68532525 7.776591)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.68532525 7.776591) (xy 7.36731275 7.777781)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 7.36731275 7.777781) (xy 8.31381775 5.253301)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.31381775 5.253301) (xy 6.69911401210568 3.12239450877699)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 6.69911401210568 3.12239450877699) (mid 6.34438927313888 2.86083653042072) (end 5.92142775 2.7369585) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.92142775 2.7369585) (xy 7.20697795987015 2.73714213727357)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 7.20697795987015 2.73714213727357) (mid 7.6509829133912 2.835530220617) (end 8.01080546865927 3.11364592030973) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.01080546865927 3.11364592030973) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ALTIUM_POWER_GND_POWER" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ALTIUM_POWER_GND_POWER" (id 1) (at 2.54 -1.016 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ALTIUM_POWER_GND_POWER_1_0" + + (pin unspecified line (at 0.0 0.0 0) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 1.27 0.0)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -1.397) (xy 1.27 1.397)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.69545 -1.0922) (xy 1.69545 1.0922)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.11455 -0.762) (xy 2.11455 0.762)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 2.54 -0.4572) (xy 2.54 0.4572)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "SD_101" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 20.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "SD_101" (id 1) (at 0.0 19.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "SD_101_1_0" + + (pin unspecified line (at -16.51 17.78 0) (length 2.54000508001016) + (name "CD_DAT3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 15.24 0) (length 2.54000508001016) + (name "CMD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 12.7 0) (length 2.54000508001016) + (name "VSS1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 10.16 0) (length 2.54000508001016) + (name "VDD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 7.62 0) (length 2.54000508001016) + (name "CLK" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 5.08 0) (length 2.54000508001016) + (name "VSS2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 2.54 0) (length 2.54000508001016) + (name "DAT0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 0.0 0) (length 2.54000508001016) + (name "DAT1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -2.54 0) (length 2.54000508001016) + (name "DAT2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -5.08 0) (length 2.54000508001016) + (name "CD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -7.62 0) (length 2.54000508001016) + (name "WP" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -10.16 0) (length 2.54000508001016) + (name "SHELL0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -12.7 0) (length 2.54000508001016) + (name "SHELL1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -15.24 0) (length 2.54000508001016) + (name "SHELL2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -16.51 -17.78 0) (length 2.54000508001016) + (name "SHELL3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -13.9700279400559 -20.3200406400813) (end 16.510033020066 20.3200406400813) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -13.3350266700533 19.6850393700787) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "M24C04_WMN6TP" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 6.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "M24C04_WMN6TP" (id 1) (at 0.0 5.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "M24C04_WMN6TP_1_0" + + (pin unspecified line (at -10.16 3.81 0) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 1.27 0) (length 2.54000508001016) + (name "E1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 -1.27 0) (length 2.54000508001016) + (name "E2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -10.16 -3.81 0) (length 2.54000508001016) + (name "VSS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 -3.81 180) (length 2.54000508001016) + (name "SDA" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 -1.27 180) (length 2.54000508001016) + (name "SCL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 1.27 180) (length 2.54000508001016) + (name "WC_NOT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 10.16 3.81 180) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -7.62001524003048 -6.85801371602743) (end 7.62001524003048 6.85801371602743) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "Sym7B024000Q01" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "Sym7B024000Q01" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "Sym7B024000Q01_1_0" + + (pin unspecified line (at 7.62 -2.54 180) (length 2.54000508001016) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 7.62 2.54 180) (length 2.54000508001016) + (name "OUT" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "IN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -0.508001016002032 -1.77800355600711) (end 0.508001016002032 1.77800355600711) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 -3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 5.08001016002032 2.54000508001016) (xy 2.54000508001016 2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 2.54000508001016) (xy 2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 -0.0) (xy 1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -5.08001016002032 -2.54000508001016) (xy -2.54000508001016 -2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -2.54000508001016) (xy -2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -0.0) (xy -1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27000254000508 -1.77800355600711) (xy 1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -1.27000254000508 -1.77800355600711) (xy -1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "diode_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "diode_sym" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "diode_sym_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "a" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "c" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (circle (center 0.0 0.0) (radius 1.905) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27 0.254) (xy 2.286 -0.762)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -0.508) (xy 2.286 -1.524)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -0.762) (xy 2.286 -0.762) (xy 2.286 -0.381)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -1.524) (xy 2.286 -1.524) (xy 2.286 -1.143)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 2.54) (xy 0.0 1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.016) (xy 1.27 1.016) (xy -1.27 1.016) (xy 0.0 -1.016)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.016) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.016) (xy 1.27 -1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "supply_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "supply_sym" (id 1) (at -2.54 2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "supply_sym_1_0" + + (pin unspecified line (at 0.0 0.0 90) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 0.635)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.905) (xy -0.635 0.635) (xy 0.635 0.635) (xy 0.0 1.905)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "ground_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + + (property "Value" "ground_sym" (id 1) (at -2.54 -2.54 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "ground_sym_1_0" + + (pin unspecified line (at 0.0 0.0 270) (length 0.0) + (name "0" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 0.0) (xy 0.0 -1.27)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.27) (xy 1.27 -1.27)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.762 -1.778) (xy 0.762 -1.778)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -0.254 -2.286) (xy 0.254 -2.286)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + + (property "Value" "" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.5 0.5)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.5 0.5)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "capacitor_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "capacitor_sym" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "capacitor_sym_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "USB2240_AEZG_06" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 25.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "USB2240_AEZG_06" (id 1) (at 0.0 24.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "USB2240_AEZG_06_1_0" + + (pin unspecified line (at -39.37 20.32 0) (length 2.54000508001016) + (name "LED" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 17.78 0) (length 2.54000508001016) + (name "USB+" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 15.24 0) (length 2.54000508001016) + (name "USB-" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 12.7 0) (length 2.54000508001016) + (name "xD_D3_SD_D1_MS_D5" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 10.16 0) (length 2.54000508001016) + (name "xD_D2_SD_D0_MS_D4" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 7.62 0) (length 2.54000508001016) + (name "VDD330" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 5.08 0) (length 2.54000508001016) + (name "xD_D1_SD_D7_MS_D6" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 2.54 0) (length 2.54000508001016) + (name "xD_D0_SD_D6_MS_D7" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 0.0 0) (length 2.54000508001016) + (name "xD_nWP_SD_CLK_MS_BS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -2.54 0) (length 2.54000508001016) + (name "xD_ALE_SD_D5_MS_D1" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -5.08 0) (length 2.54000508001016) + (name "xD_CLE_SD_CMD_MS_D0" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -7.62 0) (length 2.54000508001016) + (name "xD_nWE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -10.16 0) (length 2.54000508001016) + (name "VDD18" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -12.7 0) (length 2.54000508001016) + (name "VDD331" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -15.24 0) (length 2.54000508001016) + (name "xD_nCE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -17.78 0) (length 2.54000508001016) + (name "xD_nRE" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -20.32 0) (length 2.54000508001016) + (name "xD_nB_R" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at -39.37 -22.86 0) (length 2.54000508001016) + (name "RESET_N" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -22.86 180) (length 2.54000508001016) + (name "xD_nCD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -20.32 180) (length 2.54000508001016) + (name "xD_D7_SD_D4_MS_D2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -17.78 180) (length 2.54000508001016) + (name "CRD_PWR" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -15.24 180) (length 2.54000508001016) + (name "VDD332" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -12.7 180) (length 2.54000508001016) + (name "xD_D6_SD_D3_MS_D3" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -10.16 180) (length 2.54000508001016) + (name "MS_INS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -7.62 180) (length 2.54000508001016) + (name "xD_D5_SD_D2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -5.08 180) (length 2.54000508001016) + (name "SD_nCD" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 -2.54 180) (length 2.54000508001016) + (name "RXD_SDA" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 0.0 180) (length 2.54000508001016) + (name "TEST" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 2.54 180) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 5.08 180) (length 2.54000508001016) + (name "xD_D4_SD_WP_MS_SCLK" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 7.62 180) (length 2.54000508001016) + (name "TXD_SCK_MS_SKT_SEL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 10.16 180) (length 2.54000508001016) + (name "XTAL2" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 12.7 180) (length 2.54000508001016) + (name "XTAL1_CLKIN" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 15.24 180) (length 2.54000508001016) + (name "VDD18PLL" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 17.78 180) (length 2.54000508001016) + (name "RBIAS" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 20.32 180) (length 2.54000508001016) + (name "VDDA33" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 39.37 22.86 180) (length 2.54000508001016) + (name "GND" (effects (font (size 1.0 1.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (rectangle (start -36.8300736601473 -25.4000508001016) (end 36.8300736601473 25.4000508001016) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -35.5600711201422 21.5900431800864) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "resistor_sym" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "resistor_sym" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "resistor_sym_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "~" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "gen_testpad" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "gen_testpad" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "gen_testpad_1_0" + + (pin unspecified line (at 2.54 0.0 180) (length 0.0) + (name "p" (effects (font (size 0.0 0.0)))) + (number "tp" (effects (font (size 0.0 0.0)))) + ) + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -0.635 0.0) (xy 2.54 0.0)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "JITX" + (in_bom yes) (on_board yes) + + (property "Reference" "JITX" (id 0) (at -2.54 3.902 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + + (property "Value" "JITX" (id 1) (at -2.54 2.84 0.0) + (effects (font (size 0.3048 0.3048)) (justify left bottom ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "JITX_1_0" + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045) (xy 10.64306775 2.736906) (xy 9.40420775 2.7367485) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 9.6444795 5.3075045) (xy 11.204365675778 7.41173405617841)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 11.204365675778 7.41173405617841) (mid 11.5715164132218 7.68647346428221) (end 12.02033525 7.780511) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 12.02033525 7.780511) (xy 10.7521741568897 7.77915244080762)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 10.7521741568897 7.77915244080762) (mid 10.3244289019203 7.71659474940583) (end 9.95883526617392 7.48589849585123) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.95883526617392 7.48589849585123) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 4.80545275 2.7367835) (xy 5.52213025 2.736801) (xy 6.09744275 6.006396) (xy 7.04751775 6.007796) (xy 7.17619525 6.746366) (xy 6.22827275 6.7467685) (xy 6.35336275 7.4639535) (xy 5.63701775 7.463901) (xy 4.80545275 2.7367835)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.81951158629631 7.46403410472138) (mid 4.56761122169657 7.38909574502682) (end 4.39731705832001 7.1889221969265) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.39731705832001 7.1889221969265) (xy 4.39731771337896 7.18892347769723)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.39731771337896 7.18892347769723) (mid 4.37903669579069 6.93835280018836) (end 4.54329029777422 6.74824595058332) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.54329029777422 6.74824595058332) (xy 4.54329042972881 6.74824604286013)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.54329042972881 6.74824604286013) (mid 4.8347064457627 6.7584952028342) (end 5.05014573460892 6.95500029819479) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.05014573460892 6.95500029819479) (xy 5.0501454400865 6.95500033093321)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 5.0501454400865 6.95500033093321) (mid 5.11292088648779 7.19473733498076) (end 4.98779016906679 7.4086459400865) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.98779016906679 7.4086459400865) (xy 4.98779016800714 7.40864611461444)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.98779016800714 7.40864611461444) (mid 4.90690057503162 7.44621327349144) (end 4.81951161284777 7.46403424333775) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.81951161284777 7.46403424333775) (xy 4.81951158629631 7.46403410472138)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 3.89443775 6.3231635) (xy 3.17699025 6.3231985)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.17699025 6.3231985) (xy 2.52209151060913 2.60191506576061)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 2.52209151060913 2.60191506576061) (mid 2.05675349031717 1.92653195318543) (end 1.2808715 1.660658) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 1.2808715 1.660658) (xy 1.16204986761718 0.946150157081704)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 1.16204986761718 0.946150157081704) (mid 2.47433952610446 1.46740670189427) (end 3.24900260539611 2.64796150657934) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 3.24900260539611 2.64796150657934) (xy 3.89443775 6.3231635)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (arc (start 4.6536755 2.739566) (mid 4.47355971115545 2.84819051977396) (end 4.42300775 3.05236075) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.42300775 3.05236075) (xy 4.93274772036982 5.99834598533872)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.93274772036982 5.99834598533872) (mid 4.87164254214732 6.21359196465728) (end 4.67623276466128 6.32258597036982) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.67623276466128 6.32258597036982) (xy 4.03524193183806 6.32123973631567)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 4.03524193183806 6.32123973631567) (mid 4.22213158850411 6.21328643348833) (end 4.27976525 6.005296) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.27976525 6.005296) (xy 3.7661802699951 3.02495606296363)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 3.7661802699951 3.02495606296363) (mid 3.84086820737184 2.8260933338554) (end 4.03429774834461 2.73828851794516) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 4.03429774834461 2.73828851794516) (xy 4.6536755 2.739566)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 8.80626775 4.1641535) (xy 9.6444795 5.3075045)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.6444795 5.3075045) (xy 9.2135315 6.41686525)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 9.2135315 6.41686525) (xy 8.68532525 7.776591)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.68532525 7.776591) (xy 7.36731275 7.777781)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 7.36731275 7.777781) (xy 8.31381775 5.253301)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.31381775 5.253301) (xy 6.69911401210568 3.12239450877699)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 6.69911401210568 3.12239450877699) (mid 6.34438927313888 2.86083653042072) (end 5.92142775 2.7369585) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 5.92142775 2.7369585) (xy 7.20697795987015 2.73714213727357)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (arc (start 7.20697795987015 2.73714213727357) (mid 7.6509829133912 2.835530220617) (end 8.01080546865927 3.11364592030973) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 8.01080546865927 3.11364592030973) (xy 8.80626775 4.1641535)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_1" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_1" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_1_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_2" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_2" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_2_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C118280" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 6.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C118280" (id 1) (at 0.0 5.81000762001524 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C118280_1_0" + + (pin unspecified line (at -10.16 3.81 0) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 1.27 0) (length 2.54000508001016) + (name "E1" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 -1.27 0) (length 2.54000508001016) + (name "E2" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -10.16 -3.81 0) (length 2.54000508001016) + (name "VSS" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 -3.81 180) (length 2.54000508001016) + (name "SDA" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 -1.27 180) (length 2.54000508001016) + (name "SCL" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 1.27 180) (length 2.54000508001016) + (name "WC_NOT" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 10.16 3.81 180) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -7.62001524003048 -6.85801371602743) (end 7.62001524003048 6.85801371602743) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -6.3500127000254 5.58801117602235) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_3" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_3" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_3_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C442601" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C442601" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C442601_1_0" + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "VCC" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 0.0 0) (length 2.54000508001016) + (name "FIN" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "VOUT" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "LED_maker_ROYGBIV" + (in_bom yes) (on_board yes) + + (property "Reference" "LED" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "LED_maker_ROYGBIV" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "LED_maker_ROYGBIV_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "a" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "c" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (circle (center 0.0 0.0) (radius 1.905) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27 0.254) (xy 2.286 -0.762)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.27 -0.508) (xy 2.286 -1.524)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -0.762) (xy 2.286 -0.762) (xy 2.286 -0.381)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 1.905 -1.524) (xy 2.286 -1.524) (xy 2.286 -1.143)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 2.54) (xy 0.0 1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.016) (xy 1.27 1.016) (xy -1.27 1.016) (xy 0.0 -1.016)) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.016) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -1.016) (xy 1.27 -1.016)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_4" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_4" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_4_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_1" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_1" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_1_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_5" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_5" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_5_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C654991" + (in_bom yes) (on_board yes) + + (property "Reference" "X" (id 0) (at 0.0 5.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C654991" (id 1) (at 0.0 4.54000508001016 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C654991_1_0" + + (pin unspecified line (at 7.62 -2.54 180) (length 2.54000508001016) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 2.54 0) (length 2.54000508001016) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 7.62 2.54 180) (length 2.54000508001016) + (name "OUT" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -7.62 -2.54 0) (length 2.54000508001016) + (name "IN" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -0.508001016002032 -1.77800355600711) (end 0.508001016002032 1.77800355600711) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (rectangle (start -5.08001016002032 -5.08001016002032) (end 5.08001016002032 5.08001016002032) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -3.81000762001524 -3.81000762001524) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 5.08001016002032 2.54000508001016) (xy 2.54000508001016 2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 2.54000508001016) (xy 2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy 2.54000508001016 -0.0) (xy 1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -5.08001016002032 -2.54000508001016) (xy -2.54000508001016 -2.54000508001016)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -2.54000508001016) (xy -2.54000508001016 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) (polyline (pts (xy -2.54000508001016 -0.0) (xy -1.27000254000508 -0.0)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 1.27000254000508 -1.77800355600711) (xy 1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy -1.27000254000508 -1.77800355600711) (xy -1.27000254000508 1.77800355600711)) (stroke (width 0.254000508001016) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "C840338" + (in_bom yes) (on_board yes) + + (property "Reference" "USB" (id 0) (at 0.0 18.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C840338" (id 1) (at 0.0 17.240030480061 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C840338_1_0" + + (pin unspecified line (at 2.54 -22.86 90) (length 5.08001016002032) + (name "GND0" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 0.0 -22.86 90) (length 5.08001016002032) + (name "GND1" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 2.54 20.32 270) (length 5.08001016002032) + (name "GND2" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 0.0 20.32 270) (length 5.08001016002032) + (name "GND3" (effects (font (size 1.0 1.0)))) + (number "16" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 12.7 180) (length 2.54000508001016) + (name "GND4" (effects (font (size 1.0 1.0)))) + (number "B12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 10.16 180) (length 2.54000508001016) + (name "SSRXP1" (effects (font (size 1.0 1.0)))) + (number "B11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 7.62 180) (length 2.54000508001016) + (name "SSRXN1" (effects (font (size 1.0 1.0)))) + (number "B10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 16.51 5.08 180) (length 2.54000508001016) + (name "VBUS0" (effects (font (size 1.0 1.0)))) + (number "B9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 -15.24 0) (length 2.54000508001016) + (name "GND5" (effects (font (size 1.0 1.0)))) + (number "A12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 -2.54 0) (length 2.54000508001016) + (name "DN1" (effects (font (size 1.0 1.0)))) + (number "A7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 0.0 0) (length 2.54000508001016) + (name "DP1" (effects (font (size 1.0 1.0)))) + (number "A6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 2.54 0) (length 2.54000508001016) + (name "CC1" (effects (font (size 1.0 1.0)))) + (number "A5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 5.08 0) (length 2.54000508001016) + (name "VBUS1" (effects (font (size 1.0 1.0)))) + (number "A4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 7.62 0) (length 2.54000508001016) + (name "SSTXN1" (effects (font (size 1.0 1.0)))) + (number "A3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 10.16 0) (length 2.54000508001016) + (name "SSTXP1" (effects (font (size 1.0 1.0)))) + (number "A2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -13.97 12.7 0) (length 2.54000508001016) + (name "GND6" (effects (font (size 1.0 1.0)))) + (number "A1" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -11.4300228600457 -17.7800355600711) (end 13.9700279400559 15.240030480061) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -10.1600203200406 13.9700279400559) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_6" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_6" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_6_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C266601" + (in_bom yes) (on_board yes) + + (property "Reference" "Card" (id 0) (at 0.0 20.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C266601" (id 1) (at 0.0 19.7800355600711 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C266601_1_0" + + (pin unspecified line (at -16.51 17.78 0) (length 2.54000508001016) + (name "CD_DAT3" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 15.24 0) (length 2.54000508001016) + (name "CMD" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 12.7 0) (length 2.54000508001016) + (name "VSS1" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 10.16 0) (length 2.54000508001016) + (name "VDD" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 7.62 0) (length 2.54000508001016) + (name "CLK" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 5.08 0) (length 2.54000508001016) + (name "VSS2" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 2.54 0) (length 2.54000508001016) + (name "DAT0" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 0.0 0) (length 2.54000508001016) + (name "DAT1" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -2.54 0) (length 2.54000508001016) + (name "DAT2" (effects (font (size 1.0 1.0)))) + (number "9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -5.08 0) (length 2.54000508001016) + (name "CD" (effects (font (size 1.0 1.0)))) + (number "10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -7.62 0) (length 2.54000508001016) + (name "WP" (effects (font (size 1.0 1.0)))) + (number "11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -10.16 0) (length 2.54000508001016) + (name "SHELL0" (effects (font (size 1.0 1.0)))) + (number "12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -12.7 0) (length 2.54000508001016) + (name "SHELL1" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -15.24 0) (length 2.54000508001016) + (name "SHELL2" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -16.51 -17.78 0) (length 2.54000508001016) + (name "SHELL3" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -13.9700279400559 -20.3200406400813) (end 16.510033020066 20.3200406400813) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -13.3350266700533 19.6850393700787) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor_2" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_2" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_2_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C174142" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 2.54 1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + + (property "Value" "C174142" (id 1) (at 2.54 -1.27 0.0) + (effects (font (size 0.2 0.2)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C174142_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.5 0.5)))) + (number "1" (effects (font (size 0.5 0.5)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.5 0.5)))) + (number "2" (effects (font (size 0.5 0.5)))) + ) + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + + (text "" (at 0.0 0.0 0) (effects (font (size 0 0)) ) + ) + + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type background))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_resistor_3" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_3" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_3_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_7" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_7" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_7_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_8" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_8" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_8_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_4" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_4" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_4_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_5" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_5" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_5_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "C633328" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at 0.0 25.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + + (property "Value" "C633328" (id 1) (at 0.0 24.8600457200914 0.0) + (effects (font (size 0.28224 0.28224)) )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "C633328_1_0" + + (pin unspecified line (at -39.37 20.32 0) (length 2.54000508001016) + (name "LED" (effects (font (size 1.0 1.0)))) + (number "1" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 17.78 0) (length 2.54000508001016) + (name "USB+" (effects (font (size 1.0 1.0)))) + (number "2" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 15.24 0) (length 2.54000508001016) + (name "USB-" (effects (font (size 1.0 1.0)))) + (number "3" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 12.7 0) (length 2.54000508001016) + (name "xD_D3_SD_D1_MS_D5" (effects (font (size 1.0 1.0)))) + (number "4" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 10.16 0) (length 2.54000508001016) + (name "xD_D2_SD_D0_MS_D4" (effects (font (size 1.0 1.0)))) + (number "5" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 7.62 0) (length 2.54000508001016) + (name "VDD330" (effects (font (size 1.0 1.0)))) + (number "6" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 5.08 0) (length 2.54000508001016) + (name "xD_D1_SD_D7_MS_D6" (effects (font (size 1.0 1.0)))) + (number "7" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 2.54 0) (length 2.54000508001016) + (name "xD_D0_SD_D6_MS_D7" (effects (font (size 1.0 1.0)))) + (number "8" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 0.0 0) (length 2.54000508001016) + (name "xD_nWP_SD_CLK_MS_BS" (effects (font (size 1.0 1.0)))) + (number "9" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -2.54 0) (length 2.54000508001016) + (name "xD_ALE_SD_D5_MS_D1" (effects (font (size 1.0 1.0)))) + (number "10" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -5.08 0) (length 2.54000508001016) + (name "xD_CLE_SD_CMD_MS_D0" (effects (font (size 1.0 1.0)))) + (number "11" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -7.62 0) (length 2.54000508001016) + (name "xD_nWE" (effects (font (size 1.0 1.0)))) + (number "12" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -10.16 0) (length 2.54000508001016) + (name "VDD18" (effects (font (size 1.0 1.0)))) + (number "13" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -12.7 0) (length 2.54000508001016) + (name "VDD331" (effects (font (size 1.0 1.0)))) + (number "14" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -15.24 0) (length 2.54000508001016) + (name "xD_nCE" (effects (font (size 1.0 1.0)))) + (number "15" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -17.78 0) (length 2.54000508001016) + (name "xD_nRE" (effects (font (size 1.0 1.0)))) + (number "16" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -20.32 0) (length 2.54000508001016) + (name "xD_nB_R" (effects (font (size 1.0 1.0)))) + (number "17" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at -39.37 -22.86 0) (length 2.54000508001016) + (name "RESET_N" (effects (font (size 1.0 1.0)))) + (number "18" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -22.86 180) (length 2.54000508001016) + (name "xD_nCD" (effects (font (size 1.0 1.0)))) + (number "19" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -20.32 180) (length 2.54000508001016) + (name "xD_D7_SD_D4_MS_D2" (effects (font (size 1.0 1.0)))) + (number "20" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -17.78 180) (length 2.54000508001016) + (name "CRD_PWR" (effects (font (size 1.0 1.0)))) + (number "21" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -15.24 180) (length 2.54000508001016) + (name "VDD332" (effects (font (size 1.0 1.0)))) + (number "22" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -12.7 180) (length 2.54000508001016) + (name "xD_D6_SD_D3_MS_D3" (effects (font (size 1.0 1.0)))) + (number "23" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -10.16 180) (length 2.54000508001016) + (name "MS_INS" (effects (font (size 1.0 1.0)))) + (number "24" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -7.62 180) (length 2.54000508001016) + (name "xD_D5_SD_D2" (effects (font (size 1.0 1.0)))) + (number "25" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -5.08 180) (length 2.54000508001016) + (name "SD_nCD" (effects (font (size 1.0 1.0)))) + (number "26" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 -2.54 180) (length 2.54000508001016) + (name "RXD_SDA" (effects (font (size 1.0 1.0)))) + (number "27" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 0.0 180) (length 2.54000508001016) + (name "TEST" (effects (font (size 1.0 1.0)))) + (number "28" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 2.54 180) (length 2.54000508001016) + (name "NC" (effects (font (size 1.0 1.0)))) + (number "29" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 5.08 180) (length 2.54000508001016) + (name "xD_D4_SD_WP_MS_SCLK" (effects (font (size 1.0 1.0)))) + (number "30" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 7.62 180) (length 2.54000508001016) + (name "TXD_SCK_MS_SKT_SEL" (effects (font (size 1.0 1.0)))) + (number "31" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 10.16 180) (length 2.54000508001016) + (name "XTAL2" (effects (font (size 1.0 1.0)))) + (number "32" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 12.7 180) (length 2.54000508001016) + (name "XTAL1_CLKIN" (effects (font (size 1.0 1.0)))) + (number "33" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 15.24 180) (length 2.54000508001016) + (name "VDD18PLL" (effects (font (size 1.0 1.0)))) + (number "34" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 17.78 180) (length 2.54000508001016) + (name "RBIAS" (effects (font (size 1.0 1.0)))) + (number "35" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 20.32 180) (length 2.54000508001016) + (name "VDDA33" (effects (font (size 1.0 1.0)))) + (number "36" (effects (font (size 1.0 1.0)))) + ) + + (pin unspecified line (at 39.37 22.86 180) (length 2.54000508001016) + (name "GND" (effects (font (size 1.0 1.0)))) + (number "37" (effects (font (size 1.0 1.0)))) + ) + (rectangle (start -36.8300736601473 -25.4000508001016) (end 36.8300736601473 25.4000508001016) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -35.5600711201422 21.5900431800864) (radius 0.381000762001524) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_9" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_9" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_9_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_6" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_6" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_6_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_resistor_7" + (in_bom yes) (on_board yes) + + (property "Reference" "R" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_resistor_7" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_resistor_7_1_0" + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 -2.54) (xy 0.0 -1.5875)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -1.5875) (xy -0.762 -1.27) (xy 0.762 -0.635) (xy -0.762 0.0) (xy 0.762 0.635) (xy -0.762 1.27) (xy 0.0 1.5875)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 1.5875) (xy 0.0 2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "Generic_Mounting_Hole" + (in_bom yes) (on_board yes) + + (property "Reference" "U" (id 0) (at -2.54 1.905 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "Generic_Mounting_Hole" (id 1) (at 0.0 0.0 0.0) + (effects (font (size 10.0 10.0)) hide )) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "Generic_Mounting_Hole_1_0" + (circle (center -1.27 0.0) (radius 0.635) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) + (circle (center -1.27 0.0) (radius 1.143) (stroke (width 0.0) (type solid) (color 0 0 0 0)) (fill (type background))) +) + ) + + (symbol "my_capacitor_10" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_10" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_10_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_11" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_11" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_11_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + + (symbol "my_capacitor_12" + (in_bom yes) (on_board yes) + + (property "Reference" "C" (id 0) (at 1.27 1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + + (property "Value" "my_capacitor_12" (id 1) (at 1.27 -1.27 0.0) + (effects (font (size 0.28224 0.28224)) (justify left ))) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 0.635 0.635)) hide)) + +(symbol "my_capacitor_12_1_0" + + (pin unspecified line (at 0.0 2.54 270) (length 0.0) + (name "1" (effects (font (size 0.0 0.0)))) + (number "1" (effects (font (size 0.0 0.0)))) + ) + + (pin unspecified line (at 0.0 -2.54 90) (length 0.0) + (name "2" (effects (font (size 0.0 0.0)))) + (number "2" (effects (font (size 0.0 0.0)))) + ) + (polyline (pts (xy 0.0 2.54) (xy 0.0 0.508)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 0.508) (xy 1.27 0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy 0.0 -0.508) (xy 0.0 -2.54)) (stroke (width 0.127) (type solid) (color 0 0 0 0)) (fill (type none))) + (polyline (pts (xy -1.27 -0.508) (xy 1.27 -0.508)) (stroke (width 0.254) (type solid) (color 0 0 0 0)) (fill (type none))) +) + ) + ) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/sym-lib-table b/sd_card_reader/designs/jitx-design/kicad/sym-lib-table new file mode 100644 index 0000000..4da8d3d --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/sym-lib-table @@ -0,0 +1,4 @@ +(sym_lib_table + (version 7) + (lib (name project_symbols)(type Legacy)(uri "$(KIPRJMOD)/project_symbols.lib")(options "")(descr "")) +) \ No newline at end of file diff --git a/sd_card_reader/designs/jitx-design/kicad/~jitx-design.kicad_pcb.lck b/sd_card_reader/designs/jitx-design/kicad/~jitx-design.kicad_pcb.lck new file mode 100644 index 0000000..1a93171 --- /dev/null +++ b/sd_card_reader/designs/jitx-design/kicad/~jitx-design.kicad_pcb.lck @@ -0,0 +1 @@ +{"hostname":"pulsar","username":"nazar"} \ No newline at end of file diff --git a/sd_card_reader/helpers.stanza b/sd_card_reader/helpers.stanza new file mode 100644 index 0000000..cc9c223 --- /dev/null +++ b/sd_card_reader/helpers.stanza @@ -0,0 +1,83 @@ +; ==================== +; A number of helpful functions to check your designs, export to CAD, +; update your design in CAD, etc. +; ==================== +#use-added-syntax(jitx) +defpackage helpers : + import core + import jitx + import jitx/commands + import ocdb/utils/checks + import ocdb/utils/generic-components + import ocdb/utils/netlist-checks/utils + +; ===================== +; Run the design checks +; ===================== +public defn run-check-on-design (circuit:Instantiable) : + val main-module = ocdb/utils/generator-utils/run-final-passes(circuit) ; Analyze design with a pass + set-main-module(main-module) ; Treat the provided module as a design, and compile it. + run-checks("checks.txt") + +; ==================== +; Actual Export design +; ==================== +val export-field-mapping = [ + "LCSC" => "LCSC" + "lcsc" => "LCSC" + "vendor_part_numbers.lcsc" => "LCSC" +] +defn export-to-cad () : + set-export-backend(`kicad) + export-cad(export-field-mapping) + +; ==================== +; Export design to CAD +; ==================== +public defn export-design () : + set-export-board?(true) + export-to-cad() + +; =================================== +; Update CAD, keeping layout progress +; =================================== +public defn update-design () : + set-export-board?(false) + export-to-cad() + +; ================= +; Export BOM to tsv +; ================= +public defn export-bill-of-materials () : + set-bom-vendors(ocdb/utils/design-vars/APPROVED-DISTRIBUTOR-LIST) + set-bom-design-quantity(ocdb/utils/design-vars/DESIGN-QUANTITY) + export-bom() + +; We want decoupling capacitors to be close to the component being decoupled +public defn bypass-cap-strap (power-pin:JITXObject, gnd-pin:JITXObject, params:Tuple) -> JITXObject : + inside pcb-module: + val cap = cap-strap(gnd-pin, power-pin, params) + short-trace(cap.p[2], power-pin) + cap + +public defn bypass-cap-strap (first-pin:JITXObject, second-pin:JITXObject, capacitance:Double|Toleranced, tol:Double) : + bypass-cap-strap(first-pin, second-pin, ["capacitance" => capacitance "tolerance" => tol]) + +public defn bypass-cap-strap (first-pin:JITXObject, second-pin:JITXObject, capacitance:Double|Toleranced) : + bypass-cap-strap(first-pin, second-pin, ["capacitance" => capacitance]) + + +public defn cc-has-resistor (component:JITXObject) : + val ccs = connected-pins(component.usb-c.cc[1]) + + defn is-resistor? (r) : + has-property?(r.resistor) and + has-property?(r.resistance) + + ; First, we search for the resistors that might be connected to this pin + val resistors = ccs $> map{containing-instance!, _} + $> unique + $> filter{is-resistor?, _} + $> to-tuple + + not empty?(resistors) \ No newline at end of file diff --git a/sd_card_reader/imgs/compsearch.png b/sd_card_reader/imgs/compsearch.png new file mode 100644 index 0000000..2e5889b Binary files /dev/null and b/sd_card_reader/imgs/compsearch.png differ diff --git a/sd_card_reader/imgs/irl-card-reader-2.jpg b/sd_card_reader/imgs/irl-card-reader-2.jpg new file mode 100644 index 0000000..9ff9dc6 Binary files /dev/null and b/sd_card_reader/imgs/irl-card-reader-2.jpg differ diff --git a/sd_card_reader/imgs/irl-card-reader.jpg b/sd_card_reader/imgs/irl-card-reader.jpg new file mode 100644 index 0000000..89d4658 Binary files /dev/null and b/sd_card_reader/imgs/irl-card-reader.jpg differ diff --git a/sd_card_reader/imgs/jitx-layout-and-route.png b/sd_card_reader/imgs/jitx-layout-and-route.png new file mode 100644 index 0000000..111f641 Binary files /dev/null and b/sd_card_reader/imgs/jitx-layout-and-route.png differ diff --git a/sd_card_reader/imgs/jlcpcb.png b/sd_card_reader/imgs/jlcpcb.png new file mode 100644 index 0000000..043bd0a Binary files /dev/null and b/sd_card_reader/imgs/jlcpcb.png differ diff --git a/sd_card_reader/imgs/kicad-done.png b/sd_card_reader/imgs/kicad-done.png new file mode 100644 index 0000000..417fe49 Binary files /dev/null and b/sd_card_reader/imgs/kicad-done.png differ diff --git a/sd_card_reader/main.stanza b/sd_card_reader/main.stanza new file mode 100644 index 0000000..97c58dc --- /dev/null +++ b/sd_card_reader/main.stanza @@ -0,0 +1,182 @@ +; Generated by JITX 2.7.0 +#use-added-syntax(jitx) +defpackage main : + import core + import jitx + import jitx/commands + import ocdb/utils/generic-components + import ocdb/utils/checks + import helpers + import ocdb/utils/property-structs + import ocdb/utils/bundles + import ocdb/utils/design-vars + import ocdb/utils/generator-utils + import ocdb/utils/netlist-checks/utils + import bundles + +MIN-CAP-VOLTAGE = 6.0 + +; Define the shape/size of the board +; 30.0x30.0 board with 2.0x5.0 cuts on 2 sides +val board-shape = Polygon([Point(-15.0,-15.0), Point(10.0,-15.0), Point(10.0,-13.0), Point(15.0,-13.0), Point(15.0, 13.0), Point(10.0, 13.0), Point(10.0, 15.0), Point(-15.0,15.0)]) + +; Setup the board +defn setup-board () : + set-board(ocdb/utils/defaults/default-board(ocdb/manufacturers/stackups/bay-area-circuits-2-layer-62-mil, board-shape)) + set-rules(ocdb/manufacturers/rules/jlcpcb-rules) + +; Taken from ocdb/utils/netlist-checks/io-checks.stanza and modified +pcb-check resistor-on-cc-usb-c (component:JITXObject): + #CHECK( + condition = cc-has-resistor(component), + name = "Check if there is a pull up or pulldown resistor on the USB C CC pin" + description = "" + category = CATEGORY + subcheck-description = "Check that CC pins have at least one resistor", + pass-message = "CC pins have at least one pullup resistor", + fail-message = "CC pins don't have a pullup resistor attached", + locators = [instance-definition(component)] + ) + +pcb-module usb-2-on-usb-c-male : + port usb-c : usb-c + port usb-2 : usb-2 + + inst conn : database-part(["mpn" => "TYPE-C-31-G-03", "manufacturer" => "HRO Electronics"]) + place(conn) at loc(0.0,0.0,0.0) on Top + property(conn.rated-temperature) = false + + property(usb-2.vbus.vdd) = PowerSupplyPin(typ(5.0), 0.5) + + net (usb-2.vbus.gnd usb-c.vbus.gnd conn.GND1 conn.GND3 conn.GND4 conn.GND5 conn.GND6) + net (usb-2.vbus.vdd usb-c.vbus.vdd conn.VBUS0 conn.VBUS1) + net (usb-2.data.N usb-c.data[1].N usb-c.data[2].N conn.DN1) + net (usb-2.data.P usb-c.data[1].P usb-c.data[2].P conn.DP1) + net (usb-c.cc[1] conn.CC1) + net (usb-c.rx[1].N conn.SSRXN1) + net (usb-c.rx[1].P conn.SSRXP1) + net (usb-c.tx[1].N conn.SSTXN1) + net (usb-c.tx[1].P conn.SSTXP1) + + ; GND0 and GND2 are connected to the shield + res-strap(usb-2.vbus.gnd, conn.GND0, ["resistance" => 100.0e3, "_exist" => ["vendor_part_numbers.lcsc"]]) + bypass-cap-strap(usb-2.vbus.gnd, conn.GND2, ["capacitance" => 0.1e-6, "_exist" => ["vendor_part_numbers.lcsc"]]) + + res-strap(usb-c.cc[1], usb-c.vbus.gnd, 5.1e3) + + check resistor-on-cc-usb-c(self) + + +pcb-module sd-connector : + port conn : sd-card-uhs-1-connector + + inst sd : database-part(["mpn" => "SD-101", "manufacturer" => "XUNPU"]) + place(sd) at loc(0.0,0.0,0.0) on Top + + net (conn.power.gnd sd.VSS1 sd.VSS2 sd.SHELL0 sd.SHELL1 sd.SHELL2 sd.SHELL3) + net (conn.power.vdd sd.VDD) + + net (conn.CMD sd.CMD) + net (conn.CLK sd.CLK) + net (conn.DAT[0] sd.DAT0) + net (conn.DAT[1] sd.DAT1) + net (conn.DAT[2] sd.DAT2) + net (conn.DAT[3] sd.CD_DAT3) + net (conn.CD sd.CD) + net (conn.WP sd.WP) + +; Module to run as a design +pcb-module sd-card-reader : + val d = dims(board-shape) + add-mounting-holes(Rectangle(x(d) - 2.0, y(d) - 2.0), "M2", [1 3]) + + inst logo : ocdb/artwork/jitx-logo/logo(5.0) + + ; Call all our modules + inst usb : usb-2-on-usb-c-male + place(usb) at loc(x(d) / 2.0 + 1.1, 0.0, -270.0) on Bottom + + inst reg : components/bd433/voltage-regulator + + inst eeprom : components/m24c04/eeprom + + val testpoints = add-testpoint([eeprom.power.vdd eeprom.power.gnd eeprom.i2c.sda eeprom.i2c.scl], Testpoint-SMDPad) + + inst media-controller : components/usb2240/media-controller + place(media-controller) at loc(0.0, 0.0, 0.0) on Top + + inst sd-connector : sd-connector + place(sd-connector) at loc(-5.0, 0.0, 270.0) on Bottom + + net vdd50 (usb.usb-2.vbus.vdd) + net vdd33 (reg.power-out.vdd) + net gnd (usb.usb-2.vbus.gnd) + + + inst status-led : components/LED-maker-ROYGB/module(components/LED-maker-ROYGB/RED, property(vdd33.voltage)) + + ; Connect the modules together + net (usb.usb-2.vbus reg.power-in) + net (usb.usb-2 media-controller.usb-in) + + net (reg.power-out media-controller.power eeprom.power) + + net (media-controller.i2c eeprom.i2c) + net (media-controller.sd-card-conn sd-connector.conn) + + net (media-controller.LED status-led.in) + net (status-led.out gnd) + + symbol(vdd50) = ocdb/utils/symbols/supply-sym + symbol(vdd33) = ocdb/utils/symbols/supply-sym + symbol(gnd) = ocdb/utils/symbols/ground-sym + + geom(gnd) : + copper-pour(LayerIndex(0), isolate = 0.1, rank = 1, orphans = true) = board-shape + copper-pour(LayerIndex(1), isolate = 0.1, rank = 1, orphans = true) = board-shape + + val power-net-class = NetClass(`Power, [`min-trace => 0.381]) + property(gnd.net-class) = power-net-class + property(vdd33.net-class) = power-net-class + property(vdd50.net-class) = power-net-class + + property(gnd.voltage) = typ(0.0) + property(vdd33.voltage) = min-max(3.0, 3.6) + property(vdd50.voltage) = min-max(4.5, 5.5) + + schematic-group([media-controller, sd-connector, eeprom, status-led]) = data + layout-group([media-controller, sd-connector, eeprom, status-led]) = data + + schematic-group([usb, reg]) = Vin + layout-group([usb, reg]) = Vin + + schematic-group([testpoints]) = test + layout-group([testpoints]) = test + + check-design(self) + +; Set the design name - a directory with this name will be generated under the "designs" directory +set-current-design("jitx-design") + +; Set the schematic sheet size +set-paper(ANSI-A) + +; Setup the board properties +setup-board() + +set-use-layout-groups() + + +; Set the top level module (the module to be compile into a schematic and PCB) +set-main-module(sd-card-reader) + +; Use any helper function from helpers.stanza here +run-check-on-design(sd-card-reader) + +; View the results +view-design-explorer() +view-board() +view-schematic() + +;set-export-backend(`kicad) +;export-design() diff --git a/sd_card_reader/parts-db/-1040795990 b/sd_card_reader/parts-db/-1040795990 new file mode 100644 index 0000000..8aff9c4 Binary files /dev/null and b/sd_card_reader/parts-db/-1040795990 differ diff --git a/sd_card_reader/parts-db/-1389820665 b/sd_card_reader/parts-db/-1389820665 new file mode 100644 index 0000000..e6598e2 Binary files /dev/null and b/sd_card_reader/parts-db/-1389820665 differ diff --git a/sd_card_reader/parts-db/-1559270843 b/sd_card_reader/parts-db/-1559270843 new file mode 100644 index 0000000..cb286e8 Binary files /dev/null and b/sd_card_reader/parts-db/-1559270843 differ diff --git a/sd_card_reader/parts-db/-1734068244 b/sd_card_reader/parts-db/-1734068244 new file mode 100644 index 0000000..23c5621 Binary files /dev/null and b/sd_card_reader/parts-db/-1734068244 differ diff --git a/sd_card_reader/parts-db/-1858121838 b/sd_card_reader/parts-db/-1858121838 new file mode 100644 index 0000000..bc51802 Binary files /dev/null and b/sd_card_reader/parts-db/-1858121838 differ diff --git a/sd_card_reader/parts-db/-1961155197 b/sd_card_reader/parts-db/-1961155197 new file mode 100644 index 0000000..4647e4a Binary files /dev/null and b/sd_card_reader/parts-db/-1961155197 differ diff --git a/sd_card_reader/parts-db/-367669428 b/sd_card_reader/parts-db/-367669428 new file mode 100644 index 0000000..d22e492 Binary files /dev/null and b/sd_card_reader/parts-db/-367669428 differ diff --git a/sd_card_reader/parts-db/-413192862 b/sd_card_reader/parts-db/-413192862 new file mode 100644 index 0000000..e3f6b72 Binary files /dev/null and b/sd_card_reader/parts-db/-413192862 differ diff --git a/sd_card_reader/parts-db/-455902946 b/sd_card_reader/parts-db/-455902946 new file mode 100644 index 0000000..044d97a Binary files /dev/null and b/sd_card_reader/parts-db/-455902946 differ diff --git a/sd_card_reader/parts-db/-556275359 b/sd_card_reader/parts-db/-556275359 new file mode 100644 index 0000000..b4f36fc Binary files /dev/null and b/sd_card_reader/parts-db/-556275359 differ diff --git a/sd_card_reader/parts-db/-621250772 b/sd_card_reader/parts-db/-621250772 new file mode 100644 index 0000000..b44a378 Binary files /dev/null and b/sd_card_reader/parts-db/-621250772 differ diff --git a/sd_card_reader/parts-db/-916364880 b/sd_card_reader/parts-db/-916364880 new file mode 100644 index 0000000..c05446a Binary files /dev/null and b/sd_card_reader/parts-db/-916364880 differ diff --git a/sd_card_reader/parts-db/1155422474 b/sd_card_reader/parts-db/1155422474 new file mode 100644 index 0000000..792edff Binary files /dev/null and b/sd_card_reader/parts-db/1155422474 differ diff --git a/sd_card_reader/parts-db/1197819143 b/sd_card_reader/parts-db/1197819143 new file mode 100644 index 0000000..504d59a Binary files /dev/null and b/sd_card_reader/parts-db/1197819143 differ diff --git a/sd_card_reader/parts-db/266747231 b/sd_card_reader/parts-db/266747231 new file mode 100644 index 0000000..19d6d40 Binary files /dev/null and b/sd_card_reader/parts-db/266747231 differ diff --git a/sd_card_reader/parts-db/342813805 b/sd_card_reader/parts-db/342813805 new file mode 100644 index 0000000..52f35d2 Binary files /dev/null and b/sd_card_reader/parts-db/342813805 differ diff --git a/sd_card_reader/parts-db/464392262 b/sd_card_reader/parts-db/464392262 new file mode 100644 index 0000000..08ce96b Binary files /dev/null and b/sd_card_reader/parts-db/464392262 differ diff --git a/sd_card_reader/parts-db/765517027 b/sd_card_reader/parts-db/765517027 new file mode 100644 index 0000000..433170e Binary files /dev/null and b/sd_card_reader/parts-db/765517027 differ diff --git a/sd_card_reader/parts-db/87336273 b/sd_card_reader/parts-db/87336273 new file mode 100644 index 0000000..7fe28aa Binary files /dev/null and b/sd_card_reader/parts-db/87336273 differ diff --git a/sd_card_reader/stanza.proj b/sd_card_reader/stanza.proj new file mode 100644 index 0000000..85b4ec4 --- /dev/null +++ b/sd_card_reader/stanza.proj @@ -0,0 +1,5 @@ +include "../open-components-database/stanza.proj" +package main defined-in "main.stanza" +package helpers defined-in "helpers.stanza" +packages components/* defined-in "components" +package bundles defined-in "bundles.stanza"