diff --git a/README.md b/README.md index ed0f62df9dcbfdbddeb4257dce941b56e0ce0a3a..6533631e97c96ff343e88812283a2da611e1c0d4 100644 --- a/README.md +++ b/README.md @@ -241,4 +241,131 @@ Address the raised issues, and commit your fixes. This is an iterative process, Once you have addressed all issues, look in Canvas for Lab1-Final, and submit a link to your repository. +--- + +## Lab 2 (Layout) + +The main topic of this lab is to give you a good understanding on how to place the components on the Printed Circuit Board (PCB) and route the traces. + +## Task 2 + +Read the whole lab instruction before you start. + +## 1) Creating a foot-print for the PMW3389DM + +Most components come with a ready made KiCad footprint (in either the stock libraries or some 3rd party library, e.g. [snapeda](https://www.snapeda.com)). However, for the PMW3389DM you need to create your own. Check in the [data-sheet](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&ved=2ahUKEwiHvuC1trXuAhXFk4sKHfqDA-cQFjAAegQIARAC&url=https%3A%2F%2Fwww.pixart.com%2F_getfs.php%3Ftb%3Dproduct%26id%3D4%26fs%3Dck2_fs_cn&usg=AOvVaw1A1rR533Pt-7EgnVSS-_ch), section 2,3 for detailed geometry. Use the footprint editor (`Edit PCB Footprints`) to make a [footprint](https://forum.kicad.info/t/tutorial-how-to-make-a-footprint-in-kicad-5-1-x-from-scratch/11092). + +Set the grid to fit the spacing between the pins (1.78mm/0.070 inch) between pins, so a grid at 0.035 inch works. Notice, the sensor uses a skewed non standard offset between the rows (offset by 0.89mm/0.035 inch). Spacing between rows are 14.48mm/0.570 inch (unfortunately this won't match the grid though). + +Once you have made the footprint save it and go back to the schematic and associate the PMW3389 to your newly made footprint. + +## 2) Design rules + +You will now create a layout for your project. This is where you physically place the components on the PCB and draw the copper traces to connect the components. Before you start placing the components you have to setup some "design rules" for the layout so the manufacturer can make the PCB. + +We use Aisler, and their 2-layer "Beautiful Boards" with [specs](https://aisler.net/help/design-rules-and-specifications/specifications). Aisler directly accepts KiCad designs, which is great as we don't need to worry about exporting to other formats (such as Gerber). Moreover, there are ready made templates for setting up your KiCad project to fit their manufacturing process, [KiCad-Templates](https://github.com/sethhillbrand/kicad_templates). + +KiCad uses text files both for storing configuration parameters and your actual design. (Normally its a bad idea to fiddle with machine generated files manually, but they are actually quite readable and fairly easy to understand/navigate.) + +- Start KiCad and open your project. +- Open the schematic of the project and generate a netlist-file, see buttons at the top. +- Click on the button ”Run Pcbnew to layout printed circuit board”, (see buttons at the top). +- Make sure that the grid is set to ”mm” and change the grid size to 1,0mm. +- Click on the Read netlist button and select your newly generated netlist-file, click Read Current Netlist. + +- Click on the menu File/Board Setup/Design Rules, you should set: + +| Requirement | Value | +| -------------------- | ------- | +| Minimum track width | 0,2mm | +| Minimum via diameter | 0,4mm | +| Minimum via drill | 0,3mm | +| Minimum hole to hole | 0,25 mm | + +(We don't use micro vias in our designs.) + +- Under "Net Classes" we add a new class. Click on the ”Add” button to add a classes named Power, and set the track width to 0,5mm. We want this net to handle more current, hence we use a wider trace. + +- Transfer GND, 1.9V, 3.3V and 5V to the (new) Power net class. Now you can close the Board Setup (and return to it later if you want to change some setting). + +## 3) Place you components + +- Select the layer `Edge.Cuts`, found to the right, and draw a rectangle 60mm x 40mm. + +The 60mm x 40mm rectangle is your workspace for this lab. When you are working with your project you need to adopt it to fit into your mouse shell. + +You will see that after reading in the netlist, your components are just lumped together so you will need to place your components in the yellow square that you crated earlier. + +Rotate and move around the components and try to minimize +the crossed paths of the un-routed lines (gray lines). All components should fit inside the 60mm x 40mm rectangle. + +Common practice for placing your components: + +- Overall layout: Where you want your connectors, buttons etc. dictates the layout. For now, the USB and PWM3389 is important, later buttons/wheels, additional LEDs etc. need to be carefully considered. Check, e.g., how mice sensors are typically placed relative to the center/hand placement. + +- Components are typically designed with layout in mind, consider the orientation/placement to reduce routing complexity. (E.g., inputs are grouped on one edge, outputs on another, analog pins on a third etc., to facilitate the routing and improve signal integrity.) + +- Most datasheets will give an example layout for decoupling and interconnects, these are helpful to give an initial idea. + +- Place your MCU and it’s decoupling capacitors first. The decoupling capacitors should always be near it’s pins, this is needed to eliminate power-noise to the MCU. + +- Place other noise sensitive components, then finally the rest of the components. + +Hint! You can uncheck unnecessary layers and just keep ”F/B.Cu”, ”F/B.SilkS” and Edge.Cuts. If you have the schematic window zoomed in next to the layout window, you can see which component you have selected and it will make it easier to know which is what. + +## 4) Route the traces + +You will now draw where the copper should be placed, red means top layer and green means bottom layer. + +- Change the grid size to 0,1mm. +- Click on the button ”Route tracks”. +- Click on a pad you could like to connect, press ”V” if you need to do a via, route your way to the another pad. +- Do this for all gray lines. (Unconnected == 0) + +Hint! While having the routing tool selected, right click/Routing options... and change between Shove and Walk around. + +No more gray lines? + +- Select front copper layer. +- Draw a filled zone in the rectangle, Associate it to the GND net. +- Do the same thing for the back layer. + +You have now created two ground planes, one one each side of the PCB. Alternately you may have a power power plane and a ground plane. You may activate to `Show filled areas in zones`, to see where copper will be poured. + +Placement and routing is an iterative process, you will likely need to try different options/approaches until you have your final layout. + +## 5) Cut-out for the PMW3389DM + +The sensor requires a cut-out, look in the data-sheet for exact dimensions. You can use the edge cut layer to make the cut out. Alternatively, you can make the edge cut a part of the footprint (but I have never done that, so not sure how hard it is, [see](https://forum.kicad.info/t/create-a-custom-shape-hole/12646)). A third alternative is to att the cut-out as a user layer in the footprint, just a guideline as to where to cut the PCB (in that case its just informative and does not have any meaning to KiCad.) + +Activate to `Show filled areas in zones`, to see verify that you don't pour copper under the the sensor. + +## 6) Design Rule Check (DRC) + +The Design Rule Check gives you warnings if you don’t comply with the Design rules that you previously setup. It will give you warnings on short circuits, clearance issues etc.. + +- 1 Click on Tools/DRC, see that the options comply to the manufacturers specification. +- 2 Fix errors. +- 3 Repeat point 1 until errors == 0. + +--- + +## First Submission Lab 2 + +In Canvas look for Lab2-First Submission, and submit a link to your repo there before the deadline. + +## Review Lab 2 + +You will be assigned two repositories to review. Clone the repositories and compare to your solution. + +Check each that each of the 6 steps has been correctly conducted, and comment on possible problems with the layout. + +Make an issue in each repository that you review with detailed comments to the author/repo owner. Later follow up on those comments and close them when your issues have been addressed to your satisfaction. + +In Canvas look for Lab2-Review, and submit links to the repositories you have reviewed before the corresponding deadline. + +## Final Lab 2 + +Address the raised issues. +Once you have addressed all issues, look in Canvas for Lab2-Final, and submit a link to your repository. diff --git a/calculate_stuff.py b/calculate_stuff.py index 91af0fa918c586ec839ff6920ea5f12174283c95..f2ed9c9525edd998c4be726adfe7c46c7ef3a817 100644 --- a/calculate_stuff.py +++ b/calculate_stuff.py @@ -16,4 +16,8 @@ print("Resistor at LED from 5V to", (5-led_V)/led_A) print("Resistor at LED from 3.3V to", (3.3-led_V)/led_A) print("Resistor at LED from 1.9V to", (1.9-led_V)/led_A) +print("11/5 =",11/5) +print("11%5 =",11%5) + + diff --git a/lab1/Easy_to_modify.pro b/lab1/Easy_to_modify.pro new file mode 100644 index 0000000000000000000000000000000000000000..152769cb7209ca4e1fc17e8154dad5ded6b9d8e4 --- /dev/null +++ b/lab1/Easy_to_modify.pro @@ -0,0 +1,33 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] diff --git a/lab1/fp-lib-table b/lab1/fp-lib-table new file mode 100644 index 0000000000000000000000000000000000000000..c7070a6d6848694ae638006de85655b2977ce9bc --- /dev/null +++ b/lab1/fp-lib-table @@ -0,0 +1,3 @@ +(fp_lib_table + (lib (name lab1)(type KiCad)(uri ${KIPRJMOD}/lab1.pretty)(options "")(descr "")) +) diff --git a/lab1/lab1-cache.lib b/lab1/lab1-cache.lib index d51bdd9266d8b77582c10639f8da86a044a910b2..6d72744d87e424530675be75c81ac9b46066332f 100644 --- a/lab1/lab1-cache.lib +++ b/lab1/lab1-cache.lib @@ -373,40 +373,35 @@ X OUT 5 300 100 100 L 50 50 1 1 w ENDDRAW ENDDEF # -# Switch_SW_MEC_5G +# Switch_SW_Push # -DEF Switch_SW_MEC_5G SW 0 40 N N 1 F N +DEF Switch_SW_Push SW 0 40 N N 1 F N F0 "SW" 50 100 50 H V L CNN -F1 "Switch_SW_MEC_5G" 0 -60 50 H V C CNN +F1 "Switch_SW_Push" 0 -60 50 H V C CNN F2 "" 0 200 50 H I C CNN F3 "" 0 200 50 H I C CNN -$FPLIST - SW*MEC*5G* -$ENDFPLIST DRAW C -80 0 20 0 1 0 N C 80 0 20 0 1 0 N P 2 0 1 0 0 50 0 120 N P 2 0 1 0 100 50 -100 50 N -X A 1 -200 0 100 R 50 50 0 1 P -X B 3 200 0 100 L 50 50 0 1 P -X A 2 -200 0 100 R 50 50 1 1 P N -X B 4 200 0 100 L 50 50 1 1 P N +X 1 1 -200 0 100 R 50 50 0 1 P +X 2 2 200 0 100 L 50 50 0 1 P ENDDRAW ENDDEF # -# lab1-rescue_+1.9V-power +# lab1_+1.9V_lab1 # -DEF lab1-rescue_+1.9V-power #PWR 0 0 Y Y 1 F P +DEF lab1_+1.9V_lab1 #PWR 0 0 Y Y 1 F P F0 "#PWR" 0 -150 50 H I C CNN -F1 "lab1-rescue_+1.9V-power" 0 140 50 H V C CNN +F1 "lab1_+1.9V_lab1" 0 140 50 H V C CNN F2 "" 0 0 50 H I C CNN F3 "" 0 0 50 H I C CNN DRAW P 2 0 1 0 -30 50 0 100 N P 2 0 1 0 0 0 0 100 N P 2 0 1 0 0 100 30 50 N -X +1.9V 1 0 0 0 U 50 50 1 1 W N +X +1.9_lab1 1 0 0 0 U 50 50 1 1 W N ENDDRAW ENDDEF # @@ -438,19 +433,18 @@ X MOTION 9 450 -500 100 L 50 50 1 1 O ENDDRAW ENDDEF # -# power_+3.3V +# power_+3.3V_copy # -DEF power_+3.3V #PWR 0 0 Y Y 1 F P +DEF power_+3.3V_copy #PWR 0 0 Y Y 1 F P F0 "#PWR" 0 -150 50 H I C CNN -F1 "power_+3.3V" 0 140 50 H V C CNN +F1 "power_+3.3V_copy" 50 200 50 H V C CNN F2 "" 0 0 50 H I C CNN F3 "" 0 0 50 H I C CNN -ALIAS +3.3V DRAW P 2 0 1 0 -30 50 0 100 N P 2 0 1 0 0 0 0 100 N P 2 0 1 0 0 100 30 50 N -X +3V3 1 0 0 0 U 50 50 1 1 W N +X +3.3V_copy 1 0 0 0 U 50 50 1 1 W N ENDDRAW ENDDEF # diff --git a/lab1/lab1.dcm b/lab1/lab1.dcm index 5f3ed79b79731d3d1ca39cfaa9a2dda60617b802..ef044c7b52e7ff878d4d934dbc0aa54a5e0932d1 100644 --- a/lab1/lab1.dcm +++ b/lab1/lab1.dcm @@ -1,3 +1,8 @@ EESchema-DOCLIB Version 2.0 # +$CMP +1.9V_lab1 +D Power symbol creates a global label with name "+1.9V_lab1" +K power-flag +$ENDCMP +# #End Doc Library diff --git a/lab1/lab1.kicad_pcb b/lab1/lab1.kicad_pcb index 02c8ecb0e385e9163fb1811ba3b2fcd6b9cd45f4..0fde4f7e57766e4c4e48e61be63458d5acbe26d5 100644 --- a/lab1/lab1.kicad_pcb +++ b/lab1/lab1.kicad_pcb @@ -1 +1,3657 @@ -(kicad_pcb (version 4) (host kicad "dummy file") ) +(kicad_pcb (version 20171130) (host pcbnew "(5.1.9)-1") + + (general + (thickness 1.6) + (drawings 79) + (tracks 499) + (zones 0) + (modules 48) + (nets 74) + ) + + (page A4) + (layers + (0 F.Cu signal) + (31 B.Cu signal) + (32 B.Adhes user) + (33 F.Adhes user) + (34 B.Paste user) + (35 F.Paste user) + (36 B.SilkS user) + (37 F.SilkS user) + (38 B.Mask user) + (39 F.Mask user) + (40 Dwgs.User user) + (41 Cmts.User user) + (42 Eco1.User user) + (43 Eco2.User user) + (44 Edge.Cuts user) + (45 Margin user) + (46 B.CrtYd user) + (47 F.CrtYd user) + (48 B.Fab user) + (49 F.Fab user hide) + ) + + (setup + (last_trace_width 0.25) + (trace_clearance 0.2) + (zone_clearance 0.508) + (zone_45_only no) + (trace_min 0.2) + (via_size 0.8) + (via_drill 0.4) + (via_min_size 0.3) + (via_min_drill 0.3) + (uvia_size 0.3) + (uvia_drill 0.1) + (uvias_allowed no) + (uvia_min_size 0.2) + (uvia_min_drill 0.1) + (edge_width 0.05) + (segment_width 0.2) + (pcb_text_width 0.3) + (pcb_text_size 1.5 1.5) + (mod_edge_width 0.12) + (mod_text_size 1 1) + (mod_text_width 0.15) + (pad_size 0.95 0.7) + (pad_drill 0) + (pad_to_mask_clearance 0) + (aux_axis_origin 0 0) + (visible_elements 7FFFFFFF) + (pcbplotparams + (layerselection 0x010fc_ffffffff) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (excludeedgelayer true) + (linewidth 0.100000) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (padsonsilk false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 1) + (scaleselection 1) + (outputdirectory "")) + ) + + (net 0 "") + (net 1 +5V) + (net 2 GND) + (net 3 VDCPIX) + (net 4 +1.9_lab1) + (net 5 "Net-(C14-Pad1)") + (net 6 "Net-(C15-Pad1)") + (net 7 "Net-(C16-Pad2)") + (net 8 "Net-(C19-Pad2)") + (net 9 "Net-(D2-Pad2)") + (net 10 LED_P) + (net 11 SWCLK) + (net 12 SWDIO) + (net 13 SWO) + (net 14 BOOT0) + (net 15 "Net-(JP1-Pad3)") + (net 16 "Net-(P1-PadS1)") + (net 17 "Net-(P1-PadA5)") + (net 18 D+) + (net 19 D-) + (net 20 "Net-(P1-PadB5)") + (net 21 "Net-(R4-Pad2)") + (net 22 MISO) + (net 23 DP) + (net 24 DM) + (net 25 Motion) + (net 26 SCK) + (net 27 MOSI) + (net 28 NCS) + (net 29 "Net-(U4-Pad14)") + (net 30 "Net-(U4-Pad16)") + (net 31 "Net-(U4-Pad1)") + (net 32 "Net-(U4-Pad2)") + (net 33 "Net-(U4-Pad6)") + (net 34 NRESET) + (net 35 "Net-(U5-Pad2)") + (net 36 "Net-(U5-Pad3)") + (net 37 "Net-(U5-Pad4)") + (net 38 "Net-(U5-Pad15)") + (net 39 "Net-(U5-Pad16)") + (net 40 "Net-(U5-Pad17)") + (net 41 "Net-(U5-Pad20)") + (net 42 "Net-(U5-Pad21)") + (net 43 "Net-(U5-Pad22)") + (net 44 "Net-(U5-Pad23)") + (net 45 "Net-(U5-Pad24)") + (net 46 "Net-(U5-Pad25)") + (net 47 "Net-(U5-Pad26)") + (net 48 "Net-(U5-Pad27)") + (net 49 "Net-(U5-Pad28)") + (net 50 "Net-(U5-Pad34)") + (net 51 "Net-(U5-Pad35)") + (net 52 "Net-(U5-Pad36)") + (net 53 "Net-(U5-Pad37)") + (net 54 "Net-(U5-Pad38)") + (net 55 "Net-(U5-Pad39)") + (net 56 "Net-(U5-Pad40)") + (net 57 "Net-(U5-Pad41)") + (net 58 "Net-(U5-Pad42)") + (net 59 "Net-(U5-Pad43)") + (net 60 "Net-(U5-Pad50)") + (net 61 "Net-(U5-Pad51)") + (net 62 "Net-(U5-Pad52)") + (net 63 "Net-(U5-Pad53)") + (net 64 "Net-(U5-Pad54)") + (net 65 "Net-(U5-Pad56)") + (net 66 "Net-(U5-Pad57)") + (net 67 "Net-(U5-Pad58)") + (net 68 "Net-(U5-Pad59)") + (net 69 "Net-(U5-Pad61)") + (net 70 "Net-(U5-Pad62)") + (net 71 +3.3V_copy) + (net 72 NRST) + (net 73 "Net-(U5-Pad9)") + + (net_class Default "This is the default net class." + (clearance 0.2) + (trace_width 0.25) + (via_dia 0.8) + (via_drill 0.4) + (uvia_dia 0.3) + (uvia_drill 0.1) + (add_net BOOT0) + (add_net D+) + (add_net D-) + (add_net DM) + (add_net DP) + (add_net GND) + (add_net LED_P) + (add_net MISO) + (add_net MOSI) + (add_net Motion) + (add_net NCS) + (add_net NRESET) + (add_net NRST) + (add_net "Net-(C14-Pad1)") + (add_net "Net-(C15-Pad1)") + (add_net "Net-(C16-Pad2)") + (add_net "Net-(C19-Pad2)") + (add_net "Net-(D2-Pad2)") + (add_net "Net-(JP1-Pad3)") + (add_net "Net-(P1-PadA5)") + (add_net "Net-(P1-PadB5)") + (add_net "Net-(P1-PadS1)") + (add_net "Net-(R4-Pad2)") + (add_net "Net-(U4-Pad1)") + (add_net "Net-(U4-Pad14)") + (add_net "Net-(U4-Pad16)") + (add_net "Net-(U4-Pad2)") + (add_net "Net-(U4-Pad6)") + (add_net "Net-(U5-Pad15)") + (add_net "Net-(U5-Pad16)") + (add_net "Net-(U5-Pad17)") + (add_net "Net-(U5-Pad2)") + (add_net "Net-(U5-Pad20)") + (add_net "Net-(U5-Pad21)") + (add_net "Net-(U5-Pad22)") + (add_net "Net-(U5-Pad23)") + (add_net "Net-(U5-Pad24)") + (add_net "Net-(U5-Pad25)") + (add_net "Net-(U5-Pad26)") + (add_net "Net-(U5-Pad27)") + (add_net "Net-(U5-Pad28)") + (add_net "Net-(U5-Pad3)") + (add_net "Net-(U5-Pad34)") + (add_net "Net-(U5-Pad35)") + (add_net "Net-(U5-Pad36)") + (add_net "Net-(U5-Pad37)") + (add_net "Net-(U5-Pad38)") + (add_net "Net-(U5-Pad39)") + (add_net "Net-(U5-Pad4)") + (add_net "Net-(U5-Pad40)") + (add_net "Net-(U5-Pad41)") + (add_net "Net-(U5-Pad42)") + (add_net "Net-(U5-Pad43)") + (add_net "Net-(U5-Pad50)") + (add_net "Net-(U5-Pad51)") + (add_net "Net-(U5-Pad52)") + (add_net "Net-(U5-Pad53)") + (add_net "Net-(U5-Pad54)") + (add_net "Net-(U5-Pad56)") + (add_net "Net-(U5-Pad57)") + (add_net "Net-(U5-Pad58)") + (add_net "Net-(U5-Pad59)") + (add_net "Net-(U5-Pad61)") + (add_net "Net-(U5-Pad62)") + (add_net "Net-(U5-Pad9)") + (add_net SCK) + (add_net SWCLK) + (add_net SWDIO) + (add_net SWO) + (add_net VDCPIX) + ) + + (net_class power "" + (clearance 0.2) + (trace_width 0.5) + (via_dia 0.8) + (via_drill 0.4) + (uvia_dia 0.3) + (uvia_drill 0.1) + (add_net +1.9_lab1) + (add_net +3.3V_copy) + (add_net +5V) + ) + + (module lab1:Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering (layer F.Cu) (tedit 60131E0A) (tstamp 6016D207) + (at 62 91.35 270) + (descr "SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, hand-soldering, 6.0x3.5mm^2 package") + (tags "SMD SMT crystal hand-soldering") + (path /60098CE1) + (attr smd) + (fp_text reference Y1 (at 0 -2.95 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 16Mhz (at 0 2.95 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -2.9 -1.75) (end 2.9 -1.75) (layer F.Fab) (width 0.1)) + (fp_line (start 2.9 -1.75) (end 3 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 3 -1.65) (end 3 1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 3 1.65) (end 2.9 1.75) (layer F.Fab) (width 0.1)) + (fp_line (start 2.9 1.75) (end -2.9 1.75) (layer F.Fab) (width 0.1)) + (fp_line (start -2.9 1.75) (end -3 1.65) (layer F.Fab) (width 0.1)) + (fp_line (start -3 1.65) (end -3 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start -3 -1.65) (end -2.9 -1.75) (layer F.Fab) (width 0.1)) + (fp_line (start -3 0.75) (end -2 1.75) (layer F.Fab) (width 0.1)) + (fp_line (start 3 -2) (end -7.5 -2) (layer F.SilkS) (width 0.12)) + (fp_line (start -7.5 -1.95) (end -7.5 1.95) (layer F.SilkS) (width 0.12)) + (fp_line (start -7.5 2) (end 3 2) (layer F.SilkS) (width 0.12)) + (fp_line (start -7.5 -2) (end -7.5 2) (layer F.CrtYd) (width 0.05)) + (fp_line (start -7.5 2) (end 7.5 2) (layer F.CrtYd) (width 0.05)) + (fp_line (start 7.5 2) (end 7.5 -2) (layer F.CrtYd) (width 0.05)) + (fp_line (start 7.5 -2) (end -7.5 -2) (layer F.CrtYd) (width 0.05)) + (fp_circle (center 0 0) (end 0.4 0) (layer F.Adhes) (width 0.1)) + (fp_circle (center 0 0) (end 0.333333 0) (layer F.Adhes) (width 0.133333)) + (fp_circle (center 0 0) (end 0.213333 0) (layer F.Adhes) (width 0.133333)) + (fp_circle (center 0 0) (end 0.093333 0) (layer F.Adhes) (width 0.186667)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 2 smd rect (at 4.75 0 270) (size 5.5 2) (layers F.Cu F.Paste F.Mask) + (net 6 "Net-(C15-Pad1)")) + (pad 1 smd rect (at -4.75 0 270) (size 5.5 2) (layers F.Cu F.Paste F.Mask) + (net 5 "Net-(C14-Pad1)")) + (model ${KISYS3DMOD}/Crystal.3dshapes/Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AC17) + (at 51 89.9625 90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6012B0E5) + (attr smd) + (fp_text reference C1 (at 0 -1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100nF (at 0 1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 2 smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 1 +5V)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AC28) + (at 89 89 270) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /60107FEF) + (attr smd) + (fp_text reference C2 (at 0 -1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 10uF (at 0 1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 71 +3.3V_copy)) + (pad 2 smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AC39) + (at 81 89 270) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /600DB4DB) + (attr smd) + (fp_text reference C3 (at 0 -1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100nF (at 0 1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 3 VDCPIX)) + (pad 2 smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AC4A) + (at 90.974999 89 270) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /60107FE9) + (attr smd) + (fp_text reference C4 (at 0 -1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100nF (at 0 1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 1 smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 71 +3.3V_copy)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AC5B) + (at 83 89 270) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /600DE1C6) + (attr smd) + (fp_text reference C5 (at 0 -1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 4.7μF/10V (at 0 1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 1 smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 3 VDCPIX)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AC6C) + (at 50 72.5) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /601F13F1) + (attr smd) + (fp_text reference C6 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 4.7uF (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 1 +5V)) + (pad 2 smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AC7D) + (at 47 87 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /600F8FFC) + (attr smd) + (fp_text reference C7 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 1uF (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 1 +5V)) + (pad 2 smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AC8E) + (at 84.984999 89 270) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6010C304) + (attr smd) + (fp_text reference C8 (at 0 -1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100uF (at 0 1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 4 +1.9_lab1)) + (pad 2 smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AC9F) + (at 91.5 69.5375 90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6011117F) + (attr smd) + (fp_text reference C9 (at 0 -1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 10uF (at 0 1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 4 +1.9_lab1)) + (pad 2 smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016ACB0) + (at 87 88.9625 270) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6010C2FE) + (attr smd) + (fp_text reference C10 (at 0 -1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 10uF (at 0 1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 1 smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 4 +1.9_lab1)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016ACC1) + (at 46 66.5 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /601EFA0D) + (attr smd) + (fp_text reference C11 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 4.7uF (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 1 smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 71 +3.3V_copy)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016ACD2) + (at 49 96 270) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /602687A5) + (attr smd) + (fp_text reference C12 (at 0 -1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 2.2uF (at 0 1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 1 smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 4 +1.9_lab1)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016ACE3) + (at 89.5 69.5 90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /60111179) + (attr smd) + (fp_text reference C13 (at 0 -1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100nF (at 0 1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 1 smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 4 +1.9_lab1)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016ACF4) + (at 57 84.3 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6009CA4A) + (attr smd) + (fp_text reference C14 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 22p (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 5 "Net-(C14-Pad1)")) + (pad 2 smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 60171A34) + (at 57 86.3 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6009E316) + (attr smd) + (fp_text reference C15 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 22p (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 1 smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 6 "Net-(C15-Pad1)")) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AD16) + (at 74.8 74 270) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /600A3108) + (attr smd) + (fp_text reference C16 (at 0 -1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 1u (at 0 1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 7 "Net-(C16-Pad2)")) + (pad 1 smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AD27) + (at 56.9625 79.25) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /60122E63) + (attr smd) + (fp_text reference C17 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100nF (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 2 smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 71 +3.3V_copy)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AD38) + (at 56.9625 81.25) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6012239A) + (attr smd) + (fp_text reference C18 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100nF (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 71 +3.3V_copy)) + (pad 1 smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AD49) + (at 74.5 80 90) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /600C3D4A) + (attr smd) + (fp_text reference C19 (at 0 -1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 4.7uF (at 0 1.68 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 8 "Net-(C19-Pad2)")) + (pad 1 smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AD5A) + (at 74.5 71 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /601EB513) + (attr smd) + (fp_text reference C20 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100nF (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 2 smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 71 +3.3V_copy)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6014A725) + (at 68.5 85.5) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6021A88D) + (attr smd) + (fp_text reference C21 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100nF (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 2 smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 71 +3.3V_copy)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6014A755) + (at 68.5 87.5) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6021F85D) + (attr smd) + (fp_text reference C22 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100nF (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 71 +3.3V_copy)) + (pad 1 smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016AD8D) + (at 60 66.5 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6022473A) + (attr smd) + (fp_text reference C23 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100nF (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 2 smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 71 +3.3V_copy)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016D53B) + (at 74.4625 69 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /60229599) + (attr smd) + (fp_text reference C24 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100nF (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 71 +3.3V_copy)) + (pad 1 smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016ADAF) + (at 60 68.5 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /6022E4D6) + (attr smd) + (fp_text reference C25 (at 0 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 1μF (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 71 +3.3V_copy)) + (pad 1 smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder (layer F.Cu) (tedit 5F68FEEF) (tstamp 6016ADC0) + (at 69.4625 69 180) + (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (path /601368EA) + (attr smd) + (fp_text reference C26 (at 0.0375 -1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 100n (at 0 1.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.88 0.98) (end -1.88 0.98) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 2 GND)) + (pad 2 smd roundrect (at 1.0375 0 180) (size 1.175 1.45) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.212766) + (net 72 NRST)) + (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Diode_SMD:D_SOD-110 (layer F.Cu) (tedit 587B7A74) (tstamp 6016ADD8) + (at 43 67.05 270) + (descr SOD-110) + (tags SOD-110) + (path /6055211D) + (attr smd) + (fp_text reference D2 (at 0 -1.7 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value KPTD-2012SURCK (at 0 1.8 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1.5 -0.8) (end -1.5 0.8) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.1 0) (end 0.25 0) (layer F.Fab) (width 0.1)) + (fp_line (start 0.1 -0.2) (end -0.2 0) (layer F.Fab) (width 0.1)) + (fp_line (start 0.1 0.2) (end 0.1 -0.2) (layer F.Fab) (width 0.1)) + (fp_line (start -0.2 0) (end 0.1 0.2) (layer F.Fab) (width 0.1)) + (fp_line (start -0.2 0) (end -0.35 0) (layer F.Fab) (width 0.1)) + (fp_line (start -0.2 0.2) (end -0.2 -0.2) (layer F.Fab) (width 0.1)) + (fp_line (start 1.05 -0.7) (end -1.05 -0.7) (layer F.Fab) (width 0.1)) + (fp_line (start 1.05 0.7) (end 1.05 -0.7) (layer F.Fab) (width 0.1)) + (fp_line (start -1.05 0.7) (end 1.05 0.7) (layer F.Fab) (width 0.1)) + (fp_line (start -1.05 -0.7) (end -1.05 0.7) (layer F.Fab) (width 0.1)) + (fp_line (start -1.6 -1) (end 1.6 -1) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.6 -1) (end 1.6 1) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.6 1) (end -1.6 1) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.6 -1) (end -1.6 1) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.5 0.8) (end 1.05 0.8) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.5 -0.8) (end 1.05 -0.8) (layer F.SilkS) (width 0.12)) + (fp_text user %R (at 0 -1.7 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 smd rect (at -0.95 0 270) (size 0.8 1) (layers F.Cu F.Paste F.Mask) + (net 2 GND)) + (pad 2 smd rect (at 0.95 0 270) (size 0.8 1) (layers F.Cu F.Paste F.Mask) + (net 9 "Net-(D2-Pad2)")) + (model ${KISYS3DMOD}/Diode_SMD.3dshapes/D_SOD-110.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Diode_SMD:D_SOD-110 (layer F.Cu) (tedit 587B7A74) (tstamp 6016ADF0) + (at 51 96 90) + (descr SOD-110) + (tags SOD-110) + (path /604FA4E1) + (attr smd) + (fp_text reference D3 (at 0 2 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value KPTD-2012SURCK (at 0 1.8 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1.5 -0.8) (end 1.05 -0.8) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.5 0.8) (end 1.05 0.8) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.6 -1) (end -1.6 1) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.6 1) (end -1.6 1) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.6 -1) (end 1.6 1) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.6 -1) (end 1.6 -1) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.05 -0.7) (end -1.05 0.7) (layer F.Fab) (width 0.1)) + (fp_line (start -1.05 0.7) (end 1.05 0.7) (layer F.Fab) (width 0.1)) + (fp_line (start 1.05 0.7) (end 1.05 -0.7) (layer F.Fab) (width 0.1)) + (fp_line (start 1.05 -0.7) (end -1.05 -0.7) (layer F.Fab) (width 0.1)) + (fp_line (start -0.2 0.2) (end -0.2 -0.2) (layer F.Fab) (width 0.1)) + (fp_line (start -0.2 0) (end -0.35 0) (layer F.Fab) (width 0.1)) + (fp_line (start -0.2 0) (end 0.1 0.2) (layer F.Fab) (width 0.1)) + (fp_line (start 0.1 0.2) (end 0.1 -0.2) (layer F.Fab) (width 0.1)) + (fp_line (start 0.1 -0.2) (end -0.2 0) (layer F.Fab) (width 0.1)) + (fp_line (start 0.1 0) (end 0.25 0) (layer F.Fab) (width 0.1)) + (fp_line (start -1.5 -0.8) (end -1.5 0.8) (layer F.SilkS) (width 0.12)) + (fp_text user %R (at 0 -1.7 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 2 smd rect (at 0.95 0 90) (size 0.8 1) (layers F.Cu F.Paste F.Mask) + (net 4 +1.9_lab1)) + (pad 1 smd rect (at -0.95 0 90) (size 0.8 1) (layers F.Cu F.Paste F.Mask) + (net 2 GND)) + (model ${KISYS3DMOD}/Diode_SMD.3dshapes/D_SOD-110.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 6016AE05) + (at 44.5 63.5) + (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x01 2.54mm single row") + (path /6037D04C) + (fp_text reference J1 (at 0 -2.33) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.33) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 2 GND)) + (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 6016AE1A) + (at 91 65.5) + (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x01 2.54mm single row") + (path /602F84E9) + (fp_text reference J3 (at 0 -2.33) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.33) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 2 GND)) + (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 6016AE34) + (at 55 62.5 90) + (descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x06 2.54mm single row") + (path /600A5CE0) + (fp_text reference J6 (at 0 -2.33 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value SWD (at 0 15.03 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 13.97) (end -1.27 13.97) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -1.33 14.03) (end 1.33 14.03) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end -1.33 14.03) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 1.27) (end 1.33 14.03) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.8 14.5) (end 1.8 14.5) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 6.35) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 71 +3.3V_copy)) + (pad 2 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 11 SWCLK)) + (pad 3 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 2 GND)) + (pad 4 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 12 SWDIO)) + (pad 5 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 72 NRST)) + (pad 6 thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 13 SWO)) + (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 6016AE5E) + (at 43 97) + (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x01 2.54mm single row") + (path /603FAEB7) + (fp_text reference J9 (at 0 -2.33) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.33) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 2 GND)) + (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 6016AE73) + (at 86.5 93) + (descr "Through hole straight pin header, 1x01, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x01 2.54mm single row") + (path /603E79AA) + (fp_text reference J10 (at 0 -2.33) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value TestPoint (at 0 2.33) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 1.8) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.8 1.8) (end 1.8 1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.8 -1.8) (end -1.8 1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 1.27) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end -1.33 1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.33) (end 1.33 1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 1.27) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 2 GND)) + (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x01_P2.54mm_Vertical.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 6016AE8A) + (at 55.5 76 180) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (path /600901F4) + (fp_text reference JP1 (at 0 -2.33) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value DFU (at 0 7.41) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer F.Fab) (width 0.1)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 2.54 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 71 +3.3V_copy)) + (pad 2 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 14 BOOT0)) + (pad 3 thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 15 "Net-(JP1-Pad3)")) + (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 6016AED5) + (at 44.5 70 180) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /604F2FD8) + (attr smd) + (fp_text reference R2 (at 0 -1.65) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 68Ω (at 0 1.65) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.208333) + (net 71 +3.3V_copy)) + (pad 2 smd roundrect (at 1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.208333) + (net 9 "Net-(D2-Pad2)")) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 6016AEE6) + (at 86 70.5 180) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /60124B5A) + (attr smd) + (fp_text reference R3 (at 0 -1.65) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 13Ω (at 0 1.65) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.208333) + (net 10 LED_P)) + (pad 1 smd roundrect (at -1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.208333) + (net 4 +1.9_lab1)) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 6016AEF7) + (at 48 93 180) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /6026B464) + (attr smd) + (fp_text reference R4 (at 0 -1.65) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 1000Ω (at 0 1.65) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.208333) + (net 21 "Net-(R4-Pad2)")) + (pad 1 smd roundrect (at -1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.208333) + (net 4 +1.9_lab1)) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 6016AF08) + (at 44 93 180) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /6026CB47) + (attr smd) + (fp_text reference R5 (at 0 -1.65) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 1800Ω (at 0 1.65) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.208333) + (net 21 "Net-(R4-Pad2)")) + (pad 2 smd roundrect (at 1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.208333) + (net 2 GND)) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 6016AF19) + (at 69.5 91.5 270) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /601285C0) + (attr smd) + (fp_text reference R6 (at 0 -1.65 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 10kΩ (at 0 1.65 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 1 smd roundrect (at -1 0 270) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.208333) + (net 71 +3.3V_copy)) + (pad 2 smd roundrect (at 1 0 270) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.208333) + (net 22 MISO)) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 6016AF2A) + (at 52.5 78.5 270) + (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor handsolder") + (path /600BD34A) + (attr smd) + (fp_text reference R7 (at 0 -1.65 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value 10kΩ (at 0 1.65 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12)) + (fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1)) + (fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.08))) + ) + (pad 2 smd roundrect (at 1 0 270) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.208333) + (net 2 GND)) + (pad 1 smd roundrect (at -1 0 270) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.208333) + (net 15 "Net-(JP1-Pad3)")) + (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Button_Switch_SMD:SW_Push_SPST_NO_Alps_SKRK (layer F.Cu) (tedit 5C2A8900) (tstamp 6016AF40) + (at 69 66) + (descr http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKRK/SKRKAHE020.html) + (tags "SMD SMT button") + (path /602BA2BA) + (attr smd) + (fp_text reference SW1 (at 0 -2.25) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value Some_button (at 0 2.5) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -2.07 -1.57) (end 2.07 -1.57) (layer F.SilkS) (width 0.12)) + (fp_line (start 2.07 1.27) (end 2.07 1.57) (layer F.SilkS) (width 0.12)) + (fp_line (start 2.07 1.57) (end -2.07 1.57) (layer F.SilkS) (width 0.12)) + (fp_line (start -2.07 -1.27) (end -2.07 -1.57) (layer F.SilkS) (width 0.12)) + (fp_circle (center 0 0) (end 1 0) (layer F.Fab) (width 0.1)) + (fp_line (start -2.75 -1.7) (end 2.75 -1.7) (layer F.CrtYd) (width 0.05)) + (fp_line (start 2.75 -1.7) (end 2.75 1.7) (layer F.CrtYd) (width 0.05)) + (fp_line (start 2.75 1.7) (end -2.75 1.7) (layer F.CrtYd) (width 0.05)) + (fp_line (start -2.75 1.7) (end -2.75 -1.7) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.95 1.45) (end -1.95 1.45) (layer F.Fab) (width 0.1)) + (fp_line (start -1.95 1.45) (end -1.95 -1.45) (layer F.Fab) (width 0.1)) + (fp_line (start -1.95 -1.45) (end 1.95 -1.45) (layer F.Fab) (width 0.1)) + (fp_line (start 1.95 -1.45) (end 1.95 1.45) (layer F.Fab) (width 0.1)) + (fp_line (start -2.07 1.57) (end -2.07 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start 2.07 -1.57) (end 2.07 -1.27) (layer F.SilkS) (width 0.12)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 2 smd roundrect (at 2.1 0) (size 0.8 2) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 2 GND)) + (pad 1 smd roundrect (at -2.1 0) (size 0.8 2) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 72 NRST)) + (model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_Push_SPST_NO_Alps_SKRK.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Package_TO_SOT_SMD:SOT-23-6 (layer F.Cu) (tedit 5A02FF57) (tstamp 6016AF56) + (at 64 67.2 90) + (descr "6-pin SOT-23 package") + (tags SOT-23-6) + (path /600BAC45) + (attr smd) + (fp_text reference U1 (at 0 -2.9 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value USBLC6-2SC6 (at 0 2.9 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -0.9 1.61) (end 0.9 1.61) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.9 -1.8) (end -1.9 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.9 1.8) (end 1.9 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.9 1.8) (end 1.9 1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.9 -1.8) (end -1.9 1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer F.Fab) (width 0.1)) + (fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer F.Fab) (width 0.1)) + (fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer F.Fab) (width 0.1)) + (fp_line (start 0.9 1.55) (end -0.9 1.55) (layer F.Fab) (width 0.1)) + (fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.075))) + ) + (pad 1 smd rect (at -1.1 -0.95 90) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) + (net 24 DM)) + (pad 2 smd rect (at -1.1 0 90) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) + (net 2 GND)) + (pad 3 smd rect (at -1.1 0.95 90) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) + (net 23 DP)) + (pad 4 smd rect (at 1.1 0.95 90) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) + (net 18 D+)) + (pad 6 smd rect (at 1.1 -0.95 90) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) + (net 19 D-)) + (pad 5 smd rect (at 1.1 0 90) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) + (net 1 +5V)) + (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Package_TO_SOT_SMD:SOT-23-5 (layer F.Cu) (tedit 5A02FF57) (tstamp 6016AF6B) + (at 48 90 270) + (descr "5-pin SOT23 package") + (tags SOT-23-5) + (path /600F072A) + (attr smd) + (fp_text reference U2 (at 0 -2.9 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value MIC5335YM5-TR (at 0 2.9 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -0.9 1.61) (end 0.9 1.61) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.9 -1.8) (end 1.9 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.9 -1.8) (end 1.9 1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.9 1.8) (end -1.9 1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.9 1.8) (end -1.9 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer F.Fab) (width 0.1)) + (fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer F.Fab) (width 0.1)) + (fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer F.Fab) (width 0.1)) + (fp_line (start 0.9 1.55) (end -0.9 1.55) (layer F.Fab) (width 0.1)) + (fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer F.Fab) (width 0.1)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.075))) + ) + (pad 1 smd rect (at -1.1 -0.95 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) + (net 1 +5V)) + (pad 2 smd rect (at -1.1 0 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) + (net 2 GND)) + (pad 3 smd rect (at -1.1 0.95 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) + (net 1 +5V)) + (pad 4 smd rect (at 1.1 0.95 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) + (net 21 "Net-(R4-Pad2)")) + (pad 5 smd rect (at 1.1 -0.95 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask) + (net 4 +1.9_lab1)) + (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Package_TO_SOT_SMD:SOT-23 (layer F.Cu) (tedit 5A02FF57) (tstamp 6016AF80) + (at 48.5 69.5 270) + (descr "SOT-23, Standard") + (tags SOT-23) + (path /600F5B49) + (attr smd) + (fp_text reference U3 (at 0 -2.5 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value AP2125N-3.3TRG1 (at 0 2.5 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer F.Fab) (width 0.1)) + (fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer F.Fab) (width 0.1)) + (fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer F.Fab) (width 0.1)) + (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1)) + (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1)) + (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer F.CrtYd) (width 0.05)) + (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer F.SilkS) (width 0.12)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 0.5 0.5) (thickness 0.075))) + ) + (pad 1 smd rect (at -1 -0.95 270) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask) + (net 2 GND)) + (pad 2 smd rect (at -1 0.95 270) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask) + (net 71 +3.3V_copy)) + (pad 3 smd rect (at 1 0 270) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask) + (net 1 +5V)) + (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Package_QFP:LQFP-64_10x10mm_P0.5mm (layer F.Cu) (tedit 5D9F72AF) (tstamp 6016B007) + (at 66 77 90) + (descr "LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7606_7606-6_7606-4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "LQFP QFP") + (path /60085361) + (attr smd) + (fp_text reference U5 (at 0 -7.4 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value STM32F411RETx (at 0 7.4 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 4.16 5.11) (end 5.11 5.11) (layer F.SilkS) (width 0.12)) + (fp_line (start 5.11 5.11) (end 5.11 4.16) (layer F.SilkS) (width 0.12)) + (fp_line (start -4.16 5.11) (end -5.11 5.11) (layer F.SilkS) (width 0.12)) + (fp_line (start -5.11 5.11) (end -5.11 4.16) (layer F.SilkS) (width 0.12)) + (fp_line (start 4.16 -5.11) (end 5.11 -5.11) (layer F.SilkS) (width 0.12)) + (fp_line (start 5.11 -5.11) (end 5.11 -4.16) (layer F.SilkS) (width 0.12)) + (fp_line (start -4.16 -5.11) (end -5.11 -5.11) (layer F.SilkS) (width 0.12)) + (fp_line (start -5.11 -5.11) (end -5.11 -4.16) (layer F.SilkS) (width 0.12)) + (fp_line (start -5.11 -4.16) (end -6.45 -4.16) (layer F.SilkS) (width 0.12)) + (fp_line (start -4 -5) (end 5 -5) (layer F.Fab) (width 0.1)) + (fp_line (start 5 -5) (end 5 5) (layer F.Fab) (width 0.1)) + (fp_line (start 5 5) (end -5 5) (layer F.Fab) (width 0.1)) + (fp_line (start -5 5) (end -5 -4) (layer F.Fab) (width 0.1)) + (fp_line (start -5 -4) (end -4 -5) (layer F.Fab) (width 0.1)) + (fp_line (start 0 -6.7) (end -4.15 -6.7) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.15 -6.7) (end -4.15 -5.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.15 -5.25) (end -5.25 -5.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start -5.25 -5.25) (end -5.25 -4.15) (layer F.CrtYd) (width 0.05)) + (fp_line (start -5.25 -4.15) (end -6.7 -4.15) (layer F.CrtYd) (width 0.05)) + (fp_line (start -6.7 -4.15) (end -6.7 0) (layer F.CrtYd) (width 0.05)) + (fp_line (start 0 -6.7) (end 4.15 -6.7) (layer F.CrtYd) (width 0.05)) + (fp_line (start 4.15 -6.7) (end 4.15 -5.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start 4.15 -5.25) (end 5.25 -5.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start 5.25 -5.25) (end 5.25 -4.15) (layer F.CrtYd) (width 0.05)) + (fp_line (start 5.25 -4.15) (end 6.7 -4.15) (layer F.CrtYd) (width 0.05)) + (fp_line (start 6.7 -4.15) (end 6.7 0) (layer F.CrtYd) (width 0.05)) + (fp_line (start 0 6.7) (end -4.15 6.7) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.15 6.7) (end -4.15 5.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.15 5.25) (end -5.25 5.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start -5.25 5.25) (end -5.25 4.15) (layer F.CrtYd) (width 0.05)) + (fp_line (start -5.25 4.15) (end -6.7 4.15) (layer F.CrtYd) (width 0.05)) + (fp_line (start -6.7 4.15) (end -6.7 0) (layer F.CrtYd) (width 0.05)) + (fp_line (start 0 6.7) (end 4.15 6.7) (layer F.CrtYd) (width 0.05)) + (fp_line (start 4.15 6.7) (end 4.15 5.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start 4.15 5.25) (end 5.25 5.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start 5.25 5.25) (end 5.25 4.15) (layer F.CrtYd) (width 0.05)) + (fp_line (start 5.25 4.15) (end 6.7 4.15) (layer F.CrtYd) (width 0.05)) + (fp_line (start 6.7 4.15) (end 6.7 0) (layer F.CrtYd) (width 0.05)) + (fp_text user %R (at 0 0 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 1 smd roundrect (at -5.675 -3.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 71 +3.3V_copy)) + (pad 2 smd roundrect (at -5.675 -3.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 35 "Net-(U5-Pad2)")) + (pad 3 smd roundrect (at -5.675 -2.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 36 "Net-(U5-Pad3)")) + (pad 4 smd roundrect (at -5.675 -2.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 37 "Net-(U5-Pad4)")) + (pad 5 smd roundrect (at -5.675 -1.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 5 "Net-(C14-Pad1)")) + (pad 6 smd roundrect (at -5.675 -1.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 6 "Net-(C15-Pad1)")) + (pad 7 smd roundrect (at -5.675 -0.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 72 NRST)) + (pad 8 smd roundrect (at -5.675 -0.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 34 NRESET)) + (pad 9 smd roundrect (at -5.675 0.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 73 "Net-(U5-Pad9)")) + (pad 10 smd roundrect (at -5.675 0.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 22 MISO)) + (pad 11 smd roundrect (at -5.675 1.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 27 MOSI)) + (pad 12 smd roundrect (at -5.675 1.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 2 GND)) + (pad 13 smd roundrect (at -5.675 2.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 71 +3.3V_copy)) + (pad 14 smd roundrect (at -5.675 2.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 25 Motion)) + (pad 15 smd roundrect (at -5.675 3.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 38 "Net-(U5-Pad15)")) + (pad 16 smd roundrect (at -5.675 3.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 39 "Net-(U5-Pad16)")) + (pad 17 smd roundrect (at -3.75 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 40 "Net-(U5-Pad17)")) + (pad 18 smd roundrect (at -3.25 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 2 GND)) + (pad 19 smd roundrect (at -2.75 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 8 "Net-(C19-Pad2)")) + (pad 20 smd roundrect (at -2.25 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 41 "Net-(U5-Pad20)")) + (pad 21 smd roundrect (at -1.75 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 42 "Net-(U5-Pad21)")) + (pad 22 smd roundrect (at -1.25 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 43 "Net-(U5-Pad22)")) + (pad 23 smd roundrect (at -0.75 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 44 "Net-(U5-Pad23)")) + (pad 24 smd roundrect (at -0.25 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 45 "Net-(U5-Pad24)")) + (pad 25 smd roundrect (at 0.25 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 46 "Net-(U5-Pad25)")) + (pad 26 smd roundrect (at 0.75 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 47 "Net-(U5-Pad26)")) + (pad 27 smd roundrect (at 1.25 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 48 "Net-(U5-Pad27)")) + (pad 28 smd roundrect (at 1.75 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 49 "Net-(U5-Pad28)")) + (pad 29 smd roundrect (at 2.25 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 26 SCK)) + (pad 30 smd roundrect (at 2.75 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 7 "Net-(C16-Pad2)")) + (pad 31 smd roundrect (at 3.25 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 2 GND)) + (pad 32 smd roundrect (at 3.75 5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 71 +3.3V_copy)) + (pad 33 smd roundrect (at 5.675 3.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 28 NCS)) + (pad 34 smd roundrect (at 5.675 3.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 50 "Net-(U5-Pad34)")) + (pad 35 smd roundrect (at 5.675 2.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 51 "Net-(U5-Pad35)")) + (pad 36 smd roundrect (at 5.675 2.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 52 "Net-(U5-Pad36)")) + (pad 37 smd roundrect (at 5.675 1.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 53 "Net-(U5-Pad37)")) + (pad 38 smd roundrect (at 5.675 1.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 54 "Net-(U5-Pad38)")) + (pad 39 smd roundrect (at 5.675 0.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 55 "Net-(U5-Pad39)")) + (pad 40 smd roundrect (at 5.675 0.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 56 "Net-(U5-Pad40)")) + (pad 41 smd roundrect (at 5.675 -0.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 57 "Net-(U5-Pad41)")) + (pad 42 smd roundrect (at 5.675 -0.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 58 "Net-(U5-Pad42)")) + (pad 43 smd roundrect (at 5.675 -1.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 59 "Net-(U5-Pad43)")) + (pad 44 smd roundrect (at 5.675 -1.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 24 DM)) + (pad 45 smd roundrect (at 5.675 -2.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 23 DP)) + (pad 46 smd roundrect (at 5.675 -2.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 12 SWDIO)) + (pad 47 smd roundrect (at 5.675 -3.25 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 2 GND)) + (pad 48 smd roundrect (at 5.675 -3.75 90) (size 1.55 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 71 +3.3V_copy)) + (pad 49 smd roundrect (at 3.75 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 11 SWCLK)) + (pad 50 smd roundrect (at 3.25 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 60 "Net-(U5-Pad50)")) + (pad 51 smd roundrect (at 2.75 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 61 "Net-(U5-Pad51)")) + (pad 52 smd roundrect (at 2.25 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 62 "Net-(U5-Pad52)")) + (pad 53 smd roundrect (at 1.75 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 63 "Net-(U5-Pad53)")) + (pad 54 smd roundrect (at 1.25 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 64 "Net-(U5-Pad54)")) + (pad 55 smd roundrect (at 0.75 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 13 SWO)) + (pad 56 smd roundrect (at 0.25 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 65 "Net-(U5-Pad56)")) + (pad 57 smd roundrect (at -0.25 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 66 "Net-(U5-Pad57)")) + (pad 58 smd roundrect (at -0.75 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 67 "Net-(U5-Pad58)")) + (pad 59 smd roundrect (at -1.25 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 68 "Net-(U5-Pad59)")) + (pad 60 smd roundrect (at -1.75 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 14 BOOT0)) + (pad 61 smd roundrect (at -2.25 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 69 "Net-(U5-Pad61)")) + (pad 62 smd roundrect (at -2.75 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 70 "Net-(U5-Pad62)")) + (pad 63 smd roundrect (at -3.25 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 2 GND)) + (pad 64 smd roundrect (at -3.75 -5.675 90) (size 0.3 1.55) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25) + (net 71 +3.3V_copy)) + (model ${KISYS3DMOD}/Package_QFP.3dshapes/LQFP-64_10x10mm_P0.5mm.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module lab1:MOLEX_1054550101 (layer F.Cu) (tedit 60140C86) (tstamp 60154C6A) + (at 43.69 80 270) + (path /601FFB02) + (fp_text reference P1 (at -1.899125 -6.357835 90) (layer F.Fab) + (effects (font (size 1.003598 1.003598) (thickness 0.015))) + ) + (fp_text value CX90M-16P (at 5.11158 5.722255 90) (layer F.Fab) + (effects (font (size 1.003504 1.003504) (thickness 0.015))) + ) + (fp_line (start 4.65 3.65) (end 6.3 3.65) (layer F.Fab) (width 0.1)) + (fp_line (start -6.3 3.65) (end -4.65 3.65) (layer F.Fab) (width 0.1)) + (fp_circle (center -3 -5) (end -2.9 -5) (layer F.Fab) (width 0.2)) + (fp_circle (center -3 -5) (end -2.9 -5) (layer F.SilkS) (width 0.2)) + (fp_line (start 6.55 4.2) (end 6.55 0.44) (layer F.CrtYd) (width 0.05)) + (fp_line (start 5.12 0.44) (end 6.55 0.44) (layer F.CrtYd) (width 0.05)) + (fp_line (start 5.12 0.44) (end 5.12 -4.72) (layer F.CrtYd) (width 0.05)) + (fp_line (start -5.12 0.44) (end -5.12 -4.72) (layer F.CrtYd) (width 0.05)) + (fp_line (start -6.55 0.44) (end -5.12 0.44) (layer F.CrtYd) (width 0.05)) + (fp_line (start -6.55 4.2) (end -6.55 0.44) (layer F.CrtYd) (width 0.05)) + (fp_line (start 4.65 3.65) (end 4.65 -1.62) (layer F.Fab) (width 0.1)) + (fp_line (start -4.65 3.65) (end -4.65 -1.62) (layer F.Fab) (width 0.1)) + (fp_line (start -4.65 -1.92) (end 4.65 -1.92) (layer F.Fab) (width 0.1)) + (fp_line (start 4.47 3.95) (end 4.47 -1.88) (layer F.SilkS) (width 0.127)) + (fp_line (start -4.47 3.95) (end -4.47 -1.88) (layer F.SilkS) (width 0.127)) + (fp_line (start -4.47 3.95) (end 4.47 3.95) (layer F.SilkS) (width 0.127)) + (fp_line (start 6.55 4.2) (end -6.55 4.2) (layer F.CrtYd) (width 0.05)) + (fp_line (start -5.12 -4.72) (end 5.12 -4.72) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.47 -3.95) (end -4.47 3.95) (layer F.Fab) (width 0.127)) + (fp_line (start 4.47 -3.95) (end -4.47 -3.95) (layer F.Fab) (width 0.127)) + (fp_line (start 4.47 3.95) (end 4.47 -3.95) (layer F.Fab) (width 0.127)) + (fp_line (start -4.47 3.95) (end 4.47 3.95) (layer F.Fab) (width 0.127)) + (fp_arc (start 4.65 -1.77) (end 4.65 -1.62) (angle -90) (layer F.Fab) (width 0.1)) + (fp_arc (start 4.65 -1.77) (end 4.8 -1.77) (angle -90) (layer F.Fab) (width 0.1)) + (fp_arc (start -4.65 -1.77) (end -4.65 -1.92) (angle -90) (layer F.Fab) (width 0.1)) + (fp_arc (start -4.65 -1.77) (end -4.8 -1.77) (angle -90) (layer F.Fab) (width 0.1)) + (pad S4 thru_hole oval (at 5.65 2 270) (size 1.3 2.6) (drill oval 0.6 2.1) (layers *.Cu *.Mask)) + (pad S3 thru_hole oval (at -5.65 2 270) (size 1.3 2.6) (drill oval 0.6 2.1) (layers *.Cu *.Mask)) + (pad S2 thru_hole oval (at 4.32 -3.36 270) (size 1.1 2.2) (drill oval 0.6 1.6) (layers *.Cu *.Mask)) + (pad S1 thru_hole oval (at -4.32 -3.36 270) (size 1.1 2.2) (drill oval 0.6 1.6) (layers *.Cu *.Mask) + (net 16 "Net-(P1-PadS1)")) + (pad B12 smd rect (at -3.08 -2.47 270) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) + (net 2 GND)) + (pad B11 smd rect (at -2.25 -2.47 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B10 smd rect (at -1.75 -2.47 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B9 smd rect (at -1.25 -2.47 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask) + (net 1 +5V)) + (pad B8 smd rect (at -0.75 -2.47 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B7 smd rect (at -0.25 -2.47 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B6 smd rect (at 0.25 -2.47 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B5 smd rect (at 0.75 -2.47 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask) + (net 20 "Net-(P1-PadB5)")) + (pad B4 smd rect (at 1.25 -2.47 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask) + (net 1 +5V)) + (pad B3 smd rect (at 1.75 -2.47 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B2 smd rect (at 2.25 -2.47 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B1 smd rect (at 3.08 -2.47 270) (size 0.95 0.7) (layers F.Cu F.Paste F.Mask) + (net 2 GND)) + (pad A12 smd rect (at 3 -3.77 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask) + (net 2 GND)) + (pad A11 smd rect (at 2.5 -3.77 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A10 smd rect (at 2 -3.77 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A9 smd rect (at 1.5 -3.77 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask) + (net 1 +5V)) + (pad A8 smd rect (at 1 -3.77 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A7 smd rect (at 0.5 -3.77 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask) + (net 19 D-)) + (pad A6 smd rect (at -0.5 -3.77 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask) + (net 18 D+)) + (pad A5 smd rect (at -1 -3.77 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask) + (net 17 "Net-(P1-PadA5)")) + (pad A4 smd rect (at -1.5 -3.77 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask) + (net 1 +5V)) + (pad A3 smd rect (at -2 -3.77 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A2 smd rect (at -2.5 -3.77 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A1 smd rect (at -3 -3.77 270) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask) + (net 2 GND)) + ) + + (module lab1:PMW3389DM-T3QU (layer F.Cu) (tedit 6013F43B) (tstamp 6014A6A2) + (at 88.78 80.39) + (path /60265B7D) + (fp_text reference U4 (at -1.7 -7.07) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value PWM3389 (at -1.59 -8.74) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start 8.42 -4.33) (end 8.42 4.27) (layer F.SilkS) (width 0.12)) + (fp_line (start -8.84 -4.33) (end 8.42 -4.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -8.84 -4.33) (end -8.84 4.24) (layer F.SilkS) (width 0.12)) + (fp_line (start -8.84 4.27) (end 8.42 4.27) (layer F.SilkS) (width 0.12)) + (fp_circle (center -0.02 -0.03) (end 0.23 -0.03) (layer F.SilkS) (width 0.12)) + (fp_circle (center -0.02 -0.03) (end 2.98 -0.03) (layer F.SilkS) (width 0.12)) + (fp_text user "Front of mouse" (at -10 0.02 90) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user "Optical Center" (at -0.19 -3.62) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 16 thru_hole circle (at -7.06 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 30 "Net-(U4-Pad16)")) + (pad 15 thru_hole circle (at -5.28 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 10 LED_P)) + (pad 14 thru_hole circle (at -3.5 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 29 "Net-(U4-Pad14)")) + (pad 13 thru_hole circle (at -1.72 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 28 NCS)) + (pad 12 thru_hole circle (at 0.06 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 22 MISO)) + (pad 11 thru_hole circle (at 1.84 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 27 MOSI)) + (pad 10 thru_hole circle (at 3.62 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 26 SCK)) + (pad 9 thru_hole circle (at 5.4 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 25 Motion)) + (pad 1 thru_hole circle (at -7.95 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 31 "Net-(U4-Pad1)")) + (pad 2 thru_hole circle (at -6.17 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 32 "Net-(U4-Pad2)")) + (pad 3 thru_hole circle (at -4.39 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 3 VDCPIX)) + (pad 4 thru_hole circle (at -2.61 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 4 +1.9_lab1)) + (pad 5 thru_hole circle (at -0.83 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 71 +3.3V_copy)) + (pad 6 thru_hole circle (at 0.95 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 33 "Net-(U4-Pad6)")) + (pad 7 thru_hole circle (at 2.73 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 34 NRESET)) + (pad 8 thru_hole circle (at 4.51 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask) + (net 2 GND)) + ) + + (gr_text USB-C (at 42.57 79.29) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (gr_circle (center 59.31 82.78) (end 59.26 82.78) (layer F.SilkS) (width 0.12)) + (gr_circle (center 59.31 82.79) (end 59.19 82.68) (layer F.SilkS) (width 0.12)) + (gr_circle (center 59.3 82.78) (end 59.09 82.67) (layer F.SilkS) (width 0.12)) + (gr_circle (center 59.29 82.79) (end 59.09 82.55) (layer F.SilkS) (width 0.12)) + (gr_line (start 97.11 89.27) (end 98.24 89.17) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.5 89.84) (end 97.11 89.27) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.25 90.94) (end 96.5 89.84) (layer F.SilkS) (width 0.12)) + (gr_line (start 99.15 89.68) (end 99.38 90.64) (layer F.SilkS) (width 0.12)) + (gr_line (start 98.27 89.14) (end 99.15 89.68) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.99 89.22) (end 98.27 89.14) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.27 89.84) (end 96.99 89.22) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.94 90.86) (end 96.27 89.84) (layer F.SilkS) (width 0.12)) + (gr_line (start 97.99 92.98) (end 97.98 93.72) (layer F.SilkS) (width 0.12)) + (gr_line (start 97.94 92.18) (end 97.99 92.98) (layer F.SilkS) (width 0.12)) + (gr_line (start 97.46 91.57) (end 97.94 92.18) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.84 91.06) (end 97.46 91.57) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.04 90.9) (end 96.84 91.06) (layer F.SilkS) (width 0.12)) + (gr_line (start 97.98 94.96) (end 97.99 93.71) (layer F.SilkS) (width 0.12)) + (gr_line (start 97.49 94.13) (end 97.29 94.44) (layer F.SilkS) (width 0.12)) + (gr_line (start 97.55 93.65) (end 97.49 94.13) (layer F.SilkS) (width 0.12)) + (gr_line (start 97.36 93.19) (end 97.55 93.65) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.74 92.97) (end 97.36 93.19) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.24 93.18) (end 96.74 92.97) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.08 93.63) (end 96.24 93.18) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.06 94.09) (end 96.08 93.63) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.78 93.8) (end 95.76 94.13) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.71 93.35) (end 95.78 93.8) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.36 93.03) (end 95.71 93.35) (layer F.SilkS) (width 0.12)) + (gr_line (start 94.75 93.08) (end 95.36 93.03) (layer F.SilkS) (width 0.12)) + (gr_line (start 94.31 93.4) (end 94.75 93.08) (layer F.SilkS) (width 0.12)) + (gr_line (start 94.3 94.04) (end 94.31 93.4) (layer F.SilkS) (width 0.12)) + (gr_line (start 94.56 94.48) (end 94.3 94.04) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.24 94.7) (end 96.1 94.7) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.49 95.03) (end 96.58 94.66) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.25 94.76) (end 96.49 95.03) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.26 94.71) (end 96.84 94.56) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.92 95.12) (end 98.17 95.64) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.45 95.7) (end 97.68 96.06) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.23 96.13) (end 97.44 96.54) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.09 97.13) (end 96.13 97.02) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.08 97.12) (end 96.09 97.13) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.08 97.07) (end 96.08 97.12) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.98 97.13) (end 96.08 97.07) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.89 96.99) (end 95.98 97.13) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.13 96.86) (end 95.89 96.99) (layer F.SilkS) (width 0.12)) + (gr_line (start 96.21 97.17) (end 96.13 96.86) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.95 97.25) (end 96.21 97.17) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.79 97.04) (end 95.95 97.25) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.83 96.82) (end 95.79 97.04) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.25 91.01) (end 96.03 90.92) (layer F.SilkS) (width 0.12)) + (gr_line (start 94.64 91.45) (end 95.25 91.01) (layer F.SilkS) (width 0.12)) + (gr_line (start 94.07 92.39) (end 94.64 91.45) (layer F.SilkS) (width 0.12)) + (gr_line (start 93.94 93.81) (end 94.07 92.39) (layer F.SilkS) (width 0.12)) + (gr_line (start 93.96 94.93) (end 93.94 93.81) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.43 94.96) (end 95.59 94.72) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.27 94.69) (end 95.43 94.96) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.04 94.63) (end 95.64 94.69) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.1 95.22) (end 93.85 95.41) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.36 95.68) (end 94.14 95.87) (layer F.SilkS) (width 0.12)) + (gr_line (start 95.68 96.14) (end 94.44 96.46) (layer F.SilkS) (width 0.12)) + (gr_line (start 96 96.96) (end 93.97 94.99) (layer F.SilkS) (width 0.12)) + (gr_line (start 96 96.98) (end 97.98 95) (layer F.SilkS) (width 0.12)) + (gr_text "Nuttali \nBy Jonas Jacobsson" (at 92.05 98.11) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (gr_line (start 80 76.1) (end 97.2 76.1) (layer Edge.Cuts) (width 0.05) (tstamp 60175134)) + (gr_line (start 80 84.6) (end 80 76.1) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 80.1 84.6) (end 80 84.6) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 97.2 84.6) (end 80.1 84.6) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 97.2 76.1) (end 97.2 84.6) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 45.3 75.35) (end 40 75.35) (layer Edge.Cuts) (width 0.05) (tstamp 601717A8)) + (gr_line (start 45.6 84.65) (end 45.6 75.35) (layer Edge.Cuts) (width 0.05) (tstamp 601717A7)) + (gr_arc (start 45.45 75.35) (end 45.6 75.35) (angle -180) (layer Edge.Cuts) (width 0.05)) + (gr_arc (start 45.45 84.65) (end 45.3 84.65) (angle -180) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 40 84.65) (end 45.3 84.65) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 40 75.35) (end 40 60) (layer Edge.Cuts) (width 0.05) (tstamp 60170292)) + (gr_line (start 40 100) (end 40 84.65) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 100 100) (end 40 100) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 100 60) (end 100 100) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 40 60) (end 100 60) (layer Edge.Cuts) (width 0.05)) + + (via (at 71.4 87.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 71)) + (via (at 96 73) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4)) + (via (at 71.2 63.6) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2)) + (via (at 60.4 82.8) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 71)) + (via (at 58 71.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19)) + (via (at 63 64.8) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19)) + (via (at 67 69) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 72)) + (via (at 65.6 90.6) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 72)) + (via (at 73.2 75) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 26)) + (via (at 71 71) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28)) + (via (at 46.2 68.2) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 71)) + (via (at 44.6 73) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2)) + (via (at 47.4 71.8) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) + (via (at 50.4 93.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4)) + (via (at 93.5 70.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4)) + (via (at 49 81.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) + (via (at 64 64.8) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) + (via (at 49 78.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1)) + (segment (start 46.745002 78.75) (end 46.995002 78.5) (width 0.25) (layer F.Cu) (net 1)) + (segment (start 46.16 78.75) (end 46.745002 78.75) (width 0.25) (layer F.Cu) (net 1)) + (segment (start 46.995002 78.5) (end 48.5 78.5) (width 0.25) (layer F.Cu) (net 1)) + (segment (start 46.745002 81.25) (end 46.995002 81.5) (width 0.25) (layer F.Cu) (net 1)) + (segment (start 46.16 81.25) (end 46.745002 81.25) (width 0.25) (layer F.Cu) (net 1)) + (segment (start 46.995002 81.5) (end 48.5 81.5) (width 0.25) (layer F.Cu) (net 1)) + (segment (start 48.5 78.5) (end 49 78.5) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 48.5 81.5) (end 49 81.5) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 64 66.1) (end 64 64.8) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 48.9625 70.9625) (end 48.5 70.5) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 48.9625 72.5) (end 48.9625 70.9625) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 48.95 87.9125) (end 48.95 88.9) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 48.0375 87) (end 48.95 87.9125) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 47.05 87.9875) (end 47.05 88.9) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 48.0375 87) (end 47.05 87.9875) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 48.975 88.925) (end 48.95 88.9) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 51 88.925) (end 48.975 88.925) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 47.4 71.6) (end 48.5 70.5) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 47.4 71.8) (end 47.4 71.6) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 49.850001 74.250001) (end 47.4 71.8) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 49.850001 77.649999) (end 49.850001 74.250001) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 49 78.5) (end 49.850001 77.649999) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 49.30002 81.80002) (end 49 81.5) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 49.30002 85.73748) (end 49.30002 81.80002) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 48.0375 87) (end 49.30002 85.73748) (width 0.5) (layer F.Cu) (net 1)) + (segment (start 63.850001 64.391999) (end 63.850001 64.650001) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 63.408001 63.949999) (end 63.850001 64.391999) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 60.191999 63.949999) (end 63.408001 63.949999) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 63.850001 64.650001) (end 64 64.8) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 54.199999 69.941999) (end 60.191999 63.949999) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 54.199999 76.300001) (end 54.199999 69.941999) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 49 81.5) (end 54.199999 76.300001) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 49 81.5) (end 49 78.5) (width 0.5) (layer B.Cu) (net 1)) + (segment (start 47.925 88.825) (end 48 88.9) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 43.05 96.95) (end 43 97) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 43.1 66) (end 43 66.1) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 55.675 79.5) (end 55.925 79.25) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 52.5 79.5) (end 55.675 79.5) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 48.60001 83.905783) (end 48.60001 84.86249) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 47.794227 83.1) (end 48.60001 83.905783) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 67.4625 87.5) (end 67.4625 85.5) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 90.974999 90.0375) (end 81 90.0375) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 86.5 90.5) (end 87 90) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 86.5 93) (end 86.5 90.5) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 74.5 81.0375) (end 73.479978 81.0375) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 73.479978 81.0375) (end 72.90001 80.457532) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 61.0375 66.5) (end 61.0375 68.5) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 63.735001 69.280001) (end 64 69.015002) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 64 69.015002) (end 64 68.3) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 61.0375 68.5) (end 61.817501 69.280001) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 71.1 68.4) (end 70.5 69) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 71.1 66) (end 71.1 68.4) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 51.0375 70.0875) (end 49.45 68.5) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 51.0375 72.5) (end 51.0375 70.0875) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 43 65) (end 44.5 63.5) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 43 66.1) (end 43 65) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 44.9625 63.9625) (end 44.5 63.5) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 44.9625 66.5) (end 44.9625 63.9625) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 47.64249 85.32001) (end 45.9625 87) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 48.14249 85.32001) (end 47.64249 85.32001) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 48.60001 84.86249) (end 48.14249 85.32001) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 46.364999 89.880001) (end 47.735001 89.880001) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 47.735001 89.880001) (end 48 89.615002) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 45.9625 89.477502) (end 46.364999 89.880001) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 48 89.615002) (end 48 88.9) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 45.9625 87) (end 45.9625 89.477502) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 51.950001 91.950001) (end 51 91) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 51.950001 95.810001) (end 51.950001 91.950001) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 50.722502 97.0375) (end 51.950001 95.810001) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 49 97.0375) (end 50.722502 97.0375) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 49.880001 89.880001) (end 51 91) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 47.735001 89.880001) (end 49.880001 89.880001) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 43 92.440002) (end 43 97) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 45.9625 89.477502) (end 43 92.440002) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 49.45 67.1) (end 49.45 68.5) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 45.85 63.5) (end 49.45 67.1) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 44.5 63.5) (end 45.85 63.5) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 60.08 62.5) (end 60.98 63.4) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 60.98 66.4425) (end 61.0375 66.5) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 60.98 63.4) (end 60.98 66.4425) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 62.680001 70.237523) (end 62.75 70.307522) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 62.680001 69.280001) (end 62.680001 70.237523) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 61.817501 69.280001) (end 62.680001 69.280001) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 62.680001 69.280001) (end 63.735001 69.280001) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 58.779999 61.199999) (end 60.08 62.5) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 46.800001 61.199999) (end 58.779999 61.199999) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 44.5 63.5) (end 46.800001 61.199999) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 55.925 86.2625) (end 55.9625 86.3) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 61.55001 80.457532) (end 61.342478 80.25) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 61.55001 81.042468) (end 61.55001 80.457532) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 55.925 82.875) (end 55.925 86.2625) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 60.35 80.25) (end 61.342478 80.25) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 60.325 80.25) (end 60.35 80.25) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 67.75 82.675) (end 67.75 83.95) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 72.717468 80.27499) (end 72.90001 80.457532) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.77499 80.27499) (end 72.717468 80.27499) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.75 80.25) (end 71.77499 80.27499) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.675 80.25) (end 71.75 80.25) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.75 73.75) (end 71.77499 73.72501) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.675 73.75) (end 71.75 73.75) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 67.75 85.2125) (end 67.75 82.675) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 67.4625 85.5) (end 67.75 85.2125) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 67.77499 82.62501) (end 67.77499 81.62501) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 67.75 82.65) (end 67.77499 82.62501) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 67.75 82.675) (end 67.75 82.65) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.65 80.25) (end 71.62501 80.22501) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.675 80.25) (end 71.65 80.25) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.65 73.75) (end 71.62501 73.77499) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.675 73.75) (end 71.65 73.75) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 56.07501 82.42501) (end 55.925 82.275) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 59.516988 82.42501) (end 56.07501 82.42501) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 59.991999 81.949999) (end 59.516988 82.42501) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 60.642479 81.949999) (end 59.991999 81.949999) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 61.55001 81.042468) (end 60.642479 81.949999) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 55.925 82.275) (end 55.925 82.875) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 55.925 79.25) (end 55.925 82.275) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 66.442468 81.042468) (end 66.84999 81.44999) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 61.55001 81.042468) (end 66.442468 81.042468) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 75.5 72.2625) (end 74.8 72.9625) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 75.5 69) (end 75.5 72.2625) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 74.8 72.9625) (end 73.479978 72.9625) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 73.479978 73.320022) (end 73.12501 73.67499) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 73.479978 72.9625) (end 73.479978 73.320022) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 73.12501 73.67499) (end 72.767488 73.67499) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 61.380001 61.199999) (end 60.08 62.5) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 67.75001 81.44999) (end 67.757522 81.442478) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 66.84999 81.44999) (end 67.75001 81.44999) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 68.517559 80.4) (end 70.507522 80.4) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 67.757522 81.160037) (end 68.517559 80.4) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 67.757522 81.442478) (end 67.757522 81.160037) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 70.44999 73.957532) (end 70.657522 73.75) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 70.44999 80.042468) (end 70.44999 73.957532) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 70.6 80.192478) (end 70.44999 80.042468) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 70.6 80.307522) (end 70.6 80.192478) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 70.507522 80.4) (end 70.6 80.307522) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 91.4625 68.4625) (end 91.5 68.5) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 89.5 68.4625) (end 91.4625 68.4625) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 91.5 66) (end 91 65.5) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 91.5 68.5) (end 91.5 66) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 97.67501 75.903245) (end 91.971765 70.2) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 97.67501 84.796755) (end 97.67501 75.903245) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 96.761765 85.71) (end 97.67501 84.796755) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 93.29 85.71) (end 96.761765 85.71) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 91.971765 66.471765) (end 91 65.5) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 91.971765 70.2) (end 91.971765 66.471765) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 68.799999 61.199999) (end 71.2 63.6) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 61.380001 61.199999) (end 68.799999 61.199999) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 71.2 65.9) (end 71.1 66) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 71.2 63.6) (end 71.2 65.9) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 72.692478 73.75) (end 72.767488 73.67499) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.675 73.75) (end 72.692478 73.75) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.45 73.75) (end 70.657522 73.75) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.675 73.75) (end 71.45 73.75) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.52501 80.27499) (end 70.632532 80.27499) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 70.632532 80.27499) (end 70.507522 80.4) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.55 80.25) (end 71.52501 80.27499) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 71.675 80.25) (end 71.55 80.25) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 55.7 86.3) (end 51 91) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 55.9625 86.3) (end 55.7 86.3) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 83.85 97) (end 43 97) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 86.5 94.35) (end 83.85 97) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 86.5 93) (end 86.5 94.35) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 44.5 72.9) (end 44.6 73) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 44.5 63.5) (end 44.5 72.9) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 46.334227 73) (end 44.6 73) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 49 75.665773) (end 46.334227 73) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 49 76) (end 49 75.665773) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 48.100001 76.899999) (end 49 76) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 89.1 63.6) (end 91 65.5) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 71.2 63.6) (end 89.1 63.6) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 46.16 83.1) (end 47.794227 83.1) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 46.16 76.9) (end 48.100001 76.899999) (width 0.5) (layer F.Cu) (net 2)) + (segment (start 89.471765 93) (end 97.67501 84.796755) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 86.5 93) (end 89.471765 93) (width 0.5) (layer B.Cu) (net 2)) + (segment (start 62.75 70.92) (end 62.75 70.307522) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 62.75 71.325) (end 62.75 70.92) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 84.39 86.5725) (end 83 87.9625) (width 0.25) (layer F.Cu) (net 3)) + (segment (start 84.39 85.71) (end 84.39 86.5725) (width 0.25) (layer F.Cu) (net 3)) + (segment (start 81 87.9625) (end 83 87.9625) (width 0.25) (layer F.Cu) (net 3)) + (segment (start 91.425 70.5) (end 91.5 70.575) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 87 70.5) (end 93.5 70.5) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 86.17 86.777499) (end 84.984999 87.9625) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 86.17 85.71) (end 86.17 86.777499) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 86.9625 87.9625) (end 87 87.925) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 84.984999 87.9625) (end 86.9625 87.9625) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 48.95 92.95) (end 49 93) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 48.95 91.1) (end 48.95 92.95) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 49 93) (end 49 94.9625) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 50.9125 94.9625) (end 51 95.05) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 49 94.9625) (end 50.9125 94.9625) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 50 93) (end 50.4 93.4) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 49 93) (end 50 93) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 77.579999 94.300001) (end 78.34 93.54) (width 0.5) (layer B.Cu) (net 4)) + (segment (start 50.4 93.4) (end 51.300001 94.300001) (width 0.5) (layer B.Cu) (net 4)) + (segment (start 51.300001 94.300001) (end 69.700001 94.300001) (width 0.5) (layer B.Cu) (net 4)) + (segment (start 69.700001 94.300001) (end 77.579999 94.300001) (width 0.5) (layer B.Cu) (net 4)) + (segment (start 78.34 93.54) (end 86.17 85.71) (width 0.5) (layer B.Cu) (net 4) (tstamp 601535BE)) + (via (at 78.34 93.54) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4)) + (segment (start 78.34 93.54) (end 79.100001 94.300001) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 97.67501 74.67501) (end 95.8 72.8) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 95.8 72.8) (end 93.5 70.5) (width 0.5) (layer B.Cu) (net 4)) + (segment (start 88.701366 94.750009) (end 97.67501 85.776365) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 79.550009 94.750009) (end 88.701366 94.750009) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 97.67501 85.776365) (end 97.67501 84.39499) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 78.34 93.54) (end 79.550009 94.750009) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 97.67501 84.39499) (end 97.67501 74.67501) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 97.67501 85.139955) (end 97.67501 84.39499) (width 0.5) (layer F.Cu) (net 4)) + (segment (start 64.25 82.75) (end 64.27499 82.77499) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 64.25 82.675) (end 64.25 82.75) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 64.22501 84.37499) (end 62 86.6) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 64.22501 82.97499) (end 64.22501 84.37499) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 64.25 82.95) (end 64.22501 82.97499) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 64.25 82.675) (end 64.25 82.95) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 58.9 84.3) (end 62 87.4) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 58.0375 84.3) (end 58.9 84.3) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 64.75 82.75) (end 64.77499 82.77499) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 64.75 82.675) (end 64.75 82.75) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 64.67502 84.56139) (end 63.325001 85.911409) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 64.67502 83.590682) (end 64.67502 84.56139) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 64.75 83.515702) (end 64.67502 83.590682) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 64.75 82.675) (end 64.75 83.515702) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 62 90.935002) (end 62 96.1) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 63.325001 89.610001) (end 62 90.935002) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 63.325001 85.911409) (end 63.325001 89.610001) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 62 90.935002) (end 61.435002 90.935002) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 58.0375 87.5375) (end 61.435002 90.935002) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 58.0375 86.3) (end 58.0375 87.5375) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 71.75 74.25) (end 71.77499 74.27499) (width 0.25) (layer F.Cu) (net 7)) + (segment (start 71.675 74.25) (end 71.75 74.25) (width 0.25) (layer F.Cu) (net 7)) + (segment (start 74.310502 75.0375) (end 74.8 75.0375) (width 0.25) (layer F.Cu) (net 7)) + (segment (start 73.523002 74.25) (end 74.310502 75.0375) (width 0.25) (layer F.Cu) (net 7)) + (segment (start 71.675 74.25) (end 73.523002 74.25) (width 0.25) (layer F.Cu) (net 7)) + (segment (start 71.77499 79.77499) (end 73.68751 79.77499) (width 0.25) (layer F.Cu) (net 8)) + (segment (start 71.75 79.75) (end 71.77499 79.77499) (width 0.25) (layer F.Cu) (net 8)) + (segment (start 73.68751 79.77499) (end 74.5 78.9625) (width 0.25) (layer F.Cu) (net 8)) + (segment (start 71.675 79.75) (end 71.75 79.75) (width 0.25) (layer F.Cu) (net 8)) + (segment (start 43.5 68.5) (end 43 68) (width 0.25) (layer F.Cu) (net 9)) + (segment (start 43.5 70) (end 43.5 68.5) (width 0.25) (layer F.Cu) (net 9)) + (segment (start 85 73.51) (end 83.5 75.01) (width 0.25) (layer F.Cu) (net 10)) + (segment (start 85 70.5) (end 85 73.51) (width 0.25) (layer F.Cu) (net 10)) + (segment (start 53.374989 61.203599) (end 53.37499 64.2114) (width 0.25) (layer F.Cu) (net 11)) + (segment (start 53.703598 60.87499) (end 53.374989 61.203599) (width 0.25) (layer F.Cu) (net 11)) + (segment (start 56.296401 60.874989) (end 53.703598 60.87499) (width 0.25) (layer F.Cu) (net 11)) + (segment (start 57.54 62.118588) (end 56.296401 60.874989) (width 0.25) (layer F.Cu) (net 11)) + (segment (start 57.54 62.5) (end 57.54 62.118588) (width 0.25) (layer F.Cu) (net 11)) + (segment (start 57.59998 68.43639) (end 57.59998 69.39998) (width 0.25) (layer F.Cu) (net 11)) + (segment (start 53.37499 64.2114) (end 57.59998 68.43639) (width 0.25) (layer F.Cu) (net 11)) + (segment (start 60.325 72.125) (end 60.325 73.25) (width 0.25) (layer F.Cu) (net 11)) + (segment (start 57.59998 69.39998) (end 60.325 72.125) (width 0.25) (layer F.Cu) (net 11)) + (segment (start 63.25 72.165702) (end 63.25 71.325) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 62.990692 72.42501) (end 63.25 72.165702) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 61.26182 72.42501) (end 62.990692 72.42501) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 58.04999 69.21318) (end 61.26182 72.42501) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 62.62 62.5) (end 61.444999 61.324999) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 58.715001 63.064001) (end 58.104001 63.675001) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 56.175001 62.874003) (end 56.175001 61.389999) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 61.444999 61.324999) (end 59.515999 61.324999) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 56.175001 61.389999) (end 56.110001 61.324999) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 59.515999 61.324999) (end 58.715001 62.125997) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 58.715001 62.125997) (end 58.715001 63.064001) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 56.975999 63.675001) (end 56.175001 62.874003) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 56.110001 61.324999) (end 53.889999 61.324999) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 53.889999 61.324999) (end 53.824999 61.389999) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 58.04999 68.24999) (end 58.04999 69.21318) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 58.104001 63.675001) (end 56.975999 63.675001) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 53.824999 61.389999) (end 53.824999 64.024999) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 53.824999 64.024999) (end 58.04999 68.24999) (width 0.25) (layer F.Cu) (net 12)) + (segment (start 66.823002 76.25) (end 71.82501 71.247992) (width 0.25) (layer F.Cu) (net 13)) + (segment (start 60.325 76.25) (end 66.823002 76.25) (width 0.25) (layer F.Cu) (net 13)) + (segment (start 69.33751 64.13751) (end 67.7 62.5) (width 0.25) (layer F.Cu) (net 13)) + (segment (start 69.33751 69.4632) (end 69.33751 64.13751) (width 0.25) (layer F.Cu) (net 13)) + (segment (start 69.92432 70.05001) (end 69.33751 69.4632) (width 0.25) (layer F.Cu) (net 13)) + (segment (start 71.123012 70.05001) (end 69.92432 70.05001) (width 0.25) (layer F.Cu) (net 13)) + (segment (start 71.82501 70.752008) (end 71.123012 70.05001) (width 0.25) (layer F.Cu) (net 13)) + (segment (start 71.82501 71.247992) (end 71.82501 70.752008) (width 0.25) (layer F.Cu) (net 13)) + (segment (start 56.675001 74.635001) (end 55.5 73.46) (width 0.25) (layer F.Cu) (net 14)) + (segment (start 56.675001 75.940703) (end 56.675001 74.635001) (width 0.25) (layer F.Cu) (net 14)) + (segment (start 59.484298 78.75) (end 56.675001 75.940703) (width 0.25) (layer F.Cu) (net 14)) + (segment (start 60.325 78.75) (end 59.484298 78.75) (width 0.25) (layer F.Cu) (net 14)) + (segment (start 52.5 77.5) (end 52.9 77.5) (width 0.25) (layer F.Cu) (net 15)) + (segment (start 52.9 77.5) (end 54.2 76.2) (width 0.25) (layer F.Cu) (net 15)) + (segment (start 54.2 72.22) (end 55.5 70.92) (width 0.25) (layer F.Cu) (net 15)) + (segment (start 54.2 76.2) (end 54.2 72.22) (width 0.25) (layer F.Cu) (net 15)) + (segment (start 45.290017 60.424981) (end 62.283982 60.424981) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 42.174999 63.539999) (end 45.290017 60.424981) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 42.174999 70.288189) (end 42.174999 63.539999) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 42.91182 71.02501) (end 42.174999 70.288189) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 64.95 64.029002) (end 64.95 66.1) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 45.172423 71.02501) (end 42.91182 71.02501) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 63.795001 61.935999) (end 63.795001 62.874003) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 49.725001 75.577588) (end 45.172423 71.02501) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 63.795001 62.874003) (end 64.95 64.029002) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 49.725001 78.848001) (end 49.725001 75.577588) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 49.073002 79.5) (end 49.725001 78.848001) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 62.283982 60.424981) (end 63.795001 61.935999) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 47.46 79.5) (end 49.073002 79.5) (width 0.25) (layer F.Cu) (net 18)) + (segment (start 63.05 64.85) (end 63 64.8) (width 0.25) (layer F.Cu) (net 19)) + (segment (start 63.05 66.1) (end 63.05 64.85) (width 0.25) (layer F.Cu) (net 19)) + (segment (start 56.344999 69.744999) (end 58 71.4) (width 0.25) (layer F.Cu) (net 19)) + (segment (start 54.324999 70.355999) (end 54.935999 69.744999) (width 0.25) (layer F.Cu) (net 19)) + (segment (start 51.47499 73.72501) (end 54.324999 70.875001) (width 0.25) (layer F.Cu) (net 19)) + (segment (start 54.935999 69.744999) (end 56.344999 69.744999) (width 0.25) (layer F.Cu) (net 19)) + (segment (start 51.47499 77.92501) (end 51.47499 73.72501) (width 0.25) (layer F.Cu) (net 19)) + (segment (start 48.9 80.5) (end 51.47499 77.92501) (width 0.25) (layer F.Cu) (net 19)) + (segment (start 54.324999 70.875001) (end 54.324999 70.355999) (width 0.25) (layer F.Cu) (net 19)) + (segment (start 47.46 80.5) (end 48.9 80.5) (width 0.25) (layer F.Cu) (net 19)) + (segment (start 58 69.8) (end 63 64.8) (width 0.25) (layer B.Cu) (net 19)) + (segment (start 58 71.4) (end 58 69.8) (width 0.25) (layer B.Cu) (net 19)) + (segment (start 47.05 92.95) (end 47 93) (width 0.25) (layer F.Cu) (net 21)) + (segment (start 45 93) (end 47 93) (width 0.25) (layer F.Cu) (net 21)) + (segment (start 47 91.15) (end 47.05 91.1) (width 0.25) (layer F.Cu) (net 21)) + (segment (start 47 93) (end 47 91.15) (width 0.25) (layer F.Cu) (net 21)) + (segment (start 66.75 83.515702) (end 66.490692 83.77501) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 66.75 82.675) (end 66.75 83.515702) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 69.2504 92.5) (end 69.5 92.5) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 66.099981 89.349581) (end 69.2504 92.5) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 66.09998 84.60042) (end 66.099981 89.349581) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 66.490692 84.209708) (end 66.09998 84.60042) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 66.490692 83.77501) (end 66.490692 84.209708) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 69.7496 92.5) (end 78 84.2496) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 69.5 92.5) (end 69.7496 92.5) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 89.765001 74.084999) (end 88.84 75.01) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 94.225001 70.848001) (end 90.988003 74.084999) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 90.988003 74.084999) (end 89.765001 74.084999) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 94.225001 66.439999) (end 94.225001 70.848001) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 92.110001 64.324999) (end 94.225001 66.439999) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 86.675001 64.324999) (end 92.110001 64.324999) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 78 73) (end 86.675001 64.324999) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 78 84.2496) (end 78 73) (width 0.25) (layer F.Cu) (net 22)) + (segment (start 63.75 71.25) (end 63.77499 71.22501) (width 0.25) (layer F.Cu) (net 23)) + (segment (start 63.75 71.325) (end 63.75 71.25) (width 0.25) (layer F.Cu) (net 23)) + (segment (start 63.75 70.28) (end 63.75 71.325) (width 0.25) (layer F.Cu) (net 23)) + (segment (start 64.95 69.08) (end 63.75 70.28) (width 0.25) (layer F.Cu) (net 23)) + (segment (start 64.95 68.3) (end 64.95 69.08) (width 0.25) (layer F.Cu) (net 23)) + (segment (start 63.05 67.809998) (end 63.05 68.3) (width 0.25) (layer F.Cu) (net 24)) + (segment (start 63.414999 67.444999) (end 63.05 67.809998) (width 0.25) (layer F.Cu) (net 24)) + (segment (start 65.535001 67.444999) (end 63.414999 67.444999) (width 0.25) (layer F.Cu) (net 24)) + (segment (start 65.600001 67.509999) (end 65.535001 67.444999) (width 0.25) (layer F.Cu) (net 24)) + (segment (start 65.600001 69.134297) (end 65.600001 67.509999) (width 0.25) (layer F.Cu) (net 24)) + (segment (start 64.25 70.484298) (end 65.600001 69.134297) (width 0.25) (layer F.Cu) (net 24)) + (segment (start 64.25 71.325) (end 64.25 70.484298) (width 0.25) (layer F.Cu) (net 24)) + (segment (start 69.434298 84.2) (end 76.77678 84.2) (width 0.25) (layer F.Cu) (net 25)) + (segment (start 68.75 83.515702) (end 69.434298 84.2) (width 0.25) (layer F.Cu) (net 25)) + (segment (start 68.75 82.675) (end 68.75 83.515702) (width 0.25) (layer F.Cu) (net 25)) + (segment (start 76.77678 84.2) (end 77.09998 83.8768) (width 0.25) (layer F.Cu) (net 25)) + (segment (start 95.125019 74.064981) (end 94.18 75.01) (width 0.25) (layer F.Cu) (net 25)) + (segment (start 92.482802 63.42498) (end 95.125019 66.067199) (width 0.25) (layer F.Cu) (net 25)) + (segment (start 95.125019 66.067199) (end 95.125019 74.064981) (width 0.25) (layer F.Cu) (net 25)) + (segment (start 86.302201 63.424981) (end 92.482802 63.42498) (width 0.25) (layer F.Cu) (net 25)) + (segment (start 77.09998 72.6272) (end 86.302201 63.424981) (width 0.25) (layer F.Cu) (net 25)) + (segment (start 77.09998 83.8768) (end 77.09998 72.6272) (width 0.25) (layer F.Cu) (net 25)) + (segment (start 72.95 74.75) (end 73.2 75) (width 0.25) (layer F.Cu) (net 26)) + (segment (start 71.675 74.75) (end 72.95 74.75) (width 0.25) (layer F.Cu) (net 26)) + (segment (start 87.664999 70.274999) (end 92.4 75.01) (width 0.25) (layer B.Cu) (net 26)) + (segment (start 70.651999 70.274999) (end 87.664999 70.274999) (width 0.25) (layer B.Cu) (net 26)) + (segment (start 70.274999 70.651999) (end 70.651999 70.274999) (width 0.25) (layer B.Cu) (net 26)) + (segment (start 70.274999 72.074999) (end 70.274999 70.651999) (width 0.25) (layer B.Cu) (net 26)) + (segment (start 73.2 75) (end 70.274999 72.074999) (width 0.25) (layer B.Cu) (net 26)) + (segment (start 66.54999 89.16318) (end 68.88681 91.5) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 67.25 82.675) (end 67.25 83.515702) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 66.54999 84.78682) (end 66.54999 89.16318) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 67.25 84.08681) (end 66.54999 84.78682) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 67.25 82.675) (end 67.25 84.08681) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 68.88681 91.5) (end 70.11319 91.5) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 77.54999 72.8136) (end 77.54999 84.0632) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 92.296401 63.874989) (end 86.4886 63.87499) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 86.4886 63.87499) (end 77.54999 72.8136) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 94.67501 66.253598) (end 92.296401 63.874989) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 90.699412 75.01) (end 94.675011 71.034401) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 94.675011 71.034401) (end 94.67501 66.253598) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 90.62 75.01) (end 90.699412 75.01) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 77.54999 84.0632) (end 77.206595 84.406595) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 77.206595 84.406595) (end 77.4 84.21319) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 70.11319 91.5) (end 77.206595 84.406595) (width 0.25) (layer F.Cu) (net 27)) + (segment (start 70.675 71.325) (end 71 71) (width 0.25) (layer F.Cu) (net 28)) + (segment (start 69.75 71.325) (end 70.675 71.325) (width 0.25) (layer F.Cu) (net 28)) + (segment (start 83.05 71) (end 87.06 75.01) (width 0.25) (layer B.Cu) (net 28)) + (segment (start 71 71) (end 83.05 71) (width 0.25) (layer B.Cu) (net 28)) + (segment (start 92.109999 86.309999) (end 91.51 85.71) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 68.88681 93.5) (end 70.11319 93.5) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 66.325001 90.938191) (end 68.88681 93.5) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 65.6 89.48601) (end 66.325001 90.211011) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 66.325001 90.211011) (end 66.325001 90.938191) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 65.75 84.31399) (end 65.6 84.46399) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 65.6 84.46399) (end 65.6 89.48601) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 65.75 83.65) (end 65.75 84.31399) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 65.75 82.675) (end 65.75 83.65) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 65.75 83.65) (end 65.75 83.85) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 70.798191 92.814999) (end 70.11319 93.5) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 78.688001 92.814999) (end 70.798191 92.814999) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 88.463188 94.175001) (end 80.048003 94.175001) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 92.109999 90.52819) (end 88.463188 94.175001) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 80.048003 94.175001) (end 78.688001 92.814999) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 92.109999 86.309999) (end 92.109999 90.52819) (width 0.25) (layer F.Cu) (net 34)) + (segment (start 69.5375 87.5) (end 69.5375 85.0375) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 69.5 87.5375) (end 69.5375 87.5) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 69.5 90.5) (end 69.5 87.5375) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 73.425 69) (end 73.425 71.575) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 71.85001 73.14999) (end 71.675 73.14999) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 73.425 71.575) (end 71.85001 73.14999) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 58 79.25) (end 58 81.25) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 59.92501 81.25) (end 60.325 80.85001) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 58 81.25) (end 59.92501 81.25) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 55.5 76.75) (end 58 79.25) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 55.5 76) (end 55.5 76.75) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 58.9625 68.5) (end 58.9625 66.4625) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 87.95 86.9125) (end 89 87.9625) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 87.95 85.71) (end 87.95 86.9125) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 89 87.9625) (end 90.974999 87.9625) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 47.55 67.0125) (end 47.0375 66.5) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 47.55 68.5) (end 47.55 67.0125) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 46.05 70) (end 47.55 68.5) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 45.5 70) (end 46.05 70) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 46.5 68.5) (end 46.2 68.2) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 47.55 68.5) (end 46.5 68.5) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 61.7875 71.325) (end 62.14999 71.325) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 58.9625 68.5) (end 61.7875 71.325) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 55 62.5) (end 55 64) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 57.5 66.5) (end 58.9625 66.5) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 55 64) (end 57.5 66.5) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 49.3 68.2) (end 55 62.5) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 46.2 68.2) (end 49.3 68.2) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 55.5 77.35) (end 50.499999 82.350001) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 55.5 76) (end 55.5 77.35) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 68.27499 82.97499) (end 68.27499 83.87499) (width 0.25) (layer F.Cu) (net 71)) + (segment (start 68.25 82.95) (end 68.27499 82.97499) (width 0.25) (layer F.Cu) (net 71)) + (segment (start 68.25 82.675) (end 68.25 82.95) (width 0.25) (layer F.Cu) (net 71)) + (segment (start 62.02499 82.8) (end 62.14999 82.675) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 60.4 82.8) (end 62.02499 82.8) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 69.5375 85.1375) (end 68.32501 83.92501) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 69.5375 85.5) (end 69.5375 85.1375) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 50.949998 82.8) (end 50.499999 82.350001) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 60.4 82.8) (end 50.949998 82.8) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 78.399989 95.000011) (end 87.69 85.71) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 50.742009 95.000011) (end 78.399989 95.000011) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 49.549999 93.808001) (end 50.742009 95.000011) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 87.69 85.71) (end 87.95 85.71) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 49.549999 82.450001) (end 49.549999 93.808001) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 49.649999 82.350001) (end 49.549999 82.450001) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 50.499999 82.350001) (end 49.649999 82.350001) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 70.042468 81.44999) (end 68.457532 81.44999) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 70.667488 82.07501) (end 70.042468 81.44999) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 76.20001 72.139956) (end 76.20001 81.59999) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 76.20001 81.59999) (end 75.72499 82.07501) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 76.57501 71.764956) (end 76.20001 72.139956) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 76.57501 68.272544) (end 76.57501 71.764956) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 76.127456 67.82499) (end 76.57501 68.272544) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 74.60001 67.82499) (end 76.127456 67.82499) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 75.72499 82.07501) (end 70.667488 82.07501) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 73.425 69) (end 74.60001 67.82499) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 48.149999 81.908001) (end 48.591999 82.350001) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 48.149999 78.091999) (end 48.149999 81.908001) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 48.6 77.641998) (end 48.149999 78.091999) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 48.6 75.265773) (end 48.6 77.641998) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 48.591999 82.350001) (end 49.649999 82.350001) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 46.2 72.865773) (end 48.6 75.265773) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 46.2 68.2) (end 46.2 72.865773) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 68.457532 81.555654) (end 68.457532 81.44999) (width 0.25) (layer F.Cu) (net 71)) + (segment (start 68.25 81.763186) (end 68.457532 81.555654) (width 0.25) (layer F.Cu) (net 71)) + (segment (start 68.25 82.675) (end 68.25 81.763186) (width 0.25) (layer F.Cu) (net 71)) + (segment (start 71.3 87.5) (end 71.4 87.4) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 69.5375 87.5) (end 71.3 87.5) (width 0.5) (layer F.Cu) (net 71)) + (segment (start 60.4 86.658002) (end 60.4 82.8) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 65.191999 91.450001) (end 60.4 86.658002) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 67.349999 91.450001) (end 65.191999 91.450001) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 71.4 87.4) (end 67.349999 91.450001) (width 0.5) (layer B.Cu) (net 71)) + (segment (start 68.425 67.525) (end 66.9 66) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 68.425 69) (end 68.425 67.525) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 66.9 64.24) (end 65.16 62.5) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 66.9 66) (end 66.9 64.24) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 65.27499 82.65001) (end 65.25 82.675) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 68.425 69) (end 68.765702 69) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 68.425 69) (end 67 69) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 65.14999 90.14999) (end 65.6 90.6) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 65.12503 85.12503) (end 65.14999 85.14999) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 65.14999 85.14999) (end 65.14999 90.14999) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 65.12503 83.87497) (end 65.12503 85.12503) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 65.25 83.75) (end 65.12503 83.87497) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 65.25 82.675) (end 65.25 83.75) (width 0.25) (layer F.Cu) (net 72)) + (segment (start 65.6 70.4) (end 67 69) (width 0.25) (layer B.Cu) (net 72)) + (segment (start 65.6 70.4) (end 65.6 90.6) (width 0.25) (layer B.Cu) (net 72)) + + (zone (net 2) (net_name GND) (layer F.Cu) (tstamp 0) (hatch edge 0.508) + (connect_pads (clearance 0.508)) + (min_thickness 0.254) + (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508)) + (polygon + (pts + (xy 100.01 100) (xy 40 100) (xy 40.01 60.01) (xy 100 59.99) + ) + ) + (filled_polygon + (pts + (xy 54.198815 77.301185) (xy 54.295506 77.380537) (xy 54.40582 77.439502) (xy 54.525518 77.475812) (xy 54.65 77.488072) + (xy 54.986494 77.488072) (xy 55.385842 77.88742) (xy 55.3375 77.886928) (xy 55.213018 77.899188) (xy 55.09332 77.935498) + (xy 54.983006 77.994463) (xy 54.886315 78.073815) (xy 54.806963 78.170506) (xy 54.747998 78.28082) (xy 54.711688 78.400518) + (xy 54.699428 78.525) (xy 54.7025 78.96425) (xy 54.86125 79.123) (xy 55.798 79.123) (xy 55.798 79.103) + (xy 56.052 79.103) (xy 56.052 79.123) (xy 56.072 79.123) (xy 56.072 79.377) (xy 56.052 79.377) + (xy 56.052 81.123) (xy 56.072 81.123) (xy 56.072 81.377) (xy 56.052 81.377) (xy 56.052 82.45125) + (xy 56.21075 82.61) (xy 56.5125 82.613072) (xy 56.636982 82.600812) (xy 56.75668 82.564502) (xy 56.866994 82.505537) + (xy 56.963685 82.426185) (xy 57.029158 82.346406) (xy 57.034538 82.352962) (xy 57.169114 82.463405) (xy 57.32265 82.545472) + (xy 57.489246 82.596008) (xy 57.6625 82.613072) (xy 58.3375 82.613072) (xy 58.510754 82.596008) (xy 58.67735 82.545472) + (xy 58.830886 82.463405) (xy 58.965462 82.352962) (xy 59.075905 82.218386) (xy 59.120476 82.135) (xy 59.601289 82.135) + (xy 59.596063 82.140226) (xy 59.482795 82.309744) (xy 59.404774 82.498102) (xy 59.365 82.698061) (xy 59.365 82.901939) + (xy 59.404774 83.101898) (xy 59.482795 83.290256) (xy 59.596063 83.459774) (xy 59.740226 83.603937) (xy 59.909744 83.717205) + (xy 60.098102 83.795226) (xy 60.298061 83.835) (xy 60.363405 83.835) (xy 60.361928 83.85) (xy 60.361928 84.687127) + (xy 59.463804 83.789003) (xy 59.440001 83.759999) (xy 59.324276 83.665026) (xy 59.235669 83.617664) (xy 59.195472 83.48515) + (xy 59.113405 83.331614) (xy 59.002962 83.197038) (xy 58.868386 83.086595) (xy 58.71485 83.004528) (xy 58.548254 82.953992) + (xy 58.375 82.936928) (xy 57.7 82.936928) (xy 57.526746 82.953992) (xy 57.36015 83.004528) (xy 57.206614 83.086595) + (xy 57.072038 83.197038) (xy 57.066658 83.203594) (xy 57.001185 83.123815) (xy 56.904494 83.044463) (xy 56.79418 82.985498) + (xy 56.674482 82.949188) (xy 56.55 82.936928) (xy 56.24825 82.94) (xy 56.0895 83.09875) (xy 56.0895 84.173) + (xy 56.1095 84.173) (xy 56.1095 84.427) (xy 56.0895 84.427) (xy 56.0895 86.173) (xy 56.1095 86.173) + (xy 56.1095 86.427) (xy 56.0895 86.427) (xy 56.0895 87.50125) (xy 56.24825 87.66) (xy 56.55 87.663072) + (xy 56.674482 87.650812) (xy 56.79418 87.614502) (xy 56.904494 87.555537) (xy 57.001185 87.476185) (xy 57.066658 87.396406) + (xy 57.072038 87.402962) (xy 57.206614 87.513405) (xy 57.275054 87.549987) (xy 57.277501 87.574833) (xy 57.288498 87.686486) + (xy 57.292424 87.699428) (xy 57.331954 87.829746) (xy 57.402526 87.961776) (xy 57.459796 88.031559) (xy 57.4975 88.077501) + (xy 57.526498 88.101299) (xy 60.871207 91.44601) (xy 60.895001 91.475003) (xy 60.923994 91.498797) (xy 60.923998 91.498801) + (xy 60.946424 91.517205) (xy 61.010726 91.569976) (xy 61.142755 91.640548) (xy 61.24 91.670046) (xy 61.24 92.711928) + (xy 61 92.711928) (xy 60.875518 92.724188) (xy 60.75582 92.760498) (xy 60.645506 92.819463) (xy 60.548815 92.898815) + (xy 60.469463 92.995506) (xy 60.410498 93.10582) (xy 60.374188 93.225518) (xy 60.361928 93.35) (xy 60.361928 98.85) + (xy 60.374188 98.974482) (xy 60.410498 99.09418) (xy 60.469463 99.204494) (xy 60.548815 99.301185) (xy 60.596111 99.34) + (xy 40.66 99.34) (xy 40.66 97.85) (xy 41.511928 97.85) (xy 41.524188 97.974482) (xy 41.560498 98.09418) + (xy 41.619463 98.204494) (xy 41.698815 98.301185) (xy 41.795506 98.380537) (xy 41.90582 98.439502) (xy 42.025518 98.475812) + (xy 42.15 98.488072) (xy 42.71425 98.485) (xy 42.873 98.32625) (xy 42.873 97.127) (xy 43.127 97.127) + (xy 43.127 98.32625) (xy 43.28575 98.485) (xy 43.85 98.488072) (xy 43.974482 98.475812) (xy 44.09418 98.439502) + (xy 44.204494 98.380537) (xy 44.301185 98.301185) (xy 44.380537 98.204494) (xy 44.439502 98.09418) (xy 44.475812 97.974482) + (xy 44.488072 97.85) (xy 44.486848 97.625) (xy 47.636928 97.625) (xy 47.649188 97.749482) (xy 47.685498 97.86918) + (xy 47.744463 97.979494) (xy 47.823815 98.076185) (xy 47.920506 98.155537) (xy 48.03082 98.214502) (xy 48.150518 98.250812) + (xy 48.275 98.263072) (xy 48.71425 98.26) (xy 48.873 98.10125) (xy 48.873 97.1645) (xy 49.127 97.1645) + (xy 49.127 98.10125) (xy 49.28575 98.26) (xy 49.725 98.263072) (xy 49.849482 98.250812) (xy 49.96918 98.214502) + (xy 50.079494 98.155537) (xy 50.176185 98.076185) (xy 50.255537 97.979494) (xy 50.273971 97.945008) (xy 50.375518 97.975812) + (xy 50.5 97.988072) (xy 50.71425 97.985) (xy 50.873 97.82625) (xy 50.873 97.077) (xy 51.127 97.077) + (xy 51.127 97.82625) (xy 51.28575 97.985) (xy 51.5 97.988072) (xy 51.624482 97.975812) (xy 51.74418 97.939502) + (xy 51.854494 97.880537) (xy 51.951185 97.801185) (xy 52.030537 97.704494) (xy 52.089502 97.59418) (xy 52.125812 97.474482) + (xy 52.138072 97.35) (xy 52.135 97.23575) (xy 51.97625 97.077) (xy 51.127 97.077) (xy 50.873 97.077) + (xy 50.02375 97.077) (xy 49.93625 97.1645) (xy 49.127 97.1645) (xy 48.873 97.1645) (xy 47.79875 97.1645) + (xy 47.64 97.32325) (xy 47.636928 97.625) (xy 44.486848 97.625) (xy 44.485 97.28575) (xy 44.32625 97.127) + (xy 43.127 97.127) (xy 42.873 97.127) (xy 41.67375 97.127) (xy 41.515 97.28575) (xy 41.511928 97.85) + (xy 40.66 97.85) (xy 40.66 96.15) (xy 41.511928 96.15) (xy 41.515 96.71425) (xy 41.67375 96.873) + (xy 42.873 96.873) (xy 42.873 95.67375) (xy 43.127 95.67375) (xy 43.127 96.873) (xy 44.32625 96.873) + (xy 44.485 96.71425) (xy 44.488072 96.15) (xy 44.475812 96.025518) (xy 44.439502 95.90582) (xy 44.380537 95.795506) + (xy 44.301185 95.698815) (xy 44.204494 95.619463) (xy 44.09418 95.560498) (xy 43.974482 95.524188) (xy 43.85 95.511928) + (xy 43.28575 95.515) (xy 43.127 95.67375) (xy 42.873 95.67375) (xy 42.71425 95.515) (xy 42.15 95.511928) + (xy 42.025518 95.524188) (xy 41.90582 95.560498) (xy 41.795506 95.619463) (xy 41.698815 95.698815) (xy 41.619463 95.795506) + (xy 41.560498 95.90582) (xy 41.524188 96.025518) (xy 41.511928 96.15) (xy 40.66 96.15) (xy 40.66 93.7) + (xy 41.761928 93.7) (xy 41.774188 93.824482) (xy 41.810498 93.94418) (xy 41.869463 94.054494) (xy 41.948815 94.151185) + (xy 42.045506 94.230537) (xy 42.15582 94.289502) (xy 42.275518 94.325812) (xy 42.4 94.338072) (xy 42.71425 94.335) + (xy 42.873 94.17625) (xy 42.873 93.127) (xy 41.92375 93.127) (xy 41.765 93.28575) (xy 41.761928 93.7) + (xy 40.66 93.7) (xy 40.66 92.3) (xy 41.761928 92.3) (xy 41.765 92.71425) (xy 41.92375 92.873) + (xy 42.873 92.873) (xy 42.873 91.82375) (xy 42.71425 91.665) (xy 42.4 91.661928) (xy 42.275518 91.674188) + (xy 42.15582 91.710498) (xy 42.045506 91.769463) (xy 41.948815 91.848815) (xy 41.869463 91.945506) (xy 41.810498 92.05582) + (xy 41.774188 92.175518) (xy 41.761928 92.3) (xy 40.66 92.3) (xy 40.66 87.725) (xy 44.736928 87.725) + (xy 44.749188 87.849482) (xy 44.785498 87.96918) (xy 44.844463 88.079494) (xy 44.923815 88.176185) (xy 45.020506 88.255537) + (xy 45.13082 88.314502) (xy 45.250518 88.350812) (xy 45.375 88.363072) (xy 45.67675 88.36) (xy 45.8355 88.20125) + (xy 45.8355 87.127) (xy 44.89875 87.127) (xy 44.74 87.28575) (xy 44.736928 87.725) (xy 40.66 87.725) + (xy 40.66 86.877549) (xy 40.788096 86.916407) (xy 40.976877 86.935) (xy 42.403123 86.935) (xy 42.591904 86.916407) + (xy 42.834127 86.842929) (xy 43.057362 86.723608) (xy 43.253028 86.563028) (xy 43.413608 86.367362) (xy 43.462976 86.275) + (xy 44.736928 86.275) (xy 44.74 86.71425) (xy 44.89875 86.873) (xy 45.8355 86.873) (xy 45.8355 85.79875) + (xy 45.67675 85.64) (xy 45.375 85.636928) (xy 45.250518 85.649188) (xy 45.13082 85.685498) (xy 45.020506 85.744463) + (xy 44.923815 85.823815) (xy 44.844463 85.920506) (xy 44.785498 86.03082) (xy 44.749188 86.150518) (xy 44.736928 86.275) + (xy 43.462976 86.275) (xy 43.532929 86.144127) (xy 43.606407 85.901904) (xy 43.631217 85.65) (xy 43.606407 85.398096) + (xy 43.579683 85.31) (xy 44.985057 85.31) (xy 45.004357 85.322629) (xy 45.053948 85.35608) (xy 45.062085 85.360406) + (xy 45.088027 85.373969) (xy 45.143494 85.396379) (xy 45.198653 85.419566) (xy 45.207475 85.422229) (xy 45.23556 85.430494) + (xy 45.294328 85.441703) (xy 45.352909 85.453728) (xy 45.36208 85.454627) (xy 45.362085 85.454627) (xy 45.362088 85.454628) + (xy 45.362091 85.454628) (xy 45.391234 85.45728) (xy 45.451048 85.456862) (xy 45.510862 85.45728) (xy 45.520033 85.456381) + (xy 45.549148 85.453321) (xy 45.607746 85.441292) (xy 45.666515 85.430081) (xy 45.675337 85.427417) (xy 45.703302 85.41876) + (xy 45.758422 85.395589) (xy 45.813884 85.373183) (xy 45.822021 85.368857) (xy 45.847773 85.354934) (xy 45.880776 85.332674) + (xy 46.044326 85.420094) (xy 46.2677 85.487853) (xy 46.441793 85.505) (xy 47.658207 85.505) (xy 47.8323 85.487853) + (xy 48.055674 85.420094) (xy 48.261536 85.310058) (xy 48.41502 85.184096) (xy 48.41502 85.370901) (xy 48.148993 85.636928) + (xy 47.7 85.636928) (xy 47.526746 85.653992) (xy 47.36015 85.704528) (xy 47.206614 85.786595) (xy 47.072038 85.897038) + (xy 47.066658 85.903594) (xy 47.001185 85.823815) (xy 46.904494 85.744463) (xy 46.79418 85.685498) (xy 46.674482 85.649188) + (xy 46.55 85.636928) (xy 46.24825 85.64) (xy 46.0895 85.79875) (xy 46.0895 86.873) (xy 46.1095 86.873) + (xy 46.1095 87.127) (xy 46.0895 87.127) (xy 46.0895 88.20125) (xy 46.107236 88.218986) (xy 46.099188 88.245518) + (xy 46.086928 88.37) (xy 46.086928 89.43) (xy 46.099188 89.554482) (xy 46.135498 89.67418) (xy 46.194463 89.784494) + (xy 46.273815 89.881185) (xy 46.370506 89.960537) (xy 46.444335 90) (xy 46.370506 90.039463) (xy 46.273815 90.118815) + (xy 46.194463 90.215506) (xy 46.135498 90.32582) (xy 46.099188 90.445518) (xy 46.086928 90.57) (xy 46.086928 91.63) + (xy 46.099188 91.754482) (xy 46.124506 91.837945) (xy 46.022038 91.922038) (xy 46 91.948891) (xy 45.977962 91.922038) + (xy 45.843387 91.811595) (xy 45.689851 91.729528) (xy 45.523255 91.678992) (xy 45.350001 91.661928) (xy 44.649999 91.661928) + (xy 44.476745 91.678992) (xy 44.310149 91.729528) (xy 44.156613 91.811595) (xy 44.075363 91.878276) (xy 44.051185 91.848815) + (xy 43.954494 91.769463) (xy 43.84418 91.710498) (xy 43.724482 91.674188) (xy 43.6 91.661928) (xy 43.28575 91.665) + (xy 43.127 91.82375) (xy 43.127 92.873) (xy 43.147 92.873) (xy 43.147 93.127) (xy 43.127 93.127) + (xy 43.127 94.17625) (xy 43.28575 94.335) (xy 43.6 94.338072) (xy 43.724482 94.325812) (xy 43.84418 94.289502) + (xy 43.954494 94.230537) (xy 44.051185 94.151185) (xy 44.075363 94.121724) (xy 44.156613 94.188405) (xy 44.310149 94.270472) + (xy 44.476745 94.321008) (xy 44.649999 94.338072) (xy 45.350001 94.338072) (xy 45.523255 94.321008) (xy 45.689851 94.270472) + (xy 45.843387 94.188405) (xy 45.977962 94.077962) (xy 46 94.051109) (xy 46.022038 94.077962) (xy 46.156613 94.188405) + (xy 46.310149 94.270472) (xy 46.476745 94.321008) (xy 46.649999 94.338072) (xy 47.350001 94.338072) (xy 47.523255 94.321008) + (xy 47.689851 94.270472) (xy 47.721382 94.253618) (xy 47.704528 94.28515) (xy 47.653992 94.451746) (xy 47.636928 94.625) + (xy 47.636928 95.3) (xy 47.653992 95.473254) (xy 47.704528 95.63985) (xy 47.786595 95.793386) (xy 47.897038 95.927962) + (xy 47.903594 95.933342) (xy 47.823815 95.998815) (xy 47.744463 96.095506) (xy 47.685498 96.20582) (xy 47.649188 96.325518) + (xy 47.636928 96.45) (xy 47.64 96.75175) (xy 47.79875 96.9105) (xy 48.873 96.9105) (xy 48.873 96.8905) + (xy 49.127 96.8905) (xy 49.127 96.9105) (xy 50.20125 96.9105) (xy 50.28875 96.823) (xy 50.873 96.823) + (xy 50.873 96.803) (xy 51.127 96.803) (xy 51.127 96.823) (xy 51.97625 96.823) (xy 52.135 96.66425) + (xy 52.138072 96.55) (xy 52.125812 96.425518) (xy 52.089502 96.30582) (xy 52.030537 96.195506) (xy 51.951185 96.098815) + (xy 51.854494 96.019463) (xy 51.818082 96) (xy 51.854494 95.980537) (xy 51.951185 95.901185) (xy 52.030537 95.804494) + (xy 52.089502 95.69418) (xy 52.125812 95.574482) (xy 52.138072 95.45) (xy 52.138072 94.65) (xy 52.125812 94.525518) + (xy 52.089502 94.40582) (xy 52.030537 94.295506) (xy 51.951185 94.198815) (xy 51.854494 94.119463) (xy 51.74418 94.060498) + (xy 51.624482 94.024188) (xy 51.5 94.011928) (xy 51.235907 94.011928) (xy 51.317205 93.890256) (xy 51.395226 93.701898) + (xy 51.435 93.501939) (xy 51.435 93.298061) (xy 51.395226 93.098102) (xy 51.317205 92.909744) (xy 51.203937 92.740226) + (xy 51.059774 92.596063) (xy 50.890256 92.482795) (xy 50.701898 92.404774) (xy 50.647505 92.393955) (xy 50.628817 92.371183) + (xy 50.494059 92.260589) (xy 50.426563 92.224512) (xy 50.71425 92.2225) (xy 50.873 92.06375) (xy 50.873 91.127) + (xy 51.127 91.127) (xy 51.127 92.06375) (xy 51.28575 92.2225) (xy 51.725 92.225572) (xy 51.849482 92.213312) + (xy 51.96918 92.177002) (xy 52.079494 92.118037) (xy 52.176185 92.038685) (xy 52.255537 91.941994) (xy 52.314502 91.83168) + (xy 52.350812 91.711982) (xy 52.363072 91.5875) (xy 52.36 91.28575) (xy 52.20125 91.127) (xy 51.127 91.127) + (xy 50.873 91.127) (xy 50.853 91.127) (xy 50.853 90.873) (xy 50.873 90.873) (xy 50.873 90.853) + (xy 51.127 90.853) (xy 51.127 90.873) (xy 52.20125 90.873) (xy 52.36 90.71425) (xy 52.363072 90.4125) + (xy 52.350812 90.288018) (xy 52.314502 90.16832) (xy 52.255537 90.058006) (xy 52.176185 89.961315) (xy 52.096406 89.895842) + (xy 52.102962 89.890462) (xy 52.213405 89.755886) (xy 52.295472 89.60235) (xy 52.346008 89.435754) (xy 52.363072 89.2625) + (xy 52.363072 88.5875) (xy 52.346008 88.414246) (xy 52.295472 88.24765) (xy 52.213405 88.094114) (xy 52.102962 87.959538) + (xy 51.968386 87.849095) (xy 51.81485 87.767028) (xy 51.648254 87.716492) (xy 51.475 87.699428) (xy 50.525 87.699428) + (xy 50.351746 87.716492) (xy 50.18515 87.767028) (xy 50.031614 87.849095) (xy 49.897038 87.959538) (xy 49.835 88.035132) + (xy 49.835 87.955969) (xy 49.839281 87.9125) (xy 49.835 87.869031) (xy 49.835 87.869023) (xy 49.822195 87.73901) + (xy 49.771589 87.572187) (xy 49.689411 87.418441) (xy 49.644466 87.363676) (xy 49.606532 87.317453) (xy 49.60653 87.317451) + (xy 49.578817 87.283683) (xy 49.54505 87.255971) (xy 49.314079 87.025) (xy 54.736928 87.025) (xy 54.749188 87.149482) + (xy 54.785498 87.26918) (xy 54.844463 87.379494) (xy 54.923815 87.476185) (xy 55.020506 87.555537) (xy 55.13082 87.614502) + (xy 55.250518 87.650812) (xy 55.375 87.663072) (xy 55.67675 87.66) (xy 55.8355 87.50125) (xy 55.8355 86.427) + (xy 54.89875 86.427) (xy 54.74 86.58575) (xy 54.736928 87.025) (xy 49.314079 87.025) (xy 49.289079 87) + (xy 49.89507 86.394009) (xy 49.928837 86.366297) (xy 49.963702 86.323815) (xy 50.039431 86.231539) (xy 50.045063 86.221002) + (xy 50.121609 86.077793) (xy 50.172215 85.91097) (xy 50.18502 85.780957) (xy 50.18502 85.780949) (xy 50.189301 85.73748) + (xy 50.18502 85.694011) (xy 50.18502 85.025) (xy 54.736928 85.025) (xy 54.749188 85.149482) (xy 54.785498 85.26918) + (xy 54.801972 85.3) (xy 54.785498 85.33082) (xy 54.749188 85.450518) (xy 54.736928 85.575) (xy 54.74 86.01425) + (xy 54.89875 86.173) (xy 55.8355 86.173) (xy 55.8355 84.427) (xy 54.89875 84.427) (xy 54.74 84.58575) + (xy 54.736928 85.025) (xy 50.18502 85.025) (xy 50.18502 83.575) (xy 54.736928 83.575) (xy 54.74 84.01425) + (xy 54.89875 84.173) (xy 55.8355 84.173) (xy 55.8355 83.09875) (xy 55.67675 82.94) (xy 55.375 82.936928) + (xy 55.250518 82.949188) (xy 55.13082 82.985498) (xy 55.020506 83.044463) (xy 54.923815 83.123815) (xy 54.844463 83.220506) + (xy 54.785498 83.33082) (xy 54.749188 83.450518) (xy 54.736928 83.575) (xy 50.18502 83.575) (xy 50.18502 81.975) + (xy 54.699428 81.975) (xy 54.711688 82.099482) (xy 54.747998 82.21918) (xy 54.806963 82.329494) (xy 54.886315 82.426185) + (xy 54.983006 82.505537) (xy 55.09332 82.564502) (xy 55.213018 82.600812) (xy 55.3375 82.613072) (xy 55.63925 82.61) + (xy 55.798 82.45125) (xy 55.798 81.377) (xy 54.86125 81.377) (xy 54.7025 81.53575) (xy 54.699428 81.975) + (xy 50.18502 81.975) (xy 50.18502 81.843485) (xy 50.189301 81.800019) (xy 50.18502 81.756553) (xy 50.18502 81.756543) + (xy 50.172215 81.62653) (xy 50.121609 81.459707) (xy 50.039431 81.305961) (xy 50.009402 81.269371) (xy 49.995226 81.198102) + (xy 49.917205 81.009744) (xy 49.803937 80.840226) (xy 49.719256 80.755545) (xy 50.374801 80.1) (xy 51.161928 80.1) + (xy 51.174188 80.224482) (xy 51.210498 80.34418) (xy 51.269463 80.454494) (xy 51.348815 80.551185) (xy 51.445506 80.630537) + (xy 51.55582 80.689502) (xy 51.675518 80.725812) (xy 51.8 80.738072) (xy 52.21425 80.735) (xy 52.373 80.57625) + (xy 52.373 79.627) (xy 52.627 79.627) (xy 52.627 80.57625) (xy 52.78575 80.735) (xy 53.2 80.738072) + (xy 53.324482 80.725812) (xy 53.44418 80.689502) (xy 53.554494 80.630537) (xy 53.651185 80.551185) (xy 53.730537 80.454494) + (xy 53.789502 80.34418) (xy 53.825812 80.224482) (xy 53.838072 80.1) (xy 53.836851 79.975) (xy 54.699428 79.975) + (xy 54.711688 80.099482) (xy 54.747998 80.21918) (xy 54.764472 80.25) (xy 54.747998 80.28082) (xy 54.711688 80.400518) + (xy 54.699428 80.525) (xy 54.7025 80.96425) (xy 54.86125 81.123) (xy 55.798 81.123) (xy 55.798 79.377) + (xy 54.86125 79.377) (xy 54.7025 79.53575) (xy 54.699428 79.975) (xy 53.836851 79.975) (xy 53.835 79.78575) + (xy 53.67625 79.627) (xy 52.627 79.627) (xy 52.373 79.627) (xy 51.32375 79.627) (xy 51.165 79.78575) + (xy 51.161928 80.1) (xy 50.374801 80.1) (xy 51.212776 79.262026) (xy 51.32375 79.373) (xy 52.373 79.373) + (xy 52.373 79.353) (xy 52.627 79.353) (xy 52.627 79.373) (xy 53.67625 79.373) (xy 53.835 79.21425) + (xy 53.838072 78.9) (xy 53.825812 78.775518) (xy 53.789502 78.65582) (xy 53.730537 78.545506) (xy 53.651185 78.448815) + (xy 53.621724 78.424637) (xy 53.688405 78.343387) (xy 53.770472 78.189851) (xy 53.821008 78.023255) (xy 53.838072 77.850001) + (xy 53.838072 77.636729) (xy 54.187457 77.287345) + ) + ) + (filled_polygon + (pts + (xy 99.340001 99.34) (xy 63.403889 99.34) (xy 63.451185 99.301185) (xy 63.530537 99.204494) (xy 63.589502 99.09418) + (xy 63.625812 98.974482) (xy 63.638072 98.85) (xy 63.638072 93.35) (xy 63.625812 93.225518) (xy 63.589502 93.10582) + (xy 63.530537 92.995506) (xy 63.451185 92.898815) (xy 63.354494 92.819463) (xy 63.24418 92.760498) (xy 63.124482 92.724188) + (xy 63 92.711928) (xy 62.76 92.711928) (xy 62.76 91.249803) (xy 63.836009 90.173796) (xy 63.865002 90.150002) + (xy 63.888796 90.121009) (xy 63.8888 90.121005) (xy 63.959974 90.034278) (xy 63.964393 90.026011) (xy 64.030547 89.902248) + (xy 64.074004 89.758987) (xy 64.085001 89.647334) (xy 64.085001 89.647325) (xy 64.088677 89.610002) (xy 64.085001 89.572679) + (xy 64.085001 86.22621) (xy 64.38999 85.921221) (xy 64.389991 90.112658) (xy 64.386314 90.14999) (xy 64.389991 90.187323) + (xy 64.400988 90.298976) (xy 64.406015 90.315547) (xy 64.444444 90.442236) (xy 64.515016 90.574266) (xy 64.565 90.635171) + (xy 64.565 90.701939) (xy 64.604774 90.901898) (xy 64.682795 91.090256) (xy 64.796063 91.259774) (xy 64.940226 91.403937) + (xy 65.109744 91.517205) (xy 65.298102 91.595226) (xy 65.498061 91.635) (xy 65.701939 91.635) (xy 65.901898 91.595226) + (xy 65.905672 91.593663) (xy 68.323011 94.011003) (xy 68.346809 94.040001) (xy 68.375807 94.063799) (xy 68.462533 94.134974) + (xy 68.591553 94.203937) (xy 68.594563 94.205546) (xy 68.737824 94.249003) (xy 68.849477 94.26) (xy 68.849486 94.26) + (xy 68.886809 94.263676) (xy 68.924132 94.26) (xy 70.075868 94.26) (xy 70.11319 94.263676) (xy 70.150512 94.26) + (xy 70.150523 94.26) (xy 70.262176 94.249003) (xy 70.405437 94.205546) (xy 70.537466 94.134974) (xy 70.653191 94.040001) + (xy 70.676993 94.010998) (xy 71.112993 93.574999) (xy 77.305 93.574999) (xy 77.305 93.641939) (xy 77.344774 93.841898) + (xy 77.422795 94.030256) (xy 77.536063 94.199774) (xy 77.680226 94.343937) (xy 77.849744 94.457205) (xy 78.038102 94.535226) + (xy 78.094956 94.546535) (xy 78.298431 94.750009) (xy 78.893479 95.345058) (xy 78.921192 95.378826) (xy 78.95496 95.406539) + (xy 78.954962 95.406541) (xy 79.007917 95.45) (xy 79.05595 95.48942) (xy 79.209696 95.571598) (xy 79.376519 95.622204) + (xy 79.506532 95.635009) (xy 79.506542 95.635009) (xy 79.550008 95.63929) (xy 79.593474 95.635009) (xy 88.657897 95.635009) + (xy 88.701366 95.63929) (xy 88.744835 95.635009) (xy 88.744843 95.635009) (xy 88.874856 95.622204) (xy 89.041679 95.571598) + (xy 89.195425 95.48942) (xy 89.330183 95.378826) (xy 89.3579 95.345053) (xy 98.270061 86.432893) (xy 98.303827 86.405182) + (xy 98.334866 86.367362) (xy 98.40115 86.286595) (xy 98.414421 86.270424) (xy 98.496599 86.116678) (xy 98.547205 85.949855) + (xy 98.56001 85.819842) (xy 98.56001 85.819832) (xy 98.564291 85.776366) (xy 98.56001 85.732899) (xy 98.56001 74.718479) + (xy 98.564291 74.67501) (xy 98.56001 74.631541) (xy 98.56001 74.631533) (xy 98.547205 74.50152) (xy 98.542501 74.486014) + (xy 98.496599 74.334696) (xy 98.414421 74.180951) (xy 98.331542 74.079963) (xy 98.33154 74.079961) (xy 98.303827 74.046193) + (xy 98.270059 74.01848) (xy 97.006535 72.754957) (xy 96.995226 72.698102) (xy 96.917205 72.509744) (xy 96.803937 72.340226) + (xy 96.659774 72.196063) (xy 96.490256 72.082795) (xy 96.301898 72.004774) (xy 96.101939 71.965) (xy 96.096101 71.965) + (xy 95.97349 71.927805) (xy 95.885019 71.919092) (xy 95.885019 66.104532) (xy 95.888696 66.067199) (xy 95.874022 65.918213) + (xy 95.84878 65.835) (xy 95.830565 65.774952) (xy 95.759993 65.642923) (xy 95.747586 65.627805) (xy 95.688819 65.556196) + (xy 95.688814 65.556191) (xy 95.66502 65.527198) (xy 95.636029 65.503406) (xy 93.0466 62.913977) (xy 93.022802 62.884979) + (xy 92.907077 62.790006) (xy 92.775048 62.719434) (xy 92.631787 62.675977) (xy 92.520134 62.66498) (xy 92.520125 62.66498) + (xy 92.482802 62.661304) (xy 92.445479 62.66498) (xy 86.339533 62.664982) (xy 86.3022 62.661305) (xy 86.153214 62.675979) + (xy 86.009954 62.719436) (xy 85.877924 62.790008) (xy 85.791198 62.861182) (xy 85.791193 62.861187) (xy 85.7622 62.884981) + (xy 85.738406 62.913974) (xy 77.46001 71.192369) (xy 77.46001 68.316013) (xy 77.464291 68.272544) (xy 77.46001 68.229075) + (xy 77.46001 68.229067) (xy 77.447205 68.099054) (xy 77.396599 67.932231) (xy 77.314421 67.778485) (xy 77.203827 67.643727) + (xy 77.170055 67.616011) (xy 76.78399 67.229946) (xy 76.756273 67.196173) (xy 76.621515 67.085579) (xy 76.467769 67.003401) + (xy 76.300946 66.952795) (xy 76.170933 66.93999) (xy 76.170925 66.93999) (xy 76.127456 66.935709) (xy 76.083987 66.93999) + (xy 74.643476 66.93999) (xy 74.600009 66.935709) (xy 74.556543 66.93999) (xy 74.556533 66.93999) (xy 74.42652 66.952795) + (xy 74.259697 67.003401) (xy 74.105951 67.085579) (xy 74.105949 67.08558) (xy 74.10595 67.08558) (xy 74.004963 67.168458) + (xy 74.004961 67.16846) (xy 73.971193 67.196173) (xy 73.94348 67.229941) (xy 73.536493 67.636928) (xy 73.0875 67.636928) + (xy 72.914246 67.653992) (xy 72.74765 67.704528) (xy 72.594114 67.786595) (xy 72.459538 67.897038) (xy 72.349095 68.031614) + (xy 72.267028 68.18515) (xy 72.216492 68.351746) (xy 72.199428 68.525) (xy 72.199428 69.475) (xy 72.216492 69.648254) + (xy 72.267028 69.81485) (xy 72.349095 69.968386) (xy 72.39379 70.022847) (xy 72.386595 70.031614) (xy 72.31443 70.166626) + (xy 71.724535 69.576732) (xy 71.7225 69.28575) (xy 71.56375 69.127) (xy 70.627 69.127) (xy 70.627 69.147) + (xy 70.373 69.147) (xy 70.373 69.127) (xy 70.353 69.127) (xy 70.353 68.873) (xy 70.373 68.873) + (xy 70.373 67.79875) (xy 70.627 67.79875) (xy 70.627 68.873) (xy 71.56375 68.873) (xy 71.7225 68.71425) + (xy 71.725572 68.275) (xy 71.713312 68.150518) (xy 71.677002 68.03082) (xy 71.618037 67.920506) (xy 71.538685 67.823815) + (xy 71.441994 67.744463) (xy 71.33168 67.685498) (xy 71.211982 67.649188) (xy 71.0875 67.636928) (xy 70.78575 67.64) + (xy 70.627 67.79875) (xy 70.373 67.79875) (xy 70.21425 67.64) (xy 70.09751 67.638812) (xy 70.09751 67.201364) + (xy 70.110498 67.24418) (xy 70.169463 67.354494) (xy 70.248815 67.451185) (xy 70.345506 67.530537) (xy 70.45582 67.589502) + (xy 70.575518 67.625812) (xy 70.7 67.638072) (xy 70.81425 67.635) (xy 70.973 67.47625) (xy 70.973 66.127) + (xy 71.227 66.127) (xy 71.227 67.47625) (xy 71.38575 67.635) (xy 71.5 67.638072) (xy 71.624482 67.625812) + (xy 71.74418 67.589502) (xy 71.854494 67.530537) (xy 71.951185 67.451185) (xy 72.030537 67.354494) (xy 72.089502 67.24418) + (xy 72.125812 67.124482) (xy 72.138072 67) (xy 72.135 66.28575) (xy 71.97625 66.127) (xy 71.227 66.127) + (xy 70.973 66.127) (xy 70.953 66.127) (xy 70.953 65.873) (xy 70.973 65.873) (xy 70.973 64.52375) + (xy 71.227 64.52375) (xy 71.227 65.873) (xy 71.97625 65.873) (xy 72.135 65.71425) (xy 72.138072 65) + (xy 72.125812 64.875518) (xy 72.089502 64.75582) (xy 72.030537 64.645506) (xy 71.951185 64.548815) (xy 71.854494 64.469463) + (xy 71.74418 64.410498) (xy 71.624482 64.374188) (xy 71.5 64.361928) (xy 71.38575 64.365) (xy 71.227 64.52375) + (xy 70.973 64.52375) (xy 70.81425 64.365) (xy 70.7 64.361928) (xy 70.575518 64.374188) (xy 70.45582 64.410498) + (xy 70.345506 64.469463) (xy 70.248815 64.548815) (xy 70.169463 64.645506) (xy 70.110498 64.75582) (xy 70.09751 64.798636) + (xy 70.09751 64.174833) (xy 70.101186 64.13751) (xy 70.09751 64.100187) (xy 70.09751 64.100177) (xy 70.086513 63.988524) + (xy 70.043056 63.845263) (xy 69.972484 63.713234) (xy 69.877511 63.597509) (xy 69.848513 63.573711) (xy 69.14121 62.866408) + (xy 69.185 62.64626) (xy 69.185 62.35374) (xy 69.127932 62.066842) (xy 69.01599 61.796589) (xy 68.853475 61.553368) + (xy 68.646632 61.346525) (xy 68.403411 61.18401) (xy 68.133158 61.072068) (xy 67.84626 61.015) (xy 67.55374 61.015) + (xy 67.266842 61.072068) (xy 66.996589 61.18401) (xy 66.753368 61.346525) (xy 66.546525 61.553368) (xy 66.43 61.72776) + (xy 66.313475 61.553368) (xy 66.106632 61.346525) (xy 65.863411 61.18401) (xy 65.593158 61.072068) (xy 65.30626 61.015) + (xy 65.01374 61.015) (xy 64.726842 61.072068) (xy 64.456589 61.18401) (xy 64.253508 61.319704) (xy 63.593803 60.66) + (xy 99.34 60.66) + ) + ) + (filled_polygon + (pts + (xy 89.515 65.21425) (xy 89.67375 65.373) (xy 90.873 65.373) (xy 90.873 65.353) (xy 91.127 65.353) + (xy 91.127 65.373) (xy 91.147 65.373) (xy 91.147 65.627) (xy 91.127 65.627) (xy 91.127 66.82625) + (xy 91.28575 66.985) (xy 91.85 66.988072) (xy 91.974482 66.975812) (xy 92.09418 66.939502) (xy 92.204494 66.880537) + (xy 92.301185 66.801185) (xy 92.380537 66.704494) (xy 92.439502 66.59418) (xy 92.475812 66.474482) (xy 92.488072 66.35) + (xy 92.485 65.78575) (xy 92.326252 65.627002) (xy 92.337203 65.627002) (xy 93.465001 66.754801) (xy 93.465002 69.465) + (xy 93.398061 69.465) (xy 93.198102 69.504774) (xy 93.009744 69.582795) (xy 92.961546 69.615) (xy 92.607445 69.615) + (xy 92.602962 69.609538) (xy 92.596406 69.604158) (xy 92.676185 69.538685) (xy 92.755537 69.441994) (xy 92.814502 69.33168) + (xy 92.850812 69.211982) (xy 92.863072 69.0875) (xy 92.86 68.78575) (xy 92.70125 68.627) (xy 91.627 68.627) + (xy 91.627 68.647) (xy 91.373 68.647) (xy 91.373 68.627) (xy 90.73875 68.627) (xy 90.70125 68.5895) + (xy 89.627 68.5895) (xy 89.627 68.6095) (xy 89.373 68.6095) (xy 89.373 68.5895) (xy 88.29875 68.5895) + (xy 88.14 68.74825) (xy 88.136928 69.05) (xy 88.149188 69.174482) (xy 88.185498 69.29418) (xy 88.244463 69.404494) + (xy 88.323815 69.501185) (xy 88.403594 69.566658) (xy 88.397038 69.572038) (xy 88.36178 69.615) (xy 88.119614 69.615) + (xy 88.088405 69.556613) (xy 87.977962 69.422038) (xy 87.843387 69.311595) (xy 87.689851 69.229528) (xy 87.523255 69.178992) + (xy 87.350001 69.161928) (xy 86.649999 69.161928) (xy 86.476745 69.178992) (xy 86.310149 69.229528) (xy 86.156613 69.311595) + (xy 86.022038 69.422038) (xy 86 69.448891) (xy 85.977962 69.422038) (xy 85.843387 69.311595) (xy 85.689851 69.229528) + (xy 85.523255 69.178992) (xy 85.350001 69.161928) (xy 84.649999 69.161928) (xy 84.476745 69.178992) (xy 84.310149 69.229528) + (xy 84.156613 69.311595) (xy 84.022038 69.422038) (xy 83.911595 69.556613) (xy 83.829528 69.710149) (xy 83.778992 69.876745) + (xy 83.761928 70.049999) (xy 83.761928 70.950001) (xy 83.778992 71.123255) (xy 83.829528 71.289851) (xy 83.911595 71.443387) + (xy 84.022038 71.577962) (xy 84.156613 71.688405) (xy 84.24 71.732977) (xy 84.240001 73.195197) (xy 83.653801 73.781398) + (xy 83.621637 73.775) (xy 83.378363 73.775) (xy 83.139764 73.82246) (xy 82.915008 73.915557) (xy 82.712733 74.050713) + (xy 82.61 74.153446) (xy 82.507267 74.050713) (xy 82.304992 73.915557) (xy 82.080236 73.82246) (xy 81.841637 73.775) + (xy 81.598363 73.775) (xy 81.359764 73.82246) (xy 81.135008 73.915557) (xy 80.932733 74.050713) (xy 80.760713 74.222733) + (xy 80.625557 74.425008) (xy 80.53246 74.649764) (xy 80.485 74.888363) (xy 80.485 75.131637) (xy 80.53246 75.370236) + (xy 80.561357 75.44) (xy 80.032419 75.44) (xy 80 75.436807) (xy 79.967581 75.44) (xy 79.870617 75.44955) + (xy 79.746207 75.48729) (xy 79.63155 75.548575) (xy 79.531052 75.631052) (xy 79.448575 75.73155) (xy 79.38729 75.846207) + (xy 79.34955 75.970617) (xy 79.336807 76.1) (xy 79.340001 76.132429) (xy 79.34 84.567581) (xy 79.336807 84.6) + (xy 79.34955 84.729383) (xy 79.38729 84.853793) (xy 79.448575 84.96845) (xy 79.523709 85.06) (xy 79.531052 85.068948) + (xy 79.63155 85.151425) (xy 79.707745 85.192152) (xy 79.64246 85.349764) (xy 79.595 85.588363) (xy 79.595 85.831637) + (xy 79.64246 86.070236) (xy 79.735557 86.294992) (xy 79.870713 86.497267) (xy 80.042733 86.669287) (xy 80.226406 86.792013) + (xy 80.18515 86.804528) (xy 80.031614 86.886595) (xy 79.897038 86.997038) (xy 79.786595 87.131614) (xy 79.704528 87.28515) + (xy 79.653992 87.451746) (xy 79.636928 87.625) (xy 79.636928 88.3) (xy 79.653992 88.473254) (xy 79.704528 88.63985) + (xy 79.786595 88.793386) (xy 79.897038 88.927962) (xy 79.903594 88.933342) (xy 79.823815 88.998815) (xy 79.744463 89.095506) + (xy 79.685498 89.20582) (xy 79.649188 89.325518) (xy 79.636928 89.45) (xy 79.64 89.75175) (xy 79.79875 89.9105) + (xy 80.873 89.9105) (xy 80.873 89.8905) (xy 81.127 89.8905) (xy 81.127 89.9105) (xy 82.873 89.9105) + (xy 82.873 89.8905) (xy 83.127 89.8905) (xy 83.127 89.9105) (xy 84.857999 89.9105) (xy 84.857999 89.8905) + (xy 85.111999 89.8905) (xy 85.111999 89.9105) (xy 86.186249 89.9105) (xy 86.223749 89.873) (xy 86.873 89.873) + (xy 86.873 89.853) (xy 87.127 89.853) (xy 87.127 89.873) (xy 87.76125 89.873) (xy 87.79875 89.9105) + (xy 88.873 89.9105) (xy 88.873 89.8905) (xy 89.127 89.8905) (xy 89.127 89.9105) (xy 90.847999 89.9105) + (xy 90.847999 89.8905) (xy 91.101999 89.8905) (xy 91.101999 89.9105) (xy 91.121999 89.9105) (xy 91.121999 90.1645) + (xy 91.101999 90.1645) (xy 91.101999 90.1845) (xy 90.847999 90.1845) (xy 90.847999 90.1645) (xy 89.127 90.1645) + (xy 89.127 91.10125) (xy 89.28575 91.26) (xy 89.725 91.263072) (xy 89.849482 91.250812) (xy 89.96918 91.214502) + (xy 89.9875 91.20471) (xy 90.005819 91.214502) (xy 90.125517 91.250812) (xy 90.249999 91.263072) (xy 90.30067 91.262718) + (xy 88.148387 93.415001) (xy 87.985704 93.415001) (xy 87.985 93.28575) (xy 87.82625 93.127) (xy 86.627 93.127) + (xy 86.627 93.147) (xy 86.373 93.147) (xy 86.373 93.127) (xy 85.17375 93.127) (xy 85.015 93.28575) + (xy 85.014296 93.415001) (xy 80.362805 93.415001) (xy 79.251805 92.304002) (xy 79.228002 92.274998) (xy 79.112277 92.180025) + (xy 79.056105 92.15) (xy 85.011928 92.15) (xy 85.015 92.71425) (xy 85.17375 92.873) (xy 86.373 92.873) + (xy 86.373 91.67375) (xy 86.627 91.67375) (xy 86.627 92.873) (xy 87.82625 92.873) (xy 87.985 92.71425) + (xy 87.988072 92.15) (xy 87.975812 92.025518) (xy 87.939502 91.90582) (xy 87.880537 91.795506) (xy 87.801185 91.698815) + (xy 87.704494 91.619463) (xy 87.59418 91.560498) (xy 87.474482 91.524188) (xy 87.35 91.511928) (xy 86.78575 91.515) + (xy 86.627 91.67375) (xy 86.373 91.67375) (xy 86.21425 91.515) (xy 85.65 91.511928) (xy 85.525518 91.524188) + (xy 85.40582 91.560498) (xy 85.295506 91.619463) (xy 85.198815 91.698815) (xy 85.119463 91.795506) (xy 85.060498 91.90582) + (xy 85.024188 92.025518) (xy 85.011928 92.15) (xy 79.056105 92.15) (xy 78.980248 92.109453) (xy 78.836987 92.065996) + (xy 78.725334 92.054999) (xy 78.725323 92.054999) (xy 78.688001 92.051323) (xy 78.650679 92.054999) (xy 71.269402 92.054999) + (xy 72.699401 90.625) (xy 79.636928 90.625) (xy 79.649188 90.749482) (xy 79.685498 90.86918) (xy 79.744463 90.979494) + (xy 79.823815 91.076185) (xy 79.920506 91.155537) (xy 80.03082 91.214502) (xy 80.150518 91.250812) (xy 80.275 91.263072) + (xy 80.71425 91.26) (xy 80.873 91.10125) (xy 80.873 90.1645) (xy 81.127 90.1645) (xy 81.127 91.10125) + (xy 81.28575 91.26) (xy 81.725 91.263072) (xy 81.849482 91.250812) (xy 81.96918 91.214502) (xy 82 91.198028) + (xy 82.03082 91.214502) (xy 82.150518 91.250812) (xy 82.275 91.263072) (xy 82.71425 91.26) (xy 82.873 91.10125) + (xy 82.873 90.1645) (xy 83.127 90.1645) (xy 83.127 91.10125) (xy 83.28575 91.26) (xy 83.725 91.263072) + (xy 83.849482 91.250812) (xy 83.96918 91.214502) (xy 83.9925 91.202037) (xy 84.015819 91.214502) (xy 84.135517 91.250812) + (xy 84.259999 91.263072) (xy 84.699249 91.26) (xy 84.857999 91.10125) (xy 84.857999 90.1645) (xy 85.111999 90.1645) + (xy 85.111999 91.10125) (xy 85.270749 91.26) (xy 85.709999 91.263072) (xy 85.834481 91.250812) (xy 85.954179 91.214502) + (xy 86.027578 91.175269) (xy 86.03082 91.177002) (xy 86.150518 91.213312) (xy 86.275 91.225572) (xy 86.71425 91.2225) + (xy 86.873 91.06375) (xy 86.873 90.127) (xy 87.127 90.127) (xy 87.127 91.06375) (xy 87.28575 91.2225) + (xy 87.725 91.225572) (xy 87.849482 91.213312) (xy 87.963747 91.17865) (xy 88.03082 91.214502) (xy 88.150518 91.250812) + (xy 88.275 91.263072) (xy 88.71425 91.26) (xy 88.873 91.10125) (xy 88.873 90.1645) (xy 88.23875 90.1645) + (xy 88.20125 90.127) (xy 87.127 90.127) (xy 86.873 90.127) (xy 85.79875 90.127) (xy 85.76125 90.1645) + (xy 85.111999 90.1645) (xy 84.857999 90.1645) (xy 83.127 90.1645) (xy 82.873 90.1645) (xy 81.127 90.1645) + (xy 80.873 90.1645) (xy 79.79875 90.1645) (xy 79.64 90.32325) (xy 79.636928 90.625) (xy 72.699401 90.625) + (xy 78.511004 84.813398) (xy 78.540001 84.789601) (xy 78.634974 84.673876) (xy 78.705546 84.541847) (xy 78.749003 84.398586) + (xy 78.76 84.286933) (xy 78.76 84.286932) (xy 78.763677 84.2496) (xy 78.76 84.212267) (xy 78.76 73.314801) + (xy 84.199801 67.875) (xy 88.136928 67.875) (xy 88.14 68.17675) (xy 88.29875 68.3355) (xy 89.373 68.3355) + (xy 89.373 67.39875) (xy 89.627 67.39875) (xy 89.627 68.3355) (xy 90.26125 68.3355) (xy 90.29875 68.373) + (xy 91.373 68.373) (xy 91.373 67.43625) (xy 91.627 67.43625) (xy 91.627 68.373) (xy 92.70125 68.373) + (xy 92.86 68.21425) (xy 92.863072 67.9125) (xy 92.850812 67.788018) (xy 92.814502 67.66832) (xy 92.755537 67.558006) + (xy 92.676185 67.461315) (xy 92.579494 67.381963) (xy 92.46918 67.322998) (xy 92.349482 67.286688) (xy 92.225 67.274428) + (xy 91.78575 67.2775) (xy 91.627 67.43625) (xy 91.373 67.43625) (xy 91.21425 67.2775) (xy 90.775 67.274428) + (xy 90.650518 67.286688) (xy 90.536253 67.32135) (xy 90.46918 67.285498) (xy 90.349482 67.249188) (xy 90.225 67.236928) + (xy 89.78575 67.24) (xy 89.627 67.39875) (xy 89.373 67.39875) (xy 89.21425 67.24) (xy 88.775 67.236928) + (xy 88.650518 67.249188) (xy 88.53082 67.285498) (xy 88.420506 67.344463) (xy 88.323815 67.423815) (xy 88.244463 67.520506) + (xy 88.185498 67.63082) (xy 88.149188 67.750518) (xy 88.136928 67.875) (xy 84.199801 67.875) (xy 85.724801 66.35) + (xy 89.511928 66.35) (xy 89.524188 66.474482) (xy 89.560498 66.59418) (xy 89.619463 66.704494) (xy 89.698815 66.801185) + (xy 89.795506 66.880537) (xy 89.90582 66.939502) (xy 90.025518 66.975812) (xy 90.15 66.988072) (xy 90.71425 66.985) + (xy 90.873 66.82625) (xy 90.873 65.627) (xy 89.67375 65.627) (xy 89.515 65.78575) (xy 89.511928 66.35) + (xy 85.724801 66.35) (xy 86.989803 65.084999) (xy 89.514296 65.084999) + ) + ) + (filled_polygon + (pts + (xy 48.035498 89.67418) (xy 48.094463 89.784494) (xy 48.127 89.824141) (xy 48.127 89.90625) (xy 48.264853 90.044103) + (xy 48.173815 90.118815) (xy 48.094463 90.215506) (xy 48.035498 90.32582) (xy 48 90.442841) (xy 47.964502 90.32582) + (xy 47.905537 90.215506) (xy 47.826185 90.118815) (xy 47.735147 90.044103) (xy 47.873 89.90625) (xy 47.873 89.824141) + (xy 47.905537 89.784494) (xy 47.964502 89.67418) (xy 48 89.557159) + ) + ) + (filled_polygon + (pts + (xy 49.897038 89.890462) (xy 49.903594 89.895842) (xy 49.823815 89.961315) (xy 49.744463 90.058006) (xy 49.716297 90.1107) + (xy 49.629494 90.039463) (xy 49.555665 90) (xy 49.629494 89.960537) (xy 49.726185 89.881185) (xy 49.784605 89.81) + (xy 49.831005 89.81) + ) + ) + (filled_polygon + (pts + (xy 67.5895 85.373) (xy 67.6095 85.373) (xy 67.6095 85.627) (xy 67.5895 85.627) (xy 67.5895 87.373) + (xy 67.6095 87.373) (xy 67.6095 87.627) (xy 67.5895 87.627) (xy 67.5895 88.70125) (xy 67.74825 88.86) + (xy 68.05 88.863072) (xy 68.174482 88.850812) (xy 68.29418 88.814502) (xy 68.404494 88.755537) (xy 68.501185 88.676185) + (xy 68.566658 88.596406) (xy 68.572038 88.602962) (xy 68.615001 88.63822) (xy 68.615 89.380386) (xy 68.556613 89.411595) + (xy 68.422038 89.522038) (xy 68.311595 89.656613) (xy 68.244239 89.782627) (xy 67.30999 88.848379) (xy 67.30999 88.72676) + (xy 67.3355 88.70125) (xy 67.3355 87.627) (xy 67.3155 87.627) (xy 67.3155 87.373) (xy 67.3355 87.373) + (xy 67.3355 85.627) (xy 67.3155 85.627) (xy 67.3155 85.373) (xy 67.3355 85.373) (xy 67.3355 85.353) + (xy 67.5895 85.353) + ) + ) + (filled_polygon + (pts + (xy 96.79001 85.409786) (xy 92.869999 89.329797) (xy 92.869999 86.875798) (xy 92.888516 86.884237) (xy 93.125313 86.94) + (xy 93.368438 86.948495) (xy 93.608549 86.909395) (xy 93.836418 86.824202) (xy 93.912852 86.783348) (xy 93.960159 86.559764) + (xy 93.29 85.889605) (xy 93.275858 85.903748) (xy 93.096253 85.724143) (xy 93.110395 85.71) (xy 93.096253 85.695858) + (xy 93.275858 85.516253) (xy 93.29 85.530395) (xy 93.304143 85.516253) (xy 93.483748 85.695858) (xy 93.469605 85.71) + (xy 94.139764 86.380159) (xy 94.363348 86.332852) (xy 94.464237 86.111484) (xy 94.52 85.874687) (xy 94.528495 85.631562) + (xy 94.489395 85.391451) (xy 94.44025 85.26) (xy 96.79001 85.26) + ) + ) + (filled_polygon + (pts + (xy 46.307 83.148276) (xy 46.2677 83.152147) (xy 46.26 83.154483) (xy 46.26 83.038072) (xy 46.307 83.038072) + ) + ) + (filled_polygon + (pts + (xy 70.265 73.93175) (xy 70.276063 74.033561) (xy 70.276202 74.033997) (xy 70.275629 74.035887) (xy 70.261928 74.175) + (xy 70.261928 74.325) (xy 70.275629 74.464113) (xy 70.286515 74.5) (xy 70.275629 74.535887) (xy 70.261928 74.675) + (xy 70.261928 74.825) (xy 70.275629 74.964113) (xy 70.286515 74.999999) (xy 70.275629 75.035887) (xy 70.261928 75.175) + (xy 70.261928 75.325) (xy 70.275629 75.464113) (xy 70.286515 75.5) (xy 70.275629 75.535887) (xy 70.261928 75.675) + (xy 70.261928 75.825) (xy 70.275629 75.964113) (xy 70.286515 76) (xy 70.275629 76.035887) (xy 70.261928 76.175) + (xy 70.261928 76.325) (xy 70.275629 76.464113) (xy 70.286515 76.5) (xy 70.275629 76.535887) (xy 70.261928 76.675) + (xy 70.261928 76.825) (xy 70.275629 76.964113) (xy 70.286515 77) (xy 70.275629 77.035887) (xy 70.261928 77.175) + (xy 70.261928 77.325) (xy 70.275629 77.464113) (xy 70.286515 77.5) (xy 70.275629 77.535887) (xy 70.261928 77.675) + (xy 70.261928 77.825) (xy 70.275629 77.964113) (xy 70.286515 78) (xy 70.275629 78.035887) (xy 70.261928 78.175) + (xy 70.261928 78.325) (xy 70.275629 78.464113) (xy 70.286515 78.5) (xy 70.275629 78.535887) (xy 70.261928 78.675) + (xy 70.261928 78.825) (xy 70.275629 78.964113) (xy 70.286515 79) (xy 70.275629 79.035887) (xy 70.261928 79.175) + (xy 70.261928 79.325) (xy 70.275629 79.464113) (xy 70.286515 79.5) (xy 70.275629 79.535887) (xy 70.261928 79.675) + (xy 70.261928 79.825) (xy 70.275629 79.964113) (xy 70.276202 79.966003) (xy 70.276063 79.966439) (xy 70.265 80.06825) + (xy 70.340982 80.144232) (xy 70.382102 80.221162) (xy 70.405769 80.25) (xy 70.382102 80.278838) (xy 70.340982 80.355768) + (xy 70.265 80.43175) (xy 70.276063 80.533561) (xy 70.276202 80.533997) (xy 70.275629 80.535887) (xy 70.26989 80.594155) + (xy 70.215958 80.577795) (xy 70.085945 80.56499) (xy 70.085937 80.56499) (xy 70.042468 80.560709) (xy 69.998999 80.56499) + (xy 68.414055 80.56499) (xy 68.284042 80.577795) (xy 68.117219 80.628401) (xy 67.963473 80.710579) (xy 67.828715 80.821173) + (xy 67.718121 80.955931) (xy 67.635943 81.109677) (xy 67.585337 81.2765) (xy 67.584836 81.281586) (xy 67.56825 81.265) + (xy 67.466439 81.276063) (xy 67.466003 81.276202) (xy 67.464113 81.275629) (xy 67.325 81.261928) (xy 67.175 81.261928) + (xy 67.035887 81.275629) (xy 67 81.286515) (xy 66.964113 81.275629) (xy 66.825 81.261928) (xy 66.675 81.261928) + (xy 66.535887 81.275629) (xy 66.5 81.286515) (xy 66.464113 81.275629) (xy 66.325 81.261928) (xy 66.175 81.261928) + (xy 66.035887 81.275629) (xy 66 81.286515) (xy 65.964113 81.275629) (xy 65.825 81.261928) (xy 65.675 81.261928) + (xy 65.535887 81.275629) (xy 65.5 81.286515) (xy 65.464113 81.275629) (xy 65.325 81.261928) (xy 65.175 81.261928) + (xy 65.035887 81.275629) (xy 65 81.286515) (xy 64.964113 81.275629) (xy 64.825 81.261928) (xy 64.675 81.261928) + (xy 64.535887 81.275629) (xy 64.5 81.286515) (xy 64.464113 81.275629) (xy 64.325 81.261928) (xy 64.175 81.261928) + (xy 64.035887 81.275629) (xy 64 81.286515) (xy 63.964113 81.275629) (xy 63.825 81.261928) (xy 63.675 81.261928) + (xy 63.535887 81.275629) (xy 63.5 81.286515) (xy 63.464113 81.275629) (xy 63.325 81.261928) (xy 63.175 81.261928) + (xy 63.035887 81.275629) (xy 63 81.286515) (xy 62.964113 81.275629) (xy 62.825 81.261928) (xy 62.675 81.261928) + (xy 62.535887 81.275629) (xy 62.5 81.286515) (xy 62.464113 81.275629) (xy 62.325 81.261928) (xy 62.175 81.261928) + (xy 62.035887 81.275629) (xy 61.902119 81.316207) (xy 61.778838 81.382102) (xy 61.670782 81.470782) (xy 61.582102 81.578838) + (xy 61.516207 81.702119) (xy 61.475629 81.835887) (xy 61.467837 81.915) (xy 60.938454 81.915) (xy 60.890256 81.882795) + (xy 60.701898 81.804774) (xy 60.635101 81.791487) (xy 60.888516 81.538072) (xy 61.025 81.538072) (xy 61.164113 81.524371) + (xy 61.297881 81.483793) (xy 61.421162 81.417898) (xy 61.529218 81.329218) (xy 61.617898 81.221162) (xy 61.683793 81.097881) + (xy 61.724371 80.964113) (xy 61.738072 80.825) (xy 61.738072 80.675) (xy 61.724371 80.535887) (xy 61.723798 80.533997) + (xy 61.723937 80.533561) (xy 61.735 80.43175) (xy 61.659018 80.355768) (xy 61.617898 80.278838) (xy 61.594231 80.25) + (xy 61.617898 80.221162) (xy 61.659018 80.144232) (xy 61.735 80.06825) (xy 61.723937 79.966439) (xy 61.723798 79.966003) + (xy 61.724371 79.964113) (xy 61.738072 79.825) (xy 61.738072 79.675) (xy 61.724371 79.535887) (xy 61.713485 79.5) + (xy 61.724371 79.464113) (xy 61.738072 79.325) (xy 61.738072 79.175) (xy 61.724371 79.035887) (xy 61.713485 79) + (xy 61.724371 78.964113) (xy 61.738072 78.825) (xy 61.738072 78.675) (xy 61.724371 78.535887) (xy 61.713485 78.5) + (xy 61.724371 78.464113) (xy 61.738072 78.325) (xy 61.738072 78.175) (xy 61.724371 78.035887) (xy 61.713485 78) + (xy 61.724371 77.964113) (xy 61.738072 77.825) (xy 61.738072 77.675) (xy 61.724371 77.535887) (xy 61.713485 77.5) + (xy 61.724371 77.464113) (xy 61.738072 77.325) (xy 61.738072 77.175) (xy 61.724371 77.035887) (xy 61.716518 77.01) + (xy 66.78568 77.01) (xy 66.823002 77.013676) (xy 66.860324 77.01) (xy 66.860335 77.01) (xy 66.971988 76.999003) + (xy 67.115249 76.955546) (xy 67.247278 76.884974) (xy 67.363003 76.790001) (xy 67.386806 76.760997) (xy 70.270802 73.877002) + (xy 70.319748 73.877002) + ) + ) + (filled_polygon + (pts + (xy 73.14 80.75175) (xy 73.29875 80.9105) (xy 74.373 80.9105) (xy 74.373 80.8905) (xy 74.627 80.8905) + (xy 74.627 80.9105) (xy 74.647 80.9105) (xy 74.647 81.1645) (xy 74.627 81.1645) (xy 74.627 81.1845) + (xy 74.373 81.1845) (xy 74.373 81.1645) (xy 73.29875 81.1645) (xy 73.27324 81.19001) (xy 72.984549 81.19001) + (xy 73.033793 81.097881) (xy 73.074371 80.964113) (xy 73.088072 80.825) (xy 73.088072 80.675) (xy 73.074371 80.535887) + (xy 73.074099 80.53499) (xy 73.137793 80.53499) + ) + ) + (filled_polygon + (pts + (xy 48.965002 75.892391) (xy 48.965001 77.465) (xy 48.898061 77.465) (xy 48.698102 77.504774) (xy 48.509744 77.582795) + (xy 48.461546 77.615) (xy 48.456523 77.615) (xy 48.448072 77.615832) (xy 48.448072 77.35) (xy 48.437741 77.245107) + (xy 48.445 77.18175) (xy 48.412753 77.149503) (xy 48.399502 77.10582) (xy 48.340537 76.995506) (xy 48.307725 76.955525) + (xy 48.445 76.81825) (xy 48.432675 76.710674) (xy 48.393529 76.591873) (xy 48.381888 76.571287) (xy 48.441975 76.521975) + (xy 48.590058 76.341536) (xy 48.700094 76.135674) (xy 48.767853 75.9123) (xy 48.787315 75.714704) + ) + ) + (filled_polygon + (pts + (xy 46.2677 76.847853) (xy 46.307 76.851724) (xy 46.307 76.961928) (xy 46.26 76.961928) (xy 46.26 76.845517) + ) + ) + (filled_polygon + (pts + (xy 41.663997 62.9762) (xy 41.634999 62.999998) (xy 41.611201 63.028996) (xy 41.6112 63.028997) (xy 41.540025 63.115723) + (xy 41.469453 63.247753) (xy 41.45021 63.311191) (xy 41.42782 63.385005) (xy 41.425997 63.391014) (xy 41.411323 63.539999) + (xy 41.415 63.577331) (xy 41.414999 70.250866) (xy 41.411323 70.288189) (xy 41.414999 70.325511) (xy 41.414999 70.325521) + (xy 41.425996 70.437174) (xy 41.461967 70.555755) (xy 41.469453 70.580435) (xy 41.540025 70.712465) (xy 41.572477 70.752007) + (xy 41.634998 70.82819) (xy 41.664001 70.851992) (xy 42.348021 71.536012) (xy 42.371819 71.565011) (xy 42.487544 71.659984) + (xy 42.619573 71.730556) (xy 42.762834 71.774013) (xy 42.874487 71.78501) (xy 42.874496 71.78501) (xy 42.911819 71.788686) + (xy 42.949142 71.78501) (xy 44.857622 71.78501) (xy 47.567611 74.495) (xy 46.441793 74.495) (xy 46.2677 74.512147) + (xy 46.044326 74.579906) (xy 45.880762 74.667333) (xy 45.846051 74.64392) (xy 45.837915 74.639593) (xy 45.811972 74.626031) + (xy 45.756531 74.603631) (xy 45.701347 74.580434) (xy 45.692525 74.577771) (xy 45.664441 74.569506) (xy 45.605651 74.558292) + (xy 45.54709 74.546272) (xy 45.537919 74.545373) (xy 45.537916 74.545373) (xy 45.537912 74.545372) (xy 45.537908 74.545372) + (xy 45.508766 74.54272) (xy 45.448952 74.543138) (xy 45.389138 74.54272) (xy 45.379966 74.543619) (xy 45.350852 74.546679) + (xy 45.292267 74.558705) (xy 45.233484 74.569919) (xy 45.224662 74.572583) (xy 45.196698 74.58124) (xy 45.141578 74.604411) + (xy 45.086116 74.626817) (xy 45.07798 74.631143) (xy 45.052227 74.645066) (xy 45.002621 74.678523) (xy 44.985083 74.69) + (xy 43.579683 74.69) (xy 43.606407 74.601904) (xy 43.631217 74.35) (xy 43.606407 74.098096) (xy 43.532929 73.855873) + (xy 43.413608 73.632638) (xy 43.253028 73.436972) (xy 43.057362 73.276392) (xy 42.834127 73.157071) (xy 42.591904 73.083593) + (xy 42.403123 73.065) (xy 40.976877 73.065) (xy 40.788096 73.083593) (xy 40.66 73.122451) (xy 40.66 60.66) + (xy 43.980196 60.66) + ) + ) + (filled_polygon + (pts + (xy 73.59875 72.8355) (xy 74.673 72.8355) (xy 74.673 72.8155) (xy 74.927 72.8155) (xy 74.927 72.8355) + (xy 74.947 72.8355) (xy 74.947 73.0895) (xy 74.927 73.0895) (xy 74.927 73.1095) (xy 74.673 73.1095) + (xy 74.673 73.0895) (xy 73.59875 73.0895) (xy 73.44 73.24825) (xy 73.437539 73.49) (xy 73.076497 73.49) + (xy 73.073937 73.466439) (xy 73.073798 73.466003) (xy 73.074371 73.464113) (xy 73.088072 73.325) (xy 73.088072 73.175) + (xy 73.087042 73.164537) (xy 73.507414 72.744164) + ) + ) + (filled_polygon + (pts + (xy 52.611313 61.203599) (xy 52.614989 61.240922) (xy 52.614991 64.174068) (xy 52.611314 64.2114) (xy 52.614991 64.248732) + (xy 52.614991 64.248733) (xy 52.625988 64.360386) (xy 52.632104 64.380547) (xy 52.669444 64.503646) (xy 52.740016 64.635676) + (xy 52.796494 64.704494) (xy 52.83499 64.751401) (xy 52.863988 64.775199) (xy 56.83998 68.751192) (xy 56.839981 69.168052) + (xy 56.769275 69.110025) (xy 56.637246 69.039453) (xy 56.493985 68.995996) (xy 56.382332 68.984999) (xy 56.382321 68.984999) + (xy 56.344999 68.981323) (xy 56.307677 68.984999) (xy 54.973321 68.984999) (xy 54.935998 68.981323) (xy 54.898675 68.984999) + (xy 54.898666 68.984999) (xy 54.787013 68.995996) (xy 54.643752 69.039453) (xy 54.511723 69.110025) (xy 54.511721 69.110026) + (xy 54.511722 69.110026) (xy 54.424995 69.1812) (xy 54.424991 69.181204) (xy 54.395998 69.204998) (xy 54.372204 69.233991) + (xy 53.813996 69.792201) (xy 53.784999 69.815998) (xy 53.690025 69.931723) (xy 53.619453 70.063752) (xy 53.575996 70.207013) + (xy 53.564999 70.318666) (xy 53.564999 70.318677) (xy 53.561323 70.355999) (xy 53.564999 70.393321) (xy 53.564999 70.560198) + (xy 52.262458 71.86274) (xy 52.263072 71.775) (xy 52.250812 71.650518) (xy 52.214502 71.53082) (xy 52.155537 71.420506) + (xy 52.076185 71.323815) (xy 51.979494 71.244463) (xy 51.86918 71.185498) (xy 51.749482 71.149188) (xy 51.625 71.136928) + (xy 51.32325 71.14) (xy 51.1645 71.29875) (xy 51.1645 72.373) (xy 51.1845 72.373) (xy 51.1845 72.627) + (xy 51.1645 72.627) (xy 51.1645 72.647) (xy 50.9105 72.647) (xy 50.9105 72.627) (xy 50.8905 72.627) + (xy 50.8905 72.373) (xy 50.9105 72.373) (xy 50.9105 71.29875) (xy 50.75175 71.14) (xy 50.45 71.136928) + (xy 50.325518 71.149188) (xy 50.20582 71.185498) (xy 50.095506 71.244463) (xy 49.998815 71.323815) (xy 49.933342 71.403594) + (xy 49.927962 71.397038) (xy 49.8475 71.331005) (xy 49.8475 71.005969) (xy 49.851781 70.9625) (xy 49.8475 70.919031) + (xy 49.8475 70.919023) (xy 49.834695 70.78901) (xy 49.784089 70.622187) (xy 49.701911 70.468441) (xy 49.591317 70.333683) + (xy 49.557544 70.305966) (xy 49.538072 70.286494) (xy 49.538072 70.05) (xy 49.525812 69.925518) (xy 49.489502 69.80582) + (xy 49.430537 69.695506) (xy 49.351185 69.598815) (xy 49.254494 69.519463) (xy 49.238393 69.510857) (xy 49.323 69.42625) + (xy 49.323 68.627) (xy 49.577 68.627) (xy 49.577 69.42625) (xy 49.73575 69.585) (xy 49.85 69.588072) + (xy 49.974482 69.575812) (xy 50.09418 69.539502) (xy 50.204494 69.480537) (xy 50.301185 69.401185) (xy 50.380537 69.304494) + (xy 50.439502 69.19418) (xy 50.475812 69.074482) (xy 50.488072 68.95) (xy 50.485 68.78575) (xy 50.32625 68.627) + (xy 49.577 68.627) (xy 49.323 68.627) (xy 49.303 68.627) (xy 49.303 68.373) (xy 49.323 68.373) + (xy 49.323 67.57375) (xy 49.577 67.57375) (xy 49.577 68.373) (xy 50.32625 68.373) (xy 50.485 68.21425) + (xy 50.488072 68.05) (xy 50.475812 67.925518) (xy 50.439502 67.80582) (xy 50.380537 67.695506) (xy 50.301185 67.598815) + (xy 50.204494 67.519463) (xy 50.09418 67.460498) (xy 49.974482 67.424188) (xy 49.85 67.411928) (xy 49.73575 67.415) + (xy 49.577 67.57375) (xy 49.323 67.57375) (xy 49.16425 67.415) (xy 49.05 67.411928) (xy 48.925518 67.424188) + (xy 48.80582 67.460498) (xy 48.695506 67.519463) (xy 48.598815 67.598815) (xy 48.519463 67.695506) (xy 48.5 67.731918) + (xy 48.480537 67.695506) (xy 48.435 67.640019) (xy 48.435 67.055965) (xy 48.439281 67.012499) (xy 48.435 66.969033) + (xy 48.435 66.969023) (xy 48.422195 66.83901) (xy 48.371589 66.672187) (xy 48.289411 66.518441) (xy 48.263072 66.486347) + (xy 48.263072 66.025) (xy 48.246008 65.851746) (xy 48.195472 65.68515) (xy 48.113405 65.531614) (xy 48.002962 65.397038) + (xy 47.868386 65.286595) (xy 47.71485 65.204528) (xy 47.548254 65.153992) (xy 47.375 65.136928) (xy 46.7 65.136928) + (xy 46.526746 65.153992) (xy 46.36015 65.204528) (xy 46.206614 65.286595) (xy 46.072038 65.397038) (xy 46.066658 65.403594) + (xy 46.001185 65.323815) (xy 45.904494 65.244463) (xy 45.79418 65.185498) (xy 45.674482 65.149188) (xy 45.55 65.136928) + (xy 45.24825 65.14) (xy 45.0895 65.29875) (xy 45.0895 66.373) (xy 45.1095 66.373) (xy 45.1095 66.627) + (xy 45.0895 66.627) (xy 45.0895 67.70125) (xy 45.228668 67.840418) (xy 45.204774 67.898102) (xy 45.165 68.098061) + (xy 45.165 68.301939) (xy 45.204774 68.501898) (xy 45.271061 68.661928) (xy 45.149999 68.661928) (xy 44.976745 68.678992) + (xy 44.810149 68.729528) (xy 44.656613 68.811595) (xy 44.522038 68.922038) (xy 44.5 68.948891) (xy 44.477962 68.922038) + (xy 44.343387 68.811595) (xy 44.26 68.767024) (xy 44.26 68.537325) (xy 44.263676 68.5) (xy 44.26 68.462675) + (xy 44.26 68.462667) (xy 44.249003 68.351014) (xy 44.205546 68.207753) (xy 44.138072 68.08152) (xy 44.138072 67.816702) + (xy 44.250518 67.850812) (xy 44.375 67.863072) (xy 44.67675 67.86) (xy 44.8355 67.70125) (xy 44.8355 66.627) + (xy 44.8155 66.627) (xy 44.8155 66.373) (xy 44.8355 66.373) (xy 44.8355 65.29875) (xy 44.67675 65.14) + (xy 44.375 65.136928) (xy 44.250518 65.149188) (xy 44.13082 65.185498) (xy 44.020506 65.244463) (xy 43.976949 65.280209) + (xy 43.951185 65.248815) (xy 43.854494 65.169463) (xy 43.74418 65.110498) (xy 43.624482 65.074188) (xy 43.5 65.061928) + (xy 43.28575 65.065) (xy 43.127 65.22375) (xy 43.127 65.973) (xy 43.147 65.973) (xy 43.147 66.227) + (xy 43.127 66.227) (xy 43.127 66.247) (xy 42.934999 66.247) (xy 42.934999 63.8548) (xy 43.162797 63.627002) + (xy 43.173748 63.627002) (xy 43.015 63.78575) (xy 43.011928 64.35) (xy 43.024188 64.474482) (xy 43.060498 64.59418) + (xy 43.119463 64.704494) (xy 43.198815 64.801185) (xy 43.295506 64.880537) (xy 43.40582 64.939502) (xy 43.525518 64.975812) + (xy 43.65 64.988072) (xy 44.21425 64.985) (xy 44.373 64.82625) (xy 44.373 63.627) (xy 44.627 63.627) + (xy 44.627 64.82625) (xy 44.78575 64.985) (xy 45.35 64.988072) (xy 45.474482 64.975812) (xy 45.59418 64.939502) + (xy 45.704494 64.880537) (xy 45.801185 64.801185) (xy 45.880537 64.704494) (xy 45.939502 64.59418) (xy 45.975812 64.474482) + (xy 45.988072 64.35) (xy 45.985 63.78575) (xy 45.82625 63.627) (xy 44.627 63.627) (xy 44.373 63.627) + (xy 44.353 63.627) (xy 44.353 63.373) (xy 44.373 63.373) (xy 44.373 63.353) (xy 44.627 63.353) + (xy 44.627 63.373) (xy 45.82625 63.373) (xy 45.985 63.21425) (xy 45.988072 62.65) (xy 45.975812 62.525518) + (xy 45.939502 62.40582) (xy 45.880537 62.295506) (xy 45.801185 62.198815) (xy 45.704494 62.119463) (xy 45.59418 62.060498) + (xy 45.474482 62.024188) (xy 45.35 62.011928) (xy 44.78575 62.015) (xy 44.627002 62.173748) (xy 44.627002 62.162798) + (xy 45.604819 61.184981) (xy 52.613147 61.184981) + ) + ) + (filled_polygon + (pts + (xy 75.627 68.873) (xy 75.647 68.873) (xy 75.647 69.127) (xy 75.627 69.127) (xy 75.627 70.20125) + (xy 75.6645 70.23875) (xy 75.6645 70.873) (xy 75.6845 70.873) (xy 75.6845 71.127) (xy 75.6645 71.127) + (xy 75.6645 71.147) (xy 75.4105 71.147) (xy 75.4105 71.127) (xy 75.3905 71.127) (xy 75.3905 70.873) + (xy 75.4105 70.873) (xy 75.4105 69.79875) (xy 75.373 69.76125) (xy 75.373 69.127) (xy 75.353 69.127) + (xy 75.353 68.873) (xy 75.373 68.873) (xy 75.373 68.853) (xy 75.627 68.853) + ) + ) + (filled_polygon + (pts + (xy 60.207 62.373) (xy 60.227 62.373) (xy 60.227 62.627) (xy 60.207 62.627) (xy 60.207 63.820155) + (xy 60.43689 63.941476) (xy 60.584099 63.896825) (xy 60.84692 63.771641) (xy 61.080269 63.597588) (xy 61.275178 63.381355) + (xy 61.344805 63.264466) (xy 61.466525 63.446632) (xy 61.673368 63.653475) (xy 61.916589 63.81599) (xy 62.186842 63.927932) + (xy 62.383613 63.967073) (xy 62.340226 63.996063) (xy 62.196063 64.140226) (xy 62.082795 64.309744) (xy 62.004774 64.498102) + (xy 61.965 64.698061) (xy 61.965 64.901939) (xy 62.004774 65.101898) (xy 62.082795 65.290256) (xy 62.126462 65.355608) + (xy 62.119935 65.377125) (xy 62.076185 65.323815) (xy 61.979494 65.244463) (xy 61.86918 65.185498) (xy 61.749482 65.149188) + (xy 61.625 65.136928) (xy 61.32325 65.14) (xy 61.1645 65.29875) (xy 61.1645 66.373) (xy 61.1845 66.373) + (xy 61.1845 66.627) (xy 61.1645 66.627) (xy 61.1645 68.373) (xy 61.1845 68.373) (xy 61.1845 68.627) + (xy 61.1645 68.627) (xy 61.1645 68.647) (xy 60.9105 68.647) (xy 60.9105 68.627) (xy 60.8905 68.627) + (xy 60.8905 68.373) (xy 60.9105 68.373) (xy 60.9105 66.627) (xy 60.8905 66.627) (xy 60.8905 66.373) + (xy 60.9105 66.373) (xy 60.9105 65.29875) (xy 60.75175 65.14) (xy 60.45 65.136928) (xy 60.325518 65.149188) + (xy 60.20582 65.185498) (xy 60.095506 65.244463) (xy 59.998815 65.323815) (xy 59.933342 65.403594) (xy 59.927962 65.397038) + (xy 59.793386 65.286595) (xy 59.63985 65.204528) (xy 59.473254 65.153992) (xy 59.3 65.136928) (xy 58.625 65.136928) + (xy 58.451746 65.153992) (xy 58.28515 65.204528) (xy 58.131614 65.286595) (xy 57.997038 65.397038) (xy 57.886595 65.531614) + (xy 57.850577 65.598998) (xy 56.572842 64.321263) (xy 56.683752 64.380547) (xy 56.827013 64.424004) (xy 56.938666 64.435001) + (xy 56.938675 64.435001) (xy 56.975998 64.438677) (xy 57.013321 64.435001) (xy 58.066679 64.435001) (xy 58.104001 64.438677) + (xy 58.141323 64.435001) (xy 58.141334 64.435001) (xy 58.252987 64.424004) (xy 58.396248 64.380547) (xy 58.528277 64.309975) + (xy 58.644002 64.215002) (xy 58.667804 64.185999) (xy 59.180817 63.672987) (xy 59.31308 63.771641) (xy 59.575901 63.896825) + (xy 59.72311 63.941476) (xy 59.953 63.820155) (xy 59.953 62.627) (xy 59.933 62.627) (xy 59.933 62.373) + (xy 59.953 62.373) (xy 59.953 62.353) (xy 60.207 62.353) + ) + ) + ) + (zone (net 2) (net_name GND) (layer B.Cu) (tstamp 0) (hatch edge 0.508) + (connect_pads (clearance 0.508)) + (min_thickness 0.254) + (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508)) + (polygon + (pts + (xy 100.01 60.01) (xy 100 100) (xy 39.99 100) (xy 40 60) + ) + ) + (filled_polygon + (pts + (xy 99.340001 99.34) (xy 40.66 99.34) (xy 40.66 97.85) (xy 41.511928 97.85) (xy 41.524188 97.974482) + (xy 41.560498 98.09418) (xy 41.619463 98.204494) (xy 41.698815 98.301185) (xy 41.795506 98.380537) (xy 41.90582 98.439502) + (xy 42.025518 98.475812) (xy 42.15 98.488072) (xy 42.71425 98.485) (xy 42.873 98.32625) (xy 42.873 97.127) + (xy 43.127 97.127) (xy 43.127 98.32625) (xy 43.28575 98.485) (xy 43.85 98.488072) (xy 43.974482 98.475812) + (xy 44.09418 98.439502) (xy 44.204494 98.380537) (xy 44.301185 98.301185) (xy 44.380537 98.204494) (xy 44.439502 98.09418) + (xy 44.475812 97.974482) (xy 44.488072 97.85) (xy 44.485 97.28575) (xy 44.32625 97.127) (xy 43.127 97.127) + (xy 42.873 97.127) (xy 41.67375 97.127) (xy 41.515 97.28575) (xy 41.511928 97.85) (xy 40.66 97.85) + (xy 40.66 96.15) (xy 41.511928 96.15) (xy 41.515 96.71425) (xy 41.67375 96.873) (xy 42.873 96.873) + (xy 42.873 95.67375) (xy 43.127 95.67375) (xy 43.127 96.873) (xy 44.32625 96.873) (xy 44.485 96.71425) + (xy 44.488072 96.15) (xy 44.475812 96.025518) (xy 44.439502 95.90582) (xy 44.380537 95.795506) (xy 44.301185 95.698815) + (xy 44.204494 95.619463) (xy 44.09418 95.560498) (xy 43.974482 95.524188) (xy 43.85 95.511928) (xy 43.28575 95.515) + (xy 43.127 95.67375) (xy 42.873 95.67375) (xy 42.71425 95.515) (xy 42.15 95.511928) (xy 42.025518 95.524188) + (xy 41.90582 95.560498) (xy 41.795506 95.619463) (xy 41.698815 95.698815) (xy 41.619463 95.795506) (xy 41.560498 95.90582) + (xy 41.524188 96.025518) (xy 41.511928 96.15) (xy 40.66 96.15) (xy 40.66 86.877549) (xy 40.788096 86.916407) + (xy 40.976877 86.935) (xy 42.403123 86.935) (xy 42.591904 86.916407) (xy 42.834127 86.842929) (xy 43.057362 86.723608) + (xy 43.253028 86.563028) (xy 43.413608 86.367362) (xy 43.532929 86.144127) (xy 43.606407 85.901904) (xy 43.631217 85.65) + (xy 43.606407 85.398096) (xy 43.579683 85.31) (xy 44.985057 85.31) (xy 45.004357 85.322629) (xy 45.053948 85.35608) + (xy 45.062085 85.360406) (xy 45.088027 85.373969) (xy 45.143494 85.396379) (xy 45.198653 85.419566) (xy 45.207475 85.422229) + (xy 45.23556 85.430494) (xy 45.294328 85.441703) (xy 45.352909 85.453728) (xy 45.36208 85.454627) (xy 45.362085 85.454627) + (xy 45.362088 85.454628) (xy 45.362091 85.454628) (xy 45.391234 85.45728) (xy 45.451048 85.456862) (xy 45.510862 85.45728) + (xy 45.520033 85.456381) (xy 45.549148 85.453321) (xy 45.607746 85.441292) (xy 45.666515 85.430081) (xy 45.675337 85.427417) + (xy 45.703302 85.41876) (xy 45.758422 85.395589) (xy 45.813884 85.373183) (xy 45.822021 85.368857) (xy 45.847773 85.354934) + (xy 45.880776 85.332674) (xy 46.044326 85.420094) (xy 46.2677 85.487853) (xy 46.441793 85.505) (xy 47.658207 85.505) + (xy 47.8323 85.487853) (xy 48.055674 85.420094) (xy 48.261536 85.310058) (xy 48.441975 85.161975) (xy 48.590058 84.981536) + (xy 48.664999 84.841331) (xy 48.665 93.764522) (xy 48.660718 93.808001) (xy 48.677804 93.981491) (xy 48.728411 94.148314) + (xy 48.810589 94.30206) (xy 48.893467 94.403047) (xy 48.89347 94.40305) (xy 48.921183 94.436818) (xy 48.95495 94.46453) + (xy 50.085479 95.59506) (xy 50.113192 95.628828) (xy 50.14696 95.656541) (xy 50.146962 95.656543) (xy 50.247949 95.739421) + (xy 50.24795 95.739422) (xy 50.401696 95.8216) (xy 50.568519 95.872206) (xy 50.698532 95.885011) (xy 50.69854 95.885011) + (xy 50.742009 95.889292) (xy 50.785478 95.885011) (xy 78.35652 95.885011) (xy 78.399989 95.889292) (xy 78.443458 95.885011) + (xy 78.443466 95.885011) (xy 78.573479 95.872206) (xy 78.740302 95.8216) (xy 78.894048 95.739422) (xy 79.028806 95.628828) + (xy 79.056523 95.595055) (xy 80.801578 93.85) (xy 85.011928 93.85) (xy 85.024188 93.974482) (xy 85.060498 94.09418) + (xy 85.119463 94.204494) (xy 85.198815 94.301185) (xy 85.295506 94.380537) (xy 85.40582 94.439502) (xy 85.525518 94.475812) + (xy 85.65 94.488072) (xy 86.21425 94.485) (xy 86.373 94.32625) (xy 86.373 93.127) (xy 86.627 93.127) + (xy 86.627 94.32625) (xy 86.78575 94.485) (xy 87.35 94.488072) (xy 87.474482 94.475812) (xy 87.59418 94.439502) + (xy 87.704494 94.380537) (xy 87.801185 94.301185) (xy 87.880537 94.204494) (xy 87.939502 94.09418) (xy 87.975812 93.974482) + (xy 87.988072 93.85) (xy 87.985 93.28575) (xy 87.82625 93.127) (xy 86.627 93.127) (xy 86.373 93.127) + (xy 85.17375 93.127) (xy 85.015 93.28575) (xy 85.011928 93.85) (xy 80.801578 93.85) (xy 82.501578 92.15) + (xy 85.011928 92.15) (xy 85.015 92.71425) (xy 85.17375 92.873) (xy 86.373 92.873) (xy 86.373 91.67375) + (xy 86.627 91.67375) (xy 86.627 92.873) (xy 87.82625 92.873) (xy 87.985 92.71425) (xy 87.988072 92.15) + (xy 87.975812 92.025518) (xy 87.939502 91.90582) (xy 87.880537 91.795506) (xy 87.801185 91.698815) (xy 87.704494 91.619463) + (xy 87.59418 91.560498) (xy 87.474482 91.524188) (xy 87.35 91.511928) (xy 86.78575 91.515) (xy 86.627 91.67375) + (xy 86.373 91.67375) (xy 86.21425 91.515) (xy 85.65 91.511928) (xy 85.525518 91.524188) (xy 85.40582 91.560498) + (xy 85.295506 91.619463) (xy 85.198815 91.698815) (xy 85.119463 91.795506) (xy 85.060498 91.90582) (xy 85.024188 92.025518) + (xy 85.011928 92.15) (xy 82.501578 92.15) (xy 87.726784 86.924795) (xy 87.828363 86.945) (xy 88.071637 86.945) + (xy 88.310236 86.89754) (xy 88.534992 86.804443) (xy 88.737267 86.669287) (xy 88.84 86.566554) (xy 88.942733 86.669287) + (xy 89.145008 86.804443) (xy 89.369764 86.89754) (xy 89.608363 86.945) (xy 89.851637 86.945) (xy 90.090236 86.89754) + (xy 90.314992 86.804443) (xy 90.517267 86.669287) (xy 90.62 86.566554) (xy 90.722733 86.669287) (xy 90.925008 86.804443) + (xy 91.149764 86.89754) (xy 91.388363 86.945) (xy 91.631637 86.945) (xy 91.870236 86.89754) (xy 92.094992 86.804443) + (xy 92.297267 86.669287) (xy 92.40679 86.559764) (xy 92.619841 86.559764) (xy 92.667148 86.783348) (xy 92.888516 86.884237) + (xy 93.125313 86.94) (xy 93.368438 86.948495) (xy 93.608549 86.909395) (xy 93.836418 86.824202) (xy 93.912852 86.783348) + (xy 93.960159 86.559764) (xy 93.29 85.889605) (xy 92.619841 86.559764) (xy 92.40679 86.559764) (xy 92.469287 86.497267) + (xy 92.604443 86.294992) (xy 92.660333 86.160062) (xy 93.110395 85.71) (xy 93.096253 85.695858) (xy 93.275858 85.516253) + (xy 93.29 85.530395) (xy 93.304143 85.516253) (xy 93.483748 85.695858) (xy 93.469605 85.71) (xy 94.139764 86.380159) + (xy 94.363348 86.332852) (xy 94.464237 86.111484) (xy 94.52 85.874687) (xy 94.528495 85.631562) (xy 94.489395 85.391451) + (xy 94.44025 85.26) (xy 97.167581 85.26) (xy 97.2 85.263193) (xy 97.232419 85.26) (xy 97.329383 85.25045) + (xy 97.453793 85.21271) (xy 97.56845 85.151425) (xy 97.668948 85.068948) (xy 97.751425 84.96845) (xy 97.81271 84.853793) + (xy 97.85045 84.729383) (xy 97.863193 84.6) (xy 97.86 84.567581) (xy 97.86 76.132419) (xy 97.863193 76.1) + (xy 97.85045 75.970617) (xy 97.81271 75.846207) (xy 97.751425 75.73155) (xy 97.668948 75.631052) (xy 97.56845 75.548575) + (xy 97.453793 75.48729) (xy 97.329383 75.44955) (xy 97.232419 75.44) (xy 97.2 75.436807) (xy 97.167581 75.44) + (xy 95.338643 75.44) (xy 95.36754 75.370236) (xy 95.415 75.131637) (xy 95.415 74.888363) (xy 95.36754 74.649764) + (xy 95.274443 74.425008) (xy 95.139287 74.222733) (xy 94.967267 74.050713) (xy 94.764992 73.915557) (xy 94.540236 73.82246) + (xy 94.301637 73.775) (xy 94.058363 73.775) (xy 93.819764 73.82246) (xy 93.595008 73.915557) (xy 93.392733 74.050713) + (xy 93.29 74.153446) (xy 93.187267 74.050713) (xy 92.984992 73.915557) (xy 92.760236 73.82246) (xy 92.521637 73.775) + (xy 92.278363 73.775) (xy 92.2462 73.781398) (xy 88.862863 70.398061) (xy 92.465 70.398061) (xy 92.465 70.601939) + (xy 92.504774 70.801898) (xy 92.582795 70.990256) (xy 92.696063 71.159774) (xy 92.840226 71.303937) (xy 93.009744 71.417205) + (xy 93.198102 71.495226) (xy 93.254957 71.506535) (xy 94.993465 73.245044) (xy 95.004774 73.301898) (xy 95.082795 73.490256) + (xy 95.196063 73.659774) (xy 95.340226 73.803937) (xy 95.509744 73.917205) (xy 95.698102 73.995226) (xy 95.898061 74.035) + (xy 96.101939 74.035) (xy 96.301898 73.995226) (xy 96.490256 73.917205) (xy 96.659774 73.803937) (xy 96.803937 73.659774) + (xy 96.917205 73.490256) (xy 96.995226 73.301898) (xy 97.035 73.101939) (xy 97.035 72.898061) (xy 96.995226 72.698102) + (xy 96.917205 72.509744) (xy 96.803937 72.340226) (xy 96.659774 72.196063) (xy 96.490256 72.082795) (xy 96.301898 72.004774) + (xy 96.245044 71.993465) (xy 94.506535 70.254957) (xy 94.495226 70.198102) (xy 94.417205 70.009744) (xy 94.303937 69.840226) + (xy 94.159774 69.696063) (xy 93.990256 69.582795) (xy 93.801898 69.504774) (xy 93.601939 69.465) (xy 93.398061 69.465) + (xy 93.198102 69.504774) (xy 93.009744 69.582795) (xy 92.840226 69.696063) (xy 92.696063 69.840226) (xy 92.582795 70.009744) + (xy 92.504774 70.198102) (xy 92.465 70.398061) (xy 88.862863 70.398061) (xy 88.228803 69.764002) (xy 88.205 69.734998) + (xy 88.089275 69.640025) (xy 87.957246 69.569453) (xy 87.813985 69.525996) (xy 87.702332 69.514999) (xy 87.702321 69.514999) + (xy 87.664999 69.511323) (xy 87.627677 69.514999) (xy 70.689332 69.514999) (xy 70.651999 69.511322) (xy 70.614666 69.514999) + (xy 70.503013 69.525996) (xy 70.359752 69.569453) (xy 70.227723 69.640025) (xy 70.111998 69.734998) (xy 70.088195 69.764002) + (xy 69.763997 70.0882) (xy 69.734999 70.111998) (xy 69.711201 70.140996) (xy 69.7112 70.140997) (xy 69.640025 70.227723) + (xy 69.569453 70.359753) (xy 69.567854 70.365026) (xy 69.530903 70.486842) (xy 69.525997 70.503014) (xy 69.511323 70.651999) + (xy 69.515 70.689331) (xy 69.514999 72.037676) (xy 69.511323 72.074999) (xy 69.514999 72.112321) (xy 69.514999 72.112331) + (xy 69.525996 72.223984) (xy 69.554274 72.317205) (xy 69.569453 72.367245) (xy 69.640025 72.499275) (xy 69.661515 72.52546) + (xy 69.734998 72.615) (xy 69.764002 72.638803) (xy 72.165 75.039802) (xy 72.165 75.101939) (xy 72.204774 75.301898) + (xy 72.282795 75.490256) (xy 72.396063 75.659774) (xy 72.540226 75.803937) (xy 72.709744 75.917205) (xy 72.898102 75.995226) + (xy 73.098061 76.035) (xy 73.301939 76.035) (xy 73.501898 75.995226) (xy 73.690256 75.917205) (xy 73.859774 75.803937) + (xy 74.003937 75.659774) (xy 74.117205 75.490256) (xy 74.195226 75.301898) (xy 74.235 75.101939) (xy 74.235 74.898061) + (xy 74.195226 74.698102) (xy 74.117205 74.509744) (xy 74.003937 74.340226) (xy 73.859774 74.196063) (xy 73.690256 74.082795) + (xy 73.501898 74.004774) (xy 73.301939 73.965) (xy 73.239802 73.965) (xy 71.275315 72.000514) (xy 71.301898 71.995226) + (xy 71.490256 71.917205) (xy 71.659774 71.803937) (xy 71.703711 71.76) (xy 82.735199 71.76) (xy 84.833422 73.858224) + (xy 84.695008 73.915557) (xy 84.492733 74.050713) (xy 84.39 74.153446) (xy 84.287267 74.050713) (xy 84.084992 73.915557) + (xy 83.860236 73.82246) (xy 83.621637 73.775) (xy 83.378363 73.775) (xy 83.139764 73.82246) (xy 82.915008 73.915557) + (xy 82.712733 74.050713) (xy 82.61 74.153446) (xy 82.507267 74.050713) (xy 82.304992 73.915557) (xy 82.080236 73.82246) + (xy 81.841637 73.775) (xy 81.598363 73.775) (xy 81.359764 73.82246) (xy 81.135008 73.915557) (xy 80.932733 74.050713) + (xy 80.760713 74.222733) (xy 80.625557 74.425008) (xy 80.53246 74.649764) (xy 80.485 74.888363) (xy 80.485 75.131637) + (xy 80.53246 75.370236) (xy 80.561357 75.44) (xy 80.032419 75.44) (xy 80 75.436807) (xy 79.967581 75.44) + (xy 79.870617 75.44955) (xy 79.746207 75.48729) (xy 79.63155 75.548575) (xy 79.531052 75.631052) (xy 79.448575 75.73155) + (xy 79.38729 75.846207) (xy 79.34955 75.970617) (xy 79.336807 76.1) (xy 79.340001 76.132429) (xy 79.34 84.567581) + (xy 79.336807 84.6) (xy 79.34955 84.729383) (xy 79.38729 84.853793) (xy 79.448575 84.96845) (xy 79.518348 85.053468) + (xy 79.531052 85.068948) (xy 79.63155 85.151425) (xy 79.707745 85.192152) (xy 79.64246 85.349764) (xy 79.595 85.588363) + (xy 79.595 85.831637) (xy 79.64246 86.070236) (xy 79.735557 86.294992) (xy 79.870713 86.497267) (xy 80.042733 86.669287) + (xy 80.245008 86.804443) (xy 80.469764 86.89754) (xy 80.708363 86.945) (xy 80.951637 86.945) (xy 81.190236 86.89754) + (xy 81.414992 86.804443) (xy 81.617267 86.669287) (xy 81.72 86.566554) (xy 81.822733 86.669287) (xy 82.025008 86.804443) + (xy 82.249764 86.89754) (xy 82.488363 86.945) (xy 82.731637 86.945) (xy 82.970236 86.89754) (xy 83.194992 86.804443) + (xy 83.397267 86.669287) (xy 83.5 86.566554) (xy 83.602733 86.669287) (xy 83.805008 86.804443) (xy 83.818422 86.809999) + (xy 78.094957 92.533465) (xy 78.038102 92.544774) (xy 77.849744 92.622795) (xy 77.680226 92.736063) (xy 77.536063 92.880226) + (xy 77.422795 93.049744) (xy 77.344774 93.238102) (xy 77.333465 93.294956) (xy 77.213421 93.415001) (xy 51.66658 93.415001) + (xy 51.406535 93.154957) (xy 51.395226 93.098102) (xy 51.317205 92.909744) (xy 51.203937 92.740226) (xy 51.059774 92.596063) + (xy 50.890256 92.482795) (xy 50.701898 92.404774) (xy 50.501939 92.365) (xy 50.434999 92.365) (xy 50.434999 83.522226) + (xy 50.455939 83.539411) (xy 50.532812 83.5805) (xy 50.609684 83.621589) (xy 50.776508 83.672195) (xy 50.906521 83.685) + (xy 50.906529 83.685) (xy 50.949998 83.689281) (xy 50.993467 83.685) (xy 59.515001 83.685) (xy 59.515 86.614533) + (xy 59.510719 86.658002) (xy 59.515 86.701471) (xy 59.515 86.701478) (xy 59.525141 86.804443) (xy 59.527805 86.831492) + (xy 59.543157 86.882098) (xy 59.578411 86.998314) (xy 59.660589 87.15206) (xy 59.771183 87.286819) (xy 59.804956 87.314536) + (xy 64.535469 92.04505) (xy 64.563182 92.078818) (xy 64.59695 92.106531) (xy 64.596952 92.106533) (xy 64.649917 92.15) + (xy 64.69794 92.189412) (xy 64.851686 92.27159) (xy 64.967902 92.306844) (xy 65.018508 92.322196) (xy 65.033305 92.323653) + (xy 65.148522 92.335001) (xy 65.14853 92.335001) (xy 65.191999 92.339282) (xy 65.235468 92.335001) (xy 67.30653 92.335001) + (xy 67.349999 92.339282) (xy 67.393468 92.335001) (xy 67.393476 92.335001) (xy 67.523489 92.322196) (xy 67.690312 92.27159) + (xy 67.844058 92.189412) (xy 67.978816 92.078818) (xy 68.006533 92.045045) (xy 71.645044 88.406535) (xy 71.701898 88.395226) + (xy 71.890256 88.317205) (xy 72.059774 88.203937) (xy 72.203937 88.059774) (xy 72.317205 87.890256) (xy 72.395226 87.701898) + (xy 72.435 87.501939) (xy 72.435 87.298061) (xy 72.395226 87.098102) (xy 72.317205 86.909744) (xy 72.203937 86.740226) + (xy 72.059774 86.596063) (xy 71.890256 86.482795) (xy 71.701898 86.404774) (xy 71.501939 86.365) (xy 71.298061 86.365) + (xy 71.098102 86.404774) (xy 70.909744 86.482795) (xy 70.740226 86.596063) (xy 70.596063 86.740226) (xy 70.482795 86.909744) + (xy 70.404774 87.098102) (xy 70.393465 87.154956) (xy 66.983421 90.565001) (xy 66.635 90.565001) (xy 66.635 90.498061) + (xy 66.595226 90.298102) (xy 66.517205 90.109744) (xy 66.403937 89.940226) (xy 66.36 89.896289) (xy 66.36 70.714801) + (xy 67.039802 70.035) (xy 67.101939 70.035) (xy 67.301898 69.995226) (xy 67.490256 69.917205) (xy 67.659774 69.803937) + (xy 67.803937 69.659774) (xy 67.917205 69.490256) (xy 67.995226 69.301898) (xy 68.035 69.101939) (xy 68.035 68.898061) + (xy 67.995226 68.698102) (xy 67.917205 68.509744) (xy 67.803937 68.340226) (xy 67.659774 68.196063) (xy 67.490256 68.082795) + (xy 67.301898 68.004774) (xy 67.101939 67.965) (xy 66.898061 67.965) (xy 66.698102 68.004774) (xy 66.509744 68.082795) + (xy 66.340226 68.196063) (xy 66.196063 68.340226) (xy 66.082795 68.509744) (xy 66.004774 68.698102) (xy 65.965 68.898061) + (xy 65.965 68.960198) (xy 65.089003 69.836196) (xy 65.059999 69.859999) (xy 65.024713 69.902996) (xy 64.965026 69.975724) + (xy 64.948875 70.005941) (xy 64.894454 70.107754) (xy 64.850997 70.251015) (xy 64.84 70.362668) (xy 64.84 70.362678) + (xy 64.836324 70.4) (xy 64.84 70.437322) (xy 64.840001 89.846424) (xy 61.285 86.291424) (xy 61.285 83.338454) + (xy 61.317205 83.290256) (xy 61.395226 83.101898) (xy 61.435 82.901939) (xy 61.435 82.698061) (xy 61.395226 82.498102) + (xy 61.317205 82.309744) (xy 61.203937 82.140226) (xy 61.059774 81.996063) (xy 60.890256 81.882795) (xy 60.701898 81.804774) + (xy 60.501939 81.765) (xy 60.298061 81.765) (xy 60.098102 81.804774) (xy 59.909744 81.882795) (xy 59.861546 81.915) + (xy 52.186578 81.915) (xy 56.095049 78.00653) (xy 56.128817 77.978817) (xy 56.189436 77.904954) (xy 56.23941 77.84406) + (xy 56.239411 77.844059) (xy 56.321589 77.690313) (xy 56.372195 77.52349) (xy 56.375935 77.485518) (xy 56.474482 77.475812) + (xy 56.59418 77.439502) (xy 56.704494 77.380537) (xy 56.801185 77.301185) (xy 56.880537 77.204494) (xy 56.939502 77.09418) + (xy 56.975812 76.974482) (xy 56.988072 76.85) (xy 56.988072 75.15) (xy 56.975812 75.025518) (xy 56.939502 74.90582) + (xy 56.880537 74.795506) (xy 56.801185 74.698815) (xy 56.704494 74.619463) (xy 56.59418 74.560498) (xy 56.52162 74.538487) + (xy 56.653475 74.406632) (xy 56.81599 74.163411) (xy 56.927932 73.893158) (xy 56.985 73.60626) (xy 56.985 73.31374) + (xy 56.927932 73.026842) (xy 56.81599 72.756589) (xy 56.653475 72.513368) (xy 56.446632 72.306525) (xy 56.27224 72.19) + (xy 56.446632 72.073475) (xy 56.653475 71.866632) (xy 56.81599 71.623411) (xy 56.927932 71.353158) (xy 56.985 71.06626) + (xy 56.985 70.77374) (xy 56.927932 70.486842) (xy 56.81599 70.216589) (xy 56.653475 69.973368) (xy 56.446632 69.766525) + (xy 56.203411 69.60401) (xy 55.933158 69.492068) (xy 55.906759 69.486817) (xy 60.558578 64.834999) (xy 61.890199 64.834999) + (xy 57.488998 69.236201) (xy 57.46 69.259999) (xy 57.436202 69.288997) (xy 57.436201 69.288998) (xy 57.365026 69.375724) + (xy 57.294454 69.507754) (xy 57.265961 69.601686) (xy 57.250998 69.651014) (xy 57.246561 69.696063) (xy 57.236324 69.8) + (xy 57.240001 69.837332) (xy 57.24 70.696289) (xy 57.196063 70.740226) (xy 57.082795 70.909744) (xy 57.004774 71.098102) + (xy 56.965 71.298061) (xy 56.965 71.501939) (xy 57.004774 71.701898) (xy 57.082795 71.890256) (xy 57.196063 72.059774) + (xy 57.340226 72.203937) (xy 57.509744 72.317205) (xy 57.698102 72.395226) (xy 57.898061 72.435) (xy 58.101939 72.435) + (xy 58.301898 72.395226) (xy 58.490256 72.317205) (xy 58.659774 72.203937) (xy 58.803937 72.059774) (xy 58.917205 71.890256) + (xy 58.995226 71.701898) (xy 59.035 71.501939) (xy 59.035 71.298061) (xy 58.995226 71.098102) (xy 58.917205 70.909744) + (xy 58.803937 70.740226) (xy 58.76 70.696289) (xy 58.76 70.114801) (xy 62.524801 66.35) (xy 89.511928 66.35) + (xy 89.524188 66.474482) (xy 89.560498 66.59418) (xy 89.619463 66.704494) (xy 89.698815 66.801185) (xy 89.795506 66.880537) + (xy 89.90582 66.939502) (xy 90.025518 66.975812) (xy 90.15 66.988072) (xy 90.71425 66.985) (xy 90.873 66.82625) + (xy 90.873 65.627) (xy 91.127 65.627) (xy 91.127 66.82625) (xy 91.28575 66.985) (xy 91.85 66.988072) + (xy 91.974482 66.975812) (xy 92.09418 66.939502) (xy 92.204494 66.880537) (xy 92.301185 66.801185) (xy 92.380537 66.704494) + (xy 92.439502 66.59418) (xy 92.475812 66.474482) (xy 92.488072 66.35) (xy 92.485 65.78575) (xy 92.32625 65.627) + (xy 91.127 65.627) (xy 90.873 65.627) (xy 89.67375 65.627) (xy 89.515 65.78575) (xy 89.511928 66.35) + (xy 62.524801 66.35) (xy 63.039802 65.835) (xy 63.101939 65.835) (xy 63.301898 65.795226) (xy 63.490256 65.717205) + (xy 63.5 65.710694) (xy 63.509744 65.717205) (xy 63.698102 65.795226) (xy 63.898061 65.835) (xy 64.101939 65.835) + (xy 64.301898 65.795226) (xy 64.490256 65.717205) (xy 64.659774 65.603937) (xy 64.803937 65.459774) (xy 64.917205 65.290256) + (xy 64.995226 65.101898) (xy 65.035 64.901939) (xy 65.035 64.698061) (xy 65.025441 64.65) (xy 89.511928 64.65) + (xy 89.515 65.21425) (xy 89.67375 65.373) (xy 90.873 65.373) (xy 90.873 64.17375) (xy 91.127 64.17375) + (xy 91.127 65.373) (xy 92.32625 65.373) (xy 92.485 65.21425) (xy 92.488072 64.65) (xy 92.475812 64.525518) + (xy 92.439502 64.40582) (xy 92.380537 64.295506) (xy 92.301185 64.198815) (xy 92.204494 64.119463) (xy 92.09418 64.060498) + (xy 91.974482 64.024188) (xy 91.85 64.011928) (xy 91.28575 64.015) (xy 91.127 64.17375) (xy 90.873 64.17375) + (xy 90.71425 64.015) (xy 90.15 64.011928) (xy 90.025518 64.024188) (xy 89.90582 64.060498) (xy 89.795506 64.119463) + (xy 89.698815 64.198815) (xy 89.619463 64.295506) (xy 89.560498 64.40582) (xy 89.524188 64.525518) (xy 89.511928 64.65) + (xy 65.025441 64.65) (xy 64.995226 64.498102) (xy 64.917205 64.309744) (xy 64.803937 64.140226) (xy 64.659774 63.996063) + (xy 64.631907 63.977443) (xy 64.589412 63.89794) (xy 64.555925 63.857136) (xy 64.726842 63.927932) (xy 65.01374 63.985) + (xy 65.30626 63.985) (xy 65.593158 63.927932) (xy 65.863411 63.81599) (xy 66.106632 63.653475) (xy 66.313475 63.446632) + (xy 66.43 63.27224) (xy 66.546525 63.446632) (xy 66.753368 63.653475) (xy 66.996589 63.81599) (xy 67.266842 63.927932) + (xy 67.55374 63.985) (xy 67.84626 63.985) (xy 68.133158 63.927932) (xy 68.403411 63.81599) (xy 68.646632 63.653475) + (xy 68.853475 63.446632) (xy 69.01599 63.203411) (xy 69.127932 62.933158) (xy 69.185 62.64626) (xy 69.185 62.35374) + (xy 69.127932 62.066842) (xy 69.01599 61.796589) (xy 68.853475 61.553368) (xy 68.646632 61.346525) (xy 68.403411 61.18401) + (xy 68.133158 61.072068) (xy 67.84626 61.015) (xy 67.55374 61.015) (xy 67.266842 61.072068) (xy 66.996589 61.18401) + (xy 66.753368 61.346525) (xy 66.546525 61.553368) (xy 66.43 61.72776) (xy 66.313475 61.553368) (xy 66.106632 61.346525) + (xy 65.863411 61.18401) (xy 65.593158 61.072068) (xy 65.30626 61.015) (xy 65.01374 61.015) (xy 64.726842 61.072068) + (xy 64.456589 61.18401) (xy 64.213368 61.346525) (xy 64.006525 61.553368) (xy 63.89 61.72776) (xy 63.773475 61.553368) + (xy 63.566632 61.346525) (xy 63.323411 61.18401) (xy 63.053158 61.072068) (xy 62.76626 61.015) (xy 62.47374 61.015) + (xy 62.186842 61.072068) (xy 61.916589 61.18401) (xy 61.673368 61.346525) (xy 61.466525 61.553368) (xy 61.344805 61.735534) + (xy 61.275178 61.618645) (xy 61.080269 61.402412) (xy 60.84692 61.228359) (xy 60.584099 61.103175) (xy 60.43689 61.058524) + (xy 60.207 61.179845) (xy 60.207 62.373) (xy 60.227 62.373) (xy 60.227 62.627) (xy 60.207 62.627) + (xy 60.207 62.647) (xy 59.953 62.647) (xy 59.953 62.627) (xy 59.933 62.627) (xy 59.933 62.373) + (xy 59.953 62.373) (xy 59.953 61.179845) (xy 59.72311 61.058524) (xy 59.575901 61.103175) (xy 59.31308 61.228359) + (xy 59.079731 61.402412) (xy 58.884822 61.618645) (xy 58.815195 61.735534) (xy 58.693475 61.553368) (xy 58.486632 61.346525) + (xy 58.243411 61.18401) (xy 57.973158 61.072068) (xy 57.68626 61.015) (xy 57.39374 61.015) (xy 57.106842 61.072068) + (xy 56.836589 61.18401) (xy 56.593368 61.346525) (xy 56.461513 61.47838) (xy 56.439502 61.40582) (xy 56.380537 61.295506) + (xy 56.301185 61.198815) (xy 56.204494 61.119463) (xy 56.09418 61.060498) (xy 55.974482 61.024188) (xy 55.85 61.011928) + (xy 54.15 61.011928) (xy 54.025518 61.024188) (xy 53.90582 61.060498) (xy 53.795506 61.119463) (xy 53.698815 61.198815) + (xy 53.619463 61.295506) (xy 53.560498 61.40582) (xy 53.524188 61.525518) (xy 53.511928 61.65) (xy 53.511928 62.736493) + (xy 48.933422 67.315) (xy 46.738454 67.315) (xy 46.690256 67.282795) (xy 46.501898 67.204774) (xy 46.301939 67.165) + (xy 46.098061 67.165) (xy 45.898102 67.204774) (xy 45.709744 67.282795) (xy 45.540226 67.396063) (xy 45.396063 67.540226) + (xy 45.282795 67.709744) (xy 45.204774 67.898102) (xy 45.165 68.098061) (xy 45.165 68.301939) (xy 45.204774 68.501898) + (xy 45.282795 68.690256) (xy 45.315 68.738455) (xy 45.315001 72.822294) (xy 45.310719 72.865773) (xy 45.327805 73.039263) + (xy 45.378412 73.206086) (xy 45.46059 73.359832) (xy 45.543468 73.460819) (xy 45.543471 73.460822) (xy 45.571184 73.49459) + (xy 45.604951 73.522302) (xy 46.577649 74.495) (xy 46.441793 74.495) (xy 46.2677 74.512147) (xy 46.044326 74.579906) + (xy 45.880762 74.667333) (xy 45.846051 74.64392) (xy 45.837915 74.639593) (xy 45.811972 74.626031) (xy 45.756531 74.603631) + (xy 45.701347 74.580434) (xy 45.692525 74.577771) (xy 45.664441 74.569506) (xy 45.605651 74.558292) (xy 45.54709 74.546272) + (xy 45.537919 74.545373) (xy 45.537916 74.545373) (xy 45.537912 74.545372) (xy 45.537908 74.545372) (xy 45.508766 74.54272) + (xy 45.448952 74.543138) (xy 45.389138 74.54272) (xy 45.379966 74.543619) (xy 45.350852 74.546679) (xy 45.292267 74.558705) + (xy 45.233484 74.569919) (xy 45.224662 74.572583) (xy 45.196698 74.58124) (xy 45.141578 74.604411) (xy 45.086116 74.626817) + (xy 45.07798 74.631143) (xy 45.052227 74.645066) (xy 45.002621 74.678523) (xy 44.985083 74.69) (xy 43.579683 74.69) + (xy 43.606407 74.601904) (xy 43.631217 74.35) (xy 43.606407 74.098096) (xy 43.532929 73.855873) (xy 43.413608 73.632638) + (xy 43.253028 73.436972) (xy 43.057362 73.276392) (xy 42.834127 73.157071) (xy 42.591904 73.083593) (xy 42.403123 73.065) + (xy 40.976877 73.065) (xy 40.788096 73.083593) (xy 40.66 73.122451) (xy 40.66 64.35) (xy 43.011928 64.35) + (xy 43.024188 64.474482) (xy 43.060498 64.59418) (xy 43.119463 64.704494) (xy 43.198815 64.801185) (xy 43.295506 64.880537) + (xy 43.40582 64.939502) (xy 43.525518 64.975812) (xy 43.65 64.988072) (xy 44.21425 64.985) (xy 44.373 64.82625) + (xy 44.373 63.627) (xy 44.627 63.627) (xy 44.627 64.82625) (xy 44.78575 64.985) (xy 45.35 64.988072) + (xy 45.474482 64.975812) (xy 45.59418 64.939502) (xy 45.704494 64.880537) (xy 45.801185 64.801185) (xy 45.880537 64.704494) + (xy 45.939502 64.59418) (xy 45.975812 64.474482) (xy 45.988072 64.35) (xy 45.985 63.78575) (xy 45.82625 63.627) + (xy 44.627 63.627) (xy 44.373 63.627) (xy 43.17375 63.627) (xy 43.015 63.78575) (xy 43.011928 64.35) + (xy 40.66 64.35) (xy 40.66 62.65) (xy 43.011928 62.65) (xy 43.015 63.21425) (xy 43.17375 63.373) + (xy 44.373 63.373) (xy 44.373 62.17375) (xy 44.627 62.17375) (xy 44.627 63.373) (xy 45.82625 63.373) + (xy 45.985 63.21425) (xy 45.988072 62.65) (xy 45.975812 62.525518) (xy 45.939502 62.40582) (xy 45.880537 62.295506) + (xy 45.801185 62.198815) (xy 45.704494 62.119463) (xy 45.59418 62.060498) (xy 45.474482 62.024188) (xy 45.35 62.011928) + (xy 44.78575 62.015) (xy 44.627 62.17375) (xy 44.373 62.17375) (xy 44.21425 62.015) (xy 43.65 62.011928) + (xy 43.525518 62.024188) (xy 43.40582 62.060498) (xy 43.295506 62.119463) (xy 43.198815 62.198815) (xy 43.119463 62.295506) + (xy 43.060498 62.40582) (xy 43.024188 62.525518) (xy 43.011928 62.65) (xy 40.66 62.65) (xy 40.66 60.66) + (xy 99.34 60.66) + ) + ) + ) +) diff --git a/lab1/lab1.lib b/lab1/lab1.lib index 0e22c0bf0f77b8b99f9ca46f48d4178df8c32465..4f47ef7d624437f43095f25ae998e909cc7e26ce 100644 --- a/lab1/lab1.lib +++ b/lab1/lab1.lib @@ -1,6 +1,21 @@ EESchema-LIBRARY Version 2.4 #encoding utf-8 # +# +1.9V_lab1 +# +DEF +1.9V_lab1 #PWR 0 0 Y Y 1 F P +F0 "#PWR" 0 -150 50 H I C CNN +F1 "+1.9V_lab1" 0 140 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +DRAW +P 2 0 1 0 -30 50 0 100 N +P 2 0 1 0 0 0 0 100 N +P 2 0 1 0 0 100 30 50 N +X +1.9_lab1 1 0 0 0 U 50 50 1 1 W N +ENDDRAW +ENDDEF +# # PWM3389 # DEF PWM3389 U 0 40 Y Y 1 F N diff --git a/lab1/lab1.pretty/Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering.kicad_mod b/lab1/lab1.pretty/Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering.kicad_mod new file mode 100644 index 0000000000000000000000000000000000000000..a2920bed240cffe37af775f9e83ac62b552aed8a --- /dev/null +++ b/lab1/lab1.pretty/Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering.kicad_mod @@ -0,0 +1,41 @@ +(module Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering (layer F.Cu) (tedit 60131E0A) + (descr "SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, hand-soldering, 6.0x3.5mm^2 package") + (tags "SMD SMT crystal hand-soldering") + (attr smd) + (fp_text reference REF** (at 0 -2.95) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value HC49/4HSMX (at 0 2.95) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -2.9 -1.75) (end 2.9 -1.75) (layer F.Fab) (width 0.1)) + (fp_line (start 2.9 -1.75) (end 3 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 3 -1.65) (end 3 1.65) (layer F.Fab) (width 0.1)) + (fp_line (start 3 1.65) (end 2.9 1.75) (layer F.Fab) (width 0.1)) + (fp_line (start 2.9 1.75) (end -2.9 1.75) (layer F.Fab) (width 0.1)) + (fp_line (start -2.9 1.75) (end -3 1.65) (layer F.Fab) (width 0.1)) + (fp_line (start -3 1.65) (end -3 -1.65) (layer F.Fab) (width 0.1)) + (fp_line (start -3 -1.65) (end -2.9 -1.75) (layer F.Fab) (width 0.1)) + (fp_line (start -3 0.75) (end -2 1.75) (layer F.Fab) (width 0.1)) + (fp_line (start 3 -2) (end -7.5 -2) (layer F.SilkS) (width 0.12)) + (fp_line (start -7.5 -1.95) (end -7.5 1.95) (layer F.SilkS) (width 0.12)) + (fp_line (start -7.5 2) (end 3 2) (layer F.SilkS) (width 0.12)) + (fp_line (start -7.5 -2) (end -7.5 2) (layer F.CrtYd) (width 0.05)) + (fp_line (start -7.5 2) (end 7.5 2) (layer F.CrtYd) (width 0.05)) + (fp_line (start 7.5 2) (end 7.5 -2) (layer F.CrtYd) (width 0.05)) + (fp_line (start 7.5 -2) (end -7.5 -2) (layer F.CrtYd) (width 0.05)) + (fp_circle (center 0 0) (end 0.4 0) (layer F.Adhes) (width 0.1)) + (fp_circle (center 0 0) (end 0.333333 0) (layer F.Adhes) (width 0.133333)) + (fp_circle (center 0 0) (end 0.213333 0) (layer F.Adhes) (width 0.133333)) + (fp_circle (center 0 0) (end 0.093333 0) (layer F.Adhes) (width 0.186667)) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 2 smd rect (at 4.75 0) (size 5.5 2) (layers F.Cu F.Paste F.Mask)) + (pad 1 smd rect (at -4.75 0) (size 5.5 2) (layers F.Cu F.Paste F.Mask)) + (model ${KISYS3DMOD}/Crystal.3dshapes/Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) +) diff --git a/lab1/lab1.pretty/MOLEX_1054550101.kicad_mod b/lab1/lab1.pretty/MOLEX_1054550101.kicad_mod new file mode 100644 index 0000000000000000000000000000000000000000..a5f4f141e24c5eacd162f537d63f29ceb8b465f1 --- /dev/null +++ b/lab1/lab1.pretty/MOLEX_1054550101.kicad_mod @@ -0,0 +1,62 @@ +(module MOLEX_1054550101 (layer F.Cu) (tedit 60133F11) + (fp_text reference REF** (at -1.899125 -6.357835) (layer F.SilkS) + (effects (font (size 1.003598 1.003598) (thickness 0.015))) + ) + (fp_text value MOLEX_1054550101 (at 5.11158 5.722255) (layer F.Fab) + (effects (font (size 1.003504 1.003504) (thickness 0.015))) + ) + (fp_line (start 4.65 3.65) (end 6.3 3.65) (layer F.Fab) (width 0.1)) + (fp_line (start -6.3 3.65) (end -4.65 3.65) (layer F.Fab) (width 0.1)) + (fp_circle (center -3 -5) (end -2.9 -5) (layer F.Fab) (width 0.2)) + (fp_circle (center -3 -5) (end -2.9 -5) (layer F.SilkS) (width 0.2)) + (fp_line (start 6.55 4.2) (end 6.55 0.44) (layer F.CrtYd) (width 0.05)) + (fp_line (start 5.12 0.44) (end 6.55 0.44) (layer F.CrtYd) (width 0.05)) + (fp_line (start 5.12 0.44) (end 5.12 -4.72) (layer F.CrtYd) (width 0.05)) + (fp_line (start -5.12 0.44) (end -5.12 -4.72) (layer F.CrtYd) (width 0.05)) + (fp_line (start -6.55 0.44) (end -5.12 0.44) (layer F.CrtYd) (width 0.05)) + (fp_line (start -6.55 4.2) (end -6.55 0.44) (layer F.CrtYd) (width 0.05)) + (fp_line (start 4.65 3.65) (end 4.65 -1.62) (layer F.Fab) (width 0.1)) + (fp_line (start -4.65 3.65) (end -4.65 -1.62) (layer F.Fab) (width 0.1)) + (fp_line (start -4.65 -1.92) (end 4.65 -1.92) (layer F.Fab) (width 0.1)) + (fp_line (start 4.47 3.95) (end 4.47 -1.88) (layer F.SilkS) (width 0.127)) + (fp_line (start -4.47 3.95) (end -4.47 -1.88) (layer F.SilkS) (width 0.127)) + (fp_line (start -4.47 3.95) (end 4.47 3.95) (layer F.SilkS) (width 0.127)) + (fp_line (start 6.55 4.2) (end -6.55 4.2) (layer F.CrtYd) (width 0.05)) + (fp_line (start -5.12 -4.72) (end 5.12 -4.72) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.47 -3.95) (end -4.47 3.95) (layer F.Fab) (width 0.127)) + (fp_line (start 4.47 -3.95) (end -4.47 -3.95) (layer F.Fab) (width 0.127)) + (fp_line (start 4.47 3.95) (end 4.47 -3.95) (layer F.Fab) (width 0.127)) + (fp_line (start -4.47 3.95) (end 4.47 3.95) (layer F.Fab) (width 0.127)) + (fp_arc (start 4.65 -1.77) (end 4.65 -1.62) (angle -90) (layer F.Fab) (width 0.1)) + (fp_arc (start 4.65 -1.77) (end 4.8 -1.77) (angle -90) (layer F.Fab) (width 0.1)) + (fp_arc (start -4.65 -1.77) (end -4.65 -1.92) (angle -90) (layer F.Fab) (width 0.1)) + (fp_arc (start -4.65 -1.77) (end -4.8 -1.77) (angle -90) (layer F.Fab) (width 0.1)) + (pad S4 thru_hole oval (at 5.65 2) (size 1.3 2.6) (drill oval 0.6 2.1) (layers *.Cu *.Mask)) + (pad S3 thru_hole oval (at -5.65 2) (size 1.3 2.6) (drill oval 0.6 2.1) (layers *.Cu *.Mask)) + (pad S2 thru_hole oval (at 4.32 -3.36) (size 1.1 2.2) (drill oval 0.6 1.6) (layers *.Cu *.Mask)) + (pad S1 thru_hole oval (at -4.32 -3.36) (size 1.1 2.2) (drill oval 0.6 1.6) (layers *.Cu *.Mask)) + (pad B12 smd rect (at -3.1 -2.47) (size 1 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B11 smd rect (at -2.25 -2.47) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B10 smd rect (at -1.75 -2.47) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B9 smd rect (at -1.25 -2.47) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B8 smd rect (at -0.75 -2.47) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B7 smd rect (at -0.25 -2.47) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B6 smd rect (at 0.25 -2.47) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B5 smd rect (at 0.75 -2.47) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B4 smd rect (at 1.25 -2.47) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B3 smd rect (at 1.75 -2.47) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B2 smd rect (at 2.25 -2.47) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad B1 smd rect (at 3.1 -2.47) (size 1 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A12 smd rect (at 3 -3.77) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A11 smd rect (at 2.5 -3.77) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A10 smd rect (at 2 -3.77) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A9 smd rect (at 1.5 -3.77) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A8 smd rect (at 1 -3.77) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A7 smd rect (at 0.5 -3.77) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A6 smd rect (at -0.5 -3.77) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A5 smd rect (at -1 -3.77) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A4 smd rect (at -1.5 -3.77) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A3 smd rect (at -2 -3.77) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A2 smd rect (at -2.5 -3.77) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) + (pad A1 smd rect (at -3 -3.77) (size 0.3 0.7) (layers F.Cu F.Paste F.Mask)) +) diff --git a/lab1/lab1.pretty/PMW3389DM-T3QU.kicad_mod b/lab1/lab1.pretty/PMW3389DM-T3QU.kicad_mod new file mode 100644 index 0000000000000000000000000000000000000000..66db236888902bd8b3ac9f7d77d6c55b6b5eb273 --- /dev/null +++ b/lab1/lab1.pretty/PMW3389DM-T3QU.kicad_mod @@ -0,0 +1,36 @@ +(module PMW3389DM-T3QU (layer F.Cu) (tedit 6013F43B) + (fp_text reference REF** (at -1.7 -7.07) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value PMW3389DM-T3QU (at -1.59 -8.74) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_circle (center -0.02 -0.03) (end 2.98 -0.03) (layer F.SilkS) (width 0.12)) + (fp_circle (center -0.02 -0.03) (end 0.23 -0.03) (layer F.SilkS) (width 0.12)) + (fp_line (start -8.84 4.27) (end 8.42 4.27) (layer F.SilkS) (width 0.12)) + (fp_line (start -8.84 -4.33) (end -8.84 4.24) (layer F.SilkS) (width 0.12)) + (fp_line (start -8.84 -4.33) (end 8.42 -4.33) (layer F.SilkS) (width 0.12)) + (fp_line (start 8.42 -4.33) (end 8.42 4.27) (layer F.SilkS) (width 0.12)) + (fp_text user "Front of mouse" (at -10 0.02 90) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user "Optical Center" (at -0.19 -3.62) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (pad 16 thru_hole circle (at -7.06 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 15 thru_hole circle (at -5.28 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 14 thru_hole circle (at -3.5 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 13 thru_hole circle (at -1.72 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 12 thru_hole circle (at 0.06 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 11 thru_hole circle (at 1.84 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 10 thru_hole circle (at 3.62 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 9 thru_hole circle (at 5.4 -5.38) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 1 thru_hole circle (at -7.95 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 2 thru_hole circle (at -6.17 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 3 thru_hole circle (at -4.39 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 4 thru_hole circle (at -2.61 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 5 thru_hole circle (at -0.83 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 6 thru_hole circle (at 0.95 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 7 thru_hole circle (at 2.73 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) + (pad 8 thru_hole circle (at 4.51 5.32) (size 1.2 1.2) (drill 0.7) (layers *.Cu *.Mask)) +) diff --git a/lab1/lab1.pro b/lab1/lab1.pro index 152769cb7209ca4e1fc17e8154dad5ded6b9d8e4..e3d3d9d5cf1e4edb1617423055b79a1a20582789 100644 --- a/lab1/lab1.pro +++ b/lab1/lab1.pro @@ -1,29 +1,10 @@ -update=22/05/2015 07:44:53 +update=29/01/2021 14:54:55 version=1 last_client=kicad [general] version=1 RootSch= BoardNm= -[pcbnew] -version=1 -LastNetListRead= -UseCmpFile=1 -PadDrill=0.600000000000 -PadDrillOvalY=0.600000000000 -PadSizeH=1.500000000000 -PadSizeV=1.500000000000 -PcbTextSizeV=1.500000000000 -PcbTextSizeH=1.500000000000 -PcbTextThickness=0.300000000000 -ModuleTextSizeV=1.000000000000 -ModuleTextSizeH=1.000000000000 -ModuleTextSizeThickness=0.150000000000 -SolderMaskClearance=0.000000000000 -SolderMaskMinWidth=0.000000000000 -DrawSegmentWidth=0.200000000000 -BoardOutlineThickness=0.100000000000 -ModuleOutlineThickness=0.150000000000 [cvpcb] version=1 NetIExt=net @@ -31,3 +12,248 @@ NetIExt=net version=1 LibDir= [eeschema/libraries] +[schematic_editor] +version=1 +PageLayoutDescrFile= +PlotDirectoryName= +SubpartIdSeparator=0 +SubpartFirstId=65 +NetFmtName=Pcbnew +SpiceAjustPassiveValues=0 +LabSize=50 +ERC_TestSimilarLabels=1 +[pcbnew] +version=1 +PageLayoutDescrFile= +LastNetListRead=lab1.net +CopperLayerCount=2 +BoardThickness=1.6 +AllowMicroVias=0 +AllowBlindVias=0 +RequireCourtyardDefinitions=0 +ProhibitOverlappingCourtyards=1 +MinTrackWidth=0.2 +MinViaDiameter=0.3 +MinViaDrill=0.3 +MinMicroViaDiameter=0.2 +MinMicroViaDrill=0.09999999999999999 +MinHoleToHole=0.25 +TrackWidth1=0.25 +ViaDiameter1=0.8 +ViaDrill1=0.4 +dPairWidth1=0.2 +dPairGap1=0.25 +dPairViaGap1=0.25 +SilkLineWidth=0.12 +SilkTextSizeV=1 +SilkTextSizeH=1 +SilkTextSizeThickness=0.15 +SilkTextItalic=0 +SilkTextUpright=1 +CopperLineWidth=0.2 +CopperTextSizeV=1.5 +CopperTextSizeH=1.5 +CopperTextThickness=0.3 +CopperTextItalic=0 +CopperTextUpright=1 +EdgeCutLineWidth=0.05 +CourtyardLineWidth=0.05 +OthersLineWidth=0.15 +OthersTextSizeV=1 +OthersTextSizeH=1 +OthersTextSizeThickness=0.15 +OthersTextItalic=0 +OthersTextUpright=1 +SolderMaskClearance=0 +SolderMaskMinWidth=0 +SolderPasteClearance=0 +SolderPasteRatio=-0 +[pcbnew/Layer.F.Cu] +Name=F.Cu +Type=0 +Enabled=1 +[pcbnew/Layer.In1.Cu] +Name=In1.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In2.Cu] +Name=In2.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In3.Cu] +Name=In3.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In4.Cu] +Name=In4.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In5.Cu] +Name=In5.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In6.Cu] +Name=In6.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In7.Cu] +Name=In7.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In8.Cu] +Name=In8.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In9.Cu] +Name=In9.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In10.Cu] +Name=In10.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In11.Cu] +Name=In11.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In12.Cu] +Name=In12.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In13.Cu] +Name=In13.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In14.Cu] +Name=In14.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In15.Cu] +Name=In15.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In16.Cu] +Name=In16.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In17.Cu] +Name=In17.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In18.Cu] +Name=In18.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In19.Cu] +Name=In19.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In20.Cu] +Name=In20.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In21.Cu] +Name=In21.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In22.Cu] +Name=In22.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In23.Cu] +Name=In23.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In24.Cu] +Name=In24.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In25.Cu] +Name=In25.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In26.Cu] +Name=In26.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In27.Cu] +Name=In27.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In28.Cu] +Name=In28.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In29.Cu] +Name=In29.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.In30.Cu] +Name=In30.Cu +Type=0 +Enabled=0 +[pcbnew/Layer.B.Cu] +Name=B.Cu +Type=0 +Enabled=1 +[pcbnew/Layer.B.Adhes] +Enabled=1 +[pcbnew/Layer.F.Adhes] +Enabled=1 +[pcbnew/Layer.B.Paste] +Enabled=1 +[pcbnew/Layer.F.Paste] +Enabled=1 +[pcbnew/Layer.B.SilkS] +Enabled=1 +[pcbnew/Layer.F.SilkS] +Enabled=1 +[pcbnew/Layer.B.Mask] +Enabled=1 +[pcbnew/Layer.F.Mask] +Enabled=1 +[pcbnew/Layer.Dwgs.User] +Enabled=1 +[pcbnew/Layer.Cmts.User] +Enabled=1 +[pcbnew/Layer.Eco1.User] +Enabled=1 +[pcbnew/Layer.Eco2.User] +Enabled=1 +[pcbnew/Layer.Edge.Cuts] +Enabled=1 +[pcbnew/Layer.Margin] +Enabled=1 +[pcbnew/Layer.B.CrtYd] +Enabled=1 +[pcbnew/Layer.F.CrtYd] +Enabled=1 +[pcbnew/Layer.B.Fab] +Enabled=1 +[pcbnew/Layer.F.Fab] +Enabled=1 +[pcbnew/Layer.Rescue] +Enabled=0 +[pcbnew/Netclasses] +[pcbnew/Netclasses/Default] +Name=Default +Clearance=0.2 +TrackWidth=0.25 +ViaDiameter=0.8 +ViaDrill=0.4 +uViaDiameter=0.3 +uViaDrill=0.1 +dPairWidth=0.2 +dPairGap=0.25 +dPairViaGap=0.25 +[pcbnew/Netclasses/1] +Name=power +Clearance=0.2 +TrackWidth=0.5 +ViaDiameter=0.8 +ViaDrill=0.4 +uViaDiameter=0.3 +uViaDrill=0.1 +dPairWidth=0.2 +dPairGap=0.25 +dPairViaGap=0.25 diff --git a/lab1/lab1.sch b/lab1/lab1.sch index 84d6794b17a51c7de87ad34b24438d8b5a29aeee..9c2c0091ce7de38e79057bcd70e8b16d0ebc95b2 100644 --- a/lab1/lab1.sch +++ b/lab1/lab1.sch @@ -16,27 +16,14 @@ $EndDescr $Comp L Jumper:Jumper_3_Bridged12 JP1 U 1 1 600901F4 -P 10250 3400 -F 0 "JP1" V 10204 3467 50 0000 L CNN -F 1 "DFU" V 10295 3467 50 0000 L CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 10250 3400 50 0001 C CNN -F 3 "~" H 10250 3400 50 0001 C CNN - 1 10250 3400 +P 10650 3450 +F 0 "JP1" V 10604 3517 50 0000 L CNN +F 1 "DFU" V 10695 3517 50 0000 L CNN +F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" H 10650 3450 50 0001 C CNN +F 3 "~" H 10650 3450 50 0001 C CNN + 1 10650 3450 0 1 1 0 $EndComp -Text GLabel 10050 3400 0 50 Output ~ 0 -BOOT0 -$Comp -L power:+3.3V #PWR0101 -U 1 1 60095BFD -P 10250 3100 -F 0 "#PWR0101" H 10250 2950 50 0001 C CNN -F 1 "+3.3V" H 10265 3273 50 0000 C CNN -F 2 "" H 10250 3100 50 0001 C CNN -F 3 "" H 10250 3100 50 0001 C CNN - 1 10250 3100 - 1 0 0 -1 -$EndComp $Comp L Device:C C14 U 1 1 6009CA4A @@ -59,28 +46,6 @@ F 3 "~" H 6100 3300 50 0001 C CNN 1 6100 3300 0 1 1 0 $EndComp -$Comp -L power:GND #PWR0102 -U 1 1 6009F78A -P 5900 2900 -F 0 "#PWR0102" H 5900 2650 50 0001 C CNN -F 1 "GND" V 5905 2772 50 0000 R CNN -F 2 "" H 5900 2900 50 0001 C CNN -F 3 "" H 5900 2900 50 0001 C CNN - 1 5900 2900 - 0 1 1 0 -$EndComp -$Comp -L power:GND #PWR0103 -U 1 1 600A10EE -P 5900 3300 -F 0 "#PWR0103" H 5900 3050 50 0001 C CNN -F 1 "GND" V 5905 3172 50 0000 R CNN -F 2 "" H 5900 3300 50 0001 C CNN -F 3 "" H 5900 3300 50 0001 C CNN - 1 5900 3300 - 0 1 1 0 -$EndComp Wire Wire Line 6600 2900 6600 2950 $Comp @@ -94,19 +59,6 @@ F 3 "~" H 9850 4550 50 0001 C CNN 1 9850 4550 -1 0 0 -1 $EndComp -$Comp -L power:GND #PWR0105 -U 1 1 600AA4E2 -P 9200 4550 -F 0 "#PWR0105" H 9200 4300 50 0001 C CNN -F 1 "GND" H 9205 4377 50 0000 C CNN -F 2 "" H 9200 4550 50 0001 C CNN -F 3 "" H 9200 4550 50 0001 C CNN - 1 9200 4550 - 1 0 0 -1 -$EndComp -Text GLabel 9600 4750 0 50 Input ~ 0 -NRST Text GLabel 9600 4650 0 50 BiDi ~ 0 SWDIO Text GLabel 9600 4850 0 50 Input ~ 0 @@ -120,49 +72,14 @@ SWO Text GLabel 8650 3100 2 50 BiDi ~ 0 SWDIO $Comp -L power:GND #PWR0106 -U 1 1 600BCA15 -P 8250 5150 -F 0 "#PWR0106" H 8250 4900 50 0001 C CNN -F 1 "GND" H 8255 4977 50 0000 C CNN -F 2 "" H 8250 5150 50 0001 C CNN -F 3 "" H 8250 5150 50 0001 C CNN - 1 8250 5150 - 1 0 0 -1 -$EndComp -$Comp L Device:R R7 U 1 1 600BD34A -P 10250 3850 -F 0 "R7" H 10320 3896 50 0000 L CNN -F 1 "10kΩ" H 10320 3805 50 0000 L CNN -F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" V 10180 3850 50 0001 C CNN -F 3 "~" H 10250 3850 50 0001 C CNN - 1 10250 3850 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0107 -U 1 1 600BE8B0 -P 10250 4050 -F 0 "#PWR0107" H 10250 3800 50 0001 C CNN -F 1 "GND" H 10255 3877 50 0000 C CNN -F 2 "" H 10250 4050 50 0001 C CNN -F 3 "" H 10250 4050 50 0001 C CNN - 1 10250 4050 - 1 0 0 -1 -$EndComp -Text GLabel 7150 2000 0 50 Input ~ 0 -BOOT0 -$Comp -L Switch:SW_MEC_5G SW1 -U 1 1 600E8EB3 -P 9900 2350 -F 0 "SW1" V 9854 2498 50 0000 L CNN -F 1 "RESET" V 9945 2498 50 0000 L CNN -F 2 "Button_Switch_SMD:SW_SPST_REED_CT05-XXXX-J1" H 9900 2550 50 0001 C CNN -F 3 "http://www.apem.com/int/index.php?controller=attachment&id_attachment=488" H 9900 2550 50 0001 C CNN - 1 9900 2350 +P 10350 3750 +F 0 "R7" V 10450 3800 50 0000 L CNN +F 1 "10kΩ" V 10450 3600 50 0000 L CNN +F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" V 10280 3750 50 0001 C CNN +F 3 "~" H 10350 3750 50 0001 C CNN + 1 10350 3750 0 1 1 0 $EndComp $Comp @@ -188,17 +105,6 @@ F 3 "https://www.diodes.com/assets/Datasheets/AP2127.pdf" H 4200 900 50 0001 C 1 0 0 -1 $EndComp $Comp -L power:+5V #PWR0108 -U 1 1 600F7A77 -P 3700 1950 -F 0 "#PWR0108" H 3700 1800 50 0001 C CNN -F 1 "+5V" H 3715 2123 50 0000 C CNN -F 2 "" H 3700 1950 50 0001 C CNN -F 3 "" H 3700 1950 50 0001 C CNN - 1 3700 1950 - 1 0 0 -1 -$EndComp -$Comp L Device:C C7 U 1 1 600F8FFC P 3700 2400 @@ -221,134 +127,34 @@ Wire Wire Line 3700 2150 3700 2050 Wire Wire Line 3700 2150 3850 2150 -$Comp -L power:GND #PWR0109 -U 1 1 600FB3E7 -P 4150 2800 -F 0 "#PWR0109" H 4150 2550 50 0001 C CNN -F 1 "GND" H 4155 2627 50 0000 C CNN -F 2 "" H 4150 2800 50 0001 C CNN -F 3 "" H 4150 2800 50 0001 C CNN - 1 4150 2800 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0110 -U 1 1 600FC23A -P 3700 2800 -F 0 "#PWR0110" H 3700 2550 50 0001 C CNN -F 1 "GND" H 3705 2627 50 0000 C CNN -F 2 "" H 3700 2800 50 0001 C CNN -F 3 "" H 3700 2800 50 0001 C CNN - 1 3700 2800 - 1 0 0 -1 -$EndComp Connection ~ 6600 2900 Connection ~ 8000 1300 Wire Wire Line 7900 1300 8000 1300 $Comp -L power:+3.3V #PWR0111 -U 1 1 6011A16B -P 7600 1500 -F 0 "#PWR0111" H 7600 1350 50 0001 C CNN -F 1 "+3.3V" H 7615 1673 50 0000 C CNN -F 2 "" H 7600 1500 50 0001 C CNN -F 3 "" H 7600 1500 50 0001 C CNN - 1 7600 1500 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0112 -U 1 1 6011B5B1 -P 10450 1100 -F 0 "#PWR0112" H 10450 850 50 0001 C CNN -F 1 "GND" H 10455 927 50 0000 C CNN -F 2 "" H 10450 1100 50 0001 C CNN -F 3 "" H 10450 1100 50 0001 C CNN - 1 10450 1100 - 1 0 0 -1 -$EndComp -$Comp L Device:C C18 U 1 1 6012239A -P 7750 900 -F 0 "C18" H 7635 854 50 0000 R CNN -F 1 "100nF" H 7635 945 50 0000 R CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 7788 750 50 0001 C CNN -F 3 "~" H 7750 900 50 0001 C CNN - 1 7750 900 +P 8150 900 +F 0 "C18" H 8035 854 50 0000 R CNN +F 1 "100nF" H 8035 945 50 0000 R CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 8188 750 50 0001 C CNN +F 3 "~" H 8150 900 50 0001 C CNN + 1 8150 900 -1 0 0 1 $EndComp $Comp L Device:C C17 U 1 1 60122E63 -P 7300 900 -F 0 "C17" H 7185 854 50 0000 R CNN -F 1 "100nF" H 7185 945 50 0000 R CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 7338 750 50 0001 C CNN -F 3 "~" H 7300 900 50 0001 C CNN - 1 7300 900 - -1 0 0 1 -$EndComp -Wire Wire Line - 7750 1050 7300 1050 -$Comp -L Device:C C26 -U 1 1 601368EA -P 10450 2400 -F 0 "C26" H 10335 2354 50 0000 R CNN -F 1 "100n" H 10335 2445 50 0000 R CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 10488 2250 50 0001 C CNN -F 3 "~" H 10450 2400 50 0001 C CNN - 1 10450 2400 +P 7700 900 +F 0 "C17" H 7585 854 50 0000 R CNN +F 1 "100nF" H 7585 945 50 0000 R CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 7738 750 50 0001 C CNN +F 3 "~" H 7700 900 50 0001 C CNN + 1 7700 900 -1 0 0 1 $EndComp -$Comp -L power:GND #PWR0113 -U 1 1 601368F0 -P 10450 2650 -F 0 "#PWR0113" H 10450 2400 50 0001 C CNN -F 1 "GND" H 10455 2477 50 0000 C CNN -F 2 "" H 10450 2650 50 0001 C CNN -F 3 "" H 10450 2650 50 0001 C CNN - 1 10450 2650 - 1 0 0 -1 -$EndComp -Wire Wire Line - 10450 2650 10450 2600 -$Comp -L power:GND #PWR0114 -U 1 1 60139E95 -P 9900 2650 -F 0 "#PWR0114" H 9900 2400 50 0001 C CNN -F 1 "GND" H 9905 2477 50 0000 C CNN -F 2 "" H 9900 2650 50 0001 C CNN -F 3 "" H 9900 2650 50 0001 C CNN - 1 9900 2650 - 1 0 0 -1 -$EndComp -Wire Wire Line - 9900 2650 9900 2550 -Wire Wire Line - 10450 2250 10450 2150 -Wire Wire Line - 10450 2150 9900 2150 -Text GLabel 7150 1800 0 50 Input ~ 0 -NRST -Text GLabel 9800 2150 0 50 Output ~ 0 -NRST -Wire Wire Line - 9900 2150 9800 2150 -Connection ~ 9900 2150 Wire Wire Line - 10250 3100 10250 3150 -Wire Wire Line - 10250 3650 10250 3700 -Wire Wire Line - 10250 4000 10250 4050 -Wire Wire Line - 10100 3400 10050 3400 + 8150 1050 7700 1050 Wire Wire Line 9600 4650 9650 4650 Wire Wire Line @@ -373,10 +179,6 @@ Wire Wire Line 8200 1300 8200 1600 Wire Wire Line 8000 1300 8000 1600 -Wire Wire Line - 7900 1600 7900 1300 -Wire Wire Line - 7200 1800 7150 1800 Wire Wire Line 7200 2000 7150 2000 Wire Wire Line @@ -435,40 +237,16 @@ U 1 1 601FFB02 P 1200 1550 F 0 "P1" H 1307 2417 50 0000 C CNN F 1 "CX90M-16P" H 1307 2326 50 0000 C CNN -F 2 "Connector_USB:USB_C_Receptacle_Amphenol_12401548E4-2A" H 1350 1550 50 0001 C CNN +F 2 "lab1:MOLEX_1054550101" H 1350 1550 50 0001 C CNN F 3 "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" H 1350 1550 50 0001 C CNN 1 1200 1550 1 0 0 -1 $EndComp -$Comp -L power:+5V #PWR0115 -U 1 1 60219DE1 -P 2100 950 -F 0 "#PWR0115" H 2100 800 50 0001 C CNN -F 1 "+5V" H 2115 1123 50 0000 C CNN -F 2 "" H 2100 950 50 0001 C CNN -F 3 "" H 2100 950 50 0001 C CNN - 1 2100 950 - 1 0 0 -1 -$EndComp Wire Wire Line 1800 950 2100 950 NoConn ~ 900 2450 -$Comp -L power:GND #PWR0116 -U 1 1 60221F4C -P 1200 2500 -F 0 "#PWR0116" H 1200 2250 50 0001 C CNN -F 1 "GND" H 1205 2327 50 0000 C CNN -F 2 "" H 1200 2500 50 0001 C CNN -F 3 "" H 1200 2500 50 0001 C CNN - 1 1200 2500 - 1 0 0 -1 -$EndComp Wire Wire Line 1200 2500 1200 2450 -Wire Wire Line - 4500 900 4750 900 Wire Wire Line 3650 900 3900 900 Wire Wire Line @@ -483,43 +261,9 @@ Wire Wire Line 3650 1200 3650 1250 Wire Wire Line 4750 900 4750 850 -Connection ~ 4750 900 Wire Wire Line 3650 900 3650 850 Connection ~ 3650 900 -$Comp -L power:+5V #PWR0117 -U 1 1 6024BC1F -P 3650 850 -F 0 "#PWR0117" H 3650 700 50 0001 C CNN -F 1 "+5V" H 3665 1023 50 0000 C CNN -F 2 "" H 3650 850 50 0001 C CNN -F 3 "" H 3650 850 50 0001 C CNN - 1 3650 850 - 1 0 0 -1 -$EndComp -$Comp -L power:+3.3V #PWR0118 -U 1 1 6024E05C -P 4750 850 -F 0 "#PWR0118" H 4750 700 50 0001 C CNN -F 1 "+3.3V" H 4765 1023 50 0000 C CNN -F 2 "" H 4750 850 50 0001 C CNN -F 3 "" H 4750 850 50 0001 C CNN - 1 4750 850 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0120 -U 1 1 602527C6 -P 4200 1250 -F 0 "#PWR0120" H 4200 1000 50 0001 C CNN -F 1 "GND" H 4205 1077 50 0000 C CNN -F 2 "" H 4200 1250 50 0001 C CNN -F 3 "" H 4200 1250 50 0001 C CNN - 1 4200 1250 - 1 0 0 -1 -$EndComp Wire Wire Line 6600 2900 6250 2900 $Comp @@ -573,28 +317,6 @@ Wire Wire Line 4650 2750 4650 2800 Wire Wire Line 5000 2150 5100 2150 -$Comp -L power:GND #PWR0122 -U 1 1 602874B9 -P 4650 2800 -F 0 "#PWR0122" H 4650 2550 50 0001 C CNN -F 1 "GND" H 4655 2627 50 0000 C CNN -F 2 "" H 4650 2800 50 0001 C CNN -F 3 "" H 4650 2800 50 0001 C CNN - 1 4650 2800 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0123 -U 1 1 60289F31 -P 5100 2150 -F 0 "#PWR0123" H 5100 1900 50 0001 C CNN -F 1 "GND" H 5105 1977 50 0000 C CNN -F 2 "" H 5100 2150 50 0001 C CNN -F 3 "" H 5100 2150 50 0001 C CNN - 1 5100 2150 - 1 0 0 -1 -$EndComp Wire Wire Line 5000 1750 5000 1850 Text Notes 3600 3450 0 50 ~ 0 @@ -612,36 +334,9 @@ F 3 "~" H 6900 2350 50 0001 C CNN $EndComp Wire Wire Line 6900 2500 6900 2600 -$Comp -L power:GND #PWR0124 -U 1 1 600AB79E -P 6900 2600 -F 0 "#PWR0124" H 6900 2350 50 0001 C CNN -F 1 "GND" H 6905 2427 50 0000 C CNN -F 2 "" H 6900 2600 50 0001 C CNN -F 3 "" H 6900 2600 50 0001 C CNN - 1 6900 2600 - 1 0 0 -1 -$EndComp Text Label 1800 950 0 50 ~ 0 100mA $Comp -L power:GND #PWR0125 -U 1 1 600F86E3 -P 1350 5650 -F 0 "#PWR0125" H 1350 5400 50 0001 C CNN -F 1 "GND" H 1355 5477 50 0000 C CNN -F 2 "" H 1350 5650 50 0001 C CNN -F 3 "" H 1350 5650 50 0001 C CNN - 1 1350 5650 - 1 0 0 -1 -$EndComp -Wire Wire Line - 1150 5650 1350 5650 -Connection ~ 1350 5650 -Wire Wire Line - 1350 5650 1550 5650 -$Comp L Device:C C13 U 1 1 60111179 P 4050 7050 @@ -663,36 +358,9 @@ F 3 "~" H 3650 7050 50 0001 C CNN 1 3650 7050 1 0 0 -1 $EndComp -$Comp -L power:GND #PWR0126 -U 1 1 60111185 -P 3850 7200 -F 0 "#PWR0126" H 3850 6950 50 0001 C CNN -F 1 "GND" H 3855 7027 50 0000 C CNN -F 2 "" H 3850 7200 50 0001 C CNN -F 3 "" H 3850 7200 50 0001 C CNN - 1 3850 7200 - 1 0 0 -1 -$EndComp -Wire Wire Line - 3650 7200 3850 7200 -Connection ~ 3850 7200 -Wire Wire Line - 3850 7200 4050 7200 Wire Wire Line 3650 6900 4050 6900 $Comp -L lab1-rescue:+1.9V-power #PWR0127 -U 1 1 6013BBDD -P 5000 1750 -F 0 "#PWR0127" H 5000 1600 50 0001 C CNN -F 1 "+1.9V" H 5015 1923 50 0000 C CNN -F 2 "" H 5000 1750 50 0001 C CNN -F 3 "" H 5000 1750 50 0001 C CNN - 1 5000 1750 - 1 0 0 -1 -$EndComp -$Comp L Device:C C5 U 1 1 600DE1C6 P 1550 5500 @@ -719,17 +387,6 @@ Wire Wire Line Wire Wire Line 1150 5350 1550 5350 Connection ~ 3650 6900 -$Comp -L lab1-rescue:+1.9V-power #PWR0128 -U 1 1 601A7A88 -P 4050 6850 -F 0 "#PWR0128" H 4050 6700 50 0001 C CNN -F 1 "+1.9V" H 4065 7023 50 0000 C CNN -F 2 "" H 4050 6850 50 0001 C CNN -F 3 "" H 4050 6850 50 0001 C CNN - 1 4050 6850 - 1 0 0 -1 -$EndComp Wire Wire Line 4050 6850 4050 6900 Connection ~ 4050 6900 @@ -737,41 +394,6 @@ Wire Wire Line 3300 6900 3650 6900 Wire Wire Line 3400 5950 3400 5900 -$Comp -L power:+3.3V #PWR0129 -U 1 1 6022F7BC -P 3400 5900 -F 0 "#PWR0129" H 3400 5750 50 0001 C CNN -F 1 "+3.3V" H 3415 6073 50 0000 C CNN -F 2 "" H 3400 5900 50 0001 C CNN -F 3 "" H 3400 5900 50 0001 C CNN - 1 3400 5900 - 1 0 0 -1 -$EndComp -$Comp -L power:+3.3V #PWR0131 -U 1 1 6029BF55 -P 3050 3950 -F 0 "#PWR0131" H 3050 3800 50 0001 C CNN -F 1 "+3.3V" H 3065 4123 50 0000 C CNN -F 2 "" H 3050 3950 50 0001 C CNN -F 3 "" H 3050 3950 50 0001 C CNN - 1 3050 3950 - 1 0 0 -1 -$EndComp -$Comp -L lab1-rescue:+1.9V-power #PWR0132 -U 1 1 602A0D20 -P 3750 4050 -F 0 "#PWR0132" H 3750 3900 50 0001 C CNN -F 1 "+1.9V" H 3765 4223 50 0000 C CNN -F 2 "" H 3750 4050 50 0001 C CNN -F 3 "" H 3750 4050 50 0001 C CNN - 1 3750 4050 - 1 0 0 -1 -$EndComp -Wire Wire Line - 3050 3950 3200 3950 Wire Wire Line 3750 4050 3900 4050 $Comp @@ -780,24 +402,13 @@ U 1 1 602F84E9 P 4350 2750 F 0 "J3" H 4322 2682 50 0000 R CNN F 1 "TestPoint" H 4322 2773 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Horizontal" H 4350 2750 50 0001 C CNN +F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 4350 2750 50 0001 C CNN F 3 "~" H 4350 2750 50 0001 C CNN 1 4350 2750 -1 0 0 1 $EndComp Connection ~ 4650 2050 $Comp -L MCU_ST_STM32F4:STM32F411RETx U5 -U 1 1 60085361 -P 7900 3300 -F 0 "U5" H 7900 1411 50 0000 C CNN -F 1 "STM32F411RETx" H 7900 1320 50 0000 R BNN -F 2 "Package_QFP:LQFP-64_10x10mm_P0.5mm" H 7300 1600 50 0001 R CNN -F 3 "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00115249.pdf" H 7900 3300 50 0001 C CNN - 1 7900 3300 - 1 0 0 -1 -$EndComp -$Comp L Device:C C19 U 1 1 600C3D4A P 7300 1250 @@ -809,267 +420,121 @@ F 3 "~" H 7300 1250 50 0001 C CNN 0 -1 -1 0 $EndComp Wire Wire Line - 8700 1300 8200 1300 -Wire Wire Line - 7300 750 7750 750 + 7700 750 8150 750 Wire Wire Line - 7200 750 7300 750 -Connection ~ 7300 750 -Connection ~ 8200 1300 -Text GLabel 8700 1300 2 50 Input ~ 0 -VDD -Text GLabel 7200 750 0 50 Output ~ 0 -VDD -Wire Wire Line - 7600 1500 7600 1600 -Connection ~ 7750 1050 + 7600 750 7700 750 +Connection ~ 7700 750 +Connection ~ 8150 1050 Wire Wire Line - 8200 750 7750 750 + 8600 750 8150 750 Wire Wire Line - 8200 1050 7750 1050 + 8600 1050 8150 1050 $Comp L Device:C C20 U 1 1 601EB513 -P 8200 900 -F 0 "C20" H 8085 854 50 0000 R CNN -F 1 "100nF" H 8085 945 50 0000 R CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 8238 750 50 0001 C CNN -F 3 "~" H 8200 900 50 0001 C CNN - 1 8200 900 +P 8600 900 +F 0 "C20" H 8485 854 50 0000 R CNN +F 1 "100nF" H 8485 945 50 0000 R CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 8638 750 50 0001 C CNN +F 3 "~" H 8600 900 50 0001 C CNN + 1 8600 900 -1 0 0 1 $EndComp Wire Wire Line - 8650 750 8200 750 -Wire Wire Line - 8650 1050 8200 1050 -Connection ~ 8200 750 -Connection ~ 7750 750 -Connection ~ 8200 1050 + 9050 1050 8600 1050 +Connection ~ 8150 750 +Connection ~ 8600 1050 $Comp L Device:C C21 U 1 1 6021A88D -P 8650 900 -F 0 "C21" H 8535 854 50 0000 R CNN -F 1 "100nF" H 8535 945 50 0000 R CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 8688 750 50 0001 C CNN -F 3 "~" H 8650 900 50 0001 C CNN - 1 8650 900 +P 9050 900 +F 0 "C21" H 8935 854 50 0000 R CNN +F 1 "100nF" H 8935 945 50 0000 R CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 9088 750 50 0001 C CNN +F 3 "~" H 9050 900 50 0001 C CNN + 1 9050 900 -1 0 0 1 $EndComp -Wire Wire Line - 9100 750 8650 750 -Wire Wire Line - 9100 1050 8650 1050 $Comp L Device:C C22 U 1 1 6021F85D -P 9100 900 -F 0 "C22" H 8985 854 50 0000 R CNN -F 1 "100nF" H 8985 945 50 0000 R CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 9138 750 50 0001 C CNN -F 3 "~" H 9100 900 50 0001 C CNN - 1 9100 900 +P 9500 900 +F 0 "C22" H 9385 854 50 0000 R CNN +F 1 "100nF" H 9385 945 50 0000 R CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 9538 750 50 0001 C CNN +F 3 "~" H 9500 900 50 0001 C CNN + 1 9500 900 -1 0 0 1 $EndComp -Wire Wire Line - 9550 750 9100 750 -Wire Wire Line - 9550 1050 9100 1050 $Comp L Device:C C23 U 1 1 6022473A -P 9550 900 -F 0 "C23" H 9435 854 50 0000 R CNN -F 1 "100nF" H 9435 945 50 0000 R CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 9588 750 50 0001 C CNN -F 3 "~" H 9550 900 50 0001 C CNN - 1 9550 900 +P 9950 900 +F 0 "C23" H 9835 854 50 0000 R CNN +F 1 "100nF" H 9835 945 50 0000 R CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 9988 750 50 0001 C CNN +F 3 "~" H 9950 900 50 0001 C CNN + 1 9950 900 -1 0 0 1 $EndComp -Wire Wire Line - 10000 750 9550 750 -Wire Wire Line - 10000 1050 9550 1050 $Comp L Device:C C24 U 1 1 60229599 -P 10000 900 -F 0 "C24" H 9885 854 50 0000 R CNN -F 1 "100nF" H 9885 945 50 0000 R CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 10038 750 50 0001 C CNN -F 3 "~" H 10000 900 50 0001 C CNN - 1 10000 900 - -1 0 0 1 -$EndComp -Wire Wire Line - 10450 750 10000 750 -Wire Wire Line - 10450 1050 10000 1050 -$Comp -L Device:C C25 -U 1 1 6022E4D6 -P 10450 900 -F 0 "C25" H 10335 854 50 0000 R CNN -F 1 "1μF" H 10335 945 50 0000 R CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 10488 750 50 0001 C CNN -F 3 "~" H 10450 900 50 0001 C CNN - 1 10450 900 +P 10400 900 +F 0 "C24" H 10285 854 50 0000 R CNN +F 1 "100nF" H 10285 945 50 0000 R CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 10438 750 50 0001 C CNN +F 3 "~" H 10400 900 50 0001 C CNN + 1 10400 900 -1 0 0 1 $EndComp Wire Wire Line - 10450 1050 10450 1100 -Connection ~ 10450 1050 + 10850 1050 10850 1100 Text GLabel 3200 7350 0 50 Output ~ 0 LED_P -$Comp -L power:+3.3V #PWR0133 -U 1 1 60195A26 -P 1000 7100 -F 0 "#PWR0133" H 1000 6950 50 0001 C CNN -F 1 "+3.3V" H 1015 7273 50 0000 C CNN -F 2 "" H 1000 7100 50 0001 C CNN -F 3 "" H 1000 7100 50 0001 C CNN - 1 1000 7100 - 1 0 0 -1 -$EndComp -Connection ~ 1000 7150 -Wire Wire Line - 1000 7150 1000 7100 +Connection ~ 750 6650 Wire Wire Line - 1000 7150 1400 7150 + 750 6650 750 6600 Wire Wire Line - 1200 7450 1400 7450 -Connection ~ 1200 7450 -Wire Wire Line - 1000 7450 1200 7450 -$Comp -L power:GND #PWR0134 -U 1 1 60107FF5 -P 1200 7450 -F 0 "#PWR0134" H 1200 7200 50 0001 C CNN -F 1 "GND" H 1205 7277 50 0000 C CNN -F 2 "" H 1200 7450 50 0001 C CNN -F 3 "" H 1200 7450 50 0001 C CNN - 1 1200 7450 - 1 0 0 -1 -$EndComp + 750 6650 1150 6650 $Comp L Device:C C2 U 1 1 60107FEF -P 1000 7300 -F 0 "C2" H 1115 7346 50 0000 L CNN -F 1 "10uF" H 1115 7255 50 0000 L CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 1038 7150 50 0001 C CNN -F 3 "~" H 1000 7300 50 0001 C CNN - 1 1000 7300 +P 750 6800 +F 0 "C2" H 865 6846 50 0000 L CNN +F 1 "10uF" H 865 6755 50 0000 L CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 788 6650 50 0001 C CNN +F 3 "~" H 750 6800 50 0001 C CNN + 1 750 6800 1 0 0 -1 $EndComp $Comp L Device:C C4 U 1 1 60107FE9 -P 1400 7300 -F 0 "C4" H 1515 7346 50 0000 L CNN -F 1 "100nF" H 1515 7255 50 0000 L CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 1438 7150 50 0001 C CNN -F 3 "~" H 1400 7300 50 0001 C CNN - 1 1400 7300 - 1 0 0 -1 -$EndComp -$Comp -L lab1-rescue:+1.9V-power #PWR0135 -U 1 1 6017F792 -P 1050 6200 -F 0 "#PWR0135" H 1050 6050 50 0001 C CNN -F 1 "+1.9V" H 1065 6373 50 0000 C CNN -F 2 "" H 1050 6200 50 0001 C CNN -F 3 "" H 1050 6200 50 0001 C CNN - 1 1050 6200 - 1 0 0 -1 -$EndComp -Wire Wire Line - 1050 6250 1050 6200 -Wire Wire Line - 1050 6550 1250 6550 -$Comp -L Device:C C8 -U 1 1 6010C304 -P 1050 6400 -F 0 "C8" H 1165 6446 50 0000 L CNN -F 1 "100uF" H 1165 6355 50 0000 L CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 1088 6250 50 0001 C CNN -F 3 "~" H 1050 6400 50 0001 C CNN - 1 1050 6400 +P 1150 6800 +F 0 "C4" H 1265 6846 50 0000 L CNN +F 1 "100nF" H 1265 6755 50 0000 L CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 1188 6650 50 0001 C CNN +F 3 "~" H 1150 6800 50 0001 C CNN + 1 1150 6800 1 0 0 -1 $EndComp -Text GLabel 1400 7150 2 50 BiDi ~ 0 -VDDIO Connection ~ 1550 5350 Text GLabel 1650 5350 2 50 Input ~ 0 VDCPIX $Comp -L Connector:Conn_01x01_Male J4 -U 1 1 603548E6 -P 6550 3500 -F 0 "J4" H 6522 3432 50 0000 R CNN -F 1 "TestPoint" H 6522 3523 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Horizontal" H 6550 3500 50 0001 C CNN -F 3 "~" H 6550 3500 50 0001 C CNN - 1 6550 3500 - 1 0 0 -1 -$EndComp -Wire Wire Line - 6750 3500 6750 3300 -Wire Wire Line - 6750 3300 7100 3300 -$Comp -L Connector:Conn_01x01_Male J7 -U 1 1 60369D6F -P 10650 2600 -F 0 "J7" H 10622 2532 50 0000 R CNN -F 1 "TestPoint" H 10622 2623 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal" H 10650 2600 50 0001 C CNN -F 3 "~" H 10650 2600 50 0001 C CNN - 1 10650 2600 - -1 0 0 1 -$EndComp -$Comp -L Connector:Conn_01x01_Male J5 -U 1 1 60374844 -P 6700 2600 -F 0 "J5" H 6672 2532 50 0000 R CNN -F 1 "TestPoint" H 6672 2623 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Horizontal" H 6700 2600 50 0001 C CNN -F 3 "~" H 6700 2600 50 0001 C CNN - 1 6700 2600 - 1 0 0 -1 -$EndComp -$Comp L Connector:Conn_01x01_Male J1 U 1 1 6037D04C P 1800 6650 F 0 "J1" H 1772 6582 50 0000 R CNN F 1 "TestPoint" H 1772 6673 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Horizontal" H 1800 6650 50 0001 C CNN +F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 1800 6650 50 0001 C CNN F 3 "~" H 1800 6650 50 0001 C CNN 1 1800 6650 1 0 0 -1 $EndComp Wire Wire Line 3300 7350 3300 7200 -Wire Wire Line - 3200 7200 3300 7200 -$Comp -L Connector:Conn_01x01_Male J2 -U 1 1 603A04DA -P 3000 7200 -F 0 "J2" H 2972 7132 50 0000 R CNN -F 1 "TestPoint" H 2972 7223 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Horizontal" H 3000 7200 50 0001 C CNN -F 3 "~" H 3000 7200 50 0001 C CNN - 1 3000 7200 - 1 0 0 -1 -$EndComp -Connection ~ 3300 7200 Wire Wire Line 3200 7350 3300 7350 $Comp @@ -1096,20 +561,9 @@ F 3 "~" H 4050 4250 50 0001 C CNN $EndComp Wire Wire Line 4200 4250 4300 4250 -$Comp -L power:GND #PWR0137 -U 1 1 604FA4E8 -P 4300 4250 -F 0 "#PWR0137" H 4300 4000 50 0001 C CNN -F 1 "GND" H 4305 4077 50 0000 C CNN -F 2 "" H 4300 4250 50 0001 C CNN -F 3 "" H 4300 4250 50 0001 C CNN - 1 4300 4250 - 1 0 0 -1 -$EndComp Wire Wire Line 3900 4050 3900 4250 -Text Notes 3150 5200 0 50 ~ 0 +Text Notes 3800 4900 0 50 ~ 0 LED has forward voltage drop of 1.95 \nand forward current of 20 mA\nSo no resistor from +1.9V to GND\n3.3V:(3.3-1.95)/20mA = 67.5 ≈ 68\n $Comp L Device:LED D2 @@ -1126,50 +580,8 @@ Wire Wire Line 3200 4250 3200 4500 Wire Wire Line 3500 4500 3600 4500 -$Comp -L power:GND #PWR0138 -U 1 1 60552125 -P 3600 4500 -F 0 "#PWR0138" H 3600 4250 50 0001 C CNN -F 1 "GND" H 3605 4327 50 0000 C CNN -F 2 "" H 3600 4500 50 0001 C CNN -F 3 "" H 3600 4500 50 0001 C CNN - 1 3600 4500 - 1 0 0 -1 -$EndComp -Connection ~ 1250 6550 -Connection ~ 1050 6250 Text GLabel 2000 6150 0 50 Output ~ 0 VDCPIX -Text GLabel 2050 6350 0 50 BiDi ~ 0 -VDDIO -$Comp -L Device:C C10 -U 1 1 6010C2FE -P 1450 6400 -F 0 "C10" H 1565 6446 50 0000 L CNN -F 1 "10uF" H 1565 6355 50 0000 L CNN -F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 1488 6250 50 0001 C CNN -F 3 "~" H 1450 6400 50 0001 C CNN - 1 1450 6400 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0139 -U 1 1 6010C30A -P 1250 6550 -F 0 "#PWR0139" H 1250 6300 50 0001 C CNN -F 1 "GND" H 1255 6377 50 0000 C CNN -F 2 "" H 1250 6550 50 0001 C CNN -F 3 "" H 1250 6550 50 0001 C CNN - 1 1250 6550 - 1 0 0 -1 -$EndComp -Wire Wire Line - 1250 6550 1450 6550 -Wire Wire Line - 1050 6250 1450 6250 -Connection ~ 1450 6250 Wire Wire Line 3000 5950 3050 5950 Wire Wire Line @@ -1199,33 +611,22 @@ U 1 1 60265B7D P 2500 6150 F 0 "U4" H 2500 5527 50 0000 C CNN F 1 "PWM3389" H 2500 5436 50 0000 C CNN -F 2 "" H 2500 6600 50 0001 C CNN +F 2 "lab1:PMW3389DM-T3QU" H 2500 6600 50 0001 C CNN F 3 "" H 2500 6600 50 0001 C CNN 1 2500 6150 1 0 0 -1 $EndComp Wire Wire Line 2000 6650 2050 6650 -$Comp -L power:GND #PWR0140 -U 1 1 600CDA78 -P 2000 6650 -F 0 "#PWR0140" H 2000 6400 50 0001 C CNN -F 1 "GND" H 2005 6477 50 0000 C CNN -F 2 "" H 2000 6650 50 0001 C CNN -F 3 "" H 2000 6650 50 0001 C CNN - 1 2000 6650 - 1 0 0 -1 -$EndComp Text GLabel 3000 6650 2 50 Output ~ 0 Motion Text GLabel 8650 2900 2 50 BiDi ~ 0 DM Text GLabel 8650 3000 2 50 BiDi ~ 0 DP -Text GLabel 1750 4100 2 50 BiDi ~ 0 -DM Text GLabel 950 4100 0 50 BiDi ~ 0 +DM +Text GLabel 1750 4100 2 50 BiDi ~ 0 DP $Comp L Power_Protection:USBLC6-2SC6 U1 @@ -1240,9 +641,9 @@ F 3 "https://www.st.com/resource/en/datasheet/usblc6-2.pdf" H 1550 4350 50 0001 $EndComp Wire Wire Line 4650 1850 4650 2050 -Text GLabel 1750 3900 2 50 BiDi ~ 0 -D- Text GLabel 950 3900 0 50 BiDi ~ 0 +D- +Text GLabel 1750 3900 2 50 BiDi ~ 0 D+ Text GLabel 1800 1450 2 50 BiDi ~ 0 D- @@ -1253,28 +654,6 @@ Wire Wire Line Wire Wire Line 1350 4400 1350 4450 $Comp -L power:GND #PWR0141 -U 1 1 6011C145 -P 1350 4450 -F 0 "#PWR0141" H 1350 4200 50 0001 C CNN -F 1 "GND" H 1355 4277 50 0000 C CNN -F 2 "" H 1350 4450 50 0001 C CNN -F 3 "" H 1350 4450 50 0001 C CNN - 1 1350 4450 - 1 0 0 -1 -$EndComp -$Comp -L power:GND #PWR0142 -U 1 1 6012326F -P 1850 3600 -F 0 "#PWR0142" H 1850 3350 50 0001 C CNN -F 1 "GND" H 1855 3427 50 0000 C CNN -F 2 "" H 1850 3600 50 0001 C CNN -F 3 "" H 1850 3600 50 0001 C CNN - 1 1850 3600 - 1 0 0 -1 -$EndComp -$Comp L Device:C C1 U 1 1 6012B0E5 P 1850 3400 @@ -1294,17 +673,6 @@ Wire Wire Line Wire Wire Line 1850 3250 1850 3200 Connection ~ 1850 3250 -$Comp -L power:+5V #PWR0143 -U 1 1 60146EA6 -P 1850 3200 -F 0 "#PWR0143" H 1850 3050 50 0001 C CNN -F 1 "+5V" H 1865 3373 50 0000 C CNN -F 2 "" H 1850 3200 50 0001 C CNN -F 3 "" H 1850 3200 50 0001 C CNN - 1 1850 3200 - 1 0 0 -1 -$EndComp NoConn ~ 8600 1900 NoConn ~ 8600 2000 NoConn ~ 8600 2100 @@ -1329,7 +697,6 @@ NoConn ~ 8600 4700 NoConn ~ 8600 4800 NoConn ~ 8600 4900 NoConn ~ 7200 3200 -NoConn ~ 7200 3800 NoConn ~ 7200 3900 NoConn ~ 7200 4000 NoConn ~ 7200 4100 @@ -1345,18 +712,7 @@ NoConn ~ 1800 1150 NoConn ~ 1800 1250 NoConn ~ 2050 6450 Wire Wire Line - 10450 750 10450 700 -$Comp -L power:+3.3V #PWR0144 -U 1 1 6032EE8D -P 10450 700 -F 0 "#PWR0144" H 10450 550 50 0001 C CNN -F 1 "+3.3V" H 10465 873 50 0000 C CNN -F 2 "" H 10450 700 50 0001 C CNN -F 3 "" H 10450 700 50 0001 C CNN - 1 10450 700 - 1 0 0 -1 -$EndComp + 10850 750 10850 700 Wire Wire Line 2950 6650 3000 6650 Text GLabel 8600 1800 2 50 Input ~ 0 @@ -1368,26 +724,13 @@ Wire Wire Line Connection ~ 8100 1300 Wire Wire Line 8100 1300 8200 1300 -Wire Wire Line - 7800 1600 7800 1250 Wire Wire Line 7800 1250 7450 1250 Wire Wire Line 7150 1250 7050 1250 -$Comp -L power:GND #PWR0119 -U 1 1 60178CFF -P 7050 1250 -F 0 "#PWR0119" H 7050 1000 50 0001 C CNN -F 1 "GND" H 7055 1077 50 0000 C CNN -F 2 "" H 7050 1250 50 0001 C CNN -F 3 "" H 7050 1250 50 0001 C CNN - 1 7050 1250 - 0 1 1 0 -$EndComp Text GLabel 3000 6550 2 50 Input ~ 0 SCK -Text GLabel 8650 4600 2 50 Output ~ 0 +Text GLabel 8650 4500 2 50 Output ~ 0 SCK Wire Wire Line 7100 3000 7200 3000 @@ -1399,7 +742,7 @@ Wire Wire Line 7600 1600 7700 1600 Wire Wire Line 8600 4600 8650 4600 -Text GLabel 8650 4500 2 50 Output ~ 0 +Text GLabel 8650 4600 2 50 Output ~ 0 NCS Wire Wire Line 8600 4500 8650 4500 @@ -1422,31 +765,14 @@ Wire Wire Line 9300 4350 9650 4350 Text GLabel 9600 4450 0 50 Output ~ 0 SWCLK -$Comp -L power:+3.3V #PWR0104 -U 1 1 600A9E8A -P 9300 4350 -F 0 "#PWR0104" H 9300 4200 50 0001 C CNN -F 1 "+3.3V" H 9315 4523 50 0000 C CNN -F 2 "" H 9300 4350 50 0001 C CNN -F 3 "" H 9300 4350 50 0001 C CNN - 1 9300 4350 - 1 0 0 -1 -$EndComp Text GLabel 3000 6250 2 50 Input ~ 0 NCS -Wire Wire Line - 1450 6250 2050 6250 Wire Wire Line 2950 6250 3000 6250 Text GLabel 7150 3600 0 50 Input ~ 0 MISO Text GLabel 7150 3700 0 50 Output ~ 0 MOSI -Text GLabel 7150 3500 0 50 Input ~ 0 -Motion -Wire Wire Line - 7150 3500 7200 3500 Wire Wire Line 7150 3600 7200 3600 Wire Wire Line @@ -1465,9 +791,6 @@ Text GLabel 7150 3400 0 50 Input ~ 0 NRESET Text GLabel 2000 6550 0 50 Output ~ 0 NRESET -Connection ~ 10450 2600 -Wire Wire Line - 10450 2600 10450 2550 Connection ~ 4150 2750 Wire Wire Line 4150 2750 4150 2800 @@ -1477,31 +800,16 @@ U 1 1 60098CE1 P 6600 3100 F 0 "Y1" V 6554 3231 50 0000 L CNN F 1 "16Mhz" V 6645 3231 50 0000 L CNN -F 2 "Crystal:Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm_HandSoldering" H 6600 3100 50 0001 C CNN +F 2 "lab1:Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering" H 6600 3100 50 0001 C CNN F 3 "~" H 6600 3100 50 0001 C CNN 1 6600 3100 0 1 1 0 $EndComp -Wire Wire Line - 6750 3300 6600 3300 -Connection ~ 6750 3300 Wire Wire Line 6600 3300 6600 3250 Connection ~ 6600 3300 Wire Wire Line 6600 3300 6250 3300 -Connection ~ 6900 2600 -$Comp -L Connector:Conn_01x01_Male J8 -U 1 1 603D5541 -P 1150 4450 -F 0 "J8" H 1122 4382 50 0000 R CNN -F 1 "TestPoint" H 1122 4473 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Horizontal" H 1150 4450 50 0001 C CNN -F 3 "~" H 1150 4450 50 0001 C CNN - 1 1150 4450 - 1 0 0 -1 -$EndComp Connection ~ 2000 6650 $Comp L Connector:Conn_01x01_Male J10 @@ -1509,7 +817,7 @@ U 1 1 603E79AA P 7500 5150 F 0 "J10" H 7472 5082 50 0000 R CNN F 1 "TestPoint" H 7472 5173 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Horizontal" H 7500 5150 50 0001 C CNN +F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 7500 5150 50 0001 C CNN F 3 "~" H 7500 5150 50 0001 C CNN 1 7500 5150 1 0 0 -1 @@ -1521,7 +829,7 @@ U 1 1 603FAEB7 P 4950 1250 F 0 "J9" H 4922 1182 50 0000 R CNN F 1 "TestPoint" H 4922 1273 50 0000 R CNN -F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Horizontal" H 4950 1250 50 0001 C CNN +F 2 "Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical" H 4950 1250 50 0001 C CNN F 3 "~" H 4950 1250 50 0001 C CNN 1 4950 1250 -1 0 0 1 @@ -1543,4 +851,633 @@ F 3 "~" H 3300 7050 50 0001 C CNN 1 3300 7050 1 0 0 -1 $EndComp +Wire Notes Line + 500 5150 5100 5150 +Wire Notes Line + 5100 5150 5100 7750 +Text GLabel 7150 2000 0 50 Input ~ 0 +BOOT0 +Text GLabel 10350 3450 0 50 Output ~ 0 +BOOT0 +$Comp +L power:GND #PWR033 +U 1 1 603D7BBE +P 10850 1100 +F 0 "#PWR033" H 10850 850 50 0001 C CNN +F 1 "GND" H 10855 927 50 0000 C CNN +F 2 "" H 10850 1100 50 0001 C CNN +F 3 "" H 10850 1100 50 0001 C CNN + 1 10850 1100 + 1 0 0 -1 +$EndComp +$Comp +L power:+3.3V_copy #PWR030 +U 1 1 603F2EE1 +P 10650 3100 +F 0 "#PWR030" H 10650 2950 50 0001 C CNN +F 1 "+3.3V_copy" H 10665 3273 50 0000 C CNN +F 2 "" H 10650 3100 50 0001 C CNN +F 3 "" H 10650 3100 50 0001 C CNN + 1 10650 3100 + 1 0 0 -1 +$EndComp +$Comp +L power:+3.3V_copy #PWR032 +U 1 1 6040A9FC +P 10850 700 +F 0 "#PWR032" H 10850 550 50 0001 C CNN +F 1 "+3.3V_copy" H 10865 873 50 0000 C CNN +F 2 "" H 10850 700 50 0001 C CNN +F 3 "" H 10850 700 50 0001 C CNN + 1 10850 700 + 1 0 0 -1 +$EndComp +$Comp +L power:+3.3V_copy #PWR020 +U 1 1 60422004 +P 4750 850 +F 0 "#PWR020" H 4750 700 50 0001 C CNN +F 1 "+3.3V_copy" H 4765 1023 50 0000 C CNN +F 2 "" H 4750 850 50 0001 C CNN +F 3 "" H 4750 850 50 0001 C CNN + 1 4750 850 + 1 0 0 -1 +$EndComp +$Comp +L power:+3.3V_copy #PWR011 +U 1 1 604395EB +P 3050 3950 +F 0 "#PWR011" H 3050 3800 50 0001 C CNN +F 1 "+3.3V_copy" H 3065 4123 50 0000 C CNN +F 2 "" H 3050 3950 50 0001 C CNN +F 3 "" H 3050 3950 50 0001 C CNN + 1 3050 3950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3050 3950 3200 3950 +$Comp +L power:+3.3V_copy #PWR01 +U 1 1 60460D0E +P 750 6600 +F 0 "#PWR01" H 750 6450 50 0001 C CNN +F 1 "+3.3V_copy" H 765 6773 50 0000 C CNN +F 2 "" H 750 6600 50 0001 C CNN +F 3 "" H 750 6600 50 0001 C CNN + 1 750 6600 + 1 0 0 -1 +$EndComp +$Comp +L power:+3.3V_copy #PWR012 +U 1 1 604689C2 +P 3400 5900 +F 0 "#PWR012" H 3400 5750 50 0001 C CNN +F 1 "+3.3V_copy" H 3415 6073 50 0000 C CNN +F 2 "" H 3400 5900 50 0001 C CNN +F 3 "" H 3400 5900 50 0001 C CNN + 1 3400 5900 + 1 0 0 -1 +$EndComp +$Comp +L power:+3.3V_copy #PWR028 +U 1 1 604802FD +P 9300 4350 +F 0 "#PWR028" H 9300 4200 50 0001 C CNN +F 1 "+3.3V_copy" H 9315 4523 50 0000 C CNN +F 2 "" H 9300 4350 50 0001 C CNN +F 3 "" H 9300 4350 50 0001 C CNN + 1 9300 4350 + 1 0 0 -1 +$EndComp +$Comp +L power:+3.3V_copy #PWR025 +U 1 1 604A01BF +P 7600 1500 +F 0 "#PWR025" H 7600 1350 50 0001 C CNN +F 1 "+3.3V_copy" H 7615 1673 50 0000 C CNN +F 2 "" H 7600 1500 50 0001 C CNN +F 3 "" H 7600 1500 50 0001 C CNN + 1 7600 1500 + 1 0 0 -1 +$EndComp +$Comp +L power:+5V #PWR07 +U 1 1 604BFBA7 +P 1850 3200 +F 0 "#PWR07" H 1850 3050 50 0001 C CNN +F 1 "+5V" H 1865 3373 50 0000 C CNN +F 2 "" H 1850 3200 50 0001 C CNN +F 3 "" H 1850 3200 50 0001 C CNN + 1 1850 3200 + 1 0 0 -1 +$EndComp +$Comp +L power:+5V #PWR010 +U 1 1 604DEFFF +P 2100 950 +F 0 "#PWR010" H 2100 800 50 0001 C CNN +F 1 "+5V" H 2115 1123 50 0000 C CNN +F 2 "" H 2100 950 50 0001 C CNN +F 3 "" H 2100 950 50 0001 C CNN + 1 2100 950 + 1 0 0 -1 +$EndComp +$Comp +L power:+5V #PWR014 +U 1 1 604F688E +P 3650 850 +F 0 "#PWR014" H 3650 700 50 0001 C CNN +F 1 "+5V" H 3665 1023 50 0000 C CNN +F 2 "" H 3650 850 50 0001 C CNN +F 3 "" H 3650 850 50 0001 C CNN + 1 3650 850 + 1 0 0 -1 +$EndComp +$Comp +L power:+5V #PWR015 +U 1 1 6050E752 +P 3700 1950 +F 0 "#PWR015" H 3700 1800 50 0001 C CNN +F 1 "+5V" H 3715 2123 50 0000 C CNN +F 2 "" H 3700 1950 50 0001 C CNN +F 3 "" H 3700 1950 50 0001 C CNN + 1 3700 1950 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR031 +U 1 1 6057D3B6 +P 10050 3800 +F 0 "#PWR031" H 10050 3550 50 0001 C CNN +F 1 "GND" H 10055 3627 50 0000 C CNN +F 2 "" H 10050 3800 50 0001 C CNN +F 3 "" H 10050 3800 50 0001 C CNN + 1 10050 3800 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR027 +U 1 1 60594998 +P 9200 4550 +F 0 "#PWR027" H 9200 4300 50 0001 C CNN +F 1 "GND" H 9205 4377 50 0000 C CNN +F 2 "" H 9200 4550 50 0001 C CNN +F 3 "" H 9200 4550 50 0001 C CNN + 1 9200 4550 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR026 +U 1 1 605B4201 +P 8250 5150 +F 0 "#PWR026" H 8250 4900 50 0001 C CNN +F 1 "GND" H 8255 4977 50 0000 C CNN +F 2 "" H 8250 5150 50 0001 C CNN +F 3 "" H 8250 5150 50 0001 C CNN + 1 8250 5150 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR019 +U 1 1 605C3D6E +P 4300 4250 +F 0 "#PWR019" H 4300 4000 50 0001 C CNN +F 1 "GND" H 4305 4077 50 0000 C CNN +F 2 "" H 4300 4250 50 0001 C CNN +F 3 "" H 4300 4250 50 0001 C CNN + 1 4300 4250 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR013 +U 1 1 605E3569 +P 3600 4500 +F 0 "#PWR013" H 3600 4250 50 0001 C CNN +F 1 "GND" H 3605 4327 50 0000 C CNN +F 2 "" H 3600 4500 50 0001 C CNN +F 3 "" H 3600 4500 50 0001 C CNN + 1 3600 4500 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR016 +U 1 1 605EB13F +P 3850 7200 +F 0 "#PWR016" H 3850 6950 50 0001 C CNN +F 1 "GND" H 3855 7027 50 0000 C CNN +F 2 "" H 3850 7200 50 0001 C CNN +F 3 "" H 3850 7200 50 0001 C CNN + 1 3850 7200 + 1 0 0 -1 +$EndComp +Connection ~ 3850 7200 +Wire Wire Line + 3850 7200 4050 7200 +$Comp +L power:GND #PWR03 +U 1 1 60602BE8 +P 950 6950 +F 0 "#PWR03" H 950 6700 50 0001 C CNN +F 1 "GND" H 955 6777 50 0000 C CNN +F 2 "" H 950 6950 50 0001 C CNN +F 3 "" H 950 6950 50 0001 C CNN + 1 950 6950 + 1 0 0 -1 +$EndComp +Wire Wire Line + 750 6950 950 6950 +Connection ~ 950 6950 +Wire Wire Line + 950 6950 1150 6950 +$Comp +L power:GND #PWR09 +U 1 1 6061BA1A +P 2000 6650 +F 0 "#PWR09" H 2000 6400 50 0001 C CNN +F 1 "GND" H 2005 6477 50 0000 C CNN +F 2 "" H 2000 6650 50 0001 C CNN +F 3 "" H 2000 6650 50 0001 C CNN + 1 2000 6650 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR06 +U 1 1 6063C126 +P 1350 5650 +F 0 "#PWR06" H 1350 5400 50 0001 C CNN +F 1 "GND" H 1355 5477 50 0000 C CNN +F 2 "" H 1350 5650 50 0001 C CNN +F 3 "" H 1350 5650 50 0001 C CNN + 1 1350 5650 + 1 0 0 -1 +$EndComp +Wire Wire Line + 1150 5650 1350 5650 +Connection ~ 1350 5650 +Wire Wire Line + 1350 5650 1550 5650 +$Comp +L power:GND #PWR05 +U 1 1 606541F4 +P 1350 4450 +F 0 "#PWR05" H 1350 4200 50 0001 C CNN +F 1 "GND" H 1355 4277 50 0000 C CNN +F 2 "" H 1350 4450 50 0001 C CNN +F 3 "" H 1350 4450 50 0001 C CNN + 1 1350 4450 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR017 +U 1 1 6067489A +P 4150 2850 +F 0 "#PWR017" H 4150 2600 50 0001 C CNN +F 1 "GND" H 4155 2677 50 0000 C CNN +F 2 "" H 4150 2850 50 0001 C CNN +F 3 "" H 4150 2850 50 0001 C CNN + 1 4150 2850 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR02 +U 1 1 60694AD8 +P 1200 2500 +F 0 "#PWR02" H 1200 2250 50 0001 C CNN +F 1 "GND" H 1205 2327 50 0000 C CNN +F 2 "" H 1200 2500 50 0001 C CNN +F 3 "" H 1200 2500 50 0001 C CNN + 1 1200 2500 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR018 +U 1 1 606A4CCA +P 4200 1250 +F 0 "#PWR018" H 4200 1000 50 0001 C CNN +F 1 "GND" H 4205 1077 50 0000 C CNN +F 2 "" H 4200 1250 50 0001 C CNN +F 3 "" H 4200 1250 50 0001 C CNN + 1 4200 1250 + 1 0 0 -1 +$EndComp +Wire Wire Line + 3700 2800 4150 2800 +Connection ~ 4150 2800 +Wire Wire Line + 4150 2800 4650 2800 +Wire Wire Line + 4150 2800 4150 2850 +$Comp +L power:GND #PWR08 +U 1 1 606DE5EE +P 1850 3600 +F 0 "#PWR08" H 1850 3350 50 0001 C CNN +F 1 "GND" H 1855 3427 50 0000 C CNN +F 2 "" H 1850 3600 50 0001 C CNN +F 3 "" H 1850 3600 50 0001 C CNN + 1 1850 3600 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR024 +U 1 1 606F7644 +P 7050 1250 +F 0 "#PWR024" H 7050 1000 50 0001 C CNN +F 1 "GND" H 7055 1077 50 0000 C CNN +F 2 "" H 7050 1250 50 0001 C CNN +F 3 "" H 7050 1250 50 0001 C CNN + 1 7050 1250 + 1 0 0 -1 +$EndComp +$Comp +L Device:C C25 +U 1 1 6022E4D6 +P 10850 900 +F 0 "C25" H 10735 854 50 0000 R CNN +F 1 "1μF" H 10735 945 50 0000 R CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 10888 750 50 0001 C CNN +F 3 "~" H 10850 900 50 0001 C CNN + 1 10850 900 + -1 0 0 1 +$EndComp +Wire Wire Line + 8600 750 9050 750 +Connection ~ 8600 750 +Connection ~ 9050 750 +Wire Wire Line + 9050 750 9500 750 +Connection ~ 9500 750 +Wire Wire Line + 9500 750 9950 750 +Connection ~ 9950 750 +Wire Wire Line + 9950 750 10400 750 +Connection ~ 10400 750 +Wire Wire Line + 10400 750 10850 750 +Connection ~ 10850 750 +Wire Wire Line + 9050 1050 9500 1050 +Connection ~ 9050 1050 +Connection ~ 10850 1050 +Connection ~ 9500 1050 +Wire Wire Line + 9500 1050 9950 1050 +Connection ~ 9950 1050 +Wire Wire Line + 9950 1050 10400 1050 +Connection ~ 10400 1050 +Wire Wire Line + 10400 1050 10850 1050 +$Comp +L power:GND #PWR021 +U 1 1 607923D9 +P 5100 2150 +F 0 "#PWR021" H 5100 1900 50 0001 C CNN +F 1 "GND" H 5105 1977 50 0000 C CNN +F 2 "" H 5100 2150 50 0001 C CNN +F 3 "" H 5100 2150 50 0001 C CNN + 1 5100 2150 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR022 +U 1 1 607AA4AE +P 5900 2900 +F 0 "#PWR022" H 5900 2650 50 0001 C CNN +F 1 "GND" H 5905 2727 50 0000 C CNN +F 2 "" H 5900 2900 50 0001 C CNN +F 3 "" H 5900 2900 50 0001 C CNN + 1 5900 2900 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR023 +U 1 1 607C2B05 +P 5900 3300 +F 0 "#PWR023" H 5900 3050 50 0001 C CNN +F 1 "GND" H 5905 3127 50 0000 C CNN +F 2 "" H 5900 3300 50 0001 C CNN +F 3 "" H 5900 3300 50 0001 C CNN + 1 5900 3300 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR036 +U 1 1 607D4A70 +P 6900 2600 +F 0 "#PWR036" H 6900 2350 50 0001 C CNN +F 1 "GND" H 6905 2427 50 0000 C CNN +F 2 "" H 6900 2600 50 0001 C CNN +F 3 "" H 6900 2600 50 0001 C CNN + 1 6900 2600 + 1 0 0 -1 +$EndComp +Wire Wire Line + 4500 900 4750 900 +Connection ~ 4750 900 +$Comp +L lab1:+1.9V_lab1 #PWR039 +U 1 1 60865586 +P 4050 6850 +F 0 "#PWR039" H 4050 6700 50 0001 C CNN +F 1 "+1.9V_lab1" H 4065 7023 50 0000 C CNN +F 2 "" H 4050 6850 50 0001 C CNN +F 3 "" H 4050 6850 50 0001 C CNN + 1 4050 6850 + 1 0 0 -1 +$EndComp +$Comp +L lab1:+1.9V_lab1 #PWR038 +U 1 1 6089732F +P 3750 4050 +F 0 "#PWR038" H 3750 3900 50 0001 C CNN +F 1 "+1.9V_lab1" H 3765 4223 50 0000 C CNN +F 2 "" H 3750 4050 50 0001 C CNN +F 3 "" H 3750 4050 50 0001 C CNN + 1 3750 4050 + 1 0 0 -1 +$EndComp +$Comp +L lab1:+1.9V_lab1 #PWR040 +U 1 1 608AFEC6 +P 5000 1750 +F 0 "#PWR040" H 5000 1600 50 0001 C CNN +F 1 "+1.9V_lab1" H 5015 1923 50 0000 C CNN +F 2 "" H 5000 1750 50 0001 C CNN +F 3 "" H 5000 1750 50 0001 C CNN + 1 5000 1750 + 1 0 0 -1 +$EndComp +Wire Wire Line + 10650 3100 10650 3200 +Wire Wire Line + 10500 3450 10350 3450 +Wire Wire Line + 10650 3700 10650 3750 +Wire Wire Line + 10650 3750 10500 3750 +$Comp +L power:GND #PWR029 +U 1 1 6057569A +P 9900 2650 +F 0 "#PWR029" H 9900 2400 50 0001 C CNN +F 1 "GND" H 9905 2477 50 0000 C CNN +F 2 "" H 9900 2650 50 0001 C CNN +F 3 "" H 9900 2650 50 0001 C CNN + 1 9900 2650 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR035 +U 1 1 60555F48 +P 10450 2650 +F 0 "#PWR035" H 10450 2400 50 0001 C CNN +F 1 "GND" H 10455 2477 50 0000 C CNN +F 2 "" H 10450 2650 50 0001 C CNN +F 3 "" H 10450 2650 50 0001 C CNN + 1 10450 2650 + 1 0 0 -1 +$EndComp +Wire Wire Line + 9900 2150 10450 2150 +Connection ~ 9900 2150 +Wire Wire Line + 9800 2150 9900 2150 +$Comp +L Switch:SW_Push SW1 +U 1 1 602BA2BA +P 9900 2350 +F 0 "SW1" V 9850 2000 50 0000 L CNN +F 1 "Some_button" V 9950 1750 50 0000 L CNN +F 2 "Button_Switch_SMD:SW_Push_SPST_NO_Alps_SKRK" H 9900 2550 50 0001 C CNN +F 3 "~" H 9900 2550 50 0001 C CNN + 1 9900 2350 + 0 1 1 0 +$EndComp +Wire Wire Line + 10450 2250 10450 2150 +Wire Wire Line + 9900 2650 9900 2550 +$Comp +L Device:C C26 +U 1 1 601368EA +P 10450 2400 +F 0 "C26" H 10335 2354 50 0000 R CNN +F 1 "100n" H 10335 2445 50 0000 R CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 10488 2250 50 0001 C CNN +F 3 "~" H 10450 2400 50 0001 C CNN + 1 10450 2400 + -1 0 0 1 +$EndComp +Wire Wire Line + 10200 3750 10050 3750 +Wire Wire Line + 10050 3750 10050 3800 +Wire Wire Line + 7050 1800 7200 1800 +Wire Wire Line + 7600 750 7600 1150 +Wire Wire Line + 7900 1150 7900 1300 +Connection ~ 7900 1300 +$Comp +L lab1:+1.9V_lab1 #PWR037 +U 1 1 60876EA9 +P 750 5850 +F 0 "#PWR037" H 750 5700 50 0001 C CNN +F 1 "+1.9V_lab1" H 765 6023 50 0000 C CNN +F 2 "" H 750 5850 50 0001 C CNN +F 3 "" H 750 5850 50 0001 C CNN + 1 750 5850 + 1 0 0 -1 +$EndComp +$Comp +L power:GND #PWR04 +U 1 1 6062BBC0 +P 950 6200 +F 0 "#PWR04" H 950 5950 50 0001 C CNN +F 1 "GND" H 955 6027 50 0000 C CNN +F 2 "" H 950 6200 50 0001 C CNN +F 3 "" H 950 6200 50 0001 C CNN + 1 950 6200 + 1 0 0 -1 +$EndComp +Wire Wire Line + 1150 5900 1600 5900 +Connection ~ 1150 5900 +Wire Wire Line + 750 5900 1150 5900 +Wire Wire Line + 950 6200 1150 6200 +$Comp +L Device:C C10 +U 1 1 6010C2FE +P 1150 6050 +F 0 "C10" H 1265 6096 50 0000 L CNN +F 1 "10uF" H 1265 6005 50 0000 L CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 1188 5900 50 0001 C CNN +F 3 "~" H 1150 6050 50 0001 C CNN + 1 1150 6050 + 1 0 0 -1 +$EndComp +Connection ~ 750 5900 +Connection ~ 950 6200 +$Comp +L Device:C C8 +U 1 1 6010C304 +P 750 6050 +F 0 "C8" H 865 6096 50 0000 L CNN +F 1 "100uF" H 865 6005 50 0000 L CNN +F 2 "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" H 788 5900 50 0001 C CNN +F 3 "~" H 750 6050 50 0001 C CNN + 1 750 6050 + 1 0 0 -1 +$EndComp +Wire Wire Line + 750 6200 950 6200 +Wire Wire Line + 750 5900 750 5850 +Wire Wire Line + 1600 5900 1600 6250 +Wire Wire Line + 1600 6250 2050 6250 +Wire Wire Line + 1150 6650 1150 6350 +Wire Wire Line + 1150 6350 2050 6350 +Connection ~ 1150 6650 +Text GLabel 7050 1800 0 50 Input ~ 0 +NRST +Text GLabel 9800 2150 0 50 Output ~ 0 +NRST +Text GLabel 9600 4750 0 50 Output ~ 0 +NRST +Wire Wire Line + 7600 1150 7900 1150 +Wire Wire Line + 6600 3300 7100 3300 +Wire Wire Line + 10450 2550 10450 2650 +Wire Wire Line + 3650 7200 3850 7200 +Wire Wire Line + 7900 1600 7900 1300 +Wire Wire Line + 7800 1600 7800 1250 +Wire Wire Line + 7600 1500 7600 1600 +$Comp +L MCU_ST_STM32F4:STM32F411RETx U5 +U 1 1 60085361 +P 7900 3300 +F 0 "U5" H 7900 1411 50 0000 C CNN +F 1 "STM32F411RETx" H 7900 1320 50 0000 R BNN +F 2 "Package_QFP:LQFP-64_10x10mm_P0.5mm" H 7300 1600 50 0001 R CNN +F 3 "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00115249.pdf" H 7900 3300 50 0001 C CNN + 1 7900 3300 + 1 0 0 -1 +$EndComp +NoConn ~ 7200 3800 +NoConn ~ 7200 3500 $EndSCHEMATC