summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Vassilev <vladimir@lightside-instruments.com>2023-01-09 00:11:00 +0100
committerVladimir Vassilev <vladimir@lightside-instruments.com>2023-01-09 00:11:00 +0100
commitb2e77009d48f0635823afc4903d74e0dd134075f (patch)
tree0f2a3ee9a79596fc421989333562cec304ada789
parent96057b3ff691ec66539b791cb227f55fc640f7f1 (diff)
Release ice4pi-2.2
-rw-r--r--CHANGELOG10
-rw-r--r--bom.csv8
-rw-r--r--example/Makefile3
-rw-r--r--example/README21
-rwxr-xr-xexample/ice4pi_prog8
-rw-r--r--ice4pi.kicad_pcb2289
-rw-r--r--ice4pi.kicad_pro2
-rw-r--r--ice4pi.kicad_sch533
-rw-r--r--ice4pi.pcf67
9 files changed, 1226 insertions, 1715 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e5fe45a..41ee0b0 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,13 @@
+ice4pi (2.2) jammy; urgency=medium
+
+ * Replaced U3 - the dual channel LDO voltage regulator with a single channel 1.2V fixed
+ * Added drill origin / alternative axis center
+ * Added ice4pi.pch with all IOs defined
+ * Reduced minimum clearance to from 0.254 to 0.2 mm
+ * Updated example/README and added workaround for flashrom failing after first use
+
+ -- Vladimir Vassilev <vladimir@lightside-instruments.com> Sun, 08 Jan 2023 23:32:05 +0100
+
ice4pi (2.1) jammy; urgency=medium
* Upgraded to kicad 6
diff --git a/bom.csv b/bom.csv
index fbdb28c..5187dcd 100644
--- a/bom.csv
+++ b/bom.csv
@@ -2,14 +2,12 @@ Reference,Quantity,Identifier,footprint,Value,Tolerance,Voltage,Current,Power,PN
U1,1,,Package_QFP:TQFP-144_20x20mm_P0.5mm,,,,,,ICE40HX1K-TQ144
U2,1,,Package_SO:SOIC-8_3.9x4.9mm_P1.27mm,,,,,,W25Q32JVSNIQ
R2;R16;R17;R15;R19;R18,6,,Resistor_SMD:R_0402_1005Metric,10K,,,,,ERJ-2GEJ103X
-C10;C29;C27;C6;C11;C13;C15;C5,8,,Capacitor_SMD:C_0402_1005Metric,0.01uF,,,,,885012205012
+C10;C29;C27;C6;C11;C13;C15,7,,Capacitor_SMD:C_0402_1005Metric,0.01uF,,,,,885012205012
C26;C18;C28;C19;C21;C23;C25;C24;C3;C9;C12;C14;C2,13,,Capacitor_SMD:C_0402_1005Metric,0.1uF,,,,,885012205037
C30;C16;C20;C1;C4,5,,Capacitor_SMD:C_0402_1005Metric,10uF,,,,,ZRB15XR61A106ME01D
-R20;R7,2,,Resistor_SMD:R_0402_1005Metric,100,,,,,ERJ-2GEJ101X
+R20,1,,Resistor_SMD:R_0402_1005Metric,100,,,,,ERJ-2GEJ101X
D5,1,,LED_SMD:LED_0402_1005Metric,LED,,,,,150040VS73240
-U3,1,,ice4pi:TSSOP-20_4.4x6.5mm_P0.65mm,LT3030,,,,,LT3030EFE#PBF
-R9,1,,Resistor_SMD:R_0402_1005Metric,0.1,,,,,2176049-8
-R1,1,,Resistor_SMD:R_0402_1005Metric,1M,,,,,ERJ-2GEJ105X
+U3,1,,Package_TO_SOT_SMD:SOT-23-5,MIC5504-1.2YM5,,,,,MIC5504-1.2YM5
C8,1,,Capacitor_SMD:C_0402_1005Metric,4.7uF,,,,,C1005X5R0J475M050BC
U4,1,,Oscillator:Oscillator_SMD_Abracon_ASDMB-4Pin_2.5x2.0mm,,,,,,DSC1001DI1-012.0000
C17;C22,2,,Capacitor_SMD:C_0402_1005Metric,1 uF,,,,,885012105012
diff --git a/example/Makefile b/example/Makefile
index a55ea4c..2bc5d99 100644
--- a/example/Makefile
+++ b/example/Makefile
@@ -1,9 +1,10 @@
-
rot.bin: rot.v rot.pcf
yosys -q -p "synth_ice40 -blif rot.blif" rot.v
arachne-pnr -p rot.pcf rot.blif -o rot.txt
icebox_explain rot.txt > rot.ex
icepack rot.txt rot.bin
+
+load: rot.bin
./ice4pi_prog rot.bin
# iceprog rot.bin
diff --git a/example/README b/example/README
index bde2a04..100c6b9 100644
--- a/example/README
+++ b/example/README
@@ -1,18 +1,19 @@
-To install all necessary packages and synthesize and program ice4pi:
+Assuming you are running on a Raspberry Pi 2-4 or Zero (tested with bullseye):
+
+1. Install all necessary packages to synthesize rot.v and build bit image (rot.bin) for the ice4pi:
sudo apt-get install yosys fpga-icestorm arachne-pnr
make
-1. Make sure your Pi has SPI enabled
-
-2. There is a problem in arachne-pnr reporting bogus dependency conflict that can be worked around:
-
- apt-get source arachne-pnr
- cd arachne-pnr-0.1+20180909git840bdfd-1.1/
- dpkg-buildpackage -us -uc -j2
- sudo dpkg -i ../arachne*.deb
+2. Make sure your Pi has SPI enabled (e.g. use raspi-config)
3. Building and installing the flashrom tool
- git clone https://www.flashrom.org/git/flashrom.git
+
+ git clone https://github.com/lightside-instruments/flashrom.git
cd flashrom
make CONFIG_ENABLE_LIBPCI_PROGRAMMERS=no CONFIG_ENABLE_LIBUSB0_PROGRAMMERS=no CONFIG_ENABLE_LIBUSB1_PROGRAMMERS=no install
+ cd ..
+
+4. Load the rot.bin file to the shield:
+
+ make load
diff --git a/example/ice4pi_prog b/example/ice4pi_prog
index dea5c7a..c747db8 100755
--- a/example/ice4pi_prog
+++ b/example/ice4pi_prog
@@ -1,7 +1,15 @@
#!/bin/bash
echo 24 > /sys/class/gpio/export
echo out > /sys/class/gpio/gpio24/direction
+echo 1 >/sys/class/gpio/gpio24/value
+sleep 1
+echo 0 >/sys/class/gpio/gpio24/value
+
tr '\0' '\377' < /dev/zero | dd bs=1M count=4 of=image iflag=fullblock
dd if=${1} conv=notrunc of=image
flashrom -p linux_spi:dev=/dev/spidev0.0,spispeed=20000 -w image
+#workaround first time fails after initial programming
+flashrom -p linux_spi:dev=/dev/spidev0.0,spispeed=20000 -w image
echo in > /sys/class/gpio/gpio24/direction
+echo 24 > /sys/class/gpio/unexport
+
diff --git a/ice4pi.kicad_pcb b/ice4pi.kicad_pcb
index 2c5af8e..a51dc49 100644
--- a/ice4pi.kicad_pcb
+++ b/ice4pi.kicad_pcb
@@ -33,8 +33,9 @@
(setup
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
+ (aux_axis_origin 50 49)
(pcbplotparams
- (layerselection 0x00010fc_ffffffff)
+ (layerselection 0x003ffff_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
@@ -42,7 +43,7 @@
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
- (excludeedgelayer true)
+ (excludeedgelayer false)
(plotframeref false)
(viasonmask false)
(mode 1)
@@ -77,140 +78,132 @@
(net 6 "iCE_MISO")
(net 7 "iCE_SCK")
(net 8 "iCE_SS_B")
- (net 9 "Net-(R1-Pad2)")
- (net 10 "Net-(R2-Pad2)")
- (net 11 "+3V3")
- (net 12 "+5V")
- (net 13 "Net-(C5-Pad2)")
- (net 14 "Net-(C5-Pad1)")
- (net 15 "+1V2")
- (net 16 "Net-(C26-Pad1)")
- (net 17 "LED4")
- (net 18 "Net-(D1-Pad1)")
- (net 19 "Net-(D2-Pad1)")
- (net 20 "LED3")
- (net 21 "Net-(D3-Pad1)")
- (net 22 "LED2")
- (net 23 "LED1")
- (net 24 "Net-(D4-Pad1)")
- (net 25 "Net-(D5-Pad1)")
- (net 26 "LED0")
- (net 27 "PIO1_02")
- (net 28 "PIO1_03")
- (net 29 "PIO1_04")
- (net 30 "PIO1_05")
- (net 31 "PIO1_06")
- (net 32 "PIO1_07")
- (net 33 "PIO1_08")
- (net 34 "PIO1_09")
- (net 35 "Net-(R16-Pad2)")
- (net 36 "PIO0_09")
- (net 37 "PIO0_08")
- (net 38 "PIO0_07")
- (net 39 "PIO0_06")
- (net 40 "PIO0_05")
- (net 41 "PIO0_04")
- (net 42 "PIO0_03")
- (net 43 "PIO0_02")
- (net 44 "Net-(D6-Pad1)")
- (net 45 "RS232_Tx_TTL")
- (net 46 "RS232_Rx_TTL")
- (net 47 "PIO0_10")
- (net 48 "PIO0_12")
- (net 49 "PIO0_11")
- (net 50 "PIO0_13")
- (net 51 "PIO0_14")
- (net 52 "PIO0_15")
- (net 53 "PIO0_16")
- (net 54 "PIO0_21")
- (net 55 "PIO0_20")
- (net 56 "PIO0_19")
- (net 57 "PIO0_18")
- (net 58 "PIO0_17")
- (net 59 "unconnected-(U3-Pad19)")
- (net 60 "unconnected-(U3-Pad18)")
- (net 61 "unconnected-(U3-Pad17)")
- (net 62 "unconnected-(U3-Pad4)")
- (net 63 "unconnected-(U3-Pad3)")
- (net 64 "unconnected-(U3-Pad2)")
- (net 65 "unconnected-(U3-Pad1)")
- (net 66 "unconnected-(U1-Pad144)")
- (net 67 "unconnected-(U1-Pad143)")
- (net 68 "unconnected-(U1-Pad142)")
- (net 69 "unconnected-(U1-Pad131)")
- (net 70 "unconnected-(U1-Pad130)")
- (net 71 "unconnected-(U1-Pad127)")
- (net 72 "unconnected-(U1-Pad126)")
- (net 73 "unconnected-(U1-Pad125)")
- (net 74 "unconnected-(U1-Pad124)")
- (net 75 "unconnected-(U1-Pad110)")
- (net 76 "unconnected-(U1-Pad109)")
- (net 77 "IR_SD")
- (net 78 "IR_RXD")
- (net 79 "IR_TXD")
- (net 80 "unconnected-(U1-Pad104)")
- (net 81 "unconnected-(U1-Pad102)")
- (net 82 "unconnected-(U1-Pad101)")
- (net 83 "unconnected-(U1-Pad94)")
- (net 84 "unconnected-(U1-Pad93)")
- (net 85 "unconnected-(U1-Pad85)")
- (net 86 "unconnected-(U1-Pad84)")
- (net 87 "unconnected-(U1-Pad83)")
- (net 88 "unconnected-(U1-Pad82)")
- (net 89 "unconnected-(U1-Pad77)")
- (net 90 "unconnected-(U1-Pad76)")
- (net 91 "unconnected-(U1-Pad75)")
- (net 92 "unconnected-(U1-Pad74)")
- (net 93 "unconnected-(U1-Pad73)")
- (net 94 "unconnected-(U1-Pad64)")
- (net 95 "unconnected-(U1-Pad63)")
- (net 96 "unconnected-(U1-Pad62)")
- (net 97 "unconnected-(U1-Pad61)")
- (net 98 "unconnected-(U1-Pad60)")
- (net 99 "unconnected-(U1-Pad58)")
- (net 100 "unconnected-(U1-Pad56)")
- (net 101 "unconnected-(U1-Pad55)")
- (net 102 "unconnected-(U1-Pad54)")
- (net 103 "unconnected-(U1-Pad53)")
- (net 104 "unconnected-(U1-Pad52)")
- (net 105 "unconnected-(U1-Pad50)")
- (net 106 "unconnected-(U1-Pad49)")
- (net 107 "unconnected-(U1-Pad48)")
- (net 108 "unconnected-(U1-Pad47)")
- (net 109 "unconnected-(U1-Pad45)")
- (net 110 "unconnected-(U1-Pad44)")
- (net 111 "unconnected-(U1-Pad43)")
- (net 112 "unconnected-(U1-Pad42)")
- (net 113 "unconnected-(U1-Pad41)")
- (net 114 "unconnected-(U1-Pad40)")
- (net 115 "unconnected-(U1-Pad39)")
- (net 116 "unconnected-(U1-Pad38)")
- (net 117 "unconnected-(U1-Pad37)")
- (net 118 "unconnected-(U1-Pad34)")
- (net 119 "unconnected-(U1-Pad33)")
- (net 120 "unconnected-(U1-Pad32)")
- (net 121 "unconnected-(U1-Pad31)")
- (net 122 "unconnected-(U1-Pad29)")
- (net 123 "unconnected-(U1-Pad28)")
- (net 124 "unconnected-(U1-Pad26)")
- (net 125 "unconnected-(U1-Pad25)")
- (net 126 "unconnected-(U1-Pad24)")
- (net 127 "unconnected-(U1-Pad23)")
- (net 128 "unconnected-(U1-Pad22)")
- (net 129 "unconnected-(U1-Pad20)")
- (net 130 "unconnected-(U1-Pad19)")
- (net 131 "unconnected-(U1-Pad18)")
- (net 132 "unconnected-(U1-Pad17)")
- (net 133 "unconnected-(U1-Pad16)")
- (net 134 "unconnected-(U1-Pad15)")
- (net 135 "unconnected-(U1-Pad12)")
- (net 136 "unconnected-(U1-Pad11)")
- (net 137 "unconnected-(U1-Pad10)")
- (net 138 "unconnected-(U1-Pad7)")
- (net 139 "unconnected-(U1-Pad4)")
- (net 140 "unconnected-(U1-Pad3)")
- (net 141 "unconnected-(U1-Pad2)")
- (net 142 "unconnected-(U1-Pad1)")
+ (net 9 "Net-(R2-Pad2)")
+ (net 10 "+3V3")
+ (net 11 "+5V")
+ (net 12 "+1V2")
+ (net 13 "Net-(C26-Pad1)")
+ (net 14 "LED4")
+ (net 15 "Net-(D1-Pad1)")
+ (net 16 "Net-(D2-Pad1)")
+ (net 17 "LED3")
+ (net 18 "Net-(D3-Pad1)")
+ (net 19 "LED2")
+ (net 20 "LED1")
+ (net 21 "Net-(D4-Pad1)")
+ (net 22 "Net-(D5-Pad1)")
+ (net 23 "LED0")
+ (net 24 "PIO1_02")
+ (net 25 "PIO1_03")
+ (net 26 "PIO1_04")
+ (net 27 "PIO1_05")
+ (net 28 "PIO1_06")
+ (net 29 "PIO1_07")
+ (net 30 "PIO1_08")
+ (net 31 "PIO1_09")
+ (net 32 "Net-(R16-Pad2)")
+ (net 33 "PIO0_09")
+ (net 34 "PIO0_08")
+ (net 35 "PIO0_07")
+ (net 36 "PIO0_06")
+ (net 37 "PIO0_05")
+ (net 38 "PIO0_04")
+ (net 39 "PIO0_03")
+ (net 40 "PIO0_02")
+ (net 41 "Net-(D6-Pad1)")
+ (net 42 "RS232_Tx_TTL")
+ (net 43 "RS232_Rx_TTL")
+ (net 44 "PIO0_10")
+ (net 45 "PIO0_12")
+ (net 46 "PIO0_11")
+ (net 47 "PIO0_13")
+ (net 48 "PIO0_14")
+ (net 49 "PIO0_15")
+ (net 50 "PIO0_16")
+ (net 51 "PIO0_21")
+ (net 52 "PIO0_20")
+ (net 53 "PIO0_19")
+ (net 54 "PIO0_18")
+ (net 55 "PIO0_17")
+ (net 56 "unconnected-(U3-Pad4)")
+ (net 57 "unconnected-(U3-Pad3)")
+ (net 58 "unconnected-(U1-Pad144)")
+ (net 59 "unconnected-(U1-Pad143)")
+ (net 60 "unconnected-(U1-Pad142)")
+ (net 61 "unconnected-(U1-Pad131)")
+ (net 62 "unconnected-(U1-Pad130)")
+ (net 63 "unconnected-(U1-Pad127)")
+ (net 64 "unconnected-(U1-Pad126)")
+ (net 65 "unconnected-(U1-Pad125)")
+ (net 66 "unconnected-(U1-Pad124)")
+ (net 67 "unconnected-(U1-Pad110)")
+ (net 68 "unconnected-(U1-Pad109)")
+ (net 69 "IR_SD")
+ (net 70 "IR_RXD")
+ (net 71 "IR_TXD")
+ (net 72 "unconnected-(U1-Pad104)")
+ (net 73 "unconnected-(U1-Pad102)")
+ (net 74 "unconnected-(U1-Pad101)")
+ (net 75 "unconnected-(U1-Pad94)")
+ (net 76 "unconnected-(U1-Pad93)")
+ (net 77 "unconnected-(U1-Pad85)")
+ (net 78 "unconnected-(U1-Pad84)")
+ (net 79 "unconnected-(U1-Pad83)")
+ (net 80 "unconnected-(U1-Pad82)")
+ (net 81 "unconnected-(U1-Pad77)")
+ (net 82 "unconnected-(U1-Pad76)")
+ (net 83 "unconnected-(U1-Pad75)")
+ (net 84 "unconnected-(U1-Pad74)")
+ (net 85 "unconnected-(U1-Pad73)")
+ (net 86 "unconnected-(U1-Pad64)")
+ (net 87 "unconnected-(U1-Pad63)")
+ (net 88 "unconnected-(U1-Pad62)")
+ (net 89 "unconnected-(U1-Pad61)")
+ (net 90 "unconnected-(U1-Pad60)")
+ (net 91 "unconnected-(U1-Pad58)")
+ (net 92 "unconnected-(U1-Pad56)")
+ (net 93 "unconnected-(U1-Pad55)")
+ (net 94 "unconnected-(U1-Pad54)")
+ (net 95 "unconnected-(U1-Pad53)")
+ (net 96 "unconnected-(U1-Pad52)")
+ (net 97 "unconnected-(U1-Pad50)")
+ (net 98 "unconnected-(U1-Pad49)")
+ (net 99 "unconnected-(U1-Pad48)")
+ (net 100 "unconnected-(U1-Pad47)")
+ (net 101 "unconnected-(U1-Pad45)")
+ (net 102 "unconnected-(U1-Pad44)")
+ (net 103 "unconnected-(U1-Pad43)")
+ (net 104 "unconnected-(U1-Pad42)")
+ (net 105 "unconnected-(U1-Pad41)")
+ (net 106 "unconnected-(U1-Pad40)")
+ (net 107 "unconnected-(U1-Pad39)")
+ (net 108 "unconnected-(U1-Pad38)")
+ (net 109 "unconnected-(U1-Pad37)")
+ (net 110 "unconnected-(U1-Pad34)")
+ (net 111 "unconnected-(U1-Pad33)")
+ (net 112 "unconnected-(U1-Pad32)")
+ (net 113 "unconnected-(U1-Pad31)")
+ (net 114 "unconnected-(U1-Pad29)")
+ (net 115 "unconnected-(U1-Pad28)")
+ (net 116 "unconnected-(U1-Pad26)")
+ (net 117 "unconnected-(U1-Pad25)")
+ (net 118 "unconnected-(U1-Pad24)")
+ (net 119 "unconnected-(U1-Pad23)")
+ (net 120 "unconnected-(U1-Pad22)")
+ (net 121 "unconnected-(U1-Pad20)")
+ (net 122 "unconnected-(U1-Pad19)")
+ (net 123 "unconnected-(U1-Pad18)")
+ (net 124 "unconnected-(U1-Pad17)")
+ (net 125 "unconnected-(U1-Pad16)")
+ (net 126 "unconnected-(U1-Pad15)")
+ (net 127 "unconnected-(U1-Pad12)")
+ (net 128 "unconnected-(U1-Pad11)")
+ (net 129 "unconnected-(U1-Pad10)")
+ (net 130 "unconnected-(U1-Pad7)")
+ (net 131 "unconnected-(U1-Pad4)")
+ (net 132 "unconnected-(U1-Pad3)")
+ (net 133 "unconnected-(U1-Pad2)")
+ (net 134 "unconnected-(U1-Pad1)")
(footprint "ice4pi:mount_hole" locked (layer "F.Cu")
(tedit 55217C7B) (tstamp 00000000-0000-0000-0000-00005c471d7e)
@@ -241,7 +234,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "ZRB15XR61A106ME01D")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e264806")
(attr smd)
@@ -266,7 +259,7 @@
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 79476267-290e-445f-995b-0afd0e11a4b5))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp aeb03be9-98f0-43f6-9432-1bb35aa04bab))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pintype "passive") (tstamp 27b2eb82-662b-42d8-90e6-830fec4bb8d2))
+ (net 12 "+1V2") (pintype "passive") (tstamp 27b2eb82-662b-42d8-90e6-830fec4bb8d2))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 8b290a17-6328-4178-9131-29524d345539))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -282,7 +275,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012105012")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e264797")
(attr smd)
@@ -307,7 +300,7 @@
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 7d0dab95-9e7a-486e-a1d7-fc48860fd57d))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp c8a44971-63c1-4a19-879d-b6647b2dc08d))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pintype "passive") (tstamp f1782535-55f4-4299-bd4f-6f51b0b7259c))
+ (net 12 "+1V2") (pintype "passive") (tstamp f1782535-55f4-4299-bd4f-6f51b0b7259c))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 2b5a9ad3-7ec4-447d-916c-47adf5f9674f))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -323,7 +316,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "ZRB15XR61A106ME01D")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e266462")
(attr smd)
@@ -348,7 +341,7 @@
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 90e761f6-1432-4f73-ad28-fa8869b7ec31))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp a6738794-75ae-48a6-8949-ed8717400d71))
+ (net 10 "+3V3") (pintype "passive") (tstamp a6738794-75ae-48a6-8949-ed8717400d71))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 24b72b0d-63b8-4e06-89d0-e94dcf39a600))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -364,7 +357,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012105012")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e266469")
(attr smd)
@@ -389,7 +382,7 @@
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 4cafb73d-1ad8-4d24-acf7-63d78095ae46))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp be4b72db-0e02-4d9b-844a-aff689b4e648))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 38cfe839-c630-43d3-a9ec-6a89ba9e318a))
+ (net 10 "+3V3") (pintype "passive") (tstamp 38cfe839-c630-43d3-a9ec-6a89ba9e318a))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 5889287d-b845-4684-b23e-663811b25d27))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -405,7 +398,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e266470")
(attr smd)
@@ -430,7 +423,7 @@
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp bd793ae5-cde5-43f6-8def-1f95f35b1be6))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6))
+ (net 10 "+3V3") (pintype "passive") (tstamp 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp e70b6168-f98e-4322-bc55-500948ef7b77))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -446,7 +439,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205012")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e266477")
(attr smd)
@@ -471,7 +464,7 @@
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7744b6ee-910d-401d-b730-65c35d3d8092))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a25b7e01-1754-4cc9-8a14-3d9c461e5af5))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp d0cd3439-276c-41ba-b38d-f84f6da38415))
+ (net 10 "+3V3") (pintype "passive") (tstamp d0cd3439-276c-41ba-b38d-f84f6da38415))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp dda1e6ca-91ec-4136-b90b-3c54d79454b9))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -487,7 +480,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205012")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e26471f")
(attr smd)
@@ -512,7 +505,7 @@
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp a7f2e97b-29f3-44fd-bf8a-97a3c1528b61))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e87738fc-e372-4c48-9de9-398fd8b4874c))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pintype "passive") (tstamp 6cb93665-0bcd-4104-8633-fffd1811eee0))
+ (net 12 "+1V2") (pintype "passive") (tstamp 6cb93665-0bcd-4104-8633-fffd1811eee0))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 7f2b3ce3-2f20-426d-b769-e0329b6a8111))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -528,7 +521,7 @@
(descr "LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "PN" "SML-LX0603GW-TR")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2b00b9")
(attr smd)
@@ -556,9 +549,9 @@
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 9e0e6fc0-a269-4822-b93d-4c5e6689ff11))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp a64aeb89-c24a-493b-9aab-87a6be930bde))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 19 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp a76a574b-1cac-43eb-81e6-0e2e278cea39))
+ (net 16 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp a76a574b-1cac-43eb-81e6-0e2e278cea39))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 23 "LED1") (pinfunction "A") (pintype "passive") (tstamp 76afa8e0-9b3a-439d-843c-ad039d3b6354))
+ (net 20 "LED1") (pinfunction "A") (pintype "passive") (tstamp 76afa8e0-9b3a-439d-843c-ad039d3b6354))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -572,7 +565,7 @@
(descr "LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "PN" "SML-LX0603GW-TR")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2b0000")
(attr smd)
@@ -600,9 +593,9 @@
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7acd513a-187b-4936-9f93-2e521ce33ad5))
(fp_line (start -0.3 0.25) (end -0.3 -0.25) (layer "F.Fab") (width 0.1) (tstamp ee29d712-3378-4507-a00b-003526b29bb1))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 21 "Net-(D3-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 4a7e3849-3bc9-4bb3-b16a-fab2f5cee0e5))
+ (net 18 "Net-(D3-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 4a7e3849-3bc9-4bb3-b16a-fab2f5cee0e5))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 22 "LED2") (pinfunction "A") (pintype "passive") (tstamp 79451892-db6b-4999-916d-6392174ee493))
+ (net 19 "LED2") (pinfunction "A") (pintype "passive") (tstamp 79451892-db6b-4999-916d-6392174ee493))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -616,7 +609,7 @@
(descr "LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "PN" "SML-LX0603IW-TR")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2c9447")
(attr smd)
@@ -644,9 +637,9 @@
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp ca5b6af8-ca05-4338-b852-b51f2b49b1db))
(fp_line (start -0.4 0.25) (end -0.4 -0.25) (layer "F.Fab") (width 0.1) (tstamp d72c89a6-7578-4468-964e-2a845431195f))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 25 "Net-(D5-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 05d3e08e-e1f9-46cf-93d0-836d1306d03a))
+ (net 22 "Net-(D5-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 05d3e08e-e1f9-46cf-93d0-836d1306d03a))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 17 "LED4") (pinfunction "A") (pintype "passive") (tstamp f699494a-77d6-4c73-bd50-29c1c1c5b879))
+ (net 14 "LED4") (pinfunction "A") (pintype "passive") (tstamp f699494a-77d6-4c73-bd50-29c1c1c5b879))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -660,7 +653,7 @@
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "PN" "ERJ-2GEJ103X")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e1e2982")
(attr smd)
@@ -685,9 +678,9 @@
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e65bab67-68b7-4b22-a939-6f2c05164d2a))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp fa20e708-ec85-4e0b-8402-f74a2724f920))
+ (net 10 "+3V3") (pintype "passive") (tstamp fa20e708-ec85-4e0b-8402-f74a2724f920))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 10 "Net-(R2-Pad2)") (pintype "passive") (tstamp fb35e3b1-aff6-41a7-9cf0-52694b95edeb))
+ (net 9 "Net-(R2-Pad2)") (pintype "passive") (tstamp fb35e3b1-aff6-41a7-9cf0-52694b95edeb))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -701,7 +694,7 @@
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "PN" "ERJ-2GEJ103X")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e25fc55")
(attr smd)
@@ -726,9 +719,9 @@
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 49b5f540-e128-4e08-bb09-f321f8e64056))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp aa23bfe3-454b-4a2b-bfe1-101c747eb84e))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 000b46d6-b833-4804-8f56-56d539f76d09))
+ (net 10 "+3V3") (pintype "passive") (tstamp 000b46d6-b833-4804-8f56-56d539f76d09))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 35 "Net-(R16-Pad2)") (pintype "passive") (tstamp dd70858b-2f9a-4b3f-9af5-ead3a9ba57e9))
+ (net 32 "Net-(R16-Pad2)") (pintype "passive") (tstamp dd70858b-2f9a-4b3f-9af5-ead3a9ba57e9))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -742,7 +735,7 @@
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "PN" "ERJ-2GEJ103X")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e25ff44")
(attr smd)
@@ -767,7 +760,7 @@
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 456c5e47-d71e-4708-b061-1e61634d8648))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp ffa442c7-cbef-461f-8613-c211201cec06))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 2f3fba7a-cf45-4bd8-9035-07e6fa0b4732))
+ (net 10 "+3V3") (pintype "passive") (tstamp 2f3fba7a-cf45-4bd8-9035-07e6fa0b4732))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "iCE_SCK") (pintype "passive") (tstamp 319c683d-aed6-4e7d-aee2-ff9871746d52))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
@@ -1337,7 +1330,7 @@
(descr "LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "PN" "SML-LX0603GW-TR")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2b0159")
(attr smd)
@@ -1365,9 +1358,9 @@
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp c8ab8246-b2bb-4b06-b45e-2548482466fd))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp dc1d84c8-33da-4489-be8e-2a1de3001779))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 18 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 44035e53-ff94-45ad-801f-55a1ce042a0d))
+ (net 15 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 44035e53-ff94-45ad-801f-55a1ce042a0d))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 26 "LED0") (pinfunction "A") (pintype "passive") (tstamp 212bf70c-2324-47d9-8700-59771063baeb))
+ (net 23 "LED0") (pinfunction "A") (pintype "passive") (tstamp 212bf70c-2324-47d9-8700-59771063baeb))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -1381,7 +1374,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205012")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e1e51dc")
(attr smd)
@@ -1406,7 +1399,7 @@
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 99332785-d9f1-4363-9377-26ddc18e6d2c))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e4e20505-1208-4100-a4aa-676f50844c06))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656))
+ (net 10 "+3V3") (pintype "passive") (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 7bfba61b-6752-4a45-9ee6-5984dcb15041))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -1422,7 +1415,7 @@
(descr "Miniature Crystal Clock Oscillator Abracon ASDMB series, 2.5x2.0mm package, http://www.abracon.com/Oscillators/ASDMB.pdf")
(tags "SMD SMT crystal oscillator")
(property "PN" "DSC1001DI1-012.0000 ")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e1e4caf")
(attr smd)
@@ -1449,13 +1442,13 @@
(fp_line (start 1.25 1) (end -0.75 1) (layer "F.Fab") (width 0.1) (tstamp f67bbef3-6f59-49ba-8890-d1f9dc9f9ad6))
(fp_line (start 1.25 -1) (end 1.25 1) (layer "F.Fab") (width 0.1) (tstamp fe6d9604-2924-4f38-950b-a31e8a281973))
(pad "1" smd rect locked (at -0.825 0.775 270) (size 0.65 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 11 "+3V3") (pinfunction "Standby") (pintype "input") (tstamp 82204892-ec79-4d38-a593-52fb9a9b4b87))
+ (net 10 "+3V3") (pinfunction "Standby") (pintype "input") (tstamp 82204892-ec79-4d38-a593-52fb9a9b4b87))
(pad "2" smd rect locked (at 0.825 0.775 270) (size 0.65 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp dec284d9-246c-4619-8dcc-8f4886f9349e))
(pad "3" smd rect locked (at 0.825 -0.775 270) (size 0.65 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "12MHz") (pinfunction "Out") (pintype "output") (tstamp ae8bb5ae-95ee-4e2d-8a0c-ae5b6149b4e3))
(pad "4" smd rect locked (at -0.825 -0.775 270) (size 0.65 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 11 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 8b3ba7fc-20b6-43c4-a020-80151e1caecc))
+ (net 10 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 8b3ba7fc-20b6-43c4-a020-80151e1caecc))
(model "${KISYS3DMOD}/Oscillator.3dshapes/microchip-dsc1001DI1.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -1469,7 +1462,7 @@
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "PN" "ERJ-2GEJ103X")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e261d36")
(attr smd)
@@ -1494,7 +1487,7 @@
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 5e755161-24a5-4650-a6e3-9836bf074412))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp e86e4fae-9ca7-4857-a93c-bc6a3048f887))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 9208ea78-8dde-4b3d-91e9-5755ab5efd9a))
+ (net 10 "+3V3") (pintype "passive") (tstamp 9208ea78-8dde-4b3d-91e9-5755ab5efd9a))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "iCE_SS_B") (pintype "passive") (tstamp 58390862-1833-41dd-9c4e-98073ea0da33))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
@@ -1510,7 +1503,7 @@
(descr "SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "PN" "W25Q32JVSNIQ")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e1e1709")
(attr smd)
@@ -1544,7 +1537,7 @@
(pad "2" smd roundrect locked (at -2.475 -0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "iCE_MISO") (pinfunction "SDO") (pintype "output") (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35))
(pad "3" smd roundrect locked (at -2.475 0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 35 "Net-(R16-Pad2)") (pinfunction "~{WP}") (pintype "input") (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
+ (net 32 "Net-(R16-Pad2)") (pinfunction "~{WP}") (pintype "input") (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
(pad "4" smd roundrect locked (at -2.475 1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9))
(pad "5" smd roundrect locked (at 2.475 1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
@@ -1552,9 +1545,9 @@
(pad "6" smd roundrect locked (at 2.475 0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "iCE_SCK") (pinfunction "SCK") (pintype "input") (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2))
(pad "7" smd roundrect locked (at 2.475 -0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 10 "Net-(R2-Pad2)") (pinfunction "~{HOLD}") (pintype "input") (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91))
+ (net 9 "Net-(R2-Pad2)") (pinfunction "~{HOLD}") (pintype "input") (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91))
(pad "8" smd roundrect locked (at 2.475 -1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0))
+ (net 10 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0))
(model "${KISYS3DMOD}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -1568,7 +1561,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2634f8")
(attr smd)
@@ -1593,7 +1586,7 @@
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp a599509f-fbb9-4db4-9adf-9e96bab1138d))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 1cb22080-0f59-4c18-a6e6-8685ef44ec53))
+ (net 10 "+3V3") (pintype "passive") (tstamp 1cb22080-0f59-4c18-a6e6-8685ef44ec53))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 8bdea5f6-7a53-427a-92b8-fd15994c2e8c))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -1603,123 +1596,51 @@
)
)
- (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
- (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e47647d)
- (at 62.45 60.05 -90)
- (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
- (tags "resistor")
- (property "PN" "ERJ-2GEJ101X")
- (property "Sheetfile" "ice4pi.sch")
+ (footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
+ (tedit 5F6F9B37) (tstamp 00000000-0000-0000-0000-00005e4764bd)
+ (at 56.65 59.75)
+ (descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
+ (tags "SOT TO_SOT_SMD")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
- (path "/00000000-0000-0000-0000-00005e2ff1c3")
+ (path "/329e525a-cfe4-4a84-bdd9-541b463e2e75")
(attr smd)
- (fp_text reference "R7" (at 2.45 -0.05 180) (layer "F.SilkS")
- (effects (font (size 0.5 0.5) (thickness 0.125)))
- (tstamp d05faa1f-5f69-41bf-86d3-2cd224432e1b)
- )
- (fp_text value "100" (at 0 1.17 -90) (layer "F.Fab")
+ (fp_text reference "U3" (at 0 -2.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
- (tstamp 2f424da3-8fae-4941-bc6d-20044787372f)
- )
- (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
- (effects (font (size 0.25 0.25) (thickness 0.04)))
- (tstamp 41485de5-6ed3-4c83-b69e-ef83ae18093c)
- )
- (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3bca658b-a598-4669-a7cb-3f9b5f47bb5a))
- (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp b7aa0362-7c9e-4a42-b191-ab15a38bf3c5))
- (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp bef2abc2-bf3e-4a72-ad03-f8da3cd893cb))
- (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp dd1edfbb-5fb6-42cd-b740-fd54ab3ef1f1))
- (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 1cc5480b-56b7-4379-98e2-ccafc88911a7))
- (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 42d3f9d6-2a47-41a8-b942-295fcb83bcd8))
- (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 7bea05d4-1dec-4cd6-aa53-302dde803254))
- (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp a5362821-c161-4c7a-a00c-40e1d7472d56))
- (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 14 "Net-(C5-Pad1)") (pintype "passive") (tstamp 851f3d61-ba3b-4e6e-abd4-cafa4d9b64cb))
- (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 1 "GND") (pintype "passive") (tstamp 9a8ad8bb-d9a9-4b2b-bc88-ea6fd2676d45))
- (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
- (offset (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
+ (tstamp 11f13304-bd4b-4b91-bb72-2e84ab0b85a5)
)
- )
-
- (footprint "ice4pi:TSSOP-20_4.4x6.5mm_P0.65mm" (layer "F.Cu")
- (tedit 5E28A0AF) (tstamp 00000000-0000-0000-0000-00005e4764bd)
- (at 56.65 59.75 180)
- (descr "20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] (see Microchip Packaging Specification 00000049BS.pdf)")
- (tags "SSOP 0.65")
- (property "PN" "LT3030EFE#PBF")
- (property "Sheetfile" "ice4pi.sch")
- (property "Sheetname" "")
- (path "/00000000-0000-0000-0000-00005e27fcd5")
- (attr smd)
- (fp_text reference "U3" (at 1.8 -7.3 180) (layer "F.SilkS")
+ (fp_text value "MIC5504-1.2YM5" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
- (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770)
+ (tstamp b8589e00-0483-400e-942d-568ea8cb1ed7)
)
- (fp_text value "LT3030" (at 0 4.3 180) (layer "F.Fab")
- (effects (font (size 1 1) (thickness 0.15)))
- (tstamp cb16d05e-318b-4e51-867b-70d791d75bea)
- )
- (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
- (effects (font (size 0.8 0.8) (thickness 0.15)))
- (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47)
- )
- (fp_line (start -2.225 3.45) (end 2.225 3.45) (layer "F.SilkS") (width 0.15) (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c))
- (fp_line (start -3.75 -3.45) (end 2.225 -3.45) (layer "F.SilkS") (width 0.15) (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756))
- (fp_line (start -3.95 -3.55) (end 3.95 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2))
- (fp_line (start -3.95 3.55) (end 3.95 3.55) (layer "F.CrtYd") (width 0.05) (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86))
- (fp_line (start 3.95 -3.55) (end 3.95 3.55) (layer "F.CrtYd") (width 0.05) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49))
- (fp_line (start -3.95 -3.55) (end -3.95 3.55) (layer "F.CrtYd") (width 0.05) (tstamp a5e521b9-814e-4853-a5ac-f158785c6269))
- (fp_line (start -2.2 -2.25) (end -1.2 -3.25) (layer "F.Fab") (width 0.15) (tstamp 262f1ea9-0133-4b43-be36-456207ea857c))
- (fp_line (start 2.2 -3.25) (end 2.2 3.25) (layer "F.Fab") (width 0.15) (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573))
- (fp_line (start 2.2 3.25) (end -2.2 3.25) (layer "F.Fab") (width 0.15) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9))
- (fp_line (start -2.2 3.25) (end -2.2 -2.25) (layer "F.Fab") (width 0.15) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee))
- (fp_line (start -1.2 -3.25) (end 2.2 -3.25) (layer "F.Fab") (width 0.15) (tstamp ec5c2062-3a41-4636-8803-069e60a1641a))
- (pad "1" smd rect locked (at -2.95 -2.925 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 65 "unconnected-(U3-Pad1)") (pinfunction "ADJ1") (pintype "input+no_connect") (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f))
- (pad "2" smd rect locked (at -2.95 -2.275 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 64 "unconnected-(U3-Pad2)") (pinfunction "BYP1") (pintype "input+no_connect") (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0))
- (pad "3" smd rect locked (at -2.95 -1.625 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 63 "unconnected-(U3-Pad3)") (pinfunction "OUT1_1") (pintype "power_out+no_connect") (tstamp 59ec3156-036e-4049-89db-91a9dd07095f))
- (pad "4" smd rect locked (at -2.95 -0.975 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 62 "unconnected-(U3-Pad4)") (pinfunction "OUT1_2") (pintype "power_out+no_connect") (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d))
- (pad "5" smd rect locked (at -2.95 -0.325 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 1 "GND") (pinfunction "GND4") (pintype "power_in") (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367))
- (pad "6" smd rect locked (at -2.95 0.325 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 1 "GND") (pinfunction "GND3") (pintype "power_in") (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e))
- (pad "7" smd rect locked (at -2.95 0.975 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 14 "Net-(C5-Pad1)") (pinfunction "OUT2_1") (pintype "power_out") (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3))
- (pad "8" smd rect locked (at -2.95 1.625 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 14 "Net-(C5-Pad1)") (pinfunction "OUT2_2") (pintype "power_out") (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302))
- (pad "9" smd rect locked (at -2.95 2.275 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 13 "Net-(C5-Pad2)") (pinfunction "BYP2") (pintype "input") (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220))
- (pad "10" smd rect locked (at -2.95 2.925 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 14 "Net-(C5-Pad1)") (pinfunction "ADJ2") (pintype "input") (tstamp cb614b23-9af3-4aec-bed8-c1374e001510))
- (pad "11" smd rect locked (at 2.95 2.925 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 12 "+5V") (pinfunction "~{SHDN2}") (pintype "input") (tstamp 592f25e6-a01b-47fd-8172-3da01117d00a))
- (pad "12" smd rect locked (at 2.95 2.275 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 9 "Net-(R1-Pad2)") (pinfunction "PWRGD2") (pintype "input") (tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7))
- (pad "13" smd rect locked (at 2.95 1.625 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 12 "+5V") (pinfunction "IN2_2") (pintype "power_in") (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5))
- (pad "14" smd rect locked (at 2.95 0.975 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 12 "+5V") (pinfunction "IN2_1") (pintype "power_in") (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43))
- (pad "15" smd rect locked (at 2.95 0.325 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 1 "GND") (pinfunction "GND2") (pintype "power_in") (tstamp c09938fd-06b9-4771-9f63-2311626243b3))
- (pad "16" smd rect locked (at 2.95 -0.325 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 1 "GND") (pinfunction "GND1") (pintype "power_in") (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc))
- (pad "17" smd rect locked (at 2.95 -0.975 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 61 "unconnected-(U3-Pad17)") (pinfunction "IN1_2") (pintype "power_in+no_connect") (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4))
- (pad "18" smd rect locked (at 2.95 -1.625 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 60 "unconnected-(U3-Pad18)") (pinfunction "IN1_1") (pintype "power_in+no_connect") (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb))
- (pad "19" smd rect locked (at 2.95 -2.275 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 59 "unconnected-(U3-Pad19)") (pinfunction "PWRGD1") (pintype "input+no_connect") (tstamp 22999e73-da32-43a5-9163-4b3a41614f25))
- (pad "20" smd rect locked (at 2.95 -2.925 180) (size 1.45 0.45) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 1 "GND") (pinfunction "~{SHDN1}") (pintype "input") (tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114))
- (pad "21" smd rect locked (at 0 0 180) (size 2.74 3.86) (layers "F.Cu" "F.Paste" "F.Mask")
- (net 1 "GND") (pinfunction "THERMPAD") (pintype "passive") (tstamp 81a15393-727e-448b-a777-b18773023d89))
- (model "${KISYS3DMOD}/Package_SO.3dshapes/TSSOP-20_4.4x6.5mm_P0.65mm.wrl"
+ (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
+ (effects (font (size 0.4 0.4) (thickness 0.06)))
+ (tstamp 3510a739-668e-4f11-83a1-6481b757b3f0)
+ )
+ (fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 0851a28a-072d-4eb8-9eb6-9182523e5197))
+ (fp_line (start 0 -1.56) (end -1.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 4e8df529-8d47-4e77-865b-b182783e5fc5))
+ (fp_line (start 0 1.56) (end 0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp 5eed351f-98f5-471e-9233-df27873867e0))
+ (fp_line (start 0 1.56) (end -0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp 9c3da690-2fa9-46db-8a28-a3110e00961e))
+ (fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 1e5f9687-68da-4fa7-a5ab-d249bf5e99b3))
+ (fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 4fa7e0c7-23bb-40fb-beb5-e8a2140224b0))
+ (fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp d4d1bd68-a9e6-402c-9443-93b1d7dcbad3))
+ (fp_line (start -2.05 1.7) (end 2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp e02ef194-98aa-44c2-8b22-88f98c8d0607))
+ (fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 0721f147-3ec4-43cf-9f27-709ea322fb67))
+ (fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer "F.Fab") (width 0.1) (tstamp 32126f38-74e0-48e9-8055-092c94173587))
+ (fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer "F.Fab") (width 0.1) (tstamp 99b50a70-a0e7-4449-a39d-2391a4bbe067))
+ (fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer "F.Fab") (width 0.1) (tstamp dfbb3a32-5fc1-4833-adae-2237b4b9b7be))
+ (fp_line (start 0.8 1.45) (end -0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp f0ad63ea-1ab9-4134-81c2-eb508b42ee41))
+ (pad "1" smd roundrect (at -1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
+ (net 11 "+5V") (pinfunction "VIN") (pintype "power_in") (tstamp 2efb1d28-ca19-43e0-bfcb-4ebd8e6a220b))
+ (pad "2" smd roundrect (at -1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
+ (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 067fb9a1-5278-4e90-ad48-93993d2ed931))
+ (pad "3" smd roundrect (at -1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
+ (net 57 "unconnected-(U3-Pad3)") (pinfunction "EN") (pintype "input") (tstamp 5778953d-c3f1-4eab-88e0-47485d04ab27))
+ (pad "4" smd roundrect (at 1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
+ (net 56 "unconnected-(U3-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 76027acc-26e3-449a-ac06-42967bcb2137))
+ (pad "5" smd roundrect (at 1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
+ (net 12 "+1V2") (pinfunction "VOUT") (pintype "power_out") (tstamp 91ab3f4d-d809-4607-a1fa-cd4bd6a0726c))
+ (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
@@ -1732,7 +1653,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "ZRB15XR61A106ME01D")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e280667")
(attr smd)
@@ -1757,7 +1678,7 @@
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 12 "+5V") (pintype "passive") (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23))
+ (net 11 "+5V") (pintype "passive") (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -1773,7 +1694,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "C1005X5R0J475M050BC")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2edd40")
(attr smd)
@@ -1798,7 +1719,7 @@
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp b09666f9-12f1-4ee9-8877-2292c94258ca))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp cc15f583-a41b-43af-ba94-a75455506a96))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 14 "Net-(C5-Pad1)") (pintype "passive") (tstamp afd38b10-2eca-4abe-aed1-a96fb07ffdbe))
+ (net 12 "+1V2") (pintype "passive") (tstamp afd38b10-2eca-4abe-aed1-a96fb07ffdbe))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 997c2f12-73ba-4c01-9ee0-42e37cbab790))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -1808,136 +1729,13 @@
)
)
- (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
- (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e476567)
- (at 62.95 58.55 180)
- (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
- (tags "resistor")
- (property "PN" "2176049-8")
- (property "Sheetfile" "ice4pi.sch")
- (property "Sheetname" "")
- (path "/00000000-0000-0000-0000-00005e2ff1b2")
- (attr smd)
- (fp_text reference "R9" (at -0.8 0.8 180) (layer "F.SilkS")
- (effects (font (size 0.5 0.5) (thickness 0.125)))
- (tstamp e76ec524-408a-4daa-89f6-0edfdbcfb621)
- )
- (fp_text value "0.1" (at 0 1.17 180) (layer "F.Fab")
- (effects (font (size 1 1) (thickness 0.15)))
- (tstamp 78b44915-d68e-4488-a873-34767153ef98)
- )
- (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
- (effects (font (size 0.25 0.25) (thickness 0.04)))
- (tstamp 3993c707-5291-41b6-83c0-d1c09cb3833a)
- )
- (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 17ff35b3-d658-499b-9a46-ea36063fed4e))
- (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 89a3dae6-dcb5-435b-a383-656b6a19a316))
- (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp a917c6d9-225d-4c90-bf25-fe8eff8abd3f))
- (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp d13b0eae-4711-4325-a6bb-aa8e3646e86e))
- (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 1755646e-fc08-4e43-a301-d9b3ea704cf6))
- (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 26bc8641-9bca-4204-9709-deedbe202a36))
- (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp b54cae5b-c17c-4ed7-b249-2e7d5e83609a))
- (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp fd5f7d77-0f73-4021-88a8-0641f0fe8d98))
- (pad "1" smd roundrect locked (at -0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pintype "passive") (tstamp ef4533db-6ea4-4b68-b436-8e9575be570d))
- (pad "2" smd roundrect locked (at 0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 14 "Net-(C5-Pad1)") (pintype "passive") (tstamp 1317ff66-8ecf-46c9-9612-8d2eae03c537))
- (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
- (offset (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
-
- (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
- (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e476591)
- (at 61.8 57.55 180)
- (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
- (tags "capacitor")
- (property "PN" "885012205012")
- (property "Sheetfile" "ice4pi.sch")
- (property "Sheetname" "")
- (path "/00000000-0000-0000-0000-00005e2d9385")
- (attr smd)
- (fp_text reference "C5" (at 0.1 0.8 180) (layer "F.SilkS")
- (effects (font (size 0.5 0.5) (thickness 0.125)))
- (tstamp 6f675e5f-8fe6-4148-baf1-da97afc770f8)
- )
- (fp_text value "0.01uF" (at 1.5 2.4 180) (layer "F.Fab")
- (effects (font (size 1 1) (thickness 0.15)))
- (tstamp d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa)
- )
- (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
- (effects (font (size 0.25 0.25) (thickness 0.04)))
- (tstamp 917920ab-0c6e-4927-974d-ef342cdd4f63)
- )
- (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 155b0b7c-70b4-4a26-a550-bac13cab0aa4))
- (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9))
- (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4f411f68-04bd-4175-a406-bcaa4cf6601e))
- (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8fc062a7-114d-48eb-a8f8-71128838f380))
- (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 00e38d63-5436-49db-81f5-697421f168fc))
- (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 399fc36a-ed5d-44b5-82f7-c6f83d9acc14))
- (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056))
- (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00))
- (pad "1" smd roundrect locked (at -0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 14 "Net-(C5-Pad1)") (pintype "passive") (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f))
- (pad "2" smd roundrect locked (at 0.485 0 180) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 13 "Net-(C5-Pad2)") (pintype "passive") (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9))
- (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
- (offset (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
-
- (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
- (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e4765bb)
- (at 52.15 57.15 -90)
- (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
- (tags "resistor")
- (property "PN" "ERJ-2GEJ105X")
- (property "Sheetfile" "ice4pi.sch")
- (property "Sheetname" "")
- (path "/00000000-0000-0000-0000-00005e280901")
- (attr smd)
- (fp_text reference "R1" (at 0.05 1.1 -90) (layer "F.SilkS")
- (effects (font (size 1 1) (thickness 0.15)))
- (tstamp ab8b0540-9c9f-4195-88f5-7bed0b0a8ed6)
- )
- (fp_text value "1M" (at 0 1.17 -90) (layer "F.Fab")
- (effects (font (size 1 1) (thickness 0.15)))
- (tstamp e79c8e11-ed47-4701-ae80-a54cdb6682a5)
- )
- (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
- (effects (font (size 0.25 0.25) (thickness 0.04)))
- (tstamp aa047297-22f8-4de0-a969-0b3451b8e164)
- )
- (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp b0b4c3cb-e7ea-49c0-8162-be3bbab3e4ec))
- (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp b794d099-f823-4d35-9755-ca1c45247ee9))
- (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp df3dc9a2-ba40-4c3a-87fe-61cc8e23d71b))
- (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e87a6f80-914f-4f62-9c9f-9ba62a88ee3d))
- (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 2518d4ea-25cc-4e57-a0d6-8482034e7318))
- (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7))
- (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp db851147-6a1e-4d19-898c-0ba71182359b))
- (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp de370984-7922-4327-a0ba-7cd613995df4))
- (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 12 "+5V") (pintype "passive") (tstamp 799e761c-1426-40e9-a069-1f4cb353bfaa))
- (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 9 "Net-(R1-Pad2)") (pintype "passive") (tstamp e69c64f9-717d-4a97-b3df-80325ec2fa63))
- (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
- (offset (xyz 0 0 0))
- (scale (xyz 1 1 1))
- (rotate (xyz 0 0 0))
- )
- )
-
(footprint "Diode_SMD:D_0603_1608Metric" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e47798a)
(at 91.75 57.55)
(descr "Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property "PN" "CDBU0520")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e3494ba")
(attr smd)
@@ -1966,9 +1764,9 @@
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b66b83a0-313f-4b03-b851-c6e9577a6eb7))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp dad2f9a9-292b-4f7e-9524-a263f3c1ba74))
(pad "1" smd roundrect locked (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 44 "Net-(D6-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 1d0d5161-c82f-4c77-a9ca-15d017db65d3))
+ (net 41 "Net-(D6-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 1d0d5161-c82f-4c77-a9ca-15d017db65d3))
(pad "2" smd roundrect locked (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pinfunction "A") (pintype "passive") (tstamp 6f1beb86-67e1-46bf-8c2b-6d1e1485d5c0))
+ (net 10 "+3V3") (pinfunction "A") (pintype "passive") (tstamp 6f1beb86-67e1-46bf-8c2b-6d1e1485d5c0))
(model "${KISYS3DMOD}/Diode_SMD.3dshapes/D_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -1981,7 +1779,7 @@
(at 78.25 67.3)
(descr "TQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_qfp_generator.py")
(tags "TQFP QFP")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e1df5e3")
(attr smd)
@@ -2036,133 +1834,133 @@
(fp_line (start -9 -10) (end 10 -10) (layer "F.Fab") (width 0.1) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
(fp_line (start -10 10) (end -10 -9) (layer "F.Fab") (width 0.1) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(pad "1" smd roundrect locked (at -10.6625 -8.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 142 "unconnected-(U1-Pad1)") (pinfunction "IOL_1A") (pintype "bidirectional") (tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb))
+ (net 134 "unconnected-(U1-Pad1)") (pinfunction "IOL_1A") (pintype "bidirectional") (tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb))
(pad "2" smd roundrect locked (at -10.6625 -8.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 141 "unconnected-(U1-Pad2)") (pinfunction "IOL_1B") (pintype "bidirectional") (tstamp 6781326c-6e0d-4753-8f28-0f5c687e01f9))
+ (net 133 "unconnected-(U1-Pad2)") (pinfunction "IOL_1B") (pintype "bidirectional") (tstamp 6781326c-6e0d-4753-8f28-0f5c687e01f9))
(pad "3" smd roundrect locked (at -10.6625 -7.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 140 "unconnected-(U1-Pad3)") (pinfunction "IOL_2A") (pintype "bidirectional") (tstamp c8029a4c-945d-42ca-871a-dd73ff50a1a3))
+ (net 132 "unconnected-(U1-Pad3)") (pinfunction "IOL_2A") (pintype "bidirectional") (tstamp c8029a4c-945d-42ca-871a-dd73ff50a1a3))
(pad "4" smd roundrect locked (at -10.6625 -7.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 139 "unconnected-(U1-Pad4)") (pinfunction "IOL_2B") (pintype "bidirectional") (tstamp 101ef598-601d-400e-9ef6-d655fbb1dbfa))
+ (net 131 "unconnected-(U1-Pad4)") (pinfunction "IOL_2B") (pintype "bidirectional") (tstamp 101ef598-601d-400e-9ef6-d655fbb1dbfa))
(pad "5" smd roundrect locked (at -10.6625 -6.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 7f52d787-caa3-4a92-b1b2-19d554dc29a4))
(pad "6" smd roundrect locked (at -10.6625 -6.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pinfunction "VCCIO_3") (pintype "power_in") (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151))
+ (net 10 "+3V3") (pinfunction "VCCIO_3") (pintype "power_in") (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151))
(pad "7" smd roundrect locked (at -10.6625 -5.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 138 "unconnected-(U1-Pad7)") (pinfunction "IOL_3A") (pintype "bidirectional") (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb))
+ (net 130 "unconnected-(U1-Pad7)") (pinfunction "IOL_3A") (pintype "bidirectional") (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb))
(pad "8" smd roundrect locked (at -10.6625 -5.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 45 "RS232_Tx_TTL") (pinfunction "IOL_3B") (pintype "bidirectional") (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019))
+ (net 42 "RS232_Tx_TTL") (pinfunction "IOL_3B") (pintype "bidirectional") (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019))
(pad "9" smd roundrect locked (at -10.6625 -4.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 46 "RS232_Rx_TTL") (pinfunction "IOL_4A") (pintype "bidirectional") (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec))
+ (net 43 "RS232_Rx_TTL") (pinfunction "IOL_4A") (pintype "bidirectional") (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec))
(pad "10" smd roundrect locked (at -10.6625 -4.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 137 "unconnected-(U1-Pad10)") (pinfunction "IOL_4B") (pintype "bidirectional") (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296))
+ (net 129 "unconnected-(U1-Pad10)") (pinfunction "IOL_4B") (pintype "bidirectional") (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296))
(pad "11" smd roundrect locked (at -10.6625 -3.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 136 "unconnected-(U1-Pad11)") (pinfunction "IOL_5A") (pintype "bidirectional") (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba))
+ (net 128 "unconnected-(U1-Pad11)") (pinfunction "IOL_5A") (pintype "bidirectional") (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba))
(pad "12" smd roundrect locked (at -10.6625 -3.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 135 "unconnected-(U1-Pad12)") (pinfunction "IOL_5B") (pintype "bidirectional") (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7))
+ (net 127 "unconnected-(U1-Pad12)") (pinfunction "IOL_5B") (pintype "bidirectional") (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7))
(pad "13" smd roundrect locked (at -10.6625 -2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504))
(pad "14" smd roundrect locked (at -10.6625 -2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
(pad "15" smd roundrect locked (at -10.6625 -1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 134 "unconnected-(U1-Pad15)") (pinfunction "NC") (pintype "no_connect") (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
+ (net 126 "unconnected-(U1-Pad15)") (pinfunction "NC") (pintype "no_connect") (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
(pad "16" smd roundrect locked (at -10.6625 -1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 133 "unconnected-(U1-Pad16)") (pinfunction "NC") (pintype "no_connect") (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
+ (net 125 "unconnected-(U1-Pad16)") (pinfunction "NC") (pintype "no_connect") (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
(pad "17" smd roundrect locked (at -10.6625 -0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 132 "unconnected-(U1-Pad17)") (pinfunction "NC") (pintype "no_connect") (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
+ (net 124 "unconnected-(U1-Pad17)") (pinfunction "NC") (pintype "no_connect") (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
(pad "18" smd roundrect locked (at -10.6625 -0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 131 "unconnected-(U1-Pad18)") (pinfunction "NC") (pintype "no_connect") (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
+ (net 123 "unconnected-(U1-Pad18)") (pinfunction "NC") (pintype "no_connect") (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
(pad "19" smd roundrect locked (at -10.6625 0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 130 "unconnected-(U1-Pad19)") (pinfunction "IOL_6A") (pintype "bidirectional") (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
+ (net 122 "unconnected-(U1-Pad19)") (pinfunction "IOL_6A") (pintype "bidirectional") (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
(pad "20" smd roundrect locked (at -10.6625 0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 129 "unconnected-(U1-Pad20)") (pinfunction "IOL_6B_GBIN7") (pintype "bidirectional") (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a))
+ (net 121 "unconnected-(U1-Pad20)") (pinfunction "IOL_6B_GBIN7") (pintype "bidirectional") (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a))
(pad "21" smd roundrect locked (at -10.6625 1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "12MHz") (pinfunction "IOL_7A_GBIN6") (pintype "bidirectional") (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534))
(pad "22" smd roundrect locked (at -10.6625 1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 128 "unconnected-(U1-Pad22)") (pinfunction "IOL_7B") (pintype "bidirectional") (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656))
+ (net 120 "unconnected-(U1-Pad22)") (pinfunction "IOL_7B") (pintype "bidirectional") (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656))
(pad "23" smd roundrect locked (at -10.6625 2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 127 "unconnected-(U1-Pad23)") (pinfunction "IOL_8A") (pintype "bidirectional") (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077))
+ (net 119 "unconnected-(U1-Pad23)") (pinfunction "IOL_8A") (pintype "bidirectional") (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077))
(pad "24" smd roundrect locked (at -10.6625 2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 126 "unconnected-(U1-Pad24)") (pinfunction "IOL_8B") (pintype "bidirectional") (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99))
+ (net 118 "unconnected-(U1-Pad24)") (pinfunction "IOL_8B") (pintype "bidirectional") (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99))
(pad "25" smd roundrect locked (at -10.6625 3.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 125 "unconnected-(U1-Pad25)") (pinfunction "IOL_9A") (pintype "bidirectional") (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e))
+ (net 117 "unconnected-(U1-Pad25)") (pinfunction "IOL_9A") (pintype "bidirectional") (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e))
(pad "26" smd roundrect locked (at -10.6625 3.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 124 "unconnected-(U1-Pad26)") (pinfunction "IOL_9B") (pintype "bidirectional") (tstamp 097edb1b-8998-4e70-b670-bba125982348))
+ (net 116 "unconnected-(U1-Pad26)") (pinfunction "IOL_9B") (pintype "bidirectional") (tstamp 097edb1b-8998-4e70-b670-bba125982348))
(pad "27" smd roundrect locked (at -10.6625 4.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pinfunction "VCC") (pintype "power_in") (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a))
+ (net 12 "+1V2") (pinfunction "VCC") (pintype "power_in") (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a))
(pad "28" smd roundrect locked (at -10.6625 4.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 123 "unconnected-(U1-Pad28)") (pinfunction "IOL_10A") (pintype "bidirectional") (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213))
+ (net 115 "unconnected-(U1-Pad28)") (pinfunction "IOL_10A") (pintype "bidirectional") (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213))
(pad "29" smd roundrect locked (at -10.6625 5.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 122 "unconnected-(U1-Pad29)") (pinfunction "IOL_10B") (pintype "bidirectional") (tstamp 2d67a417-188f-4014-9282-000265d80009))
+ (net 114 "unconnected-(U1-Pad29)") (pinfunction "IOL_10B") (pintype "bidirectional") (tstamp 2d67a417-188f-4014-9282-000265d80009))
(pad "30" smd roundrect locked (at -10.6625 5.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pinfunction "VCCIO_3") (pintype "passive") (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7))
+ (net 10 "+3V3") (pinfunction "VCCIO_3") (pintype "passive") (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7))
(pad "31" smd roundrect locked (at -10.6625 6.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 121 "unconnected-(U1-Pad31)") (pinfunction "IOL_11A") (pintype "bidirectional") (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d))
+ (net 113 "unconnected-(U1-Pad31)") (pinfunction "IOL_11A") (pintype "bidirectional") (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d))
(pad "32" smd roundrect locked (at -10.6625 6.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 120 "unconnected-(U1-Pad32)") (pinfunction "IOL_11B") (pintype "bidirectional") (tstamp f40d350f-0d3e-4f8a-b004-d950f2f8f1ba))
+ (net 112 "unconnected-(U1-Pad32)") (pinfunction "IOL_11B") (pintype "bidirectional") (tstamp f40d350f-0d3e-4f8a-b004-d950f2f8f1ba))
(pad "33" smd roundrect locked (at -10.6625 7.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 119 "unconnected-(U1-Pad33)") (pinfunction "IOL_12A") (pintype "bidirectional") (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa))
+ (net 111 "unconnected-(U1-Pad33)") (pinfunction "IOL_12A") (pintype "bidirectional") (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa))
(pad "34" smd roundrect locked (at -10.6625 7.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 118 "unconnected-(U1-Pad34)") (pinfunction "IOL_12B") (pintype "bidirectional") (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0))
+ (net 110 "unconnected-(U1-Pad34)") (pinfunction "IOL_12B") (pintype "bidirectional") (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0))
(pad "35" smd roundrect locked (at -10.6625 8.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GNDPLL") (pintype "power_in") (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc))
(pad "36" smd roundrect locked (at -10.6625 8.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 16 "Net-(C26-Pad1)") (pinfunction "VCCPLL") (pintype "power_in") (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d))
+ (net 13 "Net-(C26-Pad1)") (pinfunction "VCCPLL") (pintype "power_in") (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d))
(pad "37" smd roundrect locked (at -8.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 117 "unconnected-(U1-Pad37)") (pinfunction "IOB_24") (pintype "bidirectional") (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
+ (net 109 "unconnected-(U1-Pad37)") (pinfunction "IOB_24") (pintype "bidirectional") (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
(pad "38" smd roundrect locked (at -8.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 116 "unconnected-(U1-Pad38)") (pinfunction "IOB_25") (pintype "bidirectional") (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
+ (net 108 "unconnected-(U1-Pad38)") (pinfunction "IOB_25") (pintype "bidirectional") (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
(pad "39" smd roundrect locked (at -7.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 115 "unconnected-(U1-Pad39)") (pinfunction "IOB_26") (pintype "bidirectional") (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
+ (net 107 "unconnected-(U1-Pad39)") (pinfunction "IOB_26") (pintype "bidirectional") (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
(pad "40" smd roundrect locked (at -7.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 114 "unconnected-(U1-Pad40)") (pinfunction "NC") (pintype "no_connect") (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
+ (net 106 "unconnected-(U1-Pad40)") (pinfunction "NC") (pintype "no_connect") (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
(pad "41" smd roundrect locked (at -6.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 113 "unconnected-(U1-Pad41)") (pinfunction "IOB_27") (pintype "bidirectional") (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
+ (net 105 "unconnected-(U1-Pad41)") (pinfunction "IOB_27") (pintype "bidirectional") (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
(pad "42" smd roundrect locked (at -6.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 112 "unconnected-(U1-Pad42)") (pinfunction "IOB_28") (pintype "bidirectional") (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848))
+ (net 104 "unconnected-(U1-Pad42)") (pinfunction "IOB_28") (pintype "bidirectional") (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848))
(pad "43" smd roundrect locked (at -5.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 111 "unconnected-(U1-Pad43)") (pinfunction "IOB_29") (pintype "bidirectional") (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb))
+ (net 103 "unconnected-(U1-Pad43)") (pinfunction "IOB_29") (pintype "bidirectional") (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb))
(pad "44" smd roundrect locked (at -5.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 110 "unconnected-(U1-Pad44)") (pinfunction "IOB_30") (pintype "bidirectional") (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
+ (net 102 "unconnected-(U1-Pad44)") (pinfunction "IOB_30") (pintype "bidirectional") (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
(pad "45" smd roundrect locked (at -4.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 109 "unconnected-(U1-Pad45)") (pinfunction "IOB_31") (pintype "bidirectional") (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
+ (net 101 "unconnected-(U1-Pad45)") (pinfunction "IOB_31") (pintype "bidirectional") (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
(pad "46" smd roundrect locked (at -4.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pinfunction "VCCIO_2") (pintype "power_in") (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
+ (net 10 "+3V3") (pinfunction "VCCIO_2") (pintype "power_in") (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
(pad "47" smd roundrect locked (at -3.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 108 "unconnected-(U1-Pad47)") (pinfunction "IOB_32") (pintype "bidirectional") (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
+ (net 100 "unconnected-(U1-Pad47)") (pinfunction "IOB_32") (pintype "bidirectional") (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
(pad "48" smd roundrect locked (at -3.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 107 "unconnected-(U1-Pad48)") (pinfunction "IOB_33") (pintype "bidirectional") (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))
+ (net 99 "unconnected-(U1-Pad48)") (pinfunction "IOB_33") (pintype "bidirectional") (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))
(pad "49" smd roundrect locked (at -2.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 106 "unconnected-(U1-Pad49)") (pinfunction "IOB_35_GBIN5") (pintype "bidirectional") (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863))
+ (net 98 "unconnected-(U1-Pad49)") (pinfunction "IOB_35_GBIN5") (pintype "bidirectional") (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863))
(pad "50" smd roundrect locked (at -2.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 105 "unconnected-(U1-Pad50)") (pinfunction "IOB_36_GBIN4") (pintype "bidirectional") (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594))
+ (net 97 "unconnected-(U1-Pad50)") (pinfunction "IOB_36_GBIN4") (pintype "bidirectional") (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594))
(pad "51" smd roundrect locked (at -1.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pinfunction "VCC") (pintype "passive") (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb))
+ (net 12 "+1V2") (pinfunction "VCC") (pintype "passive") (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb))
(pad "52" smd roundrect locked (at -1.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 104 "unconnected-(U1-Pad52)") (pinfunction "IOB_34") (pintype "bidirectional") (tstamp 14769dc5-8525-4984-8b15-a734ee247efa))
+ (net 96 "unconnected-(U1-Pad52)") (pinfunction "IOB_34") (pintype "bidirectional") (tstamp 14769dc5-8525-4984-8b15-a734ee247efa))
(pad "53" smd roundrect locked (at -0.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 103 "unconnected-(U1-Pad53)") (pinfunction "NC") (pintype "no_connect") (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415))
+ (net 95 "unconnected-(U1-Pad53)") (pinfunction "NC") (pintype "no_connect") (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415))
(pad "54" smd roundrect locked (at -0.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 102 "unconnected-(U1-Pad54)") (pinfunction "NC") (pintype "no_connect") (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167))
+ (net 94 "unconnected-(U1-Pad54)") (pinfunction "NC") (pintype "no_connect") (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167))
(pad "55" smd roundrect locked (at 0.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 101 "unconnected-(U1-Pad55)") (pinfunction "NC") (pintype "no_connect") (tstamp bd065eaf-e495-4837-bdb3-129934de1fc7))
+ (net 93 "unconnected-(U1-Pad55)") (pinfunction "NC") (pintype "no_connect") (tstamp bd065eaf-e495-4837-bdb3-129934de1fc7))
(pad "56" smd roundrect locked (at 0.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 100 "unconnected-(U1-Pad56)") (pinfunction "IOB_37") (pintype "bidirectional") (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2))
+ (net 92 "unconnected-(U1-Pad56)") (pinfunction "IOB_37") (pintype "bidirectional") (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2))
(pad "57" smd roundrect locked (at 1.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pinfunction "VCCIO_2") (pintype "passive") (tstamp cb24efdd-07c6-4317-9277-131625b065ac))
+ (net 10 "+3V3") (pinfunction "VCCIO_2") (pintype "passive") (tstamp cb24efdd-07c6-4317-9277-131625b065ac))
(pad "58" smd roundrect locked (at 1.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 99 "unconnected-(U1-Pad58)") (pinfunction "IOB_38") (pintype "bidirectional") (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6))
+ (net 91 "unconnected-(U1-Pad58)") (pinfunction "IOB_38") (pintype "bidirectional") (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6))
(pad "59" smd roundrect locked (at 2.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8))
(pad "60" smd roundrect locked (at 2.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 98 "unconnected-(U1-Pad60)") (pinfunction "IOB_39") (pintype "bidirectional") (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0))
+ (net 90 "unconnected-(U1-Pad60)") (pinfunction "IOB_39") (pintype "bidirectional") (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0))
(pad "61" smd roundrect locked (at 3.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 97 "unconnected-(U1-Pad61)") (pinfunction "IOB_40") (pintype "bidirectional") (tstamp 182b2d54-931d-49d6-9f39-60a752623e36))
+ (net 89 "unconnected-(U1-Pad61)") (pinfunction "IOB_40") (pintype "bidirectional") (tstamp 182b2d54-931d-49d6-9f39-60a752623e36))
(pad "62" smd roundrect locked (at 3.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 96 "unconnected-(U1-Pad62)") (pinfunction "IOB_41") (pintype "bidirectional") (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8))
+ (net 88 "unconnected-(U1-Pad62)") (pinfunction "IOB_41") (pintype "bidirectional") (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8))
(pad "63" smd roundrect locked (at 4.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 95 "unconnected-(U1-Pad63)") (pinfunction "IOB_42_CBSEL0") (pintype "bidirectional") (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
+ (net 87 "unconnected-(U1-Pad63)") (pinfunction "IOB_42_CBSEL0") (pintype "bidirectional") (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
(pad "64" smd roundrect locked (at 4.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 94 "unconnected-(U1-Pad64)") (pinfunction "IOB_43_CBSEL1") (pintype "bidirectional") (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
+ (net 86 "unconnected-(U1-Pad64)") (pinfunction "IOB_43_CBSEL1") (pintype "bidirectional") (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
(pad "65" smd roundrect locked (at 5.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "iCE_CDONE") (pinfunction "CDONE") (pintype "open_collector") (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
(pad "66" smd roundrect locked (at 5.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
@@ -2178,151 +1976,151 @@
(pad "71" smd roundrect locked (at 8.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "iCE_SS_B") (pinfunction "IOB_47_SS") (pintype "bidirectional") (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65))
(pad "72" smd roundrect locked (at 8.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pinfunction "VCC_SPI") (pintype "power_in") (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
+ (net 10 "+3V3") (pinfunction "VCC_SPI") (pintype "power_in") (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
(pad "73" smd roundrect locked (at 10.6625 8.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 93 "unconnected-(U1-Pad73)") (pinfunction "IOR_48") (pintype "bidirectional") (tstamp f3628265-0155-43e2-a467-c40ff783e265))
+ (net 85 "unconnected-(U1-Pad73)") (pinfunction "IOR_48") (pintype "bidirectional") (tstamp f3628265-0155-43e2-a467-c40ff783e265))
(pad "74" smd roundrect locked (at 10.6625 8.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 92 "unconnected-(U1-Pad74)") (pinfunction "IOR_49") (pintype "bidirectional") (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
+ (net 84 "unconnected-(U1-Pad74)") (pinfunction "IOR_49") (pintype "bidirectional") (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
(pad "75" smd roundrect locked (at 10.6625 7.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 91 "unconnected-(U1-Pad75)") (pinfunction "IOR_50") (pintype "bidirectional") (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
+ (net 83 "unconnected-(U1-Pad75)") (pinfunction "IOR_50") (pintype "bidirectional") (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(pad "76" smd roundrect locked (at 10.6625 7.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 90 "unconnected-(U1-Pad76)") (pinfunction "IOR_51") (pintype "bidirectional") (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
+ (net 82 "unconnected-(U1-Pad76)") (pinfunction "IOR_51") (pintype "bidirectional") (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(pad "77" smd roundrect locked (at 10.6625 6.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 89 "unconnected-(U1-Pad77)") (pinfunction "NC") (pintype "no_connect") (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
+ (net 81 "unconnected-(U1-Pad77)") (pinfunction "NC") (pintype "no_connect") (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(pad "78" smd roundrect locked (at 10.6625 6.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 27 "PIO1_02") (pinfunction "IOR_52") (pintype "bidirectional") (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
+ (net 24 "PIO1_02") (pinfunction "IOR_52") (pintype "bidirectional") (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(pad "79" smd roundrect locked (at 10.6625 5.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 28 "PIO1_03") (pinfunction "IOR_53") (pintype "bidirectional") (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
+ (net 25 "PIO1_03") (pinfunction "IOR_53") (pintype "bidirectional") (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(pad "80" smd roundrect locked (at 10.6625 5.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 29 "PIO1_04") (pinfunction "IOR_54") (pintype "bidirectional") (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45))
+ (net 26 "PIO1_04") (pinfunction "IOR_54") (pintype "bidirectional") (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45))
(pad "81" smd roundrect locked (at 10.6625 4.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 30 "PIO1_05") (pinfunction "IOR_55") (pintype "bidirectional") (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9))
+ (net 27 "PIO1_05") (pinfunction "IOR_55") (pintype "bidirectional") (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9))
(pad "82" smd roundrect locked (at 10.6625 4.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 88 "unconnected-(U1-Pad82)") (pinfunction "NC") (pintype "no_connect") (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2))
+ (net 80 "unconnected-(U1-Pad82)") (pinfunction "NC") (pintype "no_connect") (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2))
(pad "83" smd roundrect locked (at 10.6625 3.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 87 "unconnected-(U1-Pad83)") (pinfunction "NC") (pintype "no_connect") (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec))
+ (net 79 "unconnected-(U1-Pad83)") (pinfunction "NC") (pintype "no_connect") (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec))
(pad "84" smd roundrect locked (at 10.6625 3.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 86 "unconnected-(U1-Pad84)") (pinfunction "NC") (pintype "no_connect") (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222))
+ (net 78 "unconnected-(U1-Pad84)") (pinfunction "NC") (pintype "no_connect") (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222))
(pad "85" smd roundrect locked (at 10.6625 2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 85 "unconnected-(U1-Pad85)") (pinfunction "NC") (pintype "no_connect") (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
+ (net 77 "unconnected-(U1-Pad85)") (pinfunction "NC") (pintype "no_connect") (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
(pad "86" smd roundrect locked (at 10.6625 2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76))
(pad "87" smd roundrect locked (at 10.6625 1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 31 "PIO1_06") (pinfunction "IOR_56") (pintype "bidirectional") (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
+ (net 28 "PIO1_06") (pinfunction "IOR_56") (pintype "bidirectional") (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
(pad "88" smd roundrect locked (at 10.6625 1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 32 "PIO1_07") (pinfunction "IOR_57") (pintype "bidirectional") (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097))
+ (net 29 "PIO1_07") (pinfunction "IOR_57") (pintype "bidirectional") (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097))
(pad "89" smd roundrect locked (at 10.6625 0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pinfunction "VCCIO_1") (pintype "power_in") (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04))
+ (net 10 "+3V3") (pinfunction "VCCIO_1") (pintype "power_in") (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04))
(pad "90" smd roundrect locked (at 10.6625 0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 33 "PIO1_08") (pinfunction "IOR_58") (pintype "bidirectional") (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec))
+ (net 30 "PIO1_08") (pinfunction "IOR_58") (pintype "bidirectional") (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec))
(pad "91" smd roundrect locked (at 10.6625 -0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 34 "PIO1_09") (pinfunction "IOR_59") (pintype "bidirectional") (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3))
+ (net 31 "PIO1_09") (pinfunction "IOR_59") (pintype "bidirectional") (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3))
(pad "92" smd roundrect locked (at 10.6625 -0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pinfunction "VCC") (pintype "passive") (tstamp 4fb21471-41be-4be8-9687-66030f97befc))
+ (net 12 "+1V2") (pinfunction "VCC") (pintype "passive") (tstamp 4fb21471-41be-4be8-9687-66030f97befc))
(pad "93" smd roundrect locked (at 10.6625 -1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 84 "unconnected-(U1-Pad93)") (pinfunction "IOR_60_GBIN3") (pintype "bidirectional") (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
+ (net 76 "unconnected-(U1-Pad93)") (pinfunction "IOR_60_GBIN3") (pintype "bidirectional") (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
(pad "94" smd roundrect locked (at 10.6625 -1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 83 "unconnected-(U1-Pad94)") (pinfunction "IOR_61_GBIN2") (pintype "bidirectional") (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
+ (net 75 "unconnected-(U1-Pad94)") (pinfunction "IOR_61_GBIN2") (pintype "bidirectional") (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
(pad "95" smd roundrect locked (at 10.6625 -2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 17 "LED4") (pinfunction "IOR_62") (pintype "bidirectional") (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
+ (net 14 "LED4") (pinfunction "IOR_62") (pintype "bidirectional") (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
(pad "96" smd roundrect locked (at 10.6625 -2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 20 "LED3") (pinfunction "IOR_63") (pintype "bidirectional") (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
+ (net 17 "LED3") (pinfunction "IOR_63") (pintype "bidirectional") (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(pad "97" smd roundrect locked (at 10.6625 -3.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 22 "LED2") (pinfunction "IOR_64") (pintype "bidirectional") (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
+ (net 19 "LED2") (pinfunction "IOR_64") (pintype "bidirectional") (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
(pad "98" smd roundrect locked (at 10.6625 -3.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 23 "LED1") (pinfunction "IOR_65") (pintype "bidirectional") (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
+ (net 20 "LED1") (pinfunction "IOR_65") (pintype "bidirectional") (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
(pad "99" smd roundrect locked (at 10.6625 -4.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 26 "LED0") (pinfunction "IOR_66") (pintype "bidirectional") (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
+ (net 23 "LED0") (pinfunction "IOR_66") (pintype "bidirectional") (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
(pad "100" smd roundrect locked (at 10.6625 -4.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pinfunction "VCCIO_1") (pintype "passive") (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e))
+ (net 10 "+3V3") (pinfunction "VCCIO_1") (pintype "passive") (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e))
(pad "101" smd roundrect locked (at 10.6625 -5.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 82 "unconnected-(U1-Pad101)") (pinfunction "IOR_67") (pintype "bidirectional") (tstamp 68877d35-b796-44db-9124-b8e744e7412e))
+ (net 74 "unconnected-(U1-Pad101)") (pinfunction "IOR_67") (pintype "bidirectional") (tstamp 68877d35-b796-44db-9124-b8e744e7412e))
(pad "102" smd roundrect locked (at 10.6625 -5.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 81 "unconnected-(U1-Pad102)") (pinfunction "IOR_68") (pintype "bidirectional") (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b))
+ (net 73 "unconnected-(U1-Pad102)") (pinfunction "IOR_68") (pintype "bidirectional") (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b))
(pad "103" smd roundrect locked (at 10.6625 -6.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp df32840e-2912-4088-b54c-9a85f64c0265))
(pad "104" smd roundrect locked (at 10.6625 -6.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 80 "unconnected-(U1-Pad104)") (pinfunction "IOR_69") (pintype "bidirectional") (tstamp 8412992d-8754-44de-9e08-115cec1a3eff))
+ (net 72 "unconnected-(U1-Pad104)") (pinfunction "IOR_69") (pintype "bidirectional") (tstamp 8412992d-8754-44de-9e08-115cec1a3eff))
(pad "105" smd roundrect locked (at 10.6625 -7.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 79 "IR_TXD") (pinfunction "IOR_70") (pintype "bidirectional") (tstamp ffd175d1-912a-4224-be1e-a8198680f46b))
+ (net 71 "IR_TXD") (pinfunction "IOR_70") (pintype "bidirectional") (tstamp ffd175d1-912a-4224-be1e-a8198680f46b))
(pad "106" smd roundrect locked (at 10.6625 -7.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 78 "IR_RXD") (pinfunction "IOR_71") (pintype "bidirectional") (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d))
+ (net 70 "IR_RXD") (pinfunction "IOR_71") (pintype "bidirectional") (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d))
(pad "107" smd roundrect locked (at 10.6625 -8.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 77 "IR_SD") (pinfunction "IOR_72") (pintype "bidirectional") (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160))
+ (net 69 "IR_SD") (pinfunction "IOR_72") (pintype "bidirectional") (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160))
(pad "108" smd roundrect locked (at 10.6625 -8.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 44 "Net-(D6-Pad1)") (pinfunction "VPP_2V5") (pintype "power_in") (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067))
+ (net 41 "Net-(D6-Pad1)") (pinfunction "VPP_2V5") (pintype "power_in") (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067))
(pad "109" smd roundrect locked (at 8.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 76 "unconnected-(U1-Pad109)") (pinfunction "VPP_FAST") (pintype "power_in") (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e))
+ (net 68 "unconnected-(U1-Pad109)") (pinfunction "VPP_FAST") (pintype "power_in") (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e))
(pad "110" smd roundrect locked (at 8.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 75 "unconnected-(U1-Pad110)") (pinfunction "NC") (pintype "no_connect") (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249))
+ (net 67 "unconnected-(U1-Pad110)") (pinfunction "NC") (pintype "no_connect") (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249))
(pad "111" smd roundrect locked (at 7.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pinfunction "VCC") (pintype "passive") (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
+ (net 12 "+1V2") (pinfunction "VCC") (pintype "passive") (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
(pad "112" smd roundrect locked (at 7.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 43 "PIO0_02") (pinfunction "IOT_73") (pintype "bidirectional") (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
+ (net 40 "PIO0_02") (pinfunction "IOT_73") (pintype "bidirectional") (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
(pad "113" smd roundrect locked (at 6.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 42 "PIO0_03") (pinfunction "IOT_74") (pintype "bidirectional") (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
+ (net 39 "PIO0_03") (pinfunction "IOT_74") (pintype "bidirectional") (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
(pad "114" smd roundrect locked (at 6.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 41 "PIO0_04") (pinfunction "IOT_75") (pintype "bidirectional") (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
+ (net 38 "PIO0_04") (pinfunction "IOT_75") (pintype "bidirectional") (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
(pad "115" smd roundrect locked (at 5.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 40 "PIO0_05") (pinfunction "IOT_76") (pintype "bidirectional") (tstamp a15a7506-eae4-4933-84da-9ad754258706))
+ (net 37 "PIO0_05") (pinfunction "IOT_76") (pintype "bidirectional") (tstamp a15a7506-eae4-4933-84da-9ad754258706))
(pad "116" smd roundrect locked (at 5.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 39 "PIO0_06") (pinfunction "IOT_77") (pintype "bidirectional") (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
+ (net 36 "PIO0_06") (pinfunction "IOT_77") (pintype "bidirectional") (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
(pad "117" smd roundrect locked (at 4.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 38 "PIO0_07") (pinfunction "IOT_78") (pintype "bidirectional") (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
+ (net 35 "PIO0_07") (pinfunction "IOT_78") (pintype "bidirectional") (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(pad "118" smd roundrect locked (at 4.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 37 "PIO0_08") (pinfunction "IOT_79") (pintype "bidirectional") (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
+ (net 34 "PIO0_08") (pinfunction "IOT_79") (pintype "bidirectional") (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
(pad "119" smd roundrect locked (at 3.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 36 "PIO0_09") (pinfunction "IOT_80") (pintype "bidirectional") (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
+ (net 33 "PIO0_09") (pinfunction "IOT_80") (pintype "bidirectional") (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
(pad "120" smd roundrect locked (at 3.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 47 "PIO0_10") (pinfunction "IOT_81") (pintype "bidirectional") (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
+ (net 44 "PIO0_10") (pinfunction "IOT_81") (pintype "bidirectional") (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
(pad "121" smd roundrect locked (at 2.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 49 "PIO0_11") (pinfunction "IOT_82") (pintype "bidirectional") (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
+ (net 46 "PIO0_11") (pinfunction "IOT_82") (pintype "bidirectional") (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
(pad "122" smd roundrect locked (at 2.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 48 "PIO0_12") (pinfunction "IOT_83") (pintype "bidirectional") (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
+ (net 45 "PIO0_12") (pinfunction "IOT_83") (pintype "bidirectional") (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
(pad "123" smd roundrect locked (at 1.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pinfunction "VCCIO_0") (pintype "power_in") (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19))
+ (net 10 "+3V3") (pinfunction "VCCIO_0") (pintype "power_in") (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19))
(pad "124" smd roundrect locked (at 1.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 74 "unconnected-(U1-Pad124)") (pinfunction "NC") (pintype "no_connect") (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807))
+ (net 66 "unconnected-(U1-Pad124)") (pinfunction "NC") (pintype "no_connect") (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807))
(pad "125" smd roundrect locked (at 0.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 73 "unconnected-(U1-Pad125)") (pinfunction "NC") (pintype "no_connect") (tstamp c43663ee-9a0d-4f27-a292-89ba89964065))
+ (net 65 "unconnected-(U1-Pad125)") (pinfunction "NC") (pintype "no_connect") (tstamp c43663ee-9a0d-4f27-a292-89ba89964065))
(pad "126" smd roundrect locked (at 0.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 72 "unconnected-(U1-Pad126)") (pinfunction "NC") (pintype "no_connect") (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c))
+ (net 64 "unconnected-(U1-Pad126)") (pinfunction "NC") (pintype "no_connect") (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c))
(pad "127" smd roundrect locked (at -0.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 71 "unconnected-(U1-Pad127)") (pinfunction "NC") (pintype "no_connect") (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
+ (net 63 "unconnected-(U1-Pad127)") (pinfunction "NC") (pintype "no_connect") (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
(pad "128" smd roundrect locked (at -0.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 50 "PIO0_13") (pinfunction "IOT_84_GBIN1") (pintype "bidirectional") (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
+ (net 47 "PIO0_13") (pinfunction "IOT_84_GBIN1") (pintype "bidirectional") (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
(pad "129" smd roundrect locked (at -1.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 51 "PIO0_14") (pinfunction "IOT_85_GBIN0") (pintype "bidirectional") (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
+ (net 48 "PIO0_14") (pinfunction "IOT_85_GBIN0") (pintype "bidirectional") (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
(pad "130" smd roundrect locked (at -1.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 70 "unconnected-(U1-Pad130)") (pinfunction "NC") (pintype "no_connect") (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7))
+ (net 62 "unconnected-(U1-Pad130)") (pinfunction "NC") (pintype "no_connect") (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7))
(pad "131" smd roundrect locked (at -2.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 69 "unconnected-(U1-Pad131)") (pinfunction "NC") (pintype "no_connect") (tstamp 4780a290-d25c-4459-9579-eba3f7678762))
+ (net 61 "unconnected-(U1-Pad131)") (pinfunction "NC") (pintype "no_connect") (tstamp 4780a290-d25c-4459-9579-eba3f7678762))
(pad "132" smd roundrect locked (at -2.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
(pad "133" smd roundrect locked (at -3.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pinfunction "VCCIO_0") (pintype "passive") (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
+ (net 10 "+3V3") (pinfunction "VCCIO_0") (pintype "passive") (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
(pad "134" smd roundrect locked (at -3.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 52 "PIO0_15") (pinfunction "IOT_87") (pintype "bidirectional") (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
+ (net 49 "PIO0_15") (pinfunction "IOT_87") (pintype "bidirectional") (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
(pad "135" smd roundrect locked (at -4.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 53 "PIO0_16") (pinfunction "IOT_88") (pintype "bidirectional") (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd))
+ (net 50 "PIO0_16") (pinfunction "IOT_88") (pintype "bidirectional") (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd))
(pad "136" smd roundrect locked (at -4.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 58 "PIO0_17") (pinfunction "IOT_89") (pintype "bidirectional") (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
+ (net 55 "PIO0_17") (pinfunction "IOT_89") (pintype "bidirectional") (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
(pad "137" smd roundrect locked (at -5.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 57 "PIO0_18") (pinfunction "IOT_90") (pintype "bidirectional") (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
+ (net 54 "PIO0_18") (pinfunction "IOT_90") (pintype "bidirectional") (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
(pad "138" smd roundrect locked (at -5.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 56 "PIO0_19") (pinfunction "IOT_91") (pintype "bidirectional") (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
+ (net 53 "PIO0_19") (pinfunction "IOT_91") (pintype "bidirectional") (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
(pad "139" smd roundrect locked (at -6.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 55 "PIO0_20") (pinfunction "IOT_92") (pintype "bidirectional") (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
+ (net 52 "PIO0_20") (pinfunction "IOT_92") (pintype "bidirectional") (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(pad "140" smd roundrect locked (at -6.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
(pad "141" smd roundrect locked (at -7.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 54 "PIO0_21") (pinfunction "IOT_93") (pintype "bidirectional") (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
+ (net 51 "PIO0_21") (pinfunction "IOT_93") (pintype "bidirectional") (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
(pad "142" smd roundrect locked (at -7.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 68 "unconnected-(U1-Pad142)") (pinfunction "IOT_94") (pintype "bidirectional") (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
+ (net 60 "unconnected-(U1-Pad142)") (pinfunction "IOT_94") (pintype "bidirectional") (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
(pad "143" smd roundrect locked (at -8.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 67 "unconnected-(U1-Pad143)") (pinfunction "IOT_95") (pintype "bidirectional") (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
+ (net 59 "unconnected-(U1-Pad143)") (pinfunction "IOT_95") (pintype "bidirectional") (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
(pad "144" smd roundrect locked (at -8.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 66 "unconnected-(U1-Pad144)") (pinfunction "IOT_96") (pintype "bidirectional") (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9))
+ (net 58 "unconnected-(U1-Pad144)") (pinfunction "IOT_96") (pintype "bidirectional") (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9))
(model "${KISYS3DMOD}/Package_QFP.3dshapes/TQFP-144_20x20mm_P0.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -2336,7 +2134,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "ZRB15XR61A106ME01D")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e25c43a")
(attr smd)
@@ -2361,7 +2159,7 @@
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 16 "Net-(C26-Pad1)") (pintype "passive") (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
+ (net 13 "Net-(C26-Pad1)") (pintype "passive") (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -2377,7 +2175,7 @@
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "PN" "ERJ-2GEJ101X")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e25c500")
(attr smd)
@@ -2402,9 +2200,9 @@
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp d45d1afe-78e6-4045-862c-b274469da903))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp f203116d-f256-4611-a03e-9536bbedaf2f))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pintype "passive") (tstamp 92a23ed4-a5ea-4cea-bc33-0a83191a0d32))
+ (net 12 "+1V2") (pintype "passive") (tstamp 92a23ed4-a5ea-4cea-bc33-0a83191a0d32))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 16 "Net-(C26-Pad1)") (pintype "passive") (tstamp 9de304ba-fba7-4896-b969-9d87a3522d74))
+ (net 13 "Net-(C26-Pad1)") (pintype "passive") (tstamp 9de304ba-fba7-4896-b969-9d87a3522d74))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -2418,7 +2216,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e25c101")
(attr smd)
@@ -2443,7 +2241,7 @@
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e300709f-6c72-488d-a598-efcbd6d3af54))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp e36988d2-ecb2-461b-a443-7006f447e828))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 16 "Net-(C26-Pad1)") (pintype "passive") (tstamp f4a8afbe-ed68-4253-959f-6be4d2cbf8c5))
+ (net 13 "Net-(C26-Pad1)") (pintype "passive") (tstamp f4a8afbe-ed68-4253-959f-6be4d2cbf8c5))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 7c2008c8-0626-4a09-a873-065e83502a0e))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -2459,7 +2257,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e26453b")
(attr smd)
@@ -2484,7 +2282,7 @@
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pintype "passive") (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c))
+ (net 12 "+1V2") (pintype "passive") (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -2500,7 +2298,7 @@
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "PN" "ERJ-2GEJ102X ")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2d2fe4")
(attr smd)
@@ -2525,7 +2323,7 @@
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 6a0919c2-460c-4229-b872-14e318e1ba8b))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d1c19c11-0a13-4237-b6b4-fb2ef1db7c6d))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 25 "Net-(D5-Pad1)") (pintype "passive") (tstamp 355ced6c-c08a-4586-9a09-7a9c624536f6))
+ (net 22 "Net-(D5-Pad1)") (pintype "passive") (tstamp 355ced6c-c08a-4586-9a09-7a9c624536f6))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp c401e9c6-1deb-4979-99be-7c801c952098))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
@@ -2541,7 +2339,7 @@
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "PN" "ERJ-2GEJ102X ")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2b04dd")
(attr smd)
@@ -2566,7 +2364,7 @@
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp b21299b9-3c4d-43df-b399-7f9b08eb5470))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp c210293b-1d7a-4e96-92e9-058784106727))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 21 "Net-(D3-Pad1)") (pintype "passive") (tstamp 751d823e-1d7b-4501-9658-d06d459b0e16))
+ (net 18 "Net-(D3-Pad1)") (pintype "passive") (tstamp 751d823e-1d7b-4501-9658-d06d459b0e16))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp fc2e9f96-3bed-4896-b995-f56e799f1c77))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
@@ -2582,7 +2380,7 @@
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "PN" "ERJ-2GEJ102X ")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2b02de")
(attr smd)
@@ -2607,7 +2405,7 @@
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 92f063a3-7cce-4a96-8a3a-cf5767f700c6))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp ad4d05f5-6957-42f8-b65c-c657b9a26485))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 18 "Net-(D1-Pad1)") (pintype "passive") (tstamp 9ed09117-33cf-45a3-85a7-2606522feaf8))
+ (net 15 "Net-(D1-Pad1)") (pintype "passive") (tstamp 9ed09117-33cf-45a3-85a7-2606522feaf8))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp eb391a95-1c1d-4613-b508-c76b8bc13a73))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
@@ -2623,7 +2421,7 @@
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "PN" "ERJ-2GEJ102X ")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2b041c")
(attr smd)
@@ -2648,7 +2446,7 @@
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 9112ddd5-10d5-48b8-954f-f1d5adcacbd9))
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp c3d5daf8-d359-42b2-a7c2-0d080ba7e212))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 19 "Net-(D2-Pad1)") (pintype "passive") (tstamp 199124ca-dd64-45cf-a063-97cc545cbea7))
+ (net 16 "Net-(D2-Pad1)") (pintype "passive") (tstamp 199124ca-dd64-45cf-a063-97cc545cbea7))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp ca9b74ce-0dee-401c-9544-f599f4cf538d))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
@@ -2664,7 +2462,7 @@
(descr "LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED")
(property "PN" "SML-LX0603GW-TR")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2afd5c")
(attr smd)
@@ -2692,9 +2490,9 @@
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp be6b17f9-34f5-44e9-a4c7-725d2e274a9d))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp f56d244f-1fa4-4475-ac1d-f41eed31a48b))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 24 "Net-(D4-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 02538207-54a8-4266-8d51-23871852b2ff))
+ (net 21 "Net-(D4-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 02538207-54a8-4266-8d51-23871852b2ff))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 20 "LED3") (pinfunction "A") (pintype "passive") (tstamp dd334895-c8ff-4719-bac4-c0b289bb5899))
+ (net 17 "LED3") (pinfunction "A") (pintype "passive") (tstamp dd334895-c8ff-4719-bac4-c0b289bb5899))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -2708,7 +2506,7 @@
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "PN" "ERJ-2GEJ102X ")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2b05e5")
(attr smd)
@@ -2733,7 +2531,7 @@
(fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 88606262-3ac5-44a1-aacc-18b26cf4d396))
(fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp cd1cff81-9d8a-4511-96d6-4ddb79484001))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 24 "Net-(D4-Pad1)") (pintype "passive") (tstamp af186015-d283-4209-aade-a247e5de01df))
+ (net 21 "Net-(D4-Pad1)") (pintype "passive") (tstamp af186015-d283-4209-aade-a247e5de01df))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 8d063f79-9282-4820-bcf4-1ff3c006cf08))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
@@ -2749,7 +2547,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "ZRB15XR61A106ME01D")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e4a4ec3")
(attr smd)
@@ -2774,7 +2572,7 @@
(fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp c7af8405-da2e-4a34-b9b8-518f342f8995))
(fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp f78e02cd-9600-4173-be8d-67e530b5d19f))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce))
+ (net 10 "+3V3") (pintype "passive") (tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 6f80f798-dc24-438f-a1eb-4ee2936267c8))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -2790,7 +2588,7 @@
(descr "Through hole straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x06 2.54mm double row")
(property "PN" "SSW-106-01-T-D")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e30d74f")
(attr through_hole)
@@ -2824,29 +2622,29 @@
(fp_line (start 3.81 13.97) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
(fp_line (start -0.27 -1.27) (end -1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
- (net 27 "PIO1_02") (pinfunction "Pin_1") (pintype "passive") (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
+ (net 24 "PIO1_02") (pinfunction "Pin_1") (pintype "passive") (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
(pad "2" thru_hole oval locked (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
- (net 28 "PIO1_03") (pinfunction "Pin_2") (pintype "passive") (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3))
+ (net 25 "PIO1_03") (pinfunction "Pin_2") (pintype "passive") (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3))
(pad "3" thru_hole oval locked (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
- (net 29 "PIO1_04") (pinfunction "Pin_3") (pintype "passive") (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
+ (net 26 "PIO1_04") (pinfunction "Pin_3") (pintype "passive") (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
(pad "4" thru_hole oval locked (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
- (net 30 "PIO1_05") (pinfunction "Pin_4") (pintype "passive") (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7))
+ (net 27 "PIO1_05") (pinfunction "Pin_4") (pintype "passive") (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7))
(pad "5" thru_hole oval locked (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5))
(pad "6" thru_hole oval locked (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
- (net 11 "+3V3") (pinfunction "Pin_6") (pintype "passive") (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
+ (net 10 "+3V3") (pinfunction "Pin_6") (pintype "passive") (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
(pad "7" thru_hole oval locked (at 2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
- (net 31 "PIO1_06") (pinfunction "Pin_7") (pintype "passive") (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
+ (net 28 "PIO1_06") (pinfunction "Pin_7") (pintype "passive") (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
(pad "8" thru_hole oval locked (at 2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
- (net 32 "PIO1_07") (pinfunction "Pin_8") (pintype "passive") (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
+ (net 29 "PIO1_07") (pinfunction "Pin_8") (pintype "passive") (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
(pad "9" thru_hole oval locked (at 2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
- (net 33 "PIO1_08") (pinfunction "Pin_9") (pintype "passive") (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
+ (net 30 "PIO1_08") (pinfunction "Pin_9") (pintype "passive") (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
(pad "10" thru_hole oval locked (at 2.54 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
- (net 34 "PIO1_09") (pinfunction "Pin_10") (pintype "passive") (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
+ (net 31 "PIO1_09") (pinfunction "Pin_10") (pintype "passive") (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
(pad "11" thru_hole oval locked (at 2.54 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_11") (pintype "passive") (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
(pad "12" thru_hole oval locked (at 2.54 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
- (net 11 "+3V3") (pinfunction "Pin_12") (pintype "passive") (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
+ (net 10 "+3V3") (pinfunction "Pin_12") (pintype "passive") (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
(model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x06_P2.54mm_Vertical.wrl"
(offset (xyz 2.5 0 0))
(scale (xyz 1 1 1))
@@ -2929,7 +2727,7 @@
(descr "Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x20 2.54mm double row")
(property "PN" "SSW-120-01-T-D-006")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000620502d1")
(attr through_hole)
@@ -2963,39 +2761,39 @@
(fp_line (start -3.81 -49.53) (end -3.81 1.27) (layer "B.Fab") (width 0.1) (tstamp 8322f275-268c-4e87-a69f-4cfbf05e747f))
(fp_line (start 1.27 0.27) (end 1.27 -49.53) (layer "B.Fab") (width 0.1) (tstamp dd00c2e1-6027-4717-b312-4fab3ee52002))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 11 "+3V3") (pinfunction "3V3") (pintype "power_in") (tstamp 23bb2798-d93a-4696-a962-c305c4298a0c))
+ (net 10 "+3V3") (pinfunction "3V3") (pintype "power_in") (tstamp 23bb2798-d93a-4696-a962-c305c4298a0c))
(pad "2" thru_hole oval locked (at -2.54 0 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 12 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp 78cbdd6c-4878-4cc5-9a58-0e506478e37d))
+ (net 11 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp 78cbdd6c-4878-4cc5-9a58-0e506478e37d))
(pad "3" thru_hole oval locked (at 0 -2.54 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 55 "PIO0_20") (pinfunction "SDA/GPIO2") (pintype "bidirectional") (tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d))
+ (net 52 "PIO0_20") (pinfunction "SDA/GPIO2") (pintype "bidirectional") (tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d))
(pad "4" thru_hole oval locked (at -2.54 -2.54 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 12 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6))
+ (net 11 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6))
(pad "5" thru_hole oval locked (at 0 -5.08 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 54 "PIO0_21") (pinfunction "SCL/GPIO3") (pintype "bidirectional") (tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf))
+ (net 51 "PIO0_21") (pinfunction "SCL/GPIO3") (pintype "bidirectional") (tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf))
(pad "6" thru_hole oval locked (at -2.54 -5.08 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12))
(pad "7" thru_hole oval locked (at 0 -7.62 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 56 "PIO0_19") (pinfunction "GCLK0/GPIO4") (pintype "bidirectional") (tstamp 62c076a3-d618-44a2-9042-9a08b3576787))
+ (net 53 "PIO0_19") (pinfunction "GCLK0/GPIO4") (pintype "bidirectional") (tstamp 62c076a3-d618-44a2-9042-9a08b3576787))
(pad "8" thru_hole oval locked (at -2.54 -7.62 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 46 "RS232_Rx_TTL") (pinfunction "GPIO14/TXD") (pintype "bidirectional") (tstamp da469d11-a8a4-414b-9449-d151eeaf4853))
+ (net 43 "RS232_Rx_TTL") (pinfunction "GPIO14/TXD") (pintype "bidirectional") (tstamp da469d11-a8a4-414b-9449-d151eeaf4853))
(pad "9" thru_hole oval locked (at 0 -10.16 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp afb8e687-4a13-41a1-b8c0-89a749e897fe))
(pad "10" thru_hole oval locked (at -2.54 -10.16 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 45 "RS232_Tx_TTL") (pinfunction "GPIO15/RXD") (pintype "bidirectional") (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9))
+ (net 42 "RS232_Tx_TTL") (pinfunction "GPIO15/RXD") (pintype "bidirectional") (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9))
(pad "11" thru_hole oval locked (at 0 -12.7 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 57 "PIO0_18") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455))
+ (net 54 "PIO0_18") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455))
(pad "12" thru_hole oval locked (at -2.54 -12.7 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 58 "PIO0_17") (pinfunction "GPIO18/PWM0") (pintype "bidirectional") (tstamp bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae))
+ (net 55 "PIO0_17") (pinfunction "GPIO18/PWM0") (pintype "bidirectional") (tstamp bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae))
(pad "13" thru_hole oval locked (at 0 -15.24 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 53 "PIO0_16") (pinfunction "GPIO27") (pintype "bidirectional") (tstamp f1830a1b-f0cc-47ae-a2c9-679c82032f14))
+ (net 50 "PIO0_16") (pinfunction "GPIO27") (pintype "bidirectional") (tstamp f1830a1b-f0cc-47ae-a2c9-679c82032f14))
(pad "14" thru_hole oval locked (at -2.54 -15.24 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2))
(pad "15" thru_hole oval locked (at 0 -17.78 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 51 "PIO0_14") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp e8314017-7be6-4011-9179-37449a29b311))
+ (net 48 "PIO0_14") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp e8314017-7be6-4011-9179-37449a29b311))
(pad "16" thru_hole oval locked (at -2.54 -17.78 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 52 "PIO0_15") (pinfunction "GPIO23") (pintype "bidirectional") (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543))
+ (net 49 "PIO0_15") (pinfunction "GPIO23") (pintype "bidirectional") (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543))
(pad "17" thru_hole oval locked (at 0 -20.32 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 11 "+3V3") (pinfunction "3V3") (pintype "power_in") (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
+ (net 10 "+3V3") (pinfunction "3V3") (pintype "power_in") (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
(pad "18" thru_hole oval locked (at -2.54 -20.32 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
(net 4 "iCE_CREST") (pinfunction "GPIO24") (pintype "bidirectional") (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e))
(pad "19" thru_hole oval locked (at 0 -22.86 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
@@ -3013,35 +2811,35 @@
(pad "25" thru_hole oval locked (at 0 -30.48 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca))
(pad "26" thru_hole oval locked (at -2.54 -30.48 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 50 "PIO0_13") (pinfunction "~{CE1}/GPIO7") (pintype "bidirectional") (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72))
+ (net 47 "PIO0_13") (pinfunction "~{CE1}/GPIO7") (pintype "bidirectional") (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72))
(pad "27" thru_hole oval locked (at 0 -33.02 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 49 "PIO0_11") (pinfunction "ID_SD/GPIO0") (pintype "bidirectional") (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b))
+ (net 46 "PIO0_11") (pinfunction "ID_SD/GPIO0") (pintype "bidirectional") (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b))
(pad "28" thru_hole oval locked (at -2.54 -33.02 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 48 "PIO0_12") (pinfunction "ID_SC/GPIO1") (pintype "bidirectional") (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc))
+ (net 45 "PIO0_12") (pinfunction "ID_SC/GPIO1") (pintype "bidirectional") (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc))
(pad "29" thru_hole oval locked (at 0 -35.56 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 47 "PIO0_10") (pinfunction "GCLK1/GPIO5") (pintype "bidirectional") (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45))
+ (net 44 "PIO0_10") (pinfunction "GCLK1/GPIO5") (pintype "bidirectional") (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45))
(pad "30" thru_hole oval locked (at -2.54 -35.56 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 66116376-6967-4178-9f23-a26cdeafc400))
(pad "31" thru_hole oval locked (at 0 -38.1 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 37 "PIO0_08") (pinfunction "GCLK2/GPIO6") (pintype "bidirectional") (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8))
+ (net 34 "PIO0_08") (pinfunction "GCLK2/GPIO6") (pintype "bidirectional") (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8))
(pad "32" thru_hole oval locked (at -2.54 -38.1 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 36 "PIO0_09") (pinfunction "PWM0/GPIO12") (pintype "bidirectional") (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137))
+ (net 33 "PIO0_09") (pinfunction "PWM0/GPIO12") (pintype "bidirectional") (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137))
(pad "33" thru_hole oval locked (at 0 -40.64 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 38 "PIO0_07") (pinfunction "PWM1/GPIO13") (pintype "bidirectional") (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce))
+ (net 35 "PIO0_07") (pinfunction "PWM1/GPIO13") (pintype "bidirectional") (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce))
(pad "34" thru_hole oval locked (at -2.54 -40.64 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268))
(pad "35" thru_hole oval locked (at 0 -43.18 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 40 "PIO0_05") (pinfunction "GPIO19/MISO1") (pintype "bidirectional") (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a))
+ (net 37 "PIO0_05") (pinfunction "GPIO19/MISO1") (pintype "bidirectional") (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a))
(pad "36" thru_hole oval locked (at -2.54 -43.18 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 39 "PIO0_06") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048))
+ (net 36 "PIO0_06") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048))
(pad "37" thru_hole oval locked (at 0 -45.72 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 42 "PIO0_03") (pinfunction "GPIO26") (pintype "bidirectional") (tstamp 87371631-aa02-498a-998a-09bdb74784c1))
+ (net 39 "PIO0_03") (pinfunction "GPIO26") (pintype "bidirectional") (tstamp 87371631-aa02-498a-998a-09bdb74784c1))
(pad "38" thru_hole oval locked (at -2.54 -45.72 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 41 "PIO0_04") (pinfunction "GPIO20/MOSI1") (pintype "bidirectional") (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd))
+ (net 38 "PIO0_04") (pinfunction "GPIO20/MOSI1") (pintype "bidirectional") (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd))
(pad "39" thru_hole oval locked (at 0 -48.26 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03))
(pad "40" thru_hole oval locked (at -2.54 -48.26 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
- (net 43 "PIO0_02") (pinfunction "GPIO21/SCLK1") (pintype "bidirectional") (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
+ (net 40 "PIO0_02") (pinfunction "GPIO21/SCLK1") (pintype "bidirectional") (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
(model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x20_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
@@ -3055,7 +2853,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205012")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e29ba0f")
(attr smd)
@@ -3080,7 +2878,7 @@
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp bdf40d30-88ff-4479-bad1-69529464b61b))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp c9b9e62d-dede-4d1a-9a05-275614f8bdb2))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp e5217a0c-7f55-4c30-adda-7f8d95709d1b))
+ (net 10 "+3V3") (pintype "passive") (tstamp e5217a0c-7f55-4c30-adda-7f8d95709d1b))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 57276367-9ce4-4738-88d7-6e8cb94c966c))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3096,7 +2894,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e271ff6")
(attr smd)
@@ -3121,7 +2919,7 @@
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp fef37e8b-0ff0-4da2-8a57-acaf19551d1a))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8))
+ (net 10 "+3V3") (pintype "passive") (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3137,7 +2935,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e264632")
(attr smd)
@@ -3162,7 +2960,7 @@
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 9529c01f-e1cd-40be-b7f0-83780a544249))
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 96db52e2-6336-4f5e-846e-528c594d0509))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pintype "passive") (tstamp 6f580eb1-88cc-489d-a7ca-9efa5e590715))
+ (net 12 "+1V2") (pintype "passive") (tstamp 6f580eb1-88cc-489d-a7ca-9efa5e590715))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp d68e5ddb-039c-483f-88a3-1b0b7964b482))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3178,7 +2976,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2646a2")
(attr smd)
@@ -3203,7 +3001,7 @@
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp a5c8e189-1ddc-4a66-984b-e0fd1529d346))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp fc4ad874-c922-4070-89f9-7262080469d8))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pintype "passive") (tstamp 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa))
+ (net 12 "+1V2") (pintype "passive") (tstamp 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp c71f56c1-5b7c-4373-9716-fffac482104c))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3219,7 +3017,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205012")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e29a15c")
(attr smd)
@@ -3244,7 +3042,7 @@
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 4ec618ae-096f-4256-9328-005ee04f13d6))
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 8458d41c-5d62-455d-b6e1-9f718c0faac9))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 935057d5-6882-4c15-9a35-54677912ba12))
+ (net 10 "+3V3") (pintype "passive") (tstamp 935057d5-6882-4c15-9a35-54677912ba12))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3260,7 +3058,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e29a155")
(attr smd)
@@ -3285,7 +3083,7 @@
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp d0a0deb1-4f0f-4ede-b730-2c6d67cb9618))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6))
+ (net 10 "+3V3") (pintype "passive") (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3301,7 +3099,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205012")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e271ffd")
(attr smd)
@@ -3326,7 +3124,7 @@
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 8fcec304-c6b1-4655-8326-beacd0476953))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f))
+ (net 10 "+3V3") (pintype "passive") (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3342,7 +3140,7 @@
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "PN" "ERJ-2GEJ103X")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2db2f7")
(attr smd)
@@ -3367,7 +3165,7 @@
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp b9d4de74-d246-495d-8b63-12ab2133d6d6))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp d655bb0a-cbf9-4908-ad60-7024ff468fbd))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp fb0bf2a0-d317-42f7-b022-b5e05481f6be))
+ (net 10 "+3V3") (pintype "passive") (tstamp fb0bf2a0-d317-42f7-b022-b5e05481f6be))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "iCE_CREST") (pintype "passive") (tstamp 66ca01b3-51ff-4294-9b77-4492e98f6aec))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
@@ -3383,7 +3181,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e29d489")
(attr smd)
@@ -3408,7 +3206,7 @@
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 7d76d925-f900-42af-a03f-bb32d2381b09))
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp f1e619ac-5067-41df-8384-776ec70a6093))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp ed8a7f02-cf05-41d0-97b4-4388ef205e73))
+ (net 10 "+3V3") (pintype "passive") (tstamp ed8a7f02-cf05-41d0-97b4-4388ef205e73))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 7a74c4b1-6243-4a12-85a2-bc41d346e7aa))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3424,7 +3222,7 @@
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "PN" "ERJ-2GEJ103X")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2a0c2e")
(attr smd)
@@ -3449,7 +3247,7 @@
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp aa8663be-9516-4b07-84d2-4c4d668b8596))
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp dfcef016-1bf5-4158-8a79-72d38a522877))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 1a22eb2d-f625-4371-a918-ff1b97dc8219))
+ (net 10 "+3V3") (pintype "passive") (tstamp 1a22eb2d-f625-4371-a918-ff1b97dc8219))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "iCE_CDONE") (pintype "passive") (tstamp 6ff9bb63-d6fd-4e32-bb60-7ac65509c2e9))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
@@ -3465,7 +3263,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e29ba08")
(attr smd)
@@ -3490,7 +3288,7 @@
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp cb721686-5255-4788-a3b0-ce4312e32eb7))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp f959907b-1cef-4760-b043-4260a660a2ae))
(pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp faa1812c-fdf3-47ae-9cf4-ae06a263bfbd))
+ (net 10 "+3V3") (pintype "passive") (tstamp faa1812c-fdf3-47ae-9cf4-ae06a263bfbd))
(pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp d4db7f11-8cfe-40d2-b021-b36f05241701))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3506,7 +3304,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e2645b5")
(attr smd)
@@ -3531,7 +3329,7 @@
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 713e0777-58b2-4487-baca-60d0ebed27c3))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp a8fb8ee0-623f-4870-a716-ecc88f37ef9a))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 15 "+1V2") (pintype "passive") (tstamp a0dee8e6-f88a-4f05-aba0-bab3aafdf2bc))
+ (net 12 "+1V2") (pintype "passive") (tstamp a0dee8e6-f88a-4f05-aba0-bab3aafdf2bc))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp f19c9655-8ddb-411a-96dd-bd986870c3c6))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3547,7 +3345,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205012")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e29d490")
(attr smd)
@@ -3572,7 +3370,7 @@
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp b287f145-851e-45cc-b200-e62677b551d5))
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp d1eca865-05c5-48a4-96cf-ed5f8a640e25))
(pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 3b686d17-1000-4762-ba31-589d599a3edf))
+ (net 10 "+3V3") (pintype "passive") (tstamp 3b686d17-1000-4762-ba31-589d599a3edf))
(pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp cebb9021-66d3-4116-98d4-5e6f3c1552be))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3588,7 +3386,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e25d48f")
(attr smd)
@@ -3613,7 +3411,7 @@
(fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 9390234f-bf3f-46cd-b6a0-8a438ec76e9f))
(fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 9e813ec2-d4ce-4e2e-b379-c6fedb4c45db))
(pad "1" smd roundrect locked (at -0.485 0 180) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 84d296ba-3d39-4264-ad19-947f90c54396))
+ (net 10 "+3V3") (pintype "passive") (tstamp 84d296ba-3d39-4264-ad19-947f90c54396))
(pad "2" smd roundrect locked (at 0.485 0 180) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp a90361cd-254c-4d27-ae1f-9a6c85bafe28))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3629,7 +3427,7 @@
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "PN" "885012205037")
- (property "Sheetfile" "ice4pi.sch")
+ (property "Sheetfile" "ice4pi.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e314690")
(attr smd)
@@ -3654,7 +3452,7 @@
(fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5))
(fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp c04386e0-b49e-4fff-b380-675af13a62cb))
(pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
- (net 11 "+3V3") (pintype "passive") (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9))
+ (net 10 "+3V3") (pintype "passive") (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9))
(pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
@@ -3683,7 +3481,7 @@
(gr_text "IO1\n" (at 107.69 70.35 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000062010f60)
(effects (font (size 0.5 0.5) (thickness 0.125)))
)
- (gr_text "ice4pi ver. 2.1" (at 99.25 77.25) (layer "F.SilkS") (tstamp 232ccf4f-3322-4e62-990b-290e6ff36fcd)
+ (gr_text "ice4pi ver. 2.2" (at 99.25 77.25) (layer "F.SilkS") (tstamp 232ccf4f-3322-4e62-990b-290e6ff36fcd)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "IO5\n" (at 106.42 70.35 90) (layer "F.SilkS") (tstamp 2f29ffe5-cbdc-4a3f-81e6-c7d9f4c5145a)
@@ -3735,20 +3533,17 @@
(segment (start 53.323456 66.995966) (end 53.323456 67.023456) (width 0.25) (layer "F.Cu") (net 1) (tstamp 2e36ce87-4661-4b8f-956a-16dc559e1b50))
(segment (start 65.756961 75.439134) (end 65.756961 76.421961) (width 0.25) (layer "F.Cu") (net 1) (tstamp 300aa512-2f66-4c26-a530-50c091b3a099))
(segment (start 69.6 74.35) (end 69.200001 74.749999) (width 0.25) (layer "F.Cu") (net 1) (tstamp 348dc703-3cab-4547-b664-e8b335a6083c))
- (segment (start 62.35 60.535) (end 62.45 60.535) (width 0.25) (layer "F.Cu") (net 1) (tstamp 34a11a07-8b7f-45d2-96e3-89fd43e62756))
(segment (start 65.779546 60.729888) (end 65.959434 60.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp 34ddb753-e57c-4ca8-a67b-d7cdf62cae93))
(segment (start 59.925 78.025) (end 58.725 78.025) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3579cf2f-29b0-46b6-a07d-483fb5586322))
(segment (start 58.7 78.05) (end 58.55 78.2) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3934b2e9-06c8-499c-a6df-4d7b35cfb894))
(segment (start 97.210392 56.339608) (end 97.25 56.3) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3b6dda98-f455-4961-854e-3c4cceecffcc))
(segment (start 69.2 64.55) (end 69.25 64.6) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3c121a93-b189-409b-a104-2bdd37ff0b51))
(segment (start 87 69.55) (end 88.9125 69.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3c3e06bd-c8bb-4ec8-84e0-f7f9437909b3))
- (segment (start 67.5875 65.05) (end 67.5875 64.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3d416885-b8b5-4f5c-bc29-39c6376095e8))
(segment (start 61.24 59.425) (end 61.35 59.535) (width 0.25) (layer "F.Cu") (net 1) (tstamp 41b4f8c6-4973-4fc7-9118-d582bc7f31e7))
(segment (start 85.5 77.125) (end 85.5 77.9625) (width 0.25) (layer "F.Cu") (net 1) (tstamp 46491a9d-8b3d-4c74-b09a-70c876f162e5))
(segment (start 87.8 61.05) (end 87.3 61.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp 4688ff87-8262-46f4-ad96-b5f4e529cfa9))
(segment (start 100.082852 69.806589) (end 99.032852 69.806589) (width 0.25) (layer "F.Cu") (net 1) (tstamp 53719fc4-141e-4c58-98cd-ab3bf9a4e1c0))
(segment (start 75.6 58.25) (end 75.5 58.15) (width 0.25) (layer "F.Cu") (net 1) (tstamp 59e09498-d26e-4ba7-b47d-fece2ea7c274))
- (segment (start 62.285 60.7) (end 62.45 60.535) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5a397f61-35c4-4c18-9dcd-73a2d44cc9af))
(segment (start 66.3 60.55) (end 65.3 61.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5b70b09b-6762-4725-9d48-805300c0bdc8))
(segment (start 65.756961 76.421961) (end 65.85 76.515) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5bbde4f9-fcdb-4d27-a2d6-3847fcdd87ba))
(segment (start 62 61.6) (end 62 61.4) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5cff09b0-b3d4-41a7-a6a4-7f917b40eda9))
@@ -3758,7 +3553,6 @@
(segment (start 71.5 58.4) (end 71.5 56.6375) (width 0.25) (layer "F.Cu") (net 1) (tstamp 6ce41a48-c5e2-4d5f-8548-1c7b5c309a8a))
(segment (start 96.210392 57.312011) (end 96.210392 57.310392) (width 0.25) (layer "F.Cu") (net 1) (tstamp 6e9883d7-9642-4425-a248-b92a09f0624c))
(segment (start 96.656589 69.806589) (end 96.65 69.8) (width 0.25) (layer "F.Cu") (net 1) (tstamp 70abf340-8b3e-403e-a5e2-d8f35caa2f87))
- (segment (start 64.779546 60.729888) (end 64.779546 60.970454) (width 0.25) (layer "F.Cu") (net 1) (tstamp 70cda344-73be-4466-a097-1fd56f3b19e2))
(segment (start 58.725 78.025) (end 58.55 78.2) (width 0.25) (layer "F.Cu") (net 1) (tstamp 73f40fda-e6eb-4f93-9482-56cf47d84a87))
(segment (start 55.225 66.025) (end 55.2 66.05) (width 0.4) (layer "F.Cu") (net 1) (tstamp 77ef8901-6325-4427-901a-4acd9074dd7b))
(segment (start 75.5 58.15) (end 75.5 56.6375) (width 0.25) (layer "F.Cu") (net 1) (tstamp 7943ed8c-e760-4ace-9c5f-baf5589fae39))
@@ -4039,606 +3833,581 @@
(segment (start 63.05 64.85) (end 64.09999 63.80001) (width 0.25) (layer "B.Cu") (net 8) (tstamp e9a9fba3-7cfa-45ca-926c-a5a8ecd7e3a4))
(segment (start 80.381978 60.74502) (end 79.874999 61.251999) (width 0.25) (layer "B.Cu") (net 8) (tstamp ea7c53f9-3aa8-4198-9879-de95a5257915))
(segment (start 83.42281 55.45001) (end 83.05001 55.82281) (width 0.25) (layer "B.Cu") (net 8) (tstamp f48f1d12-9008-4743-81e2-bdec45db64a1))
- (segment (start 52.31 57.475) (end 52.15 57.635) (width 0.25) (layer "F.Cu") (net 9) (tstamp 750e60a2-e808-4253-8275-b79930fb2714))
- (segment (start 53.675 57.45) (end 53.7 57.475) (width 0.25) (layer "F.Cu") (net 9) (tstamp e7376da1-2f59-4570-81e8-46fca0289df0))
- (segment (start 53.7 57.475) (end 52.31 57.475) (width 0.25) (layer "F.Cu") (net 9) (tstamp f879c0e8-5893-4eb4-8e59-2292a632100f))
- (segment (start 59.2 70.99) (end 59.185 70.975) (width 0.25) (layer "F.Cu") (net 10) (tstamp 29cd9e70-9b68-44f7-96b2-fe993c246832))
- (segment (start 59.2 72.715) (end 59.2 70.99) (width 0.25) (layer "F.Cu") (net 10) (tstamp 2e1d63b8-5189-41bb-8b6a-c4ada546b2d5))
- (segment (start 59.25 70.91) (end 59.185 70.975) (width 0.25) (layer "F.Cu") (net 10) (tstamp 7114de55-86d9-46c1-a412-07f5eb895435))
- (segment (start 74.65 58.184315) (end 74.8 58.034315) (width 0.25) (layer "F.Cu") (net 11) (tstamp 0a79db37-f1d9-40b1-a24d-8bdfb8f637e2))
- (segment (start 87 77.9625) (end 87.7 77.2625) (width 0.25) (layer "F.Cu") (net 11) (tstamp 0f9b475c-adb7-41fc-b827-33d4eaa86b99))
- (segment (start 87.35 62.55) (end 88.9125 62.55) (width 0.25) (layer "F.Cu") (net 11) (tstamp 1053b01a-057e-4e79-a21c-42780a737ea9))
- (segment (start 61.85 70.985) (end 60.465 70.985) (width 0.25) (layer "F.Cu") (net 11) (tstamp 15a5a11b-0ea1-4f6e-b356-cc2d530615ed))
- (segment (start 96.210392 59.389608) (end 96.2 59.4) (width 0.25) (layer "F.Cu") (net 11) (tstamp 173fd4a7-b485-4e9d-8724-470865466784))
- (segment (start 61.85 71.85) (end 61.55 72.15) (width 0.25) (layer "F.Cu") (net 11) (tstamp 24a492d9-25a9-4fba-b51b-3effb576b351))
- (segment (start 95.210392 59.339608) (end 95.15 59.4) (width 0.25) (layer "F.Cu") (net 11) (tstamp 26296271-780a-4da9-8e69-910d9240bca1))
- (segment (start 58.7 76.165) (end 59.715 76.165) (width 0.25) (layer "F.Cu") (net 11) (tstamp 2f33286e-7553-4442-acf0-23c61fcd6ab0))
- (segment (start 74.65 58.75) (end 74.65 58.184315) (width 0.25) (layer "F.Cu") (net 11) (tstamp 315d2b15-cfe6-4672-b3ad-24773f3df12c))
- (segment (start 53.323456 66.025966) (end 53.323456 65.876544) (width 0.25) (layer "F.Cu") (net 11) (tstamp 341e67eb-d5e1-4cb7-9d11-5aa4ab832a2a))
- (segment (start 57.9 73.685) (end 59.2 73.685) (width 0.25) (layer "F.Cu") (net 11) (tstamp 3bb9c3d4-9a6f-41ac-8d1e-92ed4fe334c0))
- (segment (start 79.5 76.05) (end 79.5 77.9625) (width 0.25) (layer "F.Cu") (net 11) (tstamp 3f43c2dc-daa2-45ba-b8ca-7ae5aebed882))
- (segment (start 62.725 76.375) (end 62.75 76.35) (width 0.25) (layer "F.Cu") (net 11) (tstamp 41524d81-a7f7-45af-a8c6-15609b68d1fd))
- (segment (start 53.323456 66.025966) (end 53.323456 65.773456) (width 0.25) (layer "F.Cu") (net 11) (tstamp 41ab46ed-40f5-461d-81aa-1f02dc069a49))
- (segment (start 62.935 66.985) (end 63 67.05) (width 0.25) (layer "F.Cu") (net 11) (tstamp 45484f82-420e-44d0-a58e-382bb939dac5))
- (segment (start 86.95 68.05) (end 88.9125 68.05) (width 0.25) (layer "F.Cu") (net 11) (tstamp 45a58c23-3e6d-4df0-af01-6d5948b0075c))
- (segment (start 59.75 76.2) (end 59.925 76.375) (width 0.25) (layer "F.Cu") (net 11) (tstamp 47484446-e64c-4a82-88af-15de92cf6ad4))
- (segment (start 67.5875 61.05) (end 69.4 61.05) (width 0.25) (layer "F.Cu") (net 11) (tstamp 4e7a230a-c1a4-4455-81ee-277835acf4a2))
- (segment (start 87.5 76.25) (end 87.5 76.4) (width 0.25) (layer "F.Cu") (net 11) (tstamp 50a799a7-f8f3-4f13-9288-b10696e9a7da))
- (segment (start 69.4 61.05) (end 69.5 61.15) (width 0.25) (layer "F.Cu") (net 11) (tstamp 51f5536d-48d2-4807-be44-93f427952b0e))
- (segment (start 59.715 76.165) (end 59.925 76.375) (width 0.25) (layer "F.Cu") (net 11) (tstamp 5206328f-de7d-41ba-bad8-f1768b7701cb))
- (segment (start 86.8 68.2) (end 86.95 68.05) (width 0.25) (layer "F.Cu") (net 11) (tstamp 5641be26-f5e9-482f-8616-297f17f4eae2))
- (segment (start 92.5375 57.55) (end 92.5375 58.9125) (width 0.25) (layer "F.Cu") (net 11) (tstamp 59ee13a4-660e-47e2-a73a-01cfe11439e9))
- (segment (start 74.8 58.034315) (end 74.8 57.8) (width 0.25) (layer "F.Cu") (net 11) (tstamp 5a319d05-1a85-43fe-a179-ebcee7212a03))
- (segment (start 95.210392 58.282011) (end 95.210392 58.410392) (width 0.25) (layer "F.Cu") (net 11) (tstamp 5cc7655c-62f2-43d2-a7a5-eaa4635dada8))
- (segment (start 60.455 70.975) (end 60.455 71.055) (width 0.25) (layer "F.Cu") (net 11) (tstamp 665081dc-8354-4d41-8855-bde8901aee4c))
- (segment (start 97.210392 58.282011) (end 97.210392 58.389608) (width 0.25) (layer "F.Cu") (net 11) (tstamp 6a1ae8ee-dea6-4015-b83e-baf8fcdfaf0f))
- (segment (start 97.210392 59.389608) (end 97.2 59.4) (width 0.25) (layer "F.Cu") (net 11) (tstamp 6a25c4e1-7129-430c-892b-6eecb6ffdb47))
- (segment (start 53.323456 65.876544) (end 54.4 64.8) (width 0.4) (layer "F.Cu") (net 11) (tstamp 7043f61a-4f1e-4cab-9031-a6449e41a893))
- (segment (start 87.5 76.4) (end 87.7 76.6) (width 0.25) (layer "F.Cu") (net 11) (tstamp 71a9f036-1f13-462e-ac9e-81caaaa7f807))
- (segment (start 61.475 76.375) (end 62.725 76.375) (width 0.25) (layer "F.Cu") (net 11) (tstamp 71aa3829-956e-4ff9-af3f-b06e50ab2b5a))
- (segment (start 55.65 64.25) (end 55.6 64.2) (width 0.25) (layer "F.Cu") (net 11) (tstamp 7ce4aab5-8271-4432-a4b1-bff168293b45))
- (segment (start 80 58.6) (end 80 56.6375) (width 0.25) (layer "F.Cu") (net 11) (tstamp 7df9ce6f-7f38-4582-a049-7f92faf1abc9))
- (segment (start 75 57.6) (end 75 56.6375) (width 0.25) (layer "F.Cu") (net 11) (tstamp 80ace02d-cb21-4f08-bc25-572a9e56ff99))
- (segment (start 74.8 57.8) (end 75 57.6) (width 0.25) (layer "F.Cu") (net 11) (tstamp 82907d2e-4560-49c2-9cfc-01b127317195))
- (segment (start 69.7 73.2) (end 69.55 73.05) (width 0.25) (layer "F.Cu") (net 11) (tstamp 8313e187-c805-4927-8002-313a51839243))
- (segment (start 59.2 73.685) (end 60.015 73.685) (width 0.25) (layer "F.Cu") (net 11) (tstamp 89fb4a63-a18d-4c7e-be12-f061ef4bf0c0))
- (segment (start 96.210392 58.282011) (end 96.210392 58.339608) (width 0.25) (layer "F.Cu") (net 11) (tstamp 8efe6411-1919-4082-b5b8-393585e068c8))
- (segment (start 87.7 77.2625) (end 87.7 76.6) (width 0.25) (layer "F.Cu") (net 11) (tstamp 9600911d-0df3-419b-8d4a-8d1432a7daf2))
- (segment (start 61.85 66.985) (end 62.935 66.985) (width 0.25) (layer "F.Cu") (net 11) (tstamp 97cc05bf-4ed5-449c-b0c8-131e5126a7ac))
- (segment (start 96.210392 58.282011) (end 96.210392 58.410392) (width 0.25) (layer "F.Cu") (net 11) (tstamp a08c061a-7f5b-4909-b673-0d0a59a012a3))
- (segment (start 87.3 62.6) (end 87.35 62.55) (width 0.25) (layer "F.Cu") (net 11) (tstamp a1701438-3c8b-4b49-8695-36ec7f9ae4d2))
- (segment (start 92.5375 58.9125) (end 92.5 58.95) (width 0.25) (layer "F.Cu") (net 11) (tstamp ac8576da-4e00-41a0-9609-eb655e96e10b))
- (segment (start 98.210392 59.439608) (end 98.2 59.45) (width 0.25) (layer "F.Cu") (net 11) (tstamp bab3431c-ede6-417b-8033-763748a11a9f))
- (segment (start 60.465 70.985) (end 60.455 70.975) (width 0.25) (layer "F.Cu") (net 11) (tstamp c482f4f0-b441-4301-a9f1-c7f9e511d699))
- (segment (start 61.85 70.985) (end 61.85 71.85) (width 0.25) (layer "F.Cu") (net 11) (tstamp c8b93f12-bc5c-4ce5-b954-377d903895f1))
- (segment (start 87.15 77.8125) (end 87 77.9625) (width 0.25) (layer "F.Cu") (net 11) (tstamp cd2580a0-9e4c-4895-a13c-3b2ee33bafc4))
- (segment (start 60.015 73.685) (end 61.55 72.15) (width 0.25) (layer "F.Cu") (net 11) (tstamp d554632b-6dd0-47f8-b59b-3ce25177ca3e))
- (segment (start 60.455 71.055) (end 61.55 72.15) (width 0.25) (layer "F.Cu") (net 11) (tstamp d7df1f01-3f56-437b-a452-e88ad90a9805))
- (segment (start 53.323456 65.773456) (end 52.35 64.8) (width 0.4) (layer "F.Cu") (net 11) (tstamp d8d71ad3-6fd1-4a98-9c1f-70c4fbf3d1d1))
- (segment (start 98.210392 58.282011) (end 98.210392 58.389608) (width 0.25) (layer "F.Cu") (net 11) (tstamp d8f24303-7e52-49a9-9e82-8d60c3aaa009))
- (segment (start 79.95 58.65) (end 80 58.6) (width 0.25) (layer "F.Cu") (net 11) (tstamp dd3da890-32ef-4a5a-aea4-e5d2141f1ff1))
- (segment (start 59.925 76.375) (end 61.475 76.375) (width 0.25) (layer "F.Cu") (net 11) (tstamp dd5f7736-b8aa-44f2-a044-e514d63d48f3))
- (segment (start 53.323456 66.025966) (end 53.323456 64.760966) (width 0.4) (layer "F.Cu") (net 11) (tstamp de438bc3-2eba-4b9f-95e9-35ce5db157f6))
- (segment (start 69.55 73.05) (end 67.5875 73.05) (width 0.25) (layer "F.Cu") (net 11) (tstamp e002a979-85bc-451a-a77b-29ce2a8f19f9))
- (segment (start 79.45 76) (end 79.5 76.05) (width 0.25) (layer "F.Cu") (net 11) (tstamp e1fe6230-75c5-4750-aaea-24a9b80589d8))
- (segment (start 74.05 76.1) (end 74 76.15) (width 0.25) (layer "F.Cu") (net 11) (tstamp f240e733-157e-4a15-812f-78f42d8a8322))
- (segment (start 110.23 57.65) (end 112.77 57.65) (width 0.5) (layer "F.Cu") (net 11) (tstamp f8a90052-1a8b-4ce5-a1fd-87db944dceac))
- (segment (start 74 76.15) (end 74 77.9625) (width 0.25) (layer "F.Cu") (net 11) (tstamp fc13962a-a464-4fa2-b9a6-4c26667104ee))
- (segment (start 97.210392 58.282011) (end 97.210392 58.460392) (width 0.25) (layer "F.Cu") (net 11) (tstamp fcb4f52a-a6cb-4ca0-970a-4c8a2c0f3942))
- (segment (start 56.965 64.25) (end 55.65 64.25) (width 0.25) (layer "F.Cu") (net 11) (tstamp fe1ad3bd-92cc-4e1c-8cc9-a77278095945))
- (via (at 53.323456 64.760966) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 00000000-0000-0000-0000-00005e4ac354))
- (via (at 54.4 64.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 105d44ff-63b9-4299-9078-473af583971a))
- (via (at 96.2 59.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 1a7e7b16-fc7c-4e64-9ace-48cc78112437))
- (via (at 92.5 58.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 24fd922c-d488-4d61-b6dc-9d3e359ccc82))
- (via (at 69.5 61.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 2bbd6c26-4114-4518-8f4a-c6fdadc046b6))
- (via (at 62.75 76.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 2f5467a7-bd49-433c-92f2-60a842e66f7b))
- (via (at 86.8 68.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 48034820-9d25-4020-8e74-d44c1441e803))
- (via (at 55.6 64.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 4ef07d45-f940-4cb6-bb96-2ddec13fd099))
- (via (at 87.3 62.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 5c1d6842-15a5-4f73-b198-8836681840a1))
- (via (at 97.2 59.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 5f059fcf-8990-4db3-9058-7f232d9600e1))
- (via (at 95.15 59.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 7ac1ccc5-26c5-4b73-8425-7bbec927bf24))
- (via (at 61.55 72.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 8afe1dbf-1187-4362-8af8-a90ca839a6b3))
- (via (at 87.5 76.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 90d503cf-92b2-4120-a4b0-03a2eddde893))
- (via (at 98.2 59.45) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 96ee9b8e-4543-4639-b9ea-44b8baaaf94e))
- (via (at 79.95 58.65) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp a09cb1c4-cc63-49c7-a35f-4b80c3ba2217))
- (via (at 79.45 76) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp a4911204-1308-4d17-90a9-1ff5f9c57c9b))
- (via (at 74.05 76.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp b5cea0b5-192f-476b-a3c8-0c26e2231699))
- (via (at 52.35 64.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp b6924901-677d-424a-a3f4-52c8dd1fa5f5))
- (via (at 74.65 58.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp c38f28b6-5bd4-4cf9-b273-1e7b230f6b42))
- (via (at 69.7 73.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp d337c492-7429-4618-b378-df29f72737e3))
- (via (at 63 67.05) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp e6e468d8-2bb7-49d5-a4d0-fde0f6bbe8c6))
- (segment (start 108.37 58.515) (end 109.365 58.515) (width 0.25) (layer "B.Cu") (net 11) (tstamp 00000000-0000-0000-0000-0000620108cf))
- (segment (start 109.365 58.515) (end 110.23 57.65) (width 0.25) (layer "B.Cu") (net 11) (tstamp 00000000-0000-0000-0000-0000620108d2))
- (segment (start 79.465 74.7) (end 79.465 75.985) (width 0.25) (layer "B.Cu") (net 11) (tstamp 01c59306-91a3-452b-92b5-9af8f8f257d6))
- (segment (start 74.665 59.75) (end 74.665 58.765) (width 0.25) (layer "B.Cu") (net 11) (tstamp 188eabba-12a3-47b7-9be1-03f0c5a948eb))
- (segment (start 86.165 62.535) (end 87.3 62.535) (width 0.25) (layer "B.Cu") (net 11) (tstamp 2765a021-71f1-4136-b72b-81c2c6882946))
- (segment (start 87.135 75.885) (end 87.5 76.25) (width 0.25) (layer "B.Cu") (net 11) (tstamp 2ad4b4ba-3abd-4313-bed9-1edce936a95e))
- (segment (start 74.165 74.7) (end 74.165 75.985) (width 0.25) (layer "B.Cu") (net 11) (tstamp 524d7aa8-362f-459a-b2ae-4ca2a0b1612b))
- (segment (start 74.165 74.7) (end 74.165 71.45) (width 0.25) (layer "B.Cu") (net 11) (tstamp 78a228c9-bbf0-49cf-b917-2dec23b390df))
- (segment (start 87.135 75.1) (end 87.135 75.885) (width 0.25) (layer "B.Cu") (net 11) (tstamp 86143bb0-7899-4df8-b1df-baa3c0ac7889))
- (segment (start 74.165 75.985) (end 74.05 76.1) (width 0.25) (layer "B.Cu") (net 11) (tstamp 8fd0b33a-45bf-4216-9d7e-a62e1c071730))
- (segment (start 69.5 61.15) (end 70.637926 61.15) (width 0.25) (layer "B.Cu") (net 11) (tstamp 92574e8a-729f-48de-afcb-97b4f5e826f8))
- (segment (start 79.965 58.665) (end 79.95 58.65) (width 0.25) (layer "B.Cu") (net 11) (tstamp 93afd2e8-e16c-4e06-b872-cf0e624aee35))
- (segment (start 79.965 59.65) (end 79.965 58.665) (width 0.25) (layer "B.Cu") (net 11) (tstamp ab34b936-8ca5-4be1-8599-504cb86609fc))
- (segment (start 74.165 70.45) (end 74.165 71.45) (width 0.25) (layer "B.Cu") (net 11) (tstamp b83b087e-7ec9-44e7-a1c9-81d5d26bbf79))
- (segment (start 70.95 73.565) (end 70.065 73.565) (width 0.25) (layer "B.Cu") (net 11) (tstamp bc01f3e7-a131-4f66-8abc-cc13e855d5e5))
- (segment (start 85.5 68.215) (end 86.785 68.215) (width 0.25) (layer "B.Cu") (net 11) (tstamp be118b00-015b-445a-8fc5-7bf35350fda8))
- (segment (start 74.665 58.765) (end 74.65 58.75) (width 0.25) (layer "B.Cu") (net 11) (tstamp d5c86a84-6c8b-48b5-b583-2fe7052421ab))
- (segment (start 86.685 62.535) (end 86.7 62.55) (width 0.25) (layer "B.Cu") (net 11) (tstamp d70bfdec-de0f-45e5-9452-2cd5d12b83b9))
- (segment (start 86.785 68.215) (end 86.8 68.2) (width 0.25) (layer "B.Cu") (net 11) (tstamp e8312cc4-6502-4783-b578-55c01e0393af))
- (segment (start 79.465 75.985) (end 79.45 76) (width 0.25) (layer "B.Cu") (net 11) (tstamp ef3a2f4c-5879-4e98-ad30-6b8614410fba))
- (segment (start 70.065 73.565) (end 69.7 73.2) (width 0.25) (layer "B.Cu") (net 11) (tstamp fd34aa56-ded2-4e97-965a-a39457716f0c))
- (segment (start 70.637926 61.15) (end 70.697006 61.09092) (width 0.25) (layer "B.Cu") (net 11) (tstamp fe4068b9-89da-4c59-ba51-b5949772f5d8))
- (segment (start 53.7 56.825) (end 53.175 56.825) (width 0.25) (layer "F.Cu") (net 12) (tstamp 784e3230-2053-4bc9-a786-5ac2bd0df0f5))
- (segment (start 54.2 56.825) (end 53.7 56.825) (width 0.25) (layer "F.Cu") (net 12) (tstamp a04f8542-6c38-4d5c-bdbb-c8e0311a0936))
- (segment (start 53.725 56.85) (end 53.7 56.825) (width 0.4) (layer "F.Cu") (net 12) (tstamp b1731e91-7698-42fa-ad60-5c60fdd0e1fc))
- (segment (start 52.15 58.665) (end 53.59 58.665) (width 0.5) (layer "F.Cu") (net 12) (tstamp e6bf257d-5112-423c-b70a-adf8446f29da))
- (segment (start 53.59 58.665) (end 53.7 58.775) (width 0.25) (layer "F.Cu") (net 12) (tstamp f1c2e9b0-6f9f-485b-b482-d408df476d0f))
- (via (at 57.15 56.85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 08926936-9ea4-4894-afca-caca47f3c238))
- (via (at 55.9 56.85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 21ca1c08-b8a3-4bdc-9356-70a4d86ee444))
- (via (at 55.9 56) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp a7c83b25-afbd-4974-8870-387db8f81a5c))
- (via (at 57.15 56) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp c7db4903-f95a-49f5-bcce-c52f0ca8defc))
- (segment (start 55.9 56) (end 55.9 56.85) (width 0.4) (layer "B.Cu") (net 12) (tstamp 2a4f1c24-6486-4fd8-8092-72bb07a81274))
- (segment (start 57.15 56.85) (end 57.15 56) (width 0.4) (layer "B.Cu") (net 12) (tstamp 2c10387c-3cac-4a7c-bbfb-95d69f41a890))
- (segment (start 59.675 57.55) (end 59.6 57.475) (width 0.25) (layer "F.Cu") (net 13) (tstamp 1d9dc91c-3457-4ca5-8e42-43be60ae0831))
- (segment (start 61.315 57.55) (end 59.675 57.55) (width 0.25) (layer "F.Cu") (net 13) (tstamp 897277a3-b7ce-4d18-8c5f-1c984a246298))
- (segment (start 62.285 57.13) (end 61.98 56.825) (width 0.25) (layer "F.Cu") (net 14) (tstamp 017667a9-f5de-49c7-af53-4f9af2f3a311))
- (segment (start 62.465 58.55) (end 62.465 57.73) (width 0.25) (layer "F.Cu") (net 14) (tstamp 1ae3634a-f90f-4c6a-8ba7-b38f98d4ccb2))
- (segment (start 59.6 58.775) (end 61.14 58.775) (width 0.4) (layer "F.Cu") (net 14) (tstamp 3382bf79-b686-4aeb-9419-c8ab591662bb))
- (segment (start 62.285 57.55) (end 62.285 57.13) (width 0.25) (layer "F.Cu") (net 14) (tstamp 4c144ffa-02d0-42da-aef1-f5175cbde9c0))
- (segment (start 59.6 58.125) (end 61.12001 58.27001) (width 0.4) (layer "F.Cu") (net 14) (tstamp 4f3dc5bc-04e8-4dcc-91dd-8782e84f321d))
- (segment (start 61.35 58.565) (end 62.45 58.565) (width 0.4) (layer "F.Cu") (net 14) (tstamp 778b0e81-d70b-4705-ae45-b4c475c88dab))
- (segment (start 61.98 56.825) (end 59.6 56.825) (width 0.25) (layer "F.Cu") (net 14) (tstamp 7d2422a2-6679-4b2f-b253-47eef0da2414))
- (segment (start 62.45 59.565) (end 62.45 58.565) (width 0.25) (layer "F.Cu") (net 14) (tstamp 80b9a57f-3326-43ca-b6ca-5e911992b3c4))
- (segment (start 62.45 58.565) (end 62.465 58.55) (width 0.4) (layer "F.Cu") (net 14) (tstamp 905b154b-e92b-469d-b2e2-340d67daddb7))
- (segment (start 59.6 58.125) (end 60.1 58.125) (width 0.4) (layer "F.Cu") (net 14) (tstamp 92d938cc-f8b1-437d-8914-3d97a0938f67))
- (segment (start 61.14 58.775) (end 61.35 58.565) (width 0.4) (layer "F.Cu") (net 14) (tstamp bc204c79-0619-4b16-889d-335bfdd71ce0))
- (segment (start 60.1 58.125) (end 60.125 58.1) (width 0.4) (layer "F.Cu") (net 14) (tstamp d04eabf5-018b-4006-a739-ce16277681b7))
- (segment (start 61.35 58.5) (end 61.12001 58.27001) (width 0.4) (layer "F.Cu") (net 14) (tstamp dfba7148-cad3-4f40-9835-b1394bd30a2c))
- (segment (start 62.465 57.73) (end 62.285 57.55) (width 0.25) (layer "F.Cu") (net 14) (tstamp ed612f6d-67c1-4198-976d-84139f8d99bc))
- (segment (start 61.35 58.565) (end 61.35 58.5) (width 0.4) (layer "F.Cu") (net 14) (tstamp f565cf54-67ba-4424-8d47-087433645499))
- (segment (start 61.35 58.565) (end 61.35 58.55) (width 0.4) (layer "F.Cu") (net 14) (tstamp fab985e9-e679-4dd8-a59c-e3195d08506a))
- (segment (start 86.065685 67) (end 86.515685 66.55) (width 0.25) (layer "F.Cu") (net 15) (tstamp 009b0d62-e9ea-4825-9fdf-befd291c76ce))
- (segment (start 68.425 71.55) (end 67.5875 71.55) (width 0.25) (layer "F.Cu") (net 15) (tstamp 094dc71e-7ea9-4e30-8ba7-749216ec2a8b))
- (segment (start 65.95 72.12) (end 66.52 71.55) (width 0.25) (layer "F.Cu") (net 15) (tstamp 1d1a7683-c090-4798-9b40-7ed0d9f3ce3b))
- (segment (start 70.384315 71.65) (end 70.284315 71.55) (width 0.25) (layer "F.Cu") (net 15) (tstamp 28d267fd-6d61-43bb-9705-8d59d7a44e81))
- (segment (start 87.240692 57.70001) (end 87.8 57.140702) (width 0.25) (layer "F.Cu") (net 15) (tstamp 312474c5-a081-4cd1-b2e6-730f0718514a))
- (segment (start 66.52 71.55) (end 66.75 71.55) (width 0.25) (layer "F.Cu") (net 15) (tstamp 3d70e675-48ae-4edd-b95d-3ca51e634018))
- (segment (start 85.5 67) (end 86.065685 67) (width 0.25) (layer "F.Cu") (net 15) (tstamp 45836d49-cd5f-417d-b0f6-c8b43d196a36))
- (segment (start 65.8 58.95) (end 65.7 58.95) (width 0.25) (layer "F.Cu") (net 15) (tstamp 54d76293-1ce2-46f8-9be7-a3d7f9f28112))
- (segment (start 70.284315 71.55) (end 68.425 71.55) (width 0.25) (layer "F.Cu") (net 15) (tstamp 583b0bf3-0699-44db-b975-a241ad040fa4))
- (segment (start 65.779546 58.970454) (end 65.8 58.95) (width 0.25) (layer "F.Cu") (net 15) (tstamp 5a010660-4a0b-4680-b361-32d4c3b60537))
- (segment (start 86 56.6375) (end 86 57.475) (width 0.25) (layer "F.Cu") (net 15) (tstamp 61a18b62-4111-4a9d-8fca-04c4c6f90cc3))
- (segment (start 86.515685 66.55) (end 88.075 66.55) (width 0.25) (layer "F.Cu") (net 15) (tstamp 62cbcc21-2cec-41ab-be06-499e1a78d7e7))
- (segment (start 88.2 56.3) (end 88.615 56.3) (width 0.25) (layer "F.Cu") (net 15) (tstamp 717b25a7-c9c2-4f6f-b744-a96113325c99))
- (segment (start 64.7 59.680342) (end 64.779546 59.759888) (width 0.25) (layer "F.Cu") (net 15) (tstamp 72f9157b-77da-4a6d-9880-0711b21f6e23))
- (segment (start 64.779546 59.759888) (end 64.779546 59.029546) (width 0.25) (layer "F.Cu") (net 15) (tstamp 771cb5c1-62ba-4cca-999e-cdcbe417213c))
- (segment (start 65.779546 59.759888) (end 65.779546 58.970454) (width 0.25) (layer "F.Cu") (net 15) (tstamp 81ab7ed7-7160-4650-b711-4daa2902dc8b))
- (segment (start 64.7 58.95) (end 64.8 58.95) (width 0.25) (layer "F.Cu") (net 15) (tstamp 830aee7f-dfce-42cd-85ef-6370f6dc02f5))
- (segment (start 76.5 74.7) (end 76.5 75.265685) (width 0.25) (layer "F.Cu") (net 15) (tstamp 868b5d0d-f911-4724-9580-d9e69eb9f709))
- (segment (start 63.779546 59.759888) (end 63.890112 59.759888) (width 0.25) (layer "F.Cu") (net 15) (tstamp 8e75264b-b45e-45ec-b230-7e1dce7d68b3))
- (segment (start 87.8 57) (end 87.8 56.7) (width 0.25) (layer "F.Cu") (net 15) (tstamp 9404ce4c-2ce6-4f88-8062-13577800d257))
- (segment (start 86.22501 57.70001) (end 87.240692 57.70001) (width 0.25) (layer "F.Cu") (net 15) (tstamp 97693043-81ba-44a2-b87b-aca6193e0970))
- (segment (start 86 57.475) (end 86.22501 57.70001) (width 0.25) (layer "F.Cu") (net 15) (tstamp a6dd3322-fcf5-4e4f-88bb-77a3d82a4d05))
- (segment (start 65.95 72.515) (end 65.95 72.12) (width 0.25) (layer "F.Cu") (net 15) (tstamp b5ffe018-0d06-4a1b-95ee-b5763a35798d))
- (segment (start 64.779546 59.759888) (end 64.990112 59.759888) (width 0.25) (layer "F.Cu") (net 15) (tstamp b7dfd91c-6180-48d0-832a-f6a5a032a686))
- (segment (start 88.075 66.55) (end 88.9125 66.55) (width 0.25) (layer "F.Cu") (net 15) (tstamp c2211bf7-6ed0-4800-9f21-d6a078bedba2))
- (segment (start 87.8 57.140702) (end 87.8 56.865685) (width 0.25) (layer "F.Cu") (net 15) (tstamp ce55d4e5-cb2b-4927-9979-4a7fc840f632))
- (segment (start 65.779546 59.759888) (end 65.509888 59.759888) (width 0.25) (layer "F.Cu") (net 15) (tstamp dbbbcbf5-ed09-4c20-902c-70f108158aba))
- (segment (start 66.75 71.55) (end 67.5875 71.55) (width 0.25) (layer "F.Cu") (net 15) (tstamp ed247857-b2a3-4b23-90ad-758c01ae5e8e))
- (segment (start 64.779546 59.029546) (end 64.7 58.95) (width 0.25) (layer "F.Cu") (net 15) (tstamp ee9a2826-2513-480e-a552-3d07af5bf8a5))
- (segment (start 87.8 56.7) (end 88.2 56.3) (width 0.25) (layer "F.Cu") (net 15) (tstamp f2c43eeb-76da-49f4-b8e6-cd74ebb3190b))
- (segment (start 76.5 75.265685) (end 76.5 77.9625) (width 0.25) (layer "F.Cu") (net 15) (tstamp f7758f2a-e5c9-405c-960a-353b36eaf72d))
- (segment (start 70.95 71.65) (end 70.384315 71.65) (width 0.25) (layer "F.Cu") (net 15) (tstamp ffb86135-b43f-4a42-9aa6-73aa7ba972a9))
- (via (at 85.5 67) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp 3273ec61-4a33-41c2-82bf-cde7c8587c1b))
- (via (at 65.8 57.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp 3d2a15cb-c492-4d9a-b1dd-7d5f099d2d31))
- (via (at 76.5 74.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp 6d1e2df9-cc89-4e18-a541-699f0d20dd45))
- (via (at 65.8 58.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp 848901d5-fdee-4920-a04d-fbc03c912e79))
- (via (at 64.7 58.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp 926b329f-cd0d-410a-bc4a-e36446f8965a))
- (via (at 87.8 57) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp f321809c-ab7a-4356-9b11-4c0d46c421ba))
- (via (at 64.7 57.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp f5a3f95b-1a53-41b4-b208-bf168c9d9c6d))
- (via (at 70.95 71.65) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp fc12372f-6e31-40f9-8043-b00b861f0171))
- (segment (start 87.8 57) (end 85.23 59.57) (width 1) (layer "In2.Cu") (net 15) (tstamp f87a4771-a0a7-489f-9d85-4574dbea71cc))
- (segment (start 70.95 70.535) (end 70.95 71.45) (width 0.25) (layer "B.Cu") (net 15) (tstamp 00000000-0000-0000-0000-00005e48506a))
- (segment (start 70.95 71.45) (end 70.95 71.65) (width 0.25) (layer "B.Cu") (net 15) (tstamp 00000000-0000-0000-0000-00005e485070))
- (segment (start 85.5 65.885) (end 85.5 67) (width 0.25) (layer "B.Cu") (net 15) (tstamp 7247fe96-7885-4063-8282-ea2fd2b28b0d))
- (segment (start 77.515 74.7) (end 76.5 74.7) (width 0.25) (layer "B.Cu") (net 15) (tstamp f2044410-03ac-4994-9652-9e5f480320f0))
- (segment (start 64.85 77.485) (end 65.85 77.485) (width 0.25) (layer "F.Cu") (net 16) (tstamp 25625d99-d45f-4b2f-9e62-009a122611f4))
- (segment (start 67.5875 76.05) (end 66.1525 77.485) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2edc487e-09a5-4e4e-9675-a7b323f56380))
- (segment (start 66.52499 74.45499) (end 66.52499 75.82499) (width 0.25) (layer "F.Cu") (net 16) (tstamp 44e77d57-d16f-4723-a95f-1ac45276c458))
- (segment (start 66.52499 75.82499) (end 66.75 76.05) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5626e5e1-59f4-4773-828e-16057ddc3518))
- (segment (start 66.75 76.05) (end 67.5875 76.05) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7700fef1-de5b-4197-be2d-18385e1e18f9))
- (segment (start 65.95 73.88) (end 66.52499 74.45499) (width 0.25) (layer "F.Cu") (net 16) (tstamp bcfbc157-43ce-49f7-bd18-6a9e2f2f30a3))
- (segment (start 66.1525 77.485) (end 65.85 77.485) (width 0.25) (layer "F.Cu") (net 16) (tstamp d23840a6-3c61-45ca-968a-bc57332fd7a4))
- (segment (start 65.95 73.485) (end 65.95 73.88) (width 0.25) (layer "F.Cu") (net 16) (tstamp f931f973-5615-451c-bb04-9a02aede6e6f))
- (segment (start 99.35 66.35) (end 100.25 65.45) (width 0.25) (layer "F.Cu") (net 17) (tstamp 02491520-945f-40c4-9160-4e5db9ac115d))
- (segment (start 88.9125 65.05) (end 97.15 65.05) (width 0.25) (layer "F.Cu") (net 17) (tstamp 100847e3-630c-4c13-ba45-180e92370805))
- (segment (start 100.73 63.515) (end 101.15 63.515) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4c6a1dad-7acf-4a52-99b0-316025d1ab04))
- (segment (start 98.45 66.35) (end 99.35 66.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 64269ac3-771b-4c0d-91e0-eafc3dc4a07f))
- (segment (start 100.25 63.995) (end 100.73 63.515) (width 0.25) (layer "F.Cu") (net 17) (tstamp 909d0bdd-8a15-40f2-9dfd-be4a5d2d6b25))
- (segment (start 97.15 65.05) (end 98.45 66.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp a43f2e19-4e11-4e86-a12a-58a691d6df28))
- (segment (start 100.25 65.45) (end 100.25 63.995) (width 0.25) (layer "F.Cu") (net 17) (tstamp a46a2b22-69cf-45fb-b1d2-32ac89bbd3c8))
- (segment (start 102.138232 61.515) (end 101.57 61.515) (width 0.25) (layer "F.Cu") (net 18) (tstamp 3e011a46-81bd-4ecd-b93e-57dffb1143e5))
- (segment (start 104.15 63.526768) (end 102.138232 61.515) (width 0.25) (layer "F.Cu") (net 18) (tstamp 4198eb99-d244-457e-8768-395280df1a66))
- (segment (start 104.15 67.265949) (end 104.15 63.526768) (width 0.25) (layer "F.Cu") (net 18) (tstamp 586ec748-563a-478a-82db-706fb951336a))
- (segment (start 101.57 61.515) (end 101.15 61.515) (width 0.25) (layer "F.Cu") (net 18) (tstamp b1240f00-ec43-4c0b-9a41-43264db8a893))
- (segment (start 102.14399 68.851959) (end 102.56399 68.851959) (width 0.25) (layer "F.Cu") (net 18) (tstamp b5d84bc0-4d9a-4d1d-a476-5c6b51309fca))
- (segment (start 102.56399 68.851959) (end 104.15 67.265949) (width 0.25) (layer "F.Cu") (net 18) (tstamp fe9bdc33-eab1-4bdc-9603-57decb38d2a2))
- (segment (start 103.6 67.1) (end 103.6 66.7) (width 0.25) (layer "F.Cu") (net 19) (tstamp 056788ec-4ecf-4826-b996-bd884a6442a0))
- (segment (start 101.132852 68.441589) (end 101.624441 67.95) (width 0.25) (layer "F.Cu") (net 19) (tstamp 4b042b6c-c042-4cf1-ba6e-bd77c51dbedb))
- (segment (start 102.801999 66.525001) (end 102.35 66.073002) (width 0.25) (layer "F.Cu") (net 19) (tstamp 53ae21b8-f187-4817-8c27-1f06278d249b))
- (segment (start 102.75 67.95) (end 103.6 67.1) (width 0.25) (layer "F.Cu") (net 19) (tstamp 792ace59-9f73-49b7-92df-01568ab2b00b))
- (segment (start 102.35 66.073002) (end 102.35 63.895) (width 0.25) (layer "F.Cu") (net 19) (tstamp 83d85a81-e014-4ee9-9433-a9a045c80893))
- (segment (start 103.6 66.7) (end 103.425001 66.525001) (width 0.25) (layer "F.Cu") (net 19) (tstamp 900cb6c8-1d05-4537-a4f0-9a7cc1a2ea1c))
- (segment (start 101.132852 68.836589) (end 101.132852 68.441589) (width 0.25) (layer "F.Cu") (net 19) (tstamp 90f2ca05-313f-4af8-87b1-a8109224a221))
- (segment (start 101.624441 67.95) (end 102.75 67.95) (width 0.25) (layer "F.Cu") (net 19) (tstamp 9e5fe65d-f158-4eb5-af93-2b5d0b9a0d55))
- (segment (start 102.73 63.515) (end 103.15 63.515) (width 0.25) (layer "F.Cu") (net 19) (tstamp a86cc026-cc17-4a81-85bf-4c26f61b9f32))
- (segment (start 103.425001 66.525001) (end 102.801999 66.525001) (width 0.25) (layer "F.Cu") (net 19) (tstamp c0c62e93-8e84-4f2b-96ae-e90b55e0550a))
- (segment (start 102.35 63.895) (end 102.73 63.515) (width 0.25) (layer "F.Cu") (net 19) (tstamp c1c05ce7-1c25-4382-b3b9-d3ec327783d4))
- (segment (start 98.815832 63.849168) (end 99.15 63.515) (width 0.25) (layer "F.Cu") (net 20) (tstamp 278deae2-fb37-4957-b2cb-afac30cacb12))
- (segment (start 88.9125 64.55) (end 98.096768 64.55) (width 0.25) (layer "F.Cu") (net 20) (tstamp b4fbe1fb-a9a3-4020-9a82-d3fa1900cd85))
- (segment (start 98.7976 63.849168) (end 98.815832 63.849168) (width 0.25) (layer "F.Cu") (net 20) (tstamp b500fd76-a613-4f44-aac4-99213e86ff44))
- (segment (start 98.096768 64.55) (end 98.7976 63.849168) (width 0.25) (layer "F.Cu") (net 20) (tstamp bc05cdd5-f72f-4c21-b397-0fa889871114))
- (segment (start 101.15 67.769441) (end 101.15 66.485) (width 0.25) (layer "F.Cu") (net 21) (tstamp 31070a40-077c-4123-96dd-e39f8a0007ce))
- (segment (start 100.082852 68.836589) (end 101.15 67.769441) (width 0.25) (layer "F.Cu") (net 21) (tstamp 70186eba-dcad-4878-bf16-887f6eee49df))
- (segment (start 101.15 65.515) (end 100.815832 65.849168) (width 0.25) (layer "F.Cu") (net 22) (tstamp 19a5aacd-255a-4bf3-89c1-efd2ab61016c))
- (segment (start 88.9125 64.05) (end 90.800003 64.05) (width 0.25) (layer "F.Cu") (net 22) (tstamp 27e3c71f-5a63-4710-8adf-b600b805ce02))
- (segment (start 99.5364 66.80001) (end 98.20001 66.80001) (width 0.25) (layer "F.Cu") (net 22) (tstamp 3dbc1b14-20e2-4dcb-8347-d33c13d3f0e0))
- (segment (start 92.040675 65.50001) (end 96.90001 65.50001) (width 0.25) (layer "F.Cu") (net 22) (tstamp 4b534cd1-c414-4029-9164-e46766faf60e))
- (segment (start 100.487242 65.849168) (end 99.5364 66.80001) (width 0.25) (layer "F.Cu") (net 22) (tstamp 5fba7ff8-02f1-4ac0-93c4-5bd7becbcf63))
- (segment (start 91.2 65.775) (end 91.765685 65.775) (width 0.25) (layer "F.Cu") (net 22) (tstamp 60960af7-b938-44a8-82b5-e9c36f2e6817))
- (segment (start 98.20001 66.80001) (end 96.90001 65.50001) (width 0.25) (layer "F.Cu") (net 22) (tstamp 9c2a29da-c83f-4ec8-bbcf-9d775812af04))
- (segment (start 100.815832 65.849168) (end 100.487242 65.849168) (width 0.25) (layer "F.Cu") (net 22) (tstamp a25ec672-f935-4d0c-ae67-7c3ebe078d85))
- (segment (start 91.765685 65.775) (end 92.040675 65.50001) (width 0.25) (layer "F.Cu") (net 22) (tstamp d33c6077-a8ec-48ca-b0e0-97f3539ef54c))
- (segment (start 90.800003 64.05) (end 91.05 63.800003) (width 0.25) (layer "F.Cu") (net 22) (tstamp f8e92727-5789-4ef6-9dc3-be888ad72e45))
- (via (at 91.2 65.775) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 22) (tstamp 4be2b882-65e4-4552-9482-9d622928de2f))
- (via (at 91.05 63.800003) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 22) (tstamp de588ed9-a530-46f0-aa03-e0307ff72286))
- (segment (start 91.05 65.625) (end 91.2 65.775) (width 0.25) (layer "B.Cu") (net 22) (tstamp 8fbab3d0-cb5e-47c7-8764-6fa3c0e4e5f7))
- (segment (start 91.05 63.800003) (end 91.05 65.625) (width 0.25) (layer "B.Cu") (net 22) (tstamp ce3f834f-337d-4957-8d02-e900d7024614))
- (segment (start 88.9125 63.55) (end 89.918225 63.55) (width 0.25) (layer "F.Cu") (net 23) (tstamp 2ba21493-929b-4122-ac0f-7aeaf8602cef))
- (segment (start 103.15 65.8) (end 103.15 64.485) (width 0.25) (layer "F.Cu") (net 23) (tstamp 6e508bf2-c65e-4107-867d-a3cf9a86c69e))
- (segment (start 90.668225 62.8) (end 91.05 62.8) (width 0.25) (layer "F.Cu") (net 23) (tstamp 73a6ec8e-8641-4014-be28-4611d398be32))
- (segment (start 89.918225 63.55) (end 90.668225 62.8) (width 0.25) (layer "F.Cu") (net 23) (tstamp 8aa8d47e-f495-4049-8ac9-7f2ac3205412))
- (via (at 103.15 65.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 23) (tstamp 3388a811-b444-4ecc-a564-b22a1b731ab4))
- (via (at 91.05 62.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 23) (tstamp 47957453-fce7-4d98-833c-e34bb8a852a5))
- (segment (start 103.15 63.6) (end 103.15 65.8) (width 0.25) (layer "B.Cu") (net 23) (tstamp 846ce0b5-f99e-4df4-8803-62f82ae6f3e3))
- (segment (start 91.05 62.8) (end 102.35 62.8) (width 0.25) (layer "B.Cu") (net 23) (tstamp e8e598ff-c991-433d-8dd6-c9fce2fe1eaa))
- (segment (start 102.35 62.8) (end 103.15 63.6) (width 0.25) (layer "B.Cu") (net 23) (tstamp fb126c26-740a-4781-a5dd-5ef5455e4878))
- (segment (start 99.174847 65.499847) (end 99.174847 64.509847) (width 0.25) (layer "F.Cu") (net 24) (tstamp 02289c61-13df-495e-a809-03e3a71bb201))
- (segment (start 99.032852 68.567148) (end 100.1 67.5) (width 0.25) (layer "F.Cu") (net 24) (tstamp 5160b3d5-0622-412f-84ed-9900be82a5a6))
- (segment (start 99.174847 64.509847) (end 99.15 64.485) (width 0.25) (layer "F.Cu") (net 24) (tstamp 8202d57b-d5d2-4a80-8c03-3c6bdbbd1ddf))
- (segment (start 99.032852 68.836589) (end 99.032852 68.567148) (width 0.25) (layer "F.Cu") (net 24) (tstamp af7ed34f-31b5-4744-97e9-29e5f4d85343))
- (via (at 100.1 67.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 24) (tstamp 052acc87-8ff9-4162-8f55-f7121d221d0a))
- (via (at 99.174847 65.499847) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 24) (tstamp cfcae4a3-5d05-48fe-9a5f-9dcd4da4bd65))
- (segment (start 100.1 66.425) (end 99.174847 65.499847) (width 0.25) (layer "B.Cu") (net 24) (tstamp 2cb05d43-df82-498c-aae1-4b1a0a350f82))
- (segment (start 100.1 67.5) (end 100.1 66.425) (width 0.25) (layer "B.Cu") (net 24) (tstamp abe3c03e-744a-4406-8e50-6a10745f0c43))
- (segment (start 101.79501 65.13001) (end 101.484168 64.819168) (width 0.25) (layer "F.Cu") (net 25) (tstamp 617498ce-8469-4f4b-9f2b-09a2437561eb))
- (segment (start 97.982852 68.836589) (end 97.982852 68.267148) (width 0.25) (layer "F.Cu") (net 25) (tstamp 6999550c-f78a-4aae-9243-1b3881f5bb3b))
- (segment (start 102.15 66.584315) (end 101.79501 66.229325) (width 0.25) (layer "F.Cu") (net 25) (tstamp 7e90deb5-aef9-4d2b-a440-4cb0dbfaaa93))
- (segment (start 101.79501 66.229325) (end 101.79501 65.13001) (width 0.25) (layer "F.Cu") (net 25) (tstamp 87a32952-c8e5-40ba-af1d-1a8829a6c906))
- (segment (start 97.982852 68.267148) (end 98.65 67.6) (width 0.25) (layer "F.Cu") (net 25) (tstamp a2a33a3d-c501-4e33-b67b-7d07ef8aa4a7))
- (segment (start 102.15 67.15) (end 102.15 66.584315) (width 0.25) (layer "F.Cu") (net 25) (tstamp a8a389df-8d18-4e17-a74f-f60d5d77371e))
- (segment (start 101.484168 64.819168) (end 101.15 64.485) (width 0.25) (layer "F.Cu") (net 25) (tstamp faa605d9-8c1c-4d31-b7c1-3dc31a22eb34))
- (via (at 98.65 67.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 25) (tstamp 44a8a96b-3053-4222-9241-aa484f5ebe13))
- (via (at 102.15 67.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 25) (tstamp ebadfd51-5a1d-4821-b341-8a1acb4abb01))
- (segment (start 98.65 67.6) (end 99.049999 67.999999) (width 0.25) (layer "B.Cu") (net 25) (tstamp 2f4c659c-2ccb-4fb1-808e-7868af588a89))
- (segment (start 99.049999 67.999999) (end 99.526997 67.999999) (width 0.25) (layer "B.Cu") (net 25) (tstamp 37f8ba3f-cca4-4b16-b699-07a704844fc9))
- (segment (start 99.776998 68.25) (end 101.05 68.25) (width 0.25) (layer "B.Cu") (net 25) (tstamp e1c71a89-4e45-4a56-a6ef-342af5f92d5c))
- (segment (start 101.05 68.25) (end 102.15 67.15) (width 0.25) (layer "B.Cu") (net 25) (tstamp e20929e2-2c15-4a75-b1ed-9caa9bd27df7))
- (segment (start 99.526997 67.999999) (end 99.776998 68.25) (width 0.25) (layer "B.Cu") (net 25) (tstamp f6a5cab3-78e5-4acf-8c67-f401df2846d0))
- (segment (start 90.75001 62.05001) (end 100.696778 62.05001) (width 0.25) (layer "F.Cu") (net 26) (tstamp 0b43a8fb-b3d3-4444-a4b0-cf952c07dcfe))
- (segment (start 100.7976 62.150832) (end 100.815832 62.150832) (width 0.25) (layer "F.Cu") (net 26) (tstamp 1020b588-7eb0-4b70-bbff-c77a867c3142))
- (segment (start 90.75 62.05) (end 90.75001 62.05001) (width 0.25) (layer "F.Cu") (net 26) (tstamp 6df433d7-73cd-4877-8d2e-047853b9077c))
- (segment (start 88.9125 63.05) (end 89.75 63.05) (width 0.25) (layer "F.Cu") (net 26) (tstamp aa0e7fe7-e9c2-477f-bcb2-53a1ebd9e3a6))
- (segment (start 100.696778 62.05001) (end 100.7976 62.150832) (width 0.25) (layer "F.Cu") (net 26) (tstamp d5b0938b-9efb-4b58-8ac4-d92da9ed2e30))
- (segment (start 89.75 63.05) (end 90.75 62.05) (width 0.25) (layer "F.Cu") (net 26) (tstamp fd146ca2-8fb8-4c71-9277-84f69bc5d3fc))
- (segment (start 100.815832 62.150832) (end 101.15 62.485) (width 0.25) (layer "F.Cu") (net 26) (tstamp fe431a80-868e-482d-aa91-c96eb8387d6a))
- (segment (start 107.94506 73.55) (end 108.17006 73.775) (width 0.25) (layer "F.Cu") (net 27) (tstamp 36210d52-4f9a-42bc-a022-019a63c67fc2))
- (segment (start 102.2 73.55) (end 107.08 73.55) (width 0.25) (layer "F.Cu") (net 27) (tstamp 3e147ce1-21a6-4e77-a3db-fd00d575cd22))
- (segment (start 88.9125 73.55) (end 102.2 73.55) (width 0.25) (layer "F.Cu") (net 27) (tstamp 5bb32dcb-8a97-4374-8a16-bc17822d4db3))
- (segment (start 107.08 73.55) (end 107.94506 73.55) (width 0.25) (layer "F.Cu") (net 27) (tstamp 67d6d490-a9a4-4ec7-8744-7c7abc821282))
- (via (at 108.17006 73.775) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 27) (tstamp 1c92f382-4ec3-478f-a1ca-afadd3087787))
- (segment (start 108.17006 73.775) (end 109.670061 72.274999) (width 0.25) (layer "B.Cu") (net 27) (tstamp 4648968b-aa58-4f57-8f45-54b088364670))
- (segment (start 112.77 71.45) (end 112.77 70.35) (width 0.25) (layer "B.Cu") (net 27) (tstamp a7cad282-51c3-4f24-be5e-311c2c5e959b))
- (segment (start 111.945001 72.274999) (end 112.77 71.45) (width 0.25) (layer "B.Cu") (net 27) (tstamp c860c4e9-3ddd-4065-857c-b9aedc01e6ad))
- (segment (start 109.670061 72.274999) (end 111.945001 72.274999) (width 0.25) (layer "B.Cu") (net 27) (tstamp ed1f5df2-cfb6-4083-a9e5-5d196546ef9b))
- (segment (start 111.594999 70.724003) (end 111.594999 68.985001) (width 0.25) (layer "F.Cu") (net 28) (tstamp 7a6d9a4e-fe6a-4427-9f0c-a10fd3ceb923))
- (segment (start 109.269002 73.05) (end 111.594999 70.724003) (width 0.25) (layer "F.Cu") (net 28) (tstamp b31ebd25-cf4c-4c3e-b83d-0ec793b65cd9))
- (segment (start 88.9125 73.05) (end 109.269002 73.05) (width 0.25) (layer "F.Cu") (net 28) (tstamp b8382866-f10b-4adc-84fc-f6e5dd44681b))
- (segment (start 111.594999 68.985001) (end 111.920001 68.659999) (width 0.25) (layer "F.Cu") (net 28) (tstamp d1422f38-9fce-4f5e-878a-341530beaf9c))
- (segment (start 111.920001 68.659999) (end 112.77 67.81) (width 0.25) (layer "F.Cu") (net 28) (tstamp d91b4df3-08ca-4c95-92de-3004566cf2e7))
- (segment (start 92.95 72.55) (end 93.2 72.3) (width 0.25) (layer "F.Cu") (net 29) (tstamp 058e77a4-10af-4bc8-a984-5984d3bbee4c))
- (segment (start 88.9125 72.55) (end 92.95 72.55) (width 0.25) (layer "F.Cu") (net 29) (tstamp 9bac5a37-2a55-41dd-96ea-ec02b69e3ef4))
- (via (at 93.2 72.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 29) (tstamp 18e95a1d-9d1d-4b93-8e4c-2d03c344acc0))
- (segment (start 109.02 70.95) (end 109.02 69.83641) (width 0.25) (layer "B.Cu") (net 29) (tstamp 0bbd2e43-3eb0-4216-861b-a58366dbe43d))
- (segment (start 109.871409 68.985001) (end 110.794001 68.985001) (width 0.25) (layer "B.Cu") (net 29) (tstamp 1eca5f72-2356-4c55-919d-595727faf3b9))
- (segment (start 107.67 72.3) (end 109.02 70.95) (width 0.25) (layer "B.Cu") (net 29) (tstamp 44e993be-f2df-4e61-a598-dfd6e106a208))
- (segment (start 93.2 72.3) (end 107.67 72.3) (width 0.25) (layer "B.Cu") (net 29) (tstamp 45b7fe01-a2fa-40c2-a3a2-4a9ae7c34dba))
- (segment (start 111.594999 66.445001) (end 111.920001 66.119999) (width 0.25) (layer "B.Cu") (net 29) (tstamp 4c4b4317-29d0-438a-b331-525ede18773a))
- (segment (start 110.794001 68.985001) (end 111.594999 68.184003) (width 0.25) (layer "B.Cu") (net 29) (tstamp 55fa5fa0-9426-4801-b40c-682e71189d8a))
- (segment (start 109.02 69.83641) (end 109.871409 68.985001) (width 0.25) (layer "B.Cu") (net 29) (tstamp 5dffd1d6-faf9-418e-b9a0-84fb6b6b4454))
- (segment (start 111.594999 68.184003) (end 111.594999 66.445001) (width 0.25) (layer "B.Cu") (net 29) (tstamp 6239967a-77bd-4ec9-89cd-e04efd8dbe26))
- (segment (start 111.920001 66.119999) (end 112.77 65.27) (width 0.25) (layer "B.Cu") (net 29) (tstamp 83d9db3e-661a-47bf-b26c-99313ad8bac9))
- (segment (start 88.9125 72.05) (end 92.036753 72.05) (width 0.25) (layer "F.Cu") (net 30) (tstamp 29ec1a54-dea0-4d1a-a3dc-a7441a09bb9e))
- (segment (start 92.036753 72.05) (end 92.467205 71.619548) (width 0.25) (layer "F.Cu") (net 30) (tstamp 5778dc8c-60fe-435e-b75a-362eae1b81ab))
- (via (at 92.467205 71.619548) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 30) (tstamp 020b7e1f-8bb0-4882-91d4-7894bf18db84))
- (segment (start 108.56999 69.65001) (end 108.92 69.3) (width 0.25) (layer "B.Cu") (net 30) (tstamp 0ab1512b-eb91-4574-b11f-326e0ff10082))
- (segment (start 108.92 67.380998) (end 109.855997 66.445001) (width 0.25) (layer "B.Cu") (net 30) (tstamp 18208121-3872-4be3-a687-40854be3e1c8))
- (segment (start 110.958589 66.445001) (end 111.594999 65.808591) (width 0.25) (layer "B.Cu") (net 30) (tstamp 2cd2fee2-51b2-4fcd-8c94-c435e6791358))
- (segment (start 107.47 71.85) (end 108.56999 70.75001) (width 0.25) (layer "B.Cu") (net 30) (tstamp 3768cce7-1e64-480e-bb38-0c6794a852ac))
- (segment (start 111.594999 65.808591) (end 111.594999 63.905001) (width 0.25) (layer "B.Cu") (net 30) (tstamp 3d213c37-de80-490e-9f45-2814d3fc958b))
- (segment (start 109.855997 66.445001) (end 110.958589 66.445001) (width 0.25) (layer "B.Cu") (net 30) (tstamp 84d5cf13-52aa-4648-82e7-8be6e886a6b2))
- (segment (start 92.467205 71.619548) (end 92.867204 71.219549) (width 0.25) (layer "B.Cu") (net 30) (tstamp 9a458d6a-a84c-4faf-913e-90bab231d3f8))
- (segment (start 93.192551 71.219549) (end 93.823002 71.85) (width 0.25) (layer "B.Cu") (net 30) (tstamp a1d977e9-aa2c-4b7a-b2e3-8ff3b816e1f2))
- (segment (start 111.920001 63.579999) (end 112.77 62.73) (width 0.25) (layer "B.Cu") (net 30) (tstamp a2a4b1ad-c51a-492d-9e99-410eec4f55a3))
- (segment (start 92.867204 71.219549) (end 93.192551 71.219549) (width 0.25) (layer "B.Cu") (net 30) (tstamp a4a80e68-9a9c-4dac-84a7-a9f3c47a0961))
- (segment (start 111.594999 63.905001) (end 111.920001 63.579999) (width 0.25) (layer "B.Cu") (net 30) (tstamp b9f8b708-1745-43ec-9646-59495cbc6e07))
- (segment (start 108.56999 70.75001) (end 108.56999 69.65001) (width 0.25) (layer "B.Cu") (net 30) (tstamp c202ddee-78ab-4ebb-beca-559aaf118430))
- (segment (start 108.92 69.3) (end 108.92 67.380998) (width 0.25) (layer "B.Cu") (net 30) (tstamp de2abbd8-9b48-47ba-b77e-4c65ca048af6))
- (segment (start 93.823002 71.85) (end 107.47 71.85) (width 0.25) (layer "B.Cu") (net 30) (tstamp e5889358-36b5-4652-9d71-4d4aa652a144))
- (segment (start 109.07 72.6) (end 94.55 72.6) (width 0.25) (layer "F.Cu") (net 31) (tstamp 0e416ef5-3e03-4fa4-b2a6-3ab634a5ee03))
- (segment (start 110.23 71.452592) (end 110.217408 71.452592) (width 0.25) (layer "F.Cu") (net 31) (tstamp 3dfbccca-f469-4a6f-a8bd-5f55435b5cfa))
- (segment (start 110.217408 71.452592) (end 109.07 72.6) (width 0.25) (layer "F.Cu") (net 31) (tstamp 751752b1-1f0f-490c-ba43-2d34c357b41e))
- (segment (start 110.23 70.35) (end 110.23 71.452592) (width 0.25) (layer "F.Cu") (net 31) (tstamp a353a360-a1da-42d3-a5f2-38aafc184a50))
- (segment (start 94.55 72.6) (end 91 69.05) (width 0.25) (layer "F.Cu") (net 31) (tstamp d3dd0ba2-2496-4e95-8d54-12ee57bcbce2))
- (segment (start 91 69.05) (end 88.9125 69.05) (width 0.25) (layer "F.Cu") (net 31) (tstamp e463ba2a-1cbc-4995-82d8-59710b3fcd2f))
- (segment (start 89.79999 68.59999) (end 91.19999 68.59999) (width 0.25) (layer "F.Cu") (net 32) (tstamp 073c8287-235c-4712-a9a0-60a07a1119d5))
- (segment (start 88.9125 68.55) (end 89.75 68.55) (width 0.25) (layer "F.Cu") (net 32) (tstamp 19264aae-fe9e-4afc-84ac-56ec33a3b20d))
- (segment (start 93.4 70.81359) (end 94.73641 72.15) (width 0.25) (layer "F.Cu") (net 32) (tstamp 1a734ace-0cd0-489a-9380-915322ff12bd))
- (segment (start 105.89 72.15) (end 110.23 67.81) (width 0.25) (layer "F.Cu") (net 32) (tstamp 20e1c48c-ae14-4a88-835e-87633cbb6a1c))
- (segment (start 93.4 70.8) (end 93.4 70.81359) (width 0.25) (layer "F.Cu") (net 32) (tstamp 4d6dfe4f-0070-449e-bb5c-a3b1d4b26ba7))
- (segment (start 89.75 68.55) (end 89.79999 68.59999) (width 0.25) (layer "F.Cu") (net 32) (tstamp 7e232027-e1fd-4d55-a751-dd67130d7d22))
- (segment (start 91.19999 68.59999) (end 93.4 70.8) (width 0.25) (layer "F.Cu") (net 32) (tstamp c11e04e4-f63f-46b9-9a9c-9c7df49e614a))
- (segment (start 94.73641 72.15) (end 105.89 72.15) (width 0.25) (layer "F.Cu") (net 32) (tstamp ed9596e5-f4f2-4fc2-bb34-16ad21b3b120))
- (segment (start 109.02 67.280998) (end 109.02 68.3) (width 0.25) (layer "F.Cu") (net 33) (tstamp 08ac4c42-16f0-4513-b91e-bf0b3a111257))
- (segment (start 109.380001 66.119999) (end 109.380001 66.920997) (width 0.25) (layer "F.Cu") (net 33) (tstamp 09ab0b5c-3dee-42c8-b9e5-de0673874ccd))
- (segment (start 90.78641 67.55) (end 94.9364 71.69999) (width 0.25) (layer "F.Cu") (net 33) (tstamp 2b7c4f37-42c0-4571-a44b-b808484d3d74))
- (segment (start 110.23 65.27) (end 109.380001 66.119999) (width 0.25) (layer "F.Cu") (net 33) (tstamp 35431843-170f-401f-88d7-da91172bed86))
- (segment (start 94.9364 71.69999) (end 105.62001 71.69999) (width 0.25) (layer "F.Cu") (net 33) (tstamp 4c717b47-484c-4d70-8fcd-83c406ff2d17))
- (segment (start 109.380001 66.920997) (end 109.02 67.280998) (width 0.25) (layer "F.Cu") (net 33) (tstamp 6fddc16f-ccc1-4ade-884c-d6efda461da8))
- (segment (start 88.9125 67.55) (end 90.78641 67.55) (width 0.25) (layer "F.Cu") (net 33) (tstamp 85d211d4-76e7-4e49-a9c8-2e1cc8ab5805))
- (segment (start 109.02 68.3) (end 105.62001 71.69999) (width 0.25) (layer "F.Cu") (net 33) (tstamp e0781b80-6f1b-4d08-b53f-b7d3f582e2ea))
- (segment (start 95.07282 71.2) (end 105.47 71.2) (width 0.25) (layer "F.Cu") (net 34) (tstamp 133d5403-9be3-4603-824b-d3b76147e745))
- (segment (start 108.56999 66.2936) (end 108.56999 68.10001) (width 0.25) (layer "F.Cu") (net 34) (tstamp 15a0f067-831a-4ddb-bdef-5fb7df267d8f))
- (segment (start 109.054999 63.905001) (end 109.054999 65.808591) (width 0.25) (layer "F.Cu") (net 34) (tstamp 1ab4dceb-24cc-4050-aa74-e8fbb39d3760))
- (segment (start 88.9125 67.05) (end 90.92282 67.05) (width 0.25) (layer "F.Cu") (net 34) (tstamp 4fc3183f-297c-42b7-b3bd-25a9ea18c844))
- (segment (start 109.054999 65.808591) (end 108.56999 66.2936) (width 0.25) (layer "F.Cu") (net 34) (tstamp 6f78c1fb-f693-4737-b750-74e50c35a564))
- (segment (start 90.92282 67.05) (end 95.07282 71.2) (width 0.25) (layer "F.Cu") (net 34) (tstamp 9b315454-a4a0-4952-bdbe-d4a8e96c16f9))
- (segment (start 110.23 62.73) (end 109.054999 63.905001) (width 0.25) (layer "F.Cu") (net 34) (tstamp bbb99edd-f016-43ea-b1c7-0bcdd1915ee8))
- (segment (start 105.47 71.2) (end 108.56999 68.10001) (width 0.25) (layer "F.Cu") (net 34) (tstamp de5c2064-b9e1-4057-a8cc-9308019ef4d3))
- (segment (start 57.935 66.005) (end 57.915 66.025) (width 0.25) (layer "F.Cu") (net 35) (tstamp 0e18138e-f1a3-4288-bb34-3b6bcfb64ff6))
- (segment (start 57.935 64.25) (end 57.935 66.005) (width 0.25) (layer "F.Cu") (net 35) (tstamp d9198b20-68ab-4f03-9039-95a74aeba0d6))
- (segment (start 80.6 59.923002) (end 82 58.523002) (width 0.25) (layer "F.Cu") (net 36) (tstamp 7684f860-395c-40b3-8cc0-a644dcdbc220))
- (segment (start 80.6 61.6) (end 80.6 59.923002) (width 0.25) (layer "F.Cu") (net 36) (tstamp aaf0fd50-bb22-4408-be5a-88f5ba4193be))
- (segment (start 82 58.523002) (end 82 57.475) (width 0.25) (layer "F.Cu") (net 36) (tstamp acd72527-a657-482d-a530-89a1347375fc))
- (segment (start 82 57.475) (end 82 56.6375) (width 0.25) (layer "F.Cu") (net 36) (tstamp dbfb14d7-1f97-4dd2-9004-1d129d3b4221))
- (via (at 80.6 61.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 36) (tstamp e6cd2cdd-d49b-4491-8a15-4c46254b5c0a))
- (segment (start 89.444001 54.975001) (end 90.055001 54.364001) (width 0.25) (layer "B.Cu") (net 36) (tstamp 25247d0c-5910-484b-9651-5750d422a450))
- (segment (start 85.186811 55.425011) (end 87.090401 55.425011) (width 0.25) (layer "B.Cu") (net 36) (tstamp 3675ad1a-972f-4046-b23a-e6ca04304035))
- (segment (start 84.711803 55.900019) (end 85.186811 55.425011) (width 0.25) (layer "B.Cu") (net 36) (tstamp 3b19a97f-624a-48d9-8072-15bdeede0fff))
- (segment (start 83.500018 56.009212) (end 83.60921 55.90002) (width 0.25) (layer "B.Cu") (net 36) (tstamp 44509293-79e2-4fab-8860-b0cecb591afa))
- (segment (start 90.055001 54.364001) (end 90.055001 50.885997) (width 0.25) (layer "B.Cu") (net 36) (tstamp 59142adb-6887-41fc-851e-9a7f51511d60))
- (segment (start 90.855999 50.084999) (end 95.324999 50.084999) (width 0.25) (layer "B.Cu") (net 36) (tstamp 5b04e20f-8575-4362-b040-2e2133d670c8))
- (segment (start 82.02282 61.2) (end 83.500018 59.722802) (width 0.25) (layer "B.Cu") (net 36) (tstamp 6ae901e7-3f37-4fdc-9fbb-f82666744826))
- (segment (start 80.999999 61.200001) (end 82.02282 61.2) (width 0.25) (layer "B.Cu") (net 36) (tstamp 87f44303-a6e8-48e5-bb6d-f89abb09a999))
- (segment (start 90.055001 50.885997) (end 90.855999 50.084999) (width 0.25) (layer "B.Cu") (net 36) (tstamp 8e715b73-353f-4cfc-aa33-1eac54b89b6c))
- (segment (start 87.090401 55.425011) (end 87.540411 54.975001) (width 0.25) (layer "B.Cu") (net 36) (tstamp 92ec60c8-e914-4456-8d37-4b88fc0eb9c6))
- (segment (start 80.6 61.6) (end 80.999999 61.200001) (width 0.25) (layer "B.Cu") (net 36) (tstamp acfcaba7-a8b8-4c21-a793-d3e0373f34dc))
- (segment (start 83.60921 55.90002) (end 84.711803 55.900019) (width 0.25) (layer "B.Cu") (net 36) (tstamp b7ed4c31-5417-4fb5-9261-7dca42c1c776))
- (segment (start 95.324999 50.084999) (end 95.650001 50.410001) (width 0.25) (layer "B.Cu") (net 36) (tstamp baa534a0-611b-4c48-8e86-5106dc852bd8))
- (segment (start 83.500018 59.722802) (end 83.500018 56.009212) (width 0.25) (layer "B.Cu") (net 36) (tstamp bb5e8a0f-2ed5-4c2a-91b7-cb63c4c66e15))
- (segment (start 95.650001 50.410001) (end 96.5 51.26) (width 0.25) (layer "B.Cu") (net 36) (tstamp edb2db40-12f7-45b3-a514-2a1299ac0231))
- (segment (start 87.540411 54.975001) (end 89.444001 54.975001) (width 0.25) (layer "B.Cu") (net 36) (tstamp f58fca4c-73af-416f-b236-f3bb62b8fd00))
- (segment (start 81.4 59.759412) (end 81.5 59.659412) (width 0.25) (layer "F.Cu") (net 37) (tstamp 02b1295e-cf95-47ff-9c57-f8ada28f2e94))
- (segment (start 82.45001 58.659412) (end 82.450009 58.709403) (width 0.25) (layer "F.Cu") (net 37) (tstamp 4aee84d1-0859-48ac-a053-5a981ee1b24a))
- (segment (start 82.5 56.6375) (end 82.5 58.659412) (width 0.25) (layer "F.Cu") (net 37) (tstamp 5fc4054a-b929-433e-a947-747fb7ed003d))
- (segment (start 82.450009 58.709403) (end 81.5 59.659412) (width 0.25) (layer "F.Cu") (net 37) (tstamp 617edc57-1dbf-4296-b365-6d76f68a1c0f))
- (segment (start 82.5 58.659412) (end 82.45001 58.659412) (width 0.25) (layer "F.Cu") (net 37) (tstamp 811f5389-c208-4640-ab1a-b454491bb330))
- (segment (start 81.4 62.3) (end 81.4 59.759412) (width 0.25) (layer "F.Cu") (net 37) (tstamp d4876469-b949-49ce-b8fe-43cb458692a4))
- (via (at 81.4 62.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 37) (tstamp b6f041a4-3ea0-418b-94a2-50c938beafa2))
- (segment (start 81.959227 61.900001) (end 83.950028 59.909202) (width 0.25) (layer "B.Cu") (net 37) (tstamp 245a6fb4-6361-4438-82ca-8861d43ca7f5))
- (segment (start 94.524001 52.624999) (end 95.135001 53.235999) (width 0.25) (layer "B.Cu") (net 37) (tstamp 296ded40-ed53-4798-8db4-dad7b794226b))
- (segment (start 81.799999 61.900001) (end 81.959227 61.900001) (width 0.25) (layer "B.Cu") (net 37) (tstamp 2e0f69a6-955c-44f2-af4d-b4ad566ef54b))
- (segment (start 87.251822 55.9) (end 87.726811 55.425011) (width 0.25) (layer "B.Cu") (net 37) (tstamp 337d1242-91ab-4446-8b9e-7609c6a49e3c))
- (segment (start 87.726811 55.425011) (end 89.630401 55.425011) (width 0.25) (layer "B.Cu") (net 37) (tstamp 47be24ee-e15b-4cee-b84b-350111ac1499))
- (segment (start 81.4 62.3) (end 81.799999 61.900001) (width 0.25) (layer "B.Cu") (net 37) (tstamp 49b38f13-9789-4c6d-bbd5-2c69a9e19e69))
- (segment (start 95.5 53.7) (end 96.4 53.7) (width 0.25) (layer "B.Cu") (net 37) (tstamp 4d55ddc7-73be-49f7-98ea-a0ba474cbdb0))
- (segment (start 91.984001 54.975001) (end 92.595001 54.364001) (width 0.25) (layer "B.Cu") (net 37) (tstamp 5290e0d7-1f24-4c0b-91ff-28c5a304ab9a))
- (segment (start 92.595001 54.364001) (end 92.595001 53.304999) (width 0.25) (layer "B.Cu") (net 37) (tstamp 61fae217-e18a-4e68-8630-42cc06a8ba2f))
- (segment (start 89.630401 55.425011) (end 90.080411 54.975001) (width 0.25) (layer "B.Cu") (net 37) (tstamp 624c6565-c4fd-4d29-87af-f77dd1ba0898))
- (segment (start 95.135001 53.235999) (end 95.135001 53.335001) (width 0.25) (layer "B.Cu") (net 37) (tstamp 62a1b97d-067d-487c-835b-0166330d25fe))
- (segment (start 95.135001 53.235999) (end 95.135999 53.235999) (width 0.25) (layer "B.Cu") (net 37) (tstamp 69f75991-c8c0-49a9-aed8-daa6ca9a5d73))
- (segment (start 83.950028 56.4) (end 84.84823 56.4) (width 0.25) (layer "B.Cu") (net 37) (tstamp 71079b24-2e2e-494b-a607-86ccdae75c6e))
- (segment (start 84.84823 56.4) (end 85.34823 55.9) (width 0.25) (layer "B.Cu") (net 37) (tstamp 927b1eb6-e6f4-412f-9a58-8dc81a4889a0))
- (segment (start 96.4 53.7) (end 96.5 53.8) (width 0.25) (layer "B.Cu") (net 37) (tstamp ae293969-fa6d-4cb1-9969-16f8784d07e3))
- (segment (start 95.135001 53.335001) (end 95.5 53.7) (width 0.25) (layer "B.Cu") (net 37) (tstamp bb673c7a-d2b0-45b0-bfe2-0b113c092a77))
- (segment (start 83.950028 59.909202) (end 83.950028 56.4) (width 0.25) (layer "B.Cu") (net 37) (tstamp cce1404b-fc30-47cc-b852-e0061990f2bb))
- (segment (start 90.080411 54.975001) (end 91.984001 54.975001) (width 0.25) (layer "B.Cu") (net 37) (tstamp d68589fa-205b-4356-a20d-821c85f5f45e))
- (segment (start 93.275001 52.624999) (end 94.524001 52.624999) (width 0.25) (layer "B.Cu") (net 37) (tstamp d9ad01c4-9416-4b1f-8447-afc1d446fa8a))
- (segment (start 85.34823 55.9) (end 87.251822 55.9) (width 0.25) (layer "B.Cu") (net 37) (tstamp f205e125-3760-485b-b76a-dc2502dc5679))
- (segment (start 92.595001 53.304999) (end 93.275001 52.624999) (width 0.25) (layer "B.Cu") (net 37) (tstamp f60d71f9-9a8e-4a62-960d-f7b9664aea76))
- (segment (start 83 56.6375) (end 83 58.7) (width 0.25) (layer "F.Cu") (net 38) (tstamp 45676199-bb82-4d58-98c1-b606deb355be))
- (segment (start 83 58.795822) (end 83 58.7) (width 0.25) (layer "F.Cu") (net 38) (tstamp 55ac7ee1-f461-406b-8cf5-da47a7717180))
- (segment (start 82.2 63) (end 82.2 59.595822) (width 0.25) (layer "F.Cu") (net 38) (tstamp 7c3df708-fb44-40cc-b435-cd67e8cec48a))
- (segment (start 82.2 59.595822) (end 83 58.795822) (width 0.25) (layer "F.Cu") (net 38) (tstamp b14aea3f-7e9b-4416-ac0e-1c7beb3cd27c))
- (via (at 82.2 63) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 38) (tstamp f364b99f-4502-4cba-a96d-4ed35ad108b5))
- (segment (start 82.2 63) (end 82.599999 62.600001) (width 0.25) (layer "B.Cu") (net 38) (tstamp 0588e431-d56d-4df4-9ffd-6cd4bba412cb))
- (segment (start 84.400038 60.095602) (end 84.400038 58.499962) (width 0.25) (layer "B.Cu") (net 38) (tstamp 15e1670d-9e79-4a5e-88ad-fbbb238a3e8a))
- (segment (start 99.04 55.002081) (end 99.04 53.8) (width 0.25) (layer "B.Cu") (net 38) (tstamp 57121f1d-c971-4830-b974-00f7d706f0c9))
- (segment (start 97.898001 57.725001) (end 99.04 56.583002) (width 0.25) (layer "B.Cu") (net 38) (tstamp 76862e4a-1816-475c-9943-666036c637f7))
- (segment (start 82.599999 61.895638) (end 84.400038 60.095602) (width 0.25) (layer "B.Cu") (net 38) (tstamp 8019bb27-2172-4d60-932e-7bd55a890b6c))
- (segment (start 99.04 56.583002) (end 99.04 55.002081) (width 0.25) (layer "B.Cu") (net 38) (tstamp ad09de7f-a090-4e65-951a-7cf11f73b06d))
- (segment (start 85.174999 57.725001) (end 97.898001 57.725001) (width 0.25) (layer "B.Cu") (net 38) (tstamp ec13b96e-bc69-4de2-80ef-a515cc44afb5))
- (segment (start 82.599999 62.600001) (end 82.599999 61.895638) (width 0.25) (layer "B.Cu") (net 38) (tstamp f1128c56-7c01-4d79-834b-ceab4dc35180))
- (segment (start 84.400038 58.499962) (end 85.174999 57.725001) (width 0.25) (layer "B.Cu") (net 38) (tstamp f11a78b7-152e-46cf-81d1-bc8194db05a9))
- (segment (start 91.77499 58.62501) (end 91.487653 58.912347) (width 0.25) (layer "F.Cu") (net 39) (tstamp 121b7b08-bed9-441b-b060-efed31f37089))
- (segment (start 91.77499 57.068516) (end 91.77499 58.62501) (width 0.25) (layer "F.Cu") (net 39) (tstamp 14a3cbec-b1b9-4736-8e00-ba5be98954ab))
- (segment (start 92.7 55.69641) (end 92.687905 55.69641) (width 0.25) (layer "F.Cu") (net 39) (tstamp 3bdaeac5-b4b7-4a96-b0da-b5e1b46798c2))
- (segment (start 83.1 59.332232) (end 83.1 63.8) (width 0.25) (layer "F.Cu") (net 39) (tstamp 4375ab9a-cebb-448a-bb75-1fa4fe977171))
- (segment (start 101.58 51.26) (end 100.215001 52.624999) (width 0.25) (layer "F.Cu") (net 39) (tstamp 567a04d6-5dce-4e5f-9e8e-f34010ecea5b))
- (segment (start 83.5 58.932232) (end 83.1 59.332232) (width 0.25) (layer "F.Cu") (net 39) (tstamp 61eb7a4f-888e-4082-9c74-1d94f58e7c05))
- (segment (start 93.421409 54.975001) (end 92.7 55.69641) (width 0.25) (layer "F.Cu") (net 39) (tstamp 6f3f676d-a47a-4e8c-8d6e-02275a3490d7))
- (segment (start 95.135001 53.425997) (end 95.135001 54.364001) (width 0.25) (layer "F.Cu") (net 39) (tstamp 934c5f28-c928-4621-8122-b999b3ed10dd))
- (segment (start 92.6 56.35) (end 92.493506 56.35) (width 0.25) (layer "F.Cu") (net 39) (tstamp 9fa58e42-4d1f-4e7f-a5a2-6fc9857446e3))
- (segment (start 83.5 56.6375) (end 83.5 58.932232) (width 0.25) (layer "F.Cu") (net 39) (tstamp aeaaa120-9cc5-4520-9a70-067fbc8f5b7b))
- (segment (start 92.6 55.784315) (end 92.6 56.35) (width 0.25) (layer "F.Cu") (net 39) (tstamp ca2c5f3f-362b-4808-b8c2-86726d31aa11))
- (segment (start 92.687905 55.69641) (end 92.6 55.784315) (width 0.25) (layer "F.Cu") (net 39) (tstamp da7e6488-201f-4286-b86a-ca5aced3697a))
- (segment (start 92.493506 56.35) (end 91.77499 57.068516) (width 0.25) (layer "F.Cu") (net 39) (tstamp dc0df782-a446-4364-8dc7-0190637b5f77))
- (segment (start 95.135001 54.364001) (end 94.524001 54.975001) (width 0.25) (layer "F.Cu") (net 39) (tstamp e62e65e6-b466-4769-8746-eb8cd9450c76))
- (segment (start 100.215001 52.624999) (end 95.935999 52.624999) (width 0.25) (layer "F.Cu") (net 39) (tstamp ea8efd53-9e19-4e37-86f5-e6c0c681f735))
- (segment (start 95.935999 52.624999) (end 95.135001 53.425997) (width 0.25) (layer "F.Cu") (net 39) (tstamp f413d088-6fb9-4a8a-88fd-666ff68b7fdf))
- (segment (start 94.524001 54.975001) (end 93.421409 54.975001) (width 0.25) (layer "F.Cu") (net 39) (tstamp f7c5fcef-379b-481f-a910-961b8aba9e9d))
- (via (at 83.1 63.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 39) (tstamp 9475edbb-286b-4bed-b5f0-0b68a18bdc52))
- (via (at 91.487653 58.912347) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 39) (tstamp e75a90f1-d275-4ca6-86ea-4b6dddffab59))
- (segment (start 83.1 62.032049) (end 83.1 63.8) (width 0.25) (layer "B.Cu") (net 39) (tstamp 4e66ba18-389e-4ff9-97c1-8bd8fb047a01))
- (segment (start 90.750317 58.175011) (end 85.361399 58.175011) (width 0.25) (layer "B.Cu") (net 39) (tstamp aae29862-3850-48eb-b7a8-38a62a8029dd))
- (segment (start 85.361399 58.175011) (end 84.9 58.63641) (width 0.25) (layer "B.Cu") (net 39) (tstamp bf26cee8-9c9f-4547-9a40-e7028b986d1e))
- (segment (start 84.9 58.63641) (end 84.9 60.232049) (width 0.25) (layer "B.Cu") (net 39) (tstamp cc5561df-9d20-4574-af60-64f10025a0ed))
- (segment (start 91.487653 58.912347) (end 90.750317 58.175011) (width 0.25) (layer "B.Cu") (net 39) (tstamp d0111086-5d68-4ab0-b707-7da6b263c90b))
- (segment (start 84.9 60.232049) (end 83.1 62.032049) (width 0.25) (layer "B.Cu") (net 39) (tstamp f2a44eaf-666f-422c-bb4d-a717499c3d1a))
- (segment (start 84 56.6375) (end 84 62.9) (width 0.25) (layer "F.Cu") (net 40) (tstamp 0674c5a1-ca4b-4b6b-aa60-3847e1a37d52))
- (segment (start 84 62.9) (end 83.9 63) (width 0.25) (layer "F.Cu") (net 40) (tstamp 1a85ffd6-ef8b-418f-990e-456d1ffab00e))
- (via (at 83.9 63) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 40) (tstamp 835d4ac3-3fb1-48d9-8c28-6093fe917376))
- (segment (start 98.084402 58.17501) (end 100.730001 55.529411) (width 0.25) (layer "B.Cu") (net 40) (tstamp 0aa1e38d-f07a-4820-b628-a171234563bb))
- (segment (start 92.848001 59.675001) (end 90.94998 59.675001) (width 0.25) (layer "B.Cu") (net 40) (tstamp 1cbbfee4-06dd-44ee-af91-d336edf2459c))
- (segment (start 100.730001 54.649999) (end 101.58 53.8) (width 0.25) (layer "B.Cu") (net 40) (tstamp 1f01b2a1-9ae4-4793-9d17-5ed5c0966b9f))
- (segment (start 85.35001 60.418449) (end 85.35001 58.82281) (width 0.25) (layer "B.Cu") (net 40) (tstamp 33891c62-a79f-4243-b776-6be292690ac3))
- (segment (start 84.299999 62.600001) (end 84.299999 61.46846) (width 0.25) (layer "B.Cu") (net 40) (tstamp 59058a09-f800-497d-b8e1-cdf9632c6766))
- (segment (start 100.730001 55.529411) (end 100.730001 54.649999) (width 0.25) (layer "B.Cu") (net 40) (tstamp 637c5908-9371-4d80-a19b-036e111ef5cd))
- (segment (start 84.299999 61.46846) (end 85.35001 60.418449) (width 0.25) (layer "B.Cu") (net 40) (tstamp 7c11b885-29b4-4eb2-b782-dde8e3724f0c))
- (segment (start 94.347991 58.175011) (end 92.848001 59.675001) (width 0.25) (layer "B.Cu") (net 40) (tstamp 844f01a0-ac23-4a99-910e-4e91c579bb2b))
- (segment (start 85.35001 58.82281) (end 85.547799 58.625021) (width 0.25) (layer "B.Cu") (net 40) (tstamp 9ed54841-4bec-491f-817d-b7e8b25ca06c))
- (segment (start 90.94998 59.675001) (end 89.9 58.625021) (width 0.25) (layer "B.Cu") (net 40) (tstamp c2e901e5-a4cd-4374-af38-0566255ecbea))
- (segment (start 94.347991 58.175011) (end 98.084402 58.17501) (width 0.25) (layer "B.Cu") (net 40) (tstamp e0692317-3143-4681-97c6-8fbe46592f31))
- (segment (start 83.9 63) (end 84.299999 62.600001) (width 0.25) (layer "B.Cu") (net 40) (tstamp e2df2a45-3811-4210-89e0-9a66f3cb9430))
- (segment (start 85.547799 58.625021) (end 89.9 58.625021) (width 0.25) (layer "B.Cu") (net 40) (tstamp f8e9fc00-8f60-4688-b1c9-6de1e4c0c204))
- (segment (start 84.625001 62.651999) (end 84.625001 63.774999) (width 0.25) (layer "F.Cu") (net 41) (tstamp 2949af22-2432-469e-9f07-eee60be8acbd))
- (segment (start 84.5 62.526998) (end 84.625001 62.651999) (width 0.25) (layer "F.Cu") (net 41) (tstamp 356199c8-c0f7-4995-bef0-53ad752a30c5))
- (segment (start 84.5 56.6375) (end 84.5 62.526998) (width 0.25) (layer "F.Cu") (net 41) (tstamp 3997254a-8057-4464-ba07-e37f0720cbd8))
- (segment (start 93.974154 56.325846) (end 94 56.3) (width 0.25) (layer "F.Cu") (net 41) (tstamp 5ef603f2-8407-4088-9f29-0b64dd4b046f))
- (segment (start 84.625001 63.774999) (end 84.6 63.8) (width 0.25) (layer "F.Cu") (net 41) (tstamp 7983b95c-14e4-4dec-ab4e-09c81071d9de))
- (segment (start 93.974154 59.574154) (end 93.974154 56.325846) (width 0.25) (layer "F.Cu") (net 41) (tstamp bce25bd3-0fe5-4c8f-bd6c-39e2d62ee70a))
- (via (at 84.6 63.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 41) (tstamp 3cfddd47-0913-4692-89bb-8a69d22be5a7))
- (via (at 93.974154 59.574154) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 41) (tstamp 76ee303c-1cfc-45a8-ae72-af3efaba6c47))
- (via (at 94 56.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 41) (tstamp 872313a4-03e6-4e4a-b850-f54dcb50f9fc))
- (segment (start 85.80002 59.49998) (end 85.80002 60.738451) (width 0.25) (layer "B.Cu") (net 41) (tstamp 03d57b22-a0ad-4d3d-9d1c-5573371e6c2f))
- (segment (start 94.334315 55.4) (end 96.588982 55.4) (width 0.25) (layer "B.Cu") (net 41) (tstamp 06b6db7e-5210-41ec-a47b-0127ebbe0786))
- (segment (start 93.423298 60.12501) (end 93.974154 59.574154) (width 0.25) (layer "B.Cu") (net 41) (tstamp 0fe3ebe2-61a9-477a-a657-d783c4c4d70e))
- (segment (start 86.224969 59.075031) (end 85.80002 59.49998) (width 0.25) (layer "B.Cu") (net 41) (tstamp 159c8092-f459-40eb-b409-c2cace814e6e))
- (segment (start 97.675001 54.364001) (end 97.675001 53.124999) (width 0.25) (layer "B.Cu") (net 41) (tstamp 39614f9f-2df5-492b-a093-45b7a48e295d))
- (segment (start 94 56.3) (end 94 55.734315) (width 0.25) (layer "B.Cu") (net 41) (tstamp 3f9f133b-59b8-4791-b0ab-6fa861da9e3f))
- (segment (start 89.675031 59.075031) (end 90.72501 60.12501) (width 0.25) (layer "B.Cu") (net 41) (tstamp 56bbedad-6259-4443-b321-0ffa1f89c336))
- (segment (start 96.613992 55.42501) (end 97.675001 54.364001) (width 0.25) (layer "B.Cu") (net 41) (tstamp 6ee71a3c-fedb-4cc6-a3c6-f3d6f3ac6767))
- (segment (start 98.364999 52.435001) (end 102.944999 52.435001) (width 0.25) (layer "B.Cu") (net 41) (tstamp 741879e3-3045-40c7-849d-7f437c35ee91))
- (segment (start 84.750009 63.084306) (end 84.750009 61.788462) (width 0.25) (layer "B.Cu") (net 41) (tstamp 832b1e20-f118-4505-ad00-93c040f2f83d))
- (segment (start 96.588982 55.4) (end 96.613992 55.42501) (width 0.25) (layer "B.Cu") (net 41) (tstamp 85621d90-361e-49b6-9449-b54a16cce021))
- (segment (start 90.72501 60.12501) (end 93.423298 60.12501) (width 0.25) (layer "B.Cu") (net 41) (tstamp 8eacb9d3-c41d-4b39-abd1-0bc8f2e97411))
- (segment (start 84.6 63.8) (end 84.6 63.234315) (width 0.25) (layer "B.Cu") (net 41) (tstamp a9ff0621-eacb-4187-ba89-29f236eec881))
- (segment (start 94 55.734315) (end 94.334315 55.4) (width 0.25) (layer "B.Cu") (net 41) (tstamp ac81fb15-6f1a-451b-a962-fb87ffd26f6b))
- (segment (start 89.675031 59.075031) (end 86.224969 59.075031) (width 0.25) (layer "B.Cu") (net 41) (tstamp b4afdd30-7a78-4cd8-8670-bb6dd787dcdc))
- (segment (start 84.6 63.234315) (end 84.750009 63.084306) (width 0.25) (layer "B.Cu") (net 41) (tstamp cb0f5a26-0827-4807-aea7-55b25947b9d5))
- (segment (start 102.944999 52.435001) (end 104.12 51.26) (width 0.25) (layer "B.Cu") (net 41) (tstamp dd4f23cd-8f89-457c-8b93-3828f8c20a8d))
- (segment (start 97.675001 53.124999) (end 98.364999 52.435001) (width 0.25) (layer "B.Cu") (net 41) (tstamp e4d60aa0-829b-452e-a0b4-f0b282cbe2f3))
- (segment (start 85.80002 60.738451) (end 84.750009 61.788462) (width 0.25) (layer "B.Cu") (net 41) (tstamp f46fb303-7470-41c0-b6e8-4553c1d6503f))
- (segment (start 85 56.6375) (end 85 59.050415) (width 0.25) (layer "F.Cu") (net 42) (tstamp 86f6faec-7eee-404c-a73a-2ae625f33d8c))
- (segment (start 85 59.050415) (end 86.52502 60.575435) (width 0.25) (layer "F.Cu") (net 42) (tstamp 90337a8b-a8c5-48e1-ad0f-b0e67716fe3c))
- (via (at 86.52502 60.575435) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 42) (tstamp d3db736b-0e33-4126-b950-5488923df40e))
- (segment (start 101.095822 55.8) (end 98.9 57.995822) (width 0.25) (layer "B.Cu") (net 42) (tstamp 0f3121ae-1081-4d81-b548-dceafa613e21))
- (segment (start 86.52502 59.550061) (end 86.55004 59.525041) (width 0.25) (layer "B.Cu") (net 42) (tstamp 644ebc55-9b92-49bd-8dfa-8a3a0dd8d76d))
- (segment (start 98.123002 60.6) (end 98.925001 59.798001) (width 0.25) (layer "B.Cu") (net 42) (tstamp 66cc4ddc-a52d-4ad7-986e-68f000539802))
- (segment (start 102.12 55.8) (end 101.095822 55.8) (width 0.25) (layer "B.Cu") (net 42) (tstamp 85ec87eb-bb51-43f3-adf5-d04ca264762d))
- (segment (start 104.12 53.8) (end 102.12 55.8) (width 0.25) (layer "B.Cu") (net 42) (tstamp 8f8bb641-6f96-48dd-a2de-b7e2aaf6efe0))
- (segment (start 98.925001 59.798001) (end 98.925001 58.020823) (width 0.25) (layer "B.Cu") (net 42) (tstamp a16dbf15-8f5b-4766-b048-90ba89efcc02))
- (segment (start 98.925001 58.020823) (end 98.9 57.995822) (width 0.25) (layer "B.Cu") (net 42) (tstamp cebfc912-6282-4a1e-923e-74c4961c2aad))
- (segment (start 89.488631 59.525041) (end 90.56359 60.6) (width 0.25) (layer "B.Cu") (net 42) (tstamp cfec88d2-05ea-4320-9be6-2559d89ee700))
- (segment (start 86.52502 60.575435) (end 86.52502 59.550061) (width 0.25) (layer "B.Cu") (net 42) (tstamp eb83440d-aa8b-4a1e-9e93-00cf0de78de9))
- (segment (start 86.55004 59.525041) (end 89.488631 59.525041) (width 0.25) (layer "B.Cu") (net 42) (tstamp f7475c2a-e91e-435c-bec2-3307ef3e1f94))
- (segment (start 90.56359 60.6) (end 98.123002 60.6) (width 0.25) (layer "B.Cu") (net 42) (tstamp fe1c93f4-4468-424b-a088-27aef08b62b4))
- (segment (start 85.5 56.6375) (end 85.5 58.296292) (width 0.25) (layer "F.Cu") (net 43) (tstamp 6579642b-a152-47f7-af0e-0d8866bdfcb8))
- (segment (start 85.5 58.296292) (end 87.478878 60.27517) (width 0.25) (layer "F.Cu") (net 43) (tstamp eac540a2-0555-4530-b9cb-9b037a65c0a7))
- (via (at 87.478878 60.27517) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 43) (tstamp 5de5a872-aa15-495b-b53b-b8a64bbfa4f0))
- (segment (start 99.375011 59.984401) (end 99.375011 58.157221) (width 0.25) (layer "B.Cu") (net 43) (tstamp 0df798c0-963e-4340-a737-18e50763521e))
- (segment (start 90.42718 61.1) (end 98.259412 61.1) (width 0.25) (layer "B.Cu") (net 43) (tstamp 1d6518e1-cfe9-4078-adc2-cf8e6477b5cb))
- (segment (start 105.484999 52.435001) (end 105.810001 52.109999) (width 0.25) (layer "B.Cu") (net 43) (tstamp 3f206607-332e-4c96-8963-5302804f476f))
- (segment (start 102.306401 56.250009) (end 103.581409 54.975001) (width 0.25) (layer "B.Cu") (net 43) (tstamp 4208e41d-1d0a-40b9-bf94-fcbeb6562f9d))
- (segment (start 104.684001 54.975001) (end 105.484999 54.174003) (width 0.25) (layer "B.Cu") (net 43) (tstamp 68f7174d-ce7a-41b4-89f8-dd7e3ded57a1))
- (segment (start 99.375011 58.157221) (end 101.282222 56.25001) (width 0.25) (layer "B.Cu") (net 43) (tstamp 6d646c30-feab-4e3e-adf0-5427b73b5f08))
- (segment (start 89.302231 59.975051) (end 90.42718 61.1) (width 0.25) (layer "B.Cu") (net 43) (tstamp 6e21d8a8-05db-450e-863d-764ba51b5b58))
- (segment (start 88.044563 60.27517) (end 88.344682 59.975051) (width 0.25) (layer "B.Cu") (net 43) (tstamp 6e416a78-df14-48ee-9842-e6e24081191e))
- (segment (start 101.282222 56.25001) (end 102.306401 56.250009) (width 0.25) (layer "B.Cu") (net 43) (tstamp 8e1983d7-818b-423d-95d2-7f219e4f6ba3))
- (segment (start 105.484999 54.174003) (end 105.484999 52.435001) (width 0.25) (layer "B.Cu") (net 43) (tstamp b20fb198-6b0b-4cab-9ba8-ea9b46e8088f))
- (segment (start 87.478878 60.27517) (end 88.044563 60.27517) (width 0.25) (layer "B.Cu") (net 43) (tstamp b2f7301d-582c-4990-a060-4a71ef08c6eb))
- (segment (start 98.259412 61.1) (end 99.375011 59.984401) (width 0.25) (layer "B.Cu") (net 43) (tstamp cf45f134-35c0-4b31-91e7-048e45f34bf8))
- (segment (start 103.581409 54.975001) (end 104.684001 54.975001) (width 0.25) (layer "B.Cu") (net 43) (tstamp d1f81642-eb3a-4277-b357-9cbb5a3aa5ac))
- (segment (start 105.810001 52.109999) (end 106.66 51.26) (width 0.25) (layer "B.Cu") (net 43) (tstamp e3903eeb-8b72-4b40-a088-cbbba270c01b))
- (segment (start 88.344682 59.975051) (end 89.302231 59.975051) (width 0.25) (layer "B.Cu") (net 43) (tstamp fa574bf3-ac2e-449d-91be-bcb1e35bdaba))
- (segment (start 90.9625 57.55) (end 89.9125 57.55) (width 0.25) (layer "F.Cu") (net 44) (tstamp 33064f56-88c0-44a1-ac52-96957fe5ad49))
- (segment (start 89.9125 57.55) (end 88.9125 58.55) (width 0.25) (layer "F.Cu") (net 44) (tstamp c2564ecf-bd43-431d-b9a2-c7be54487485))
- (segment (start 69.5 62.3) (end 69.25 62.05) (width 0.25) (layer "F.Cu") (net 45) (tstamp 0208dcec-5844-41d6-8382-4437ac8ac82d))
- (segment (start 69.25 62.05) (end 67.5875 62.05) (width 0.25) (layer "F.Cu") (net 45) (tstamp a2ead14b-89a8-4438-a7df-7876de28e69a))
- (via (at 69.5 62.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 45) (tstamp 60d30b2f-02cb-42f2-b2ed-c84cb33e3e36))
- (segment (start 68.56 55.539002) (end 68.56 61.36) (width 0.25) (layer "B.Cu") (net 45) (tstamp 00000000-0000-0000-0000-00005e49a359))
- (segment (start 67.384999 52.435001) (end 67.384999 54.364001) (width 0.25) (layer "B.Cu") (net 45) (tstamp 1569382e-a4f5-4166-a19c-b78580f8c980))
- (segment (start 68.56 51.26) (end 67.384999 52.435001) (width 0.25) (layer "B.Cu") (net 45) (tstamp 376a6f44-cf22-4d88-ac13-30f83803795f))
- (segment (start 67.384999 54.364001) (end 68.56 55.539002) (width 0.25) (layer "B.Cu") (net 45) (tstamp 52d326d4-51c9-4c17-8412-9aaf3e6cdf4c))
- (segment (start 68.56 61.36) (end 69.5 62.3) (width 0.25) (layer "B.Cu") (net 45) (tstamp df3e0d78-29b1-4811-9600-571610f4b8a8))
- (segment (start 65.6 62.55) (end 67.5875 62.55) (width 0.25) (layer "F.Cu") (net 46) (tstamp ac0e5582-f44c-4bc2-8ae7-2c3f1115fb00))
- (via (at 65.6 62.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 46) (tstamp 664ea685-f665-4315-aadf-581a656f41df))
- (segment (start 64.844999 52.435001) (end 64.844999 55.044999) (width 0.25) (layer "B.Cu") (net 46) (tstamp 291e4200-f3c9-4b61-8158-17e8c4424a24))
- (segment (start 64.844999 55.044999) (end 67.125001 57.325001) (width 0.25) (layer "B.Cu") (net 46) (tstamp 35e60fa0-27cf-4d0e-8bab-b364400c08c0))
- (segment (start 67.125001 61.024999) (end 65.6 62.55) (width 0.25) (layer "B.Cu") (net 46) (tstamp 578f33ff-8d12-4136-bb61-e55b7655fa5b))
- (segment (start 66.02 51.26) (end 64.844999 52.435001) (width 0.25) (layer "B.Cu") (net 46) (tstamp 933a17ae-06d4-4de3-aae1-d3835cc0d957))
- (segment (start 67.125001 57.325001) (end 67.125001 61.024999) (width 0.25) (layer "B.Cu") (net 46) (tstamp 9d2af601-5327-4706-9acb-978b65e95af5))
- (segment (start 81.5 55.8) (end 81.874989 55.425011) (width 0.25) (layer "F.Cu") (net 47) (tstamp 1d2d8ec8-1f1b-4d06-9a35-eff8e386bdb8))
- (segment (start 92.76 55) (end 90.055412 55) (width 0.25) (layer "F.Cu") (net 47) (tstamp 22614aba-2c26-4590-8e12-a7a6b6de48de))
- (segment (start 81.5 56.6375) (end 81.5 55.8) (width 0.25) (layer "F.Cu") (net 47) (tstamp 401b5a0c-f502-4551-9d61-fa50a303707e))
- (segment (start 81.874989 55.425011) (end 89.630402 55.42501) (width 0.25) (layer "F.Cu") (net 47) (tstamp 4c069f0b-8c76-44a0-a999-7bd72a3e8dee))
- (segment (start 89.630402 55.42501) (end 90.055412 55) (width 0.25) (layer "F.Cu") (net 47) (tstamp 92822296-9b31-4c78-bfe1-2dc7c2e425bc))
- (segment (start 93.96 53.8) (end 92.76 55) (width 0.25) (layer "F.Cu") (net 47) (tstamp bf3524aa-7451-4bff-a4df-53f0aa1c0aeb))
- (segment (start 80.5 56.6375) (end 80.5 54.779002) (width 0.25) (layer "F.Cu") (net 48) (tstamp 1a1da3ab-0792-420a-a2dd-c670f9cd52e8))
- (segment (start 90.244999 52.435001) (end 90.570001 52.109999) (width 0.25) (layer "F.Cu") (net 48) (tstamp 5e27f565-c85a-4f3b-9862-58c0accdd5e3))
- (segment (start 90.570001 52.109999) (end 91.42 51.26) (width 0.25) (layer "F.Cu") (net 48) (tstamp 9050328c-80d1-449f-94a8-27658961ba9d))
- (segment (start 80.864999 52.435001) (end 90.244999 52.435001) (width 0.25) (layer "F.Cu") (net 48) (tstamp 99c0b885-9395-4eaa-a204-8d7dea094883))
- (segment (start 80.084999 53.215001) (end 80.864999 52.435001) (width 0.25) (layer "F.Cu") (net 48) (tstamp a3a9b316-86eb-411d-82d0-37407c2e4142))
- (segment (start 80.5 54.779002) (end 80.084999 54.364001) (width 0.25) (layer "F.Cu") (net 48) (tstamp d0060422-f68b-4ffa-bca8-6f70dc4f862d))
- (segment (start 80.084999 54.364001) (end 80.084999 53.215001) (width 0.25) (layer "F.Cu") (net 48) (tstamp e315fb88-f764-4ec7-a92b-006692d5e26f))
- (segment (start 81.424999 54.975001) (end 89.444001 54.975001) (width 0.25) (layer "F.Cu") (net 49) (tstamp 09321bf4-1ea1-49b5-b1f9-ac29d6606a74))
- (segment (start 90.217919 53.8) (end 90.055001 53.962918) (width 0.25) (layer "F.Cu") (net 49) (tstamp 3742a313-c63e-4807-a7bf-be5a0ae2c781))
- (segment (start 90.055001 53.962918) (end 90.055001 54.364001) (width 0.25) (layer "F.Cu") (net 49) (tstamp 5080cf4c-abda-4232-b279-44d0e6b9bde3))
- (segment (start 80.95001 55.44999) (end 81.424999 54.975001) (width 0.25) (layer "F.Cu") (net 49) (tstamp 5b867f3d-ce38-4d21-95dd-fe114f76e9dc))
- (segment (start 81 55.8) (end 80.95001 55.75001) (width 0.25) (layer "F.Cu") (net 49) (tstamp 7d3a9372-4f99-452e-9767-51a31df66106))
- (segment (start 80.95001 55.75001) (end 80.95001 55.44999) (width 0.25) (layer "F.Cu") (net 49) (tstamp 89be6ff8-dff7-4df0-876d-d5989d658e36))
- (segment (start 89.444001 54.975001) (end 90.055001 54.364001) (width 0.25) (layer "F.Cu") (net 49) (tstamp aa52a4ee-249d-4f84-a65a-9c1702b5bb75))
- (segment (start 81 56.6375) (end 81 55.8) (width 0.25) (layer "F.Cu") (net 49) (tstamp e2349eb5-0f2d-4c2a-b154-1cfe1ab9cd91))
- (segment (start 91.42 53.8) (end 90.217919 53.8) (width 0.25) (layer "F.Cu") (net 49) (tstamp ed76cb21-0b5e-4ca2-8075-7e28e38e7199))
- (segment (start 88.030001 50.410001) (end 88.88 51.26) (width 0.25) (layer "F.Cu") (net 50) (tstamp 16aa2316-1a67-45e5-b6c4-e59dd85814f4))
- (segment (start 77.5 56.6375) (end 77.5 50.740998) (width 0.25) (layer "F.Cu") (net 50) (tstamp 3b909fd4-b382-4019-8708-80d1d9a9fe1c))
- (segment (start 77.5 50.740998) (end 78.155999 50.084999) (width 0.25) (layer "F.Cu") (net 50) (tstamp 5891aa7f-2e48-4492-8db1-d54810991036))
- (segment (start 78.155999 50.084999) (end 87.704999 50.084999) (width 0.25) (layer "F.Cu") (net 50) (tstamp 7f4b7c2c-9af8-4317-9338-c2a6d8990ded))
- (segment (start 87.704999 50.084999) (end 88.030001 50.410001) (width 0.25) (layer "F.Cu") (net 50) (tstamp 8ddee80f-a354-4a11-ae03-acb37cf50626))
- (segment (start 77 56.6375) (end 77 54.62) (width 0.25) (layer "F.Cu") (net 51) (tstamp 5f8cf0a3-5039-4ac4-8310-e201f8c0505f))
- (segment (start 77 54.62) (end 76.18 53.8) (width 0.25) (layer "F.Cu") (net 51) (tstamp b5de2bf0-583c-45d9-bc5e-15007fe3ede8))
- (segment (start 74.5 54.679002) (end 75.004999 54.174003) (width 0.25) (layer "F.Cu") (net 52) (tstamp 9fa51663-d9ff-42d5-ab2b-c96b6768fc7a))
- (segment (start 75.004999 52.435001) (end 75.330001 52.109999) (width 0.25) (layer "F.Cu") (net 52) (tstamp bfdbfa5d-af60-4bcb-aaee-563dc6121e2f))
- (segment (start 75.004999 54.174003) (end 75.004999 52.435001) (width 0.25) (layer "F.Cu") (net 52) (tstamp e8a49c58-e69f-4870-ab15-e73f66a8d02b))
- (segment (start 74.5 56.6375) (end 74.5 54.679002) (width 0.25) (layer "F.Cu") (net 52) (tstamp f61adca3-c1e4-457e-8212-9dc978cabab5))
- (segment (start 75.330001 52.109999) (end 76.18 51.26) (width 0.25) (layer "F.Cu") (net 52) (tstamp fd693e1b-ee8d-4a26-aae0-561ba4b09a82))
- (segment (start 74 54.16) (end 73.64 53.8) (width 0.25) (layer "F.Cu") (net 53) (tstamp d25a1e45-06d1-4c1c-9b3a-0fd8abd0bfed))
- (segment (start 74 56.6375) (end 74 54.16) (width 0.25) (layer "F.Cu") (net 53) (tstamp e8558fbd-ea42-43a6-966a-7bd304bdfaad))
- (segment (start 65.105011 55.425011) (end 64.329999 54.649999) (width 0.25) (layer "F.Cu") (net 54) (tstamp 2fea3f9c-a97b-4a77-88f7-98b3d8a00622))
- (segment (start 70.590713 55.425011) (end 65.105011 55.425011) (width 0.25) (layer "F.Cu") (net 54) (tstamp 46a20b99-b616-4fa4-af79-eecf92b5c191))
- (segment (start 71 55.834298) (end 70.590713 55.425011) (width 0.25) (layer "F.Cu") (net 54) (tstamp 6dfa921c-8a4f-4fcf-a0e7-8718b6271ea9))
- (segment (start 64.329999 54.649999) (end 63.48 53.8) (width 0.25) (layer "F.Cu") (net 54) (tstamp ab26a42e-b7f6-4a80-b26c-c01085e448c7))
- (segment (start 71 56.6375) (end 71 55.834298) (width 0.25) (layer "F.Cu") (net 54) (tstamp ee3188d0-94cf-4bcc-9f57-e516684fc142))
- (segment (start 69 57.440702) (end 66.484292 57.440702) (width 0.25) (layer "F.Cu") (net 55) (tstamp 062fbe79-da43-4e6a-bd6f-509557f2df9b))
- (segment (start 72.225001 58.748001) (end 71.848001 59.125001) (width 0.25) (layer "F.Cu") (net 55) (tstamp 2b894b8a-c098-4d9d-be0f-2ef41dea274e))
- (segment (start 66.484292 57.440702) (end 64.018591 54.975001) (width 0.25) (layer "F.Cu") (net 55) (tstamp 3ce4c631-4e8b-4ee6-a520-34bf7b12880c))
- (segment (start 61.789999 54.649999) (end 60.94 53.8) (width 0.25) (layer "F.Cu") (net 55) (tstamp 4116bfc2-eab3-4c29-a983-44eacd9f10f5))
- (segment (start 64.018591 54.975001) (end 62.115001 54.975001) (width 0.25) (layer "F.Cu") (net 55) (tstamp 51320c8c-9c4a-48b8-a7b8-e2c8d1f2e5ad))
- (segment (start 69.259308 57.70001) (end 69 57.440702) (width 0.25) (layer "F.Cu") (net 55) (tstamp 5f74c6fb-337b-40a9-9b79-933f2f30429a))
- (segment (start 72 57.826998) (end 72.225001 58.051999) (width 0.25) (layer "F.Cu") (net 55) (tstamp 6776c573-26e6-4a02-ab96-18129f258651))
- (segment (start 62.115001 54.975001) (end 61.789999 54.649999) (width 0.25) (layer "F.Cu") (net 55) (tstamp 704ba6e6-ee13-4d9d-b544-d836a743bdda))
- (segment (start 72.225001 58.051999) (end 72.225001 58.748001) (width 0.25) (layer "F.Cu") (net 55) (tstamp 9ba85d0a-e58f-45a8-9d86-ad6c976003b7))
- (segment (start 72 56.6375) (end 72 57.826998) (width 0.25) (layer "F.Cu") (net 55) (tstamp a067c43d-047d-48ca-a682-5bbb620e3988))
- (segment (start 71.151999 59.125001) (end 70.774999 58.748001) (width 0.25) (layer "F.Cu") (net 55) (tstamp a9ad6ea5-8293-424c-89d4-c01baf033429))
- (segment (start 70.650008 57.70001) (end 69.259308 57.70001) (width 0.25) (layer "F.Cu") (net 55) (tstamp d36e7ed4-f2bc-4d88-86ae-317d3c24af1a))
- (segment (start 71.848001 59.125001) (end 71.151999 59.125001) (width 0.25) (layer "F.Cu") (net 55) (tstamp dbd87a35-3166-440e-a8f0-c71d214a12a6))
- (segment (start 70.774999 58.748001) (end 70.774999 57.825001) (width 0.25) (layer "F.Cu") (net 55) (tstamp df1435bb-8018-455d-9925-63e774164119))
- (segment (start 70.774999 57.825001) (end 70.650008 57.70001) (width 0.25) (layer "F.Cu") (net 55) (tstamp ff203a9b-3d2e-4e1d-a6f0-12d16e5120fb))
- (segment (start 67.195001 54.975001) (end 66.869999 54.649999) (width 0.25) (layer "F.Cu") (net 56) (tstamp 226f524c-89b4-46ed-86fd-c8ea41059fd4))
- (segment (start 71.675001 54.975001) (end 67.195001 54.975001) (width 0.25) (layer "F.Cu") (net 56) (tstamp 57e17378-f1f7-42d0-9ad3-fb44c2d5cdc3))
- (segment (start 72.5 56.6375) (end 72.5 55.8) (width 0.25) (layer "F.Cu") (net 56) (tstamp 6ae47305-86b3-4e27-b3c6-46e195fdaa6d))
- (segment (start 72.5 55.8) (end 71.675001 54.975001) (width 0.25) (layer "F.Cu") (net 56) (tstamp 710852c3-85af-44f2-af12-adc5798f2795))
- (segment (start 66.869999 54.649999) (end 66.02 53.8) (width 0.25) (layer "F.Cu") (net 56) (tstamp 7147b342-4ca8-4694-a1ec-b615c151a5d0))
- (segment (start 71.264588 53.8) (end 73 55.535412) (width 0.25) (layer "F.Cu") (net 57) (tstamp 5b5611ee-3a4f-4573-978f-2e48db0ecaf5))
- (segment (start 73 55.8) (end 73 56.6375) (width 0.25) (layer "F.Cu") (net 57) (tstamp 84e154cc-34e9-48ac-ab7e-fc52b3bc90d0))
- (segment (start 73 55.535412) (end 73 55.8) (width 0.25) (layer "F.Cu") (net 57) (tstamp a57e46ab-4127-4b88-afea-d94b5d7bc928))
- (segment (start 71.1 53.8) (end 71.264588 53.8) (width 0.25) (layer "F.Cu") (net 57) (tstamp c1b73b2b-a0dd-4b0e-8d3d-c3beea420b93))
- (segment (start 72.275001 52.435001) (end 71.949999 52.109999) (width 0.25) (layer "F.Cu") (net 58) (tstamp 037a257a-ceb2-409c-ab24-48a743172dae))
- (segment (start 72.275001 54.174003) (end 72.275001 52.435001) (width 0.25) (layer "F.Cu") (net 58) (tstamp 3d8571f7-688f-49ac-8d91-22508c277f45))
- (segment (start 71.949999 52.109999) (end 71.1 51.26) (width 0.25) (layer "F.Cu") (net 58) (tstamp 45899113-d22e-4a5b-822e-9aca23b124ee))
- (segment (start 73.5 56.6375) (end 73.5 55.399002) (width 0.25) (layer "F.Cu") (net 58) (tstamp 8527ef2e-5212-4629-b6f5-b0130ab61dab))
- (segment (start 73.5 55.399002) (end 72.275001 54.174003) (width 0.25) (layer "F.Cu") (net 58) (tstamp eecd895d-4aa1-458c-8512-c9957fd00fad))
+ (segment (start 59.2 70.99) (end 59.185 70.975) (width 0.25) (layer "F.Cu") (net 9) (tstamp 29cd9e70-9b68-44f7-96b2-fe993c246832))
+ (segment (start 59.2 72.715) (end 59.2 70.99) (width 0.25) (layer "F.Cu") (net 9) (tstamp 2e1d63b8-5189-41bb-8b6a-c4ada546b2d5))
+ (segment (start 59.25 70.91) (end 59.185 70.975) (width 0.25) (layer "F.Cu") (net 9) (tstamp 7114de55-86d9-46c1-a412-07f5eb895435))
+ (segment (start 74.65 58.184315) (end 74.8 58.034315) (width 0.25) (layer "F.Cu") (net 10) (tstamp 0a79db37-f1d9-40b1-a24d-8bdfb8f637e2))
+ (segment (start 87 77.9625) (end 87.7 77.2625) (width 0.25) (layer "F.Cu") (net 10) (tstamp 0f9b475c-adb7-41fc-b827-33d4eaa86b99))
+ (segment (start 87.35 62.55) (end 88.9125 62.55) (width 0.25) (layer "F.Cu") (net 10) (tstamp 1053b01a-057e-4e79-a21c-42780a737ea9))
+ (segment (start 61.85 70.985) (end 60.465 70.985) (width 0.25) (layer "F.Cu") (net 10) (tstamp 15a5a11b-0ea1-4f6e-b356-cc2d530615ed))
+ (segment (start 96.210392 59.389608) (end 96.2 59.4) (width 0.25) (layer "F.Cu") (net 10) (tstamp 173fd4a7-b485-4e9d-8724-470865466784))
+ (segment (start 61.85 71.85) (end 61.55 72.15) (width 0.25) (layer "F.Cu") (net 10) (tstamp 24a492d9-25a9-4fba-b51b-3effb576b351))
+ (segment (start 95.210392 59.339608) (end 95.15 59.4) (width 0.25) (layer "F.Cu") (net 10) (tstamp 26296271-780a-4da9-8e69-910d9240bca1))
+ (segment (start 58.7 76.165) (end 59.715 76.165) (width 0.25) (layer "F.Cu") (net 10) (tstamp 2f33286e-7553-4442-acf0-23c61fcd6ab0))
+ (segment (start 74.65 58.75) (end 74.65 58.184315) (width 0.25) (layer "F.Cu") (net 10) (tstamp 315d2b15-cfe6-4672-b3ad-24773f3df12c))
+ (segment (start 53.323456 66.025966) (end 53.323456 65.876544) (width 0.25) (layer "F.Cu") (net 10) (tstamp 341e67eb-d5e1-4cb7-9d11-5aa4ab832a2a))
+ (segment (start 57.9 73.685) (end 59.2 73.685) (width 0.25) (layer "F.Cu") (net 10) (tstamp 3bb9c3d4-9a6f-41ac-8d1e-92ed4fe334c0))
+ (segment (start 79.5 76.05) (end 79.5 77.9625) (width 0.25) (layer "F.Cu") (net 10) (tstamp 3f43c2dc-daa2-45ba-b8ca-7ae5aebed882))
+ (segment (start 62.725 76.375) (end 62.75 76.35) (width 0.25) (layer "F.Cu") (net 10) (tstamp 41524d81-a7f7-45af-a8c6-15609b68d1fd))
+ (segment (start 53.323456 66.025966) (end 53.323456 65.773456) (width 0.25) (layer "F.Cu") (net 10) (tstamp 41ab46ed-40f5-461d-81aa-1f02dc069a49))
+ (segment (start 62.935 66.985) (end 63 67.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp 45484f82-420e-44d0-a58e-382bb939dac5))
+ (segment (start 86.95 68.05) (end 88.9125 68.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp 45a58c23-3e6d-4df0-af01-6d5948b0075c))
+ (segment (start 59.75 76.2) (end 59.925 76.375) (width 0.25) (layer "F.Cu") (net 10) (tstamp 47484446-e64c-4a82-88af-15de92cf6ad4))
+ (segment (start 67.5875 61.05) (end 69.4 61.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp 4e7a230a-c1a4-4455-81ee-277835acf4a2))
+ (segment (start 87.5 76.25) (end 87.5 76.4) (width 0.25) (layer "F.Cu") (net 10) (tstamp 50a799a7-f8f3-4f13-9288-b10696e9a7da))
+ (segment (start 69.4 61.05) (end 69.5 61.15) (width 0.25) (layer "F.Cu") (net 10) (tstamp 51f5536d-48d2-4807-be44-93f427952b0e))
+ (segment (start 59.715 76.165) (end 59.925 76.375) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5206328f-de7d-41ba-bad8-f1768b7701cb))
+ (segment (start 86.8 68.2) (end 86.95 68.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5641be26-f5e9-482f-8616-297f17f4eae2))
+ (segment (start 92.5375 57.55) (end 92.5375 58.9125) (width 0.25) (layer "F.Cu") (net 10) (tstamp 59ee13a4-660e-47e2-a73a-01cfe11439e9))
+ (segment (start 74.8 58.034315) (end 74.8 57.8) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5a319d05-1a85-43fe-a179-ebcee7212a03))
+ (segment (start 95.210392 58.282011) (end 95.210392 58.410392) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5cc7655c-62f2-43d2-a7a5-eaa4635dada8))
+ (segment (start 60.455 70.975) (end 60.455 71.055) (width 0.25) (layer "F.Cu") (net 10) (tstamp 665081dc-8354-4d41-8855-bde8901aee4c))
+ (segment (start 97.210392 58.282011) (end 97.210392 58.389608) (width 0.25) (layer "F.Cu") (net 10) (tstamp 6a1ae8ee-dea6-4015-b83e-baf8fcdfaf0f))
+ (segment (start 97.210392 59.389608) (end 97.2 59.4) (width 0.25) (layer "F.Cu") (net 10) (tstamp 6a25c4e1-7129-430c-892b-6eecb6ffdb47))
+ (segment (start 53.323456 65.876544) (end 54.4 64.8) (width 0.4) (layer "F.Cu") (net 10) (tstamp 7043f61a-4f1e-4cab-9031-a6449e41a893))
+ (segment (start 87.5 76.4) (end 87.7 76.6) (width 0.25) (layer "F.Cu") (net 10) (tstamp 71a9f036-1f13-462e-ac9e-81caaaa7f807))
+ (segment (start 61.475 76.375) (end 62.725 76.375) (width 0.25) (layer "F.Cu") (net 10) (tstamp 71aa3829-956e-4ff9-af3f-b06e50ab2b5a))
+ (segment (start 55.65 64.25) (end 55.6 64.2) (width 0.25) (layer "F.Cu") (net 10) (tstamp 7ce4aab5-8271-4432-a4b1-bff168293b45))
+ (segment (start 80 58.6) (end 80 56.6375) (width 0.25) (layer "F.Cu") (net 10) (tstamp 7df9ce6f-7f38-4582-a049-7f92faf1abc9))
+ (segment (start 75 57.6) (end 75 56.6375) (width 0.25) (layer "F.Cu") (net 10) (tstamp 80ace02d-cb21-4f08-bc25-572a9e56ff99))
+ (segment (start 74.8 57.8) (end 75 57.6) (width 0.25) (layer "F.Cu") (net 10) (tstamp 82907d2e-4560-49c2-9cfc-01b127317195))
+ (segment (start 69.7 73.2) (end 69.55 73.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp 8313e187-c805-4927-8002-313a51839243))
+ (segment (start 59.2 73.685) (end 60.015 73.685) (width 0.25) (layer "F.Cu") (net 10) (tstamp 89fb4a63-a18d-4c7e-be12-f061ef4bf0c0))
+ (segment (start 96.210392 58.282011) (end 96.210392 58.339608) (width 0.25) (layer "F.Cu") (net 10) (tstamp 8efe6411-1919-4082-b5b8-393585e068c8))
+ (segment (start 87.7 77.2625) (end 87.7 76.6) (width 0.25) (layer "F.Cu") (net 10) (tstamp 9600911d-0df3-419b-8d4a-8d1432a7daf2))
+ (segment (start 61.85 66.985) (end 62.935 66.985) (width 0.25) (layer "F.Cu") (net 10) (tstamp 97cc05bf-4ed5-449c-b0c8-131e5126a7ac))
+ (segment (start 96.210392 58.282011) (end 96.210392 58.410392) (width 0.25) (layer "F.Cu") (net 10) (tstamp a08c061a-7f5b-4909-b673-0d0a59a012a3))
+ (segment (start 87.3 62.6) (end 87.35 62.55) (width 0.25) (layer "F.Cu") (net 10) (tstamp a1701438-3c8b-4b49-8695-36ec7f9ae4d2))
+ (segment (start 92.5375 58.9125) (end 92.5 58.95) (width 0.25) (layer "F.Cu") (net 10) (tstamp ac8576da-4e00-41a0-9609-eb655e96e10b))
+ (segment (start 98.210392 59.439608) (end 98.2 59.45) (width 0.25) (layer "F.Cu") (net 10) (tstamp bab3431c-ede6-417b-8033-763748a11a9f))
+ (segment (start 60.465 70.985) (end 60.455 70.975) (width 0.25) (layer "F.Cu") (net 10) (tstamp c482f4f0-b441-4301-a9f1-c7f9e511d699))
+ (segment (start 61.85 70.985) (end 61.85 71.85) (width 0.25) (layer "F.Cu") (net 10) (tstamp c8b93f12-bc5c-4ce5-b954-377d903895f1))
+ (segment (start 87.15 77.8125) (end 87 77.9625) (width 0.25) (layer "F.Cu") (net 10) (tstamp cd2580a0-9e4c-4895-a13c-3b2ee33bafc4))
+ (segment (start 60.015 73.685) (end 61.55 72.15) (width 0.25) (layer "F.Cu") (net 10) (tstamp d554632b-6dd0-47f8-b59b-3ce25177ca3e))
+ (segment (start 60.455 71.055) (end 61.55 72.15) (width 0.25) (layer "F.Cu") (net 10) (tstamp d7df1f01-3f56-437b-a452-e88ad90a9805))
+ (segment (start 53.323456 65.773456) (end 52.35 64.8) (width 0.4) (layer "F.Cu") (net 10) (tstamp d8d71ad3-6fd1-4a98-9c1f-70c4fbf3d1d1))
+ (segment (start 98.210392 58.282011) (end 98.210392 58.389608) (width 0.25) (layer "F.Cu") (net 10) (tstamp d8f24303-7e52-49a9-9e82-8d60c3aaa009))
+ (segment (start 79.95 58.65) (end 80 58.6) (width 0.25) (layer "F.Cu") (net 10) (tstamp dd3da890-32ef-4a5a-aea4-e5d2141f1ff1))
+ (segment (start 59.925 76.375) (end 61.475 76.375) (width 0.25) (layer "F.Cu") (net 10) (tstamp dd5f7736-b8aa-44f2-a044-e514d63d48f3))
+ (segment (start 53.323456 66.025966) (end 53.323456 64.760966) (width 0.4) (layer "F.Cu") (net 10) (tstamp de438bc3-2eba-4b9f-95e9-35ce5db157f6))
+ (segment (start 69.55 73.05) (end 67.5875 73.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp e002a979-85bc-451a-a77b-29ce2a8f19f9))
+ (segment (start 79.45 76) (end 79.5 76.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp e1fe6230-75c5-4750-aaea-24a9b80589d8))
+ (segment (start 74.05 76.1) (end 74 76.15) (width 0.25) (layer "F.Cu") (net 10) (tstamp f240e733-157e-4a15-812f-78f42d8a8322))
+ (segment (start 110.23 57.65) (end 112.77 57.65) (width 0.5) (layer "F.Cu") (net 10) (tstamp f8a90052-1a8b-4ce5-a1fd-87db944dceac))
+ (segment (start 74 76.15) (end 74 77.9625) (width 0.25) (layer "F.Cu") (net 10) (tstamp fc13962a-a464-4fa2-b9a6-4c26667104ee))
+ (segment (start 97.210392 58.282011) (end 97.210392 58.460392) (width 0.25) (layer "F.Cu") (net 10) (tstamp fcb4f52a-a6cb-4ca0-970a-4c8a2c0f3942))
+ (segment (start 56.965 64.25) (end 55.65 64.25) (width 0.25) (layer "F.Cu") (net 10) (tstamp fe1ad3bd-92cc-4e1c-8cc9-a77278095945))
+ (via (at 53.323456 64.760966) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 00000000-0000-0000-0000-00005e4ac354))
+ (via (at 54.4 64.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 105d44ff-63b9-4299-9078-473af583971a))
+ (via (at 96.2 59.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 1a7e7b16-fc7c-4e64-9ace-48cc78112437))
+ (via (at 92.5 58.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 24fd922c-d488-4d61-b6dc-9d3e359ccc82))
+ (via (at 69.5 61.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 2bbd6c26-4114-4518-8f4a-c6fdadc046b6))
+ (via (at 62.75 76.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 2f5467a7-bd49-433c-92f2-60a842e66f7b))
+ (via (at 86.8 68.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 48034820-9d25-4020-8e74-d44c1441e803))
+ (via (at 55.6 64.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 4ef07d45-f940-4cb6-bb96-2ddec13fd099))
+ (via (at 87.3 62.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 5c1d6842-15a5-4f73-b198-8836681840a1))
+ (via (at 97.2 59.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 5f059fcf-8990-4db3-9058-7f232d9600e1))
+ (via (at 95.15 59.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 7ac1ccc5-26c5-4b73-8425-7bbec927bf24))
+ (via (at 61.55 72.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 8afe1dbf-1187-4362-8af8-a90ca839a6b3))
+ (via (at 87.5 76.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 90d503cf-92b2-4120-a4b0-03a2eddde893))
+ (via (at 98.2 59.45) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 96ee9b8e-4543-4639-b9ea-44b8baaaf94e))
+ (via (at 79.95 58.65) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp a09cb1c4-cc63-49c7-a35f-4b80c3ba2217))
+ (via (at 79.45 76) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp a4911204-1308-4d17-90a9-1ff5f9c57c9b))
+ (via (at 74.05 76.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp b5cea0b5-192f-476b-a3c8-0c26e2231699))
+ (via (at 52.35 64.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp b6924901-677d-424a-a3f4-52c8dd1fa5f5))
+ (via (at 74.65 58.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp c38f28b6-5bd4-4cf9-b273-1e7b230f6b42))
+ (via (at 69.7 73.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp d337c492-7429-4618-b378-df29f72737e3))
+ (via (at 63 67.05) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp e6e468d8-2bb7-49d5-a4d0-fde0f6bbe8c6))
+ (segment (start 108.37 58.515) (end 109.365 58.515) (width 0.25) (layer "B.Cu") (net 10) (tstamp 00000000-0000-0000-0000-0000620108cf))
+ (segment (start 109.365 58.515) (end 110.23 57.65) (width 0.25) (layer "B.Cu") (net 10) (tstamp 00000000-0000-0000-0000-0000620108d2))
+ (segment (start 79.465 74.7) (end 79.465 75.985) (width 0.25) (layer "B.Cu") (net 10) (tstamp 01c59306-91a3-452b-92b5-9af8f8f257d6))
+ (segment (start 74.665 59.75) (end 74.665 58.765) (width 0.25) (layer "B.Cu") (net 10) (tstamp 188eabba-12a3-47b7-9be1-03f0c5a948eb))
+ (segment (start 86.165 62.535) (end 87.3 62.535) (width 0.25) (layer "B.Cu") (net 10) (tstamp 2765a021-71f1-4136-b72b-81c2c6882946))
+ (segment (start 87.135 75.885) (end 87.5 76.25) (width 0.25) (layer "B.Cu") (net 10) (tstamp 2ad4b4ba-3abd-4313-bed9-1edce936a95e))
+ (segment (start 74.165 74.7) (end 74.165 75.985) (width 0.25) (layer "B.Cu") (net 10) (tstamp 524d7aa8-362f-459a-b2ae-4ca2a0b1612b))
+ (segment (start 74.165 74.7) (end 74.165 71.45) (width 0.25) (layer "B.Cu") (net 10) (tstamp 78a228c9-bbf0-49cf-b917-2dec23b390df))
+ (segment (start 87.135 75.1) (end 87.135 75.885) (width 0.25) (layer "B.Cu") (net 10) (tstamp 86143bb0-7899-4df8-b1df-baa3c0ac7889))
+ (segment (start 74.165 75.985) (end 74.05 76.1) (width 0.25) (layer "B.Cu") (net 10) (tstamp 8fd0b33a-45bf-4216-9d7e-a62e1c071730))
+ (segment (start 69.5 61.15) (end 70.637926 61.15) (width 0.25) (layer "B.Cu") (net 10) (tstamp 92574e8a-729f-48de-afcb-97b4f5e826f8))
+ (segment (start 79.965 58.665) (end 79.95 58.65) (width 0.25) (layer "B.Cu") (net 10) (tstamp 93afd2e8-e16c-4e06-b872-cf0e624aee35))
+ (segment (start 79.965 59.65) (end 79.965 58.665) (width 0.25) (layer "B.Cu") (net 10) (tstamp ab34b936-8ca5-4be1-8599-504cb86609fc))
+ (segment (start 74.165 70.45) (end 74.165 71.45) (width 0.25) (layer "B.Cu") (net 10) (tstamp b83b087e-7ec9-44e7-a1c9-81d5d26bbf79))
+ (segment (start 70.95 73.565) (end 70.065 73.565) (width 0.25) (layer "B.Cu") (net 10) (tstamp bc01f3e7-a131-4f66-8abc-cc13e855d5e5))
+ (segment (start 85.5 68.215) (end 86.785 68.215) (width 0.25) (layer "B.Cu") (net 10) (tstamp be118b00-015b-445a-8fc5-7bf35350fda8))
+ (segment (start 74.665 58.765) (end 74.65 58.75) (width 0.25) (layer "B.Cu") (net 10) (tstamp d5c86a84-6c8b-48b5-b583-2fe7052421ab))
+ (segment (start 86.685 62.535) (end 86.7 62.55) (width 0.25) (layer "B.Cu") (net 10) (tstamp d70bfdec-de0f-45e5-9452-2cd5d12b83b9))
+ (segment (start 86.785 68.215) (end 86.8 68.2) (width 0.25) (layer "B.Cu") (net 10) (tstamp e8312cc4-6502-4783-b578-55c01e0393af))
+ (segment (start 79.465 75.985) (end 79.45 76) (width 0.25) (layer "B.Cu") (net 10) (tstamp ef3a2f4c-5879-4e98-ad30-6b8614410fba))
+ (segment (start 70.065 73.565) (end 69.7 73.2) (width 0.25) (layer "B.Cu") (net 10) (tstamp fd34aa56-ded2-4e97-965a-a39457716f0c))
+ (segment (start 70.637926 61.15) (end 70.697006 61.09092) (width 0.25) (layer "B.Cu") (net 10) (tstamp fe4068b9-89da-4c59-ba51-b5949772f5d8))
+ (via (at 57.15 56.85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 08926936-9ea4-4894-afca-caca47f3c238))
+ (via (at 55.9 56.85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 21ca1c08-b8a3-4bdc-9356-70a4d86ee444))
+ (via (at 55.9 56) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp a7c83b25-afbd-4974-8870-387db8f81a5c))
+ (via (at 57.15 56) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp c7db4903-f95a-49f5-bcce-c52f0ca8defc))
+ (segment (start 55.9 56) (end 55.9 56.85) (width 0.4) (layer "B.Cu") (net 11) (tstamp 2a4f1c24-6486-4fd8-8092-72bb07a81274))
+ (segment (start 57.15 56.85) (end 57.15 56) (width 0.4) (layer "B.Cu") (net 11) (tstamp 2c10387c-3cac-4a7c-bbfb-95d69f41a890))
+ (segment (start 86.065685 67) (end 86.515685 66.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 009b0d62-e9ea-4825-9fdf-befd291c76ce))
+ (segment (start 68.425 71.55) (end 67.5875 71.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 094dc71e-7ea9-4e30-8ba7-749216ec2a8b))
+ (segment (start 65.95 72.12) (end 66.52 71.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 1d1a7683-c090-4798-9b40-7ed0d9f3ce3b))
+ (segment (start 70.384315 71.65) (end 70.284315 71.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 28d267fd-6d61-43bb-9705-8d59d7a44e81))
+ (segment (start 87.240692 57.70001) (end 87.8 57.140702) (width 0.25) (layer "F.Cu") (net 12) (tstamp 312474c5-a081-4cd1-b2e6-730f0718514a))
+ (segment (start 66.52 71.55) (end 66.75 71.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 3d70e675-48ae-4edd-b95d-3ca51e634018))
+ (segment (start 85.5 67) (end 86.065685 67) (width 0.25) (layer "F.Cu") (net 12) (tstamp 45836d49-cd5f-417d-b0f6-c8b43d196a36))
+ (segment (start 65.8 58.95) (end 65.7 58.95) (width 0.25) (layer "F.Cu") (net 12) (tstamp 54d76293-1ce2-46f8-9be7-a3d7f9f28112))
+ (segment (start 70.284315 71.55) (end 68.425 71.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 583b0bf3-0699-44db-b975-a241ad040fa4))
+ (segment (start 65.779546 58.970454) (end 65.8 58.95) (width 0.25) (layer "F.Cu") (net 12) (tstamp 5a010660-4a0b-4680-b361-32d4c3b60537))
+ (segment (start 86 56.6375) (end 86 57.475) (width 0.25) (layer "F.Cu") (net 12) (tstamp 61a18b62-4111-4a9d-8fca-04c4c6f90cc3))
+ (segment (start 86.515685 66.55) (end 88.075 66.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 62cbcc21-2cec-41ab-be06-499e1a78d7e7))
+ (segment (start 88.2 56.3) (end 88.615 56.3) (width 0.25) (layer "F.Cu") (net 12) (tstamp 717b25a7-c9c2-4f6f-b744-a96113325c99))
+ (segment (start 64.7 59.680342) (end 64.779546 59.759888) (width 0.25) (layer "F.Cu") (net 12) (tstamp 72f9157b-77da-4a6d-9880-0711b21f6e23))
+ (segment (start 64.779546 59.759888) (end 64.779546 59.029546) (width 0.25) (layer "F.Cu") (net 12) (tstamp 771cb5c1-62ba-4cca-999e-cdcbe417213c))
+ (segment (start 65.779546 59.759888) (end 65.779546 58.970454) (width 0.25) (layer "F.Cu") (net 12) (tstamp 81ab7ed7-7160-4650-b711-4daa2902dc8b))
+ (segment (start 64.7 58.95) (end 64.8 58.95) (width 0.25) (layer "F.Cu") (net 12) (tstamp 830aee7f-dfce-42cd-85ef-6370f6dc02f5))
+ (segment (start 76.5 74.7) (end 76.5 75.265685) (width 0.25) (layer "F.Cu") (net 12) (tstamp 868b5d0d-f911-4724-9580-d9e69eb9f709))
+ (segment (start 63.779546 59.759888) (end 63.890112 59.759888) (width 0.25) (layer "F.Cu") (net 12) (tstamp 8e75264b-b45e-45ec-b230-7e1dce7d68b3))
+ (segment (start 87.8 57) (end 87.8 56.7) (width 0.25) (layer "F.Cu") (net 12) (tstamp 9404ce4c-2ce6-4f88-8062-13577800d257))
+ (segment (start 86.22501 57.70001) (end 87.240692 57.70001) (width 0.25) (layer "F.Cu") (net 12) (tstamp 97693043-81ba-44a2-b87b-aca6193e0970))
+ (segment (start 86 57.475) (end 86.22501 57.70001) (width 0.25) (layer "F.Cu") (net 12) (tstamp a6dd3322-fcf5-4e4f-88bb-77a3d82a4d05))
+ (segment (start 65.95 72.515) (end 65.95 72.12) (width 0.25) (layer "F.Cu") (net 12) (tstamp b5ffe018-0d06-4a1b-95ee-b5763a35798d))
+ (segment (start 64.779546 59.759888) (end 64.990112 59.759888) (width 0.25) (layer "F.Cu") (net 12) (tstamp b7dfd91c-6180-48d0-832a-f6a5a032a686))
+ (segment (start 88.075 66.55) (end 88.9125 66.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp c2211bf7-6ed0-4800-9f21-d6a078bedba2))
+ (segment (start 87.8 57.140702) (end 87.8 56.865685) (width 0.25) (layer "F.Cu") (net 12) (tstamp ce55d4e5-cb2b-4927-9979-4a7fc840f632))
+ (segment (start 65.779546 59.759888) (end 65.509888 59.759888) (width 0.25) (layer "F.Cu") (net 12) (tstamp dbbbcbf5-ed09-4c20-902c-70f108158aba))
+ (segment (start 66.75 71.55) (end 67.5875 71.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp ed247857-b2a3-4b23-90ad-758c01ae5e8e))
+ (segment (start 64.779546 59.029546) (end 64.7 58.95) (width 0.25) (layer "F.Cu") (net 12) (tstamp ee9a2826-2513-480e-a552-3d07af5bf8a5))
+ (segment (start 87.8 56.7) (end 88.2 56.3) (width 0.25) (layer "F.Cu") (net 12) (tstamp f2c43eeb-76da-49f4-b8e6-cd74ebb3190b))
+ (segment (start 76.5 75.265685) (end 76.5 77.9625) (width 0.25) (layer "F.Cu") (net 12) (tstamp f7758f2a-e5c9-405c-960a-353b36eaf72d))
+ (segment (start 61.35 58.565) (end 61.35 58.55) (width 0.4) (layer "F.Cu") (net 12) (tstamp fab985e9-e679-4dd8-a59c-e3195d08506a))
+ (segment (start 70.95 71.65) (end 70.384315 71.65) (width 0.25) (layer "F.Cu") (net 12) (tstamp ffb86135-b43f-4a42-9aa6-73aa7ba972a9))
+ (via (at 85.5 67) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 3273ec61-4a33-41c2-82bf-cde7c8587c1b))
+ (via (at 65.8 57.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 3d2a15cb-c492-4d9a-b1dd-7d5f099d2d31))
+ (via (at 76.5 74.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 6d1e2df9-cc89-4e18-a541-699f0d20dd45))
+ (via (at 65.8 58.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 848901d5-fdee-4920-a04d-fbc03c912e79))
+ (via (at 64.7 58.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 926b329f-cd0d-410a-bc4a-e36446f8965a))
+ (via (at 87.8 57) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp f321809c-ab7a-4356-9b11-4c0d46c421ba))
+ (via (at 64.7 57.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp f5a3f95b-1a53-41b4-b208-bf168c9d9c6d))
+ (via (at 70.95 71.65) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp fc12372f-6e31-40f9-8043-b00b861f0171))
+ (segment (start 87.8 57) (end 85.23 59.57) (width 1) (layer "In2.Cu") (net 12) (tstamp f87a4771-a0a7-489f-9d85-4574dbea71cc))
+ (segment (start 70.95 70.535) (end 70.95 71.45) (width 0.25) (layer "B.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005e48506a))
+ (segment (start 70.95 71.45) (end 70.95 71.65) (width 0.25) (layer "B.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005e485070))
+ (segment (start 85.5 65.885) (end 85.5 67) (width 0.25) (layer "B.Cu") (net 12) (tstamp 7247fe96-7885-4063-8282-ea2fd2b28b0d))
+ (segment (start 77.515 74.7) (end 76.5 74.7) (width 0.25) (layer "B.Cu") (net 12) (tstamp f2044410-03ac-4994-9652-9e5f480320f0))
+ (segment (start 64.85 77.485) (end 65.85 77.485) (width 0.25) (layer "F.Cu") (net 13) (tstamp 25625d99-d45f-4b2f-9e62-009a122611f4))
+ (segment (start 67.5875 76.05) (end 66.1525 77.485) (width 0.25) (layer "F.Cu") (net 13) (tstamp 2edc487e-09a5-4e4e-9675-a7b323f56380))
+ (segment (start 66.52499 74.45499) (end 66.52499 75.82499) (width 0.25) (layer "F.Cu") (net 13) (tstamp 44e77d57-d16f-4723-a95f-1ac45276c458))
+ (segment (start 66.52499 75.82499) (end 66.75 76.05) (width 0.25) (layer "F.Cu") (net 13) (tstamp 5626e5e1-59f4-4773-828e-16057ddc3518))
+ (segment (start 66.75 76.05) (end 67.5875 76.05) (width 0.25) (layer "F.Cu") (net 13) (tstamp 7700fef1-de5b-4197-be2d-18385e1e18f9))
+ (segment (start 65.95 73.88) (end 66.52499 74.45499) (width 0.25) (layer "F.Cu") (net 13) (tstamp bcfbc157-43ce-49f7-bd18-6a9e2f2f30a3))
+ (segment (start 66.1525 77.485) (end 65.85 77.485) (width 0.25) (layer "F.Cu") (net 13) (tstamp d23840a6-3c61-45ca-968a-bc57332fd7a4))
+ (segment (start 65.95 73.485) (end 65.95 73.88) (width 0.25) (layer "F.Cu") (net 13) (tstamp f931f973-5615-451c-bb04-9a02aede6e6f))
+ (segment (start 99.35 66.35) (end 100.25 65.45) (width 0.25) (layer "F.Cu") (net 14) (tstamp 02491520-945f-40c4-9160-4e5db9ac115d))
+ (segment (start 88.9125 65.05) (end 97.15 65.05) (width 0.25) (layer "F.Cu") (net 14) (tstamp 100847e3-630c-4c13-ba45-180e92370805))
+ (segment (start 100.73 63.515) (end 101.15 63.515) (width 0.25) (layer "F.Cu") (net 14) (tstamp 4c6a1dad-7acf-4a52-99b0-316025d1ab04))
+ (segment (start 98.45 66.35) (end 99.35 66.35) (width 0.25) (layer "F.Cu") (net 14) (tstamp 64269ac3-771b-4c0d-91e0-eafc3dc4a07f))
+ (segment (start 100.25 63.995) (end 100.73 63.515) (width 0.25) (layer "F.Cu") (net 14) (tstamp 909d0bdd-8a15-40f2-9dfd-be4a5d2d6b25))
+ (segment (start 97.15 65.05) (end 98.45 66.35) (width 0.25) (layer "F.Cu") (net 14) (tstamp a43f2e19-4e11-4e86-a12a-58a691d6df28))
+ (segment (start 100.25 65.45) (end 100.25 63.995) (width 0.25) (layer "F.Cu") (net 14) (tstamp a46a2b22-69cf-45fb-b1d2-32ac89bbd3c8))
+ (segment (start 102.138232 61.515) (end 101.57 61.515) (width 0.25) (layer "F.Cu") (net 15) (tstamp 3e011a46-81bd-4ecd-b93e-57dffb1143e5))
+ (segment (start 104.15 63.526768) (end 102.138232 61.515) (width 0.25) (layer "F.Cu") (net 15) (tstamp 4198eb99-d244-457e-8768-395280df1a66))
+ (segment (start 104.15 67.265949) (end 104.15 63.526768) (width 0.25) (layer "F.Cu") (net 15) (tstamp 586ec748-563a-478a-82db-706fb951336a))
+ (segment (start 101.57 61.515) (end 101.15 61.515) (width 0.25) (layer "F.Cu") (net 15) (tstamp b1240f00-ec43-4c0b-9a41-43264db8a893))
+ (segment (start 102.14399 68.851959) (end 102.56399 68.851959) (width 0.25) (layer "F.Cu") (net 15) (tstamp b5d84bc0-4d9a-4d1d-a476-5c6b51309fca))
+ (segment (start 102.56399 68.851959) (end 104.15 67.265949) (width 0.25) (layer "F.Cu") (net 15) (tstamp fe9bdc33-eab1-4bdc-9603-57decb38d2a2))
+ (segment (start 103.6 67.1) (end 103.6 66.7) (width 0.25) (layer "F.Cu") (net 16) (tstamp 056788ec-4ecf-4826-b996-bd884a6442a0))
+ (segment (start 101.132852 68.441589) (end 101.624441 67.95) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4b042b6c-c042-4cf1-ba6e-bd77c51dbedb))
+ (segment (start 102.801999 66.525001) (end 102.35 66.073002) (width 0.25) (layer "F.Cu") (net 16) (tstamp 53ae21b8-f187-4817-8c27-1f06278d249b))
+ (segment (start 102.75 67.95) (end 103.6 67.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 792ace59-9f73-49b7-92df-01568ab2b00b))
+ (segment (start 102.35 66.073002) (end 102.35 63.895) (width 0.25) (layer "F.Cu") (net 16) (tstamp 83d85a81-e014-4ee9-9433-a9a045c80893))
+ (segment (start 103.6 66.7) (end 103.425001 66.525001) (width 0.25) (layer "F.Cu") (net 16) (tstamp 900cb6c8-1d05-4537-a4f0-9a7cc1a2ea1c))
+ (segment (start 101.132852 68.836589) (end 101.132852 68.441589) (width 0.25) (layer "F.Cu") (net 16) (tstamp 90f2ca05-313f-4af8-87b1-a8109224a221))
+ (segment (start 101.624441 67.95) (end 102.75 67.95) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9e5fe65d-f158-4eb5-af93-2b5d0b9a0d55))
+ (segment (start 102.73 63.515) (end 103.15 63.515) (width 0.25) (layer "F.Cu") (net 16) (tstamp a86cc026-cc17-4a81-85bf-4c26f61b9f32))
+ (segment (start 103.425001 66.525001) (end 102.801999 66.525001) (width 0.25) (layer "F.Cu") (net 16) (tstamp c0c62e93-8e84-4f2b-96ae-e90b55e0550a))
+ (segment (start 102.35 63.895) (end 102.73 63.515) (width 0.25) (layer "F.Cu") (net 16) (tstamp c1c05ce7-1c25-4382-b3b9-d3ec327783d4))
+ (segment (start 98.815832 63.849168) (end 99.15 63.515) (width 0.25) (layer "F.Cu") (net 17) (tstamp 278deae2-fb37-4957-b2cb-afac30cacb12))
+ (segment (start 88.9125 64.55) (end 98.096768 64.55) (width 0.25) (layer "F.Cu") (net 17) (tstamp b4fbe1fb-a9a3-4020-9a82-d3fa1900cd85))
+ (segment (start 98.7976 63.849168) (end 98.815832 63.849168) (width 0.25) (layer "F.Cu") (net 17) (tstamp b500fd76-a613-4f44-aac4-99213e86ff44))
+ (segment (start 98.096768 64.55) (end 98.7976 63.849168) (width 0.25) (layer "F.Cu") (net 17) (tstamp bc05cdd5-f72f-4c21-b397-0fa889871114))
+ (segment (start 101.15 67.769441) (end 101.15 66.485) (width 0.25) (layer "F.Cu") (net 18) (tstamp 31070a40-077c-4123-96dd-e39f8a0007ce))
+ (segment (start 100.082852 68.836589) (end 101.15 67.769441) (width 0.25) (layer "F.Cu") (net 18) (tstamp 70186eba-dcad-4878-bf16-887f6eee49df))
+ (segment (start 101.15 65.515) (end 100.815832 65.849168) (width 0.25) (layer "F.Cu") (net 19) (tstamp 19a5aacd-255a-4bf3-89c1-efd2ab61016c))
+ (segment (start 88.9125 64.05) (end 90.800003 64.05) (width 0.25) (layer "F.Cu") (net 19) (tstamp 27e3c71f-5a63-4710-8adf-b600b805ce02))
+ (segment (start 99.5364 66.80001) (end 98.20001 66.80001) (width 0.25) (layer "F.Cu") (net 19) (tstamp 3dbc1b14-20e2-4dcb-8347-d33c13d3f0e0))
+ (segment (start 92.040675 65.50001) (end 96.90001 65.50001) (width 0.25) (layer "F.Cu") (net 19) (tstamp 4b534cd1-c414-4029-9164-e46766faf60e))
+ (segment (start 100.487242 65.849168) (end 99.5364 66.80001) (width 0.25) (layer "F.Cu") (net 19) (tstamp 5fba7ff8-02f1-4ac0-93c4-5bd7becbcf63))
+ (segment (start 91.2 65.775) (end 91.765685 65.775) (width 0.25) (layer "F.Cu") (net 19) (tstamp 60960af7-b938-44a8-82b5-e9c36f2e6817))
+ (segment (start 98.20001 66.80001) (end 96.90001 65.50001) (width 0.25) (layer "F.Cu") (net 19) (tstamp 9c2a29da-c83f-4ec8-bbcf-9d775812af04))
+ (segment (start 100.815832 65.849168) (end 100.487242 65.849168) (width 0.25) (layer "F.Cu") (net 19) (tstamp a25ec672-f935-4d0c-ae67-7c3ebe078d85))
+ (segment (start 91.765685 65.775) (end 92.040675 65.50001) (width 0.25) (layer "F.Cu") (net 19) (tstamp d33c6077-a8ec-48ca-b0e0-97f3539ef54c))
+ (segment (start 90.800003 64.05) (end 91.05 63.800003) (width 0.25) (layer "F.Cu") (net 19) (tstamp f8e92727-5789-4ef6-9dc3-be888ad72e45))
+ (via (at 91.2 65.775) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 19) (tstamp 4be2b882-65e4-4552-9482-9d622928de2f))
+ (via (at 91.05 63.800003) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 19) (tstamp de588ed9-a530-46f0-aa03-e0307ff72286))
+ (segment (start 91.05 65.625) (end 91.2 65.775) (width 0.25) (layer "B.Cu") (net 19) (tstamp 8fbab3d0-cb5e-47c7-8764-6fa3c0e4e5f7))
+ (segment (start 91.05 63.800003) (end 91.05 65.625) (width 0.25) (layer "B.Cu") (net 19) (tstamp ce3f834f-337d-4957-8d02-e900d7024614))
+ (segment (start 88.9125 63.55) (end 89.918225 63.55) (width 0.25) (layer "F.Cu") (net 20) (tstamp 2ba21493-929b-4122-ac0f-7aeaf8602cef))
+ (segment (start 103.15 65.8) (end 103.15 64.485) (width 0.25) (layer "F.Cu") (net 20) (tstamp 6e508bf2-c65e-4107-867d-a3cf9a86c69e))
+ (segment (start 90.668225 62.8) (end 91.05 62.8) (width 0.25) (layer "F.Cu") (net 20) (tstamp 73a6ec8e-8641-4014-be28-4611d398be32))
+ (segment (start 89.918225 63.55) (end 90.668225 62.8) (width 0.25) (layer "F.Cu") (net 20) (tstamp 8aa8d47e-f495-4049-8ac9-7f2ac3205412))
+ (via (at 103.15 65.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 20) (tstamp 3388a811-b444-4ecc-a564-b22a1b731ab4))
+ (via (at 91.05 62.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 20) (tstamp 47957453-fce7-4d98-833c-e34bb8a852a5))
+ (segment (start 103.15 63.6) (end 103.15 65.8) (width 0.25) (layer "B.Cu") (net 20) (tstamp 846ce0b5-f99e-4df4-8803-62f82ae6f3e3))
+ (segment (start 91.05 62.8) (end 102.35 62.8) (width 0.25) (layer "B.Cu") (net 20) (tstamp e8e598ff-c991-433d-8dd6-c9fce2fe1eaa))
+ (segment (start 102.35 62.8) (end 103.15 63.6) (width 0.25) (layer "B.Cu") (net 20) (tstamp fb126c26-740a-4781-a5dd-5ef5455e4878))
+ (segment (start 99.174847 65.499847) (end 99.174847 64.509847) (width 0.25) (layer "F.Cu") (net 21) (tstamp 02289c61-13df-495e-a809-03e3a71bb201))
+ (segment (start 99.032852 68.567148) (end 100.1 67.5) (width 0.25) (layer "F.Cu") (net 21) (tstamp 5160b3d5-0622-412f-84ed-9900be82a5a6))
+ (segment (start 99.174847 64.509847) (end 99.15 64.485) (width 0.25) (layer "F.Cu") (net 21) (tstamp 8202d57b-d5d2-4a80-8c03-3c6bdbbd1ddf))
+ (segment (start 99.032852 68.836589) (end 99.032852 68.567148) (width 0.25) (layer "F.Cu") (net 21) (tstamp af7ed34f-31b5-4744-97e9-29e5f4d85343))
+ (via (at 100.1 67.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 21) (tstamp 052acc87-8ff9-4162-8f55-f7121d221d0a))
+ (via (at 99.174847 65.499847) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 21) (tstamp cfcae4a3-5d05-48fe-9a5f-9dcd4da4bd65))
+ (segment (start 100.1 66.425) (end 99.174847 65.499847) (width 0.25) (layer "B.Cu") (net 21) (tstamp 2cb05d43-df82-498c-aae1-4b1a0a350f82))
+ (segment (start 100.1 67.5) (end 100.1 66.425) (width 0.25) (layer "B.Cu") (net 21) (tstamp abe3c03e-744a-4406-8e50-6a10745f0c43))
+ (segment (start 101.79501 65.13001) (end 101.484168 64.819168) (width 0.25) (layer "F.Cu") (net 22) (tstamp 617498ce-8469-4f4b-9f2b-09a2437561eb))
+ (segment (start 97.982852 68.836589) (end 97.982852 68.267148) (width 0.25) (layer "F.Cu") (net 22) (tstamp 6999550c-f78a-4aae-9243-1b3881f5bb3b))
+ (segment (start 102.15 66.584315) (end 101.79501 66.229325) (width 0.25) (layer "F.Cu") (net 22) (tstamp 7e90deb5-aef9-4d2b-a440-4cb0dbfaaa93))
+ (segment (start 101.79501 66.229325) (end 101.79501 65.13001) (width 0.25) (layer "F.Cu") (net 22) (tstamp 87a32952-c8e5-40ba-af1d-1a8829a6c906))
+ (segment (start 97.982852 68.267148) (end 98.65 67.6) (width 0.25) (layer "F.Cu") (net 22) (tstamp a2a33a3d-c501-4e33-b67b-7d07ef8aa4a7))
+ (segment (start 102.15 67.15) (end 102.15 66.584315) (width 0.25) (layer "F.Cu") (net 22) (tstamp a8a389df-8d18-4e17-a74f-f60d5d77371e))
+ (segment (start 101.484168 64.819168) (end 101.15 64.485) (width 0.25) (layer "F.Cu") (net 22) (tstamp faa605d9-8c1c-4d31-b7c1-3dc31a22eb34))
+ (via (at 98.65 67.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 22) (tstamp 44a8a96b-3053-4222-9241-aa484f5ebe13))
+ (via (at 102.15 67.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 22) (tstamp ebadfd51-5a1d-4821-b341-8a1acb4abb01))
+ (segment (start 98.65 67.6) (end 99.049999 67.999999) (width 0.25) (layer "B.Cu") (net 22) (tstamp 2f4c659c-2ccb-4fb1-808e-7868af588a89))
+ (segment (start 99.049999 67.999999) (end 99.526997 67.999999) (width 0.25) (layer "B.Cu") (net 22) (tstamp 37f8ba3f-cca4-4b16-b699-07a704844fc9))
+ (segment (start 99.776998 68.25) (end 101.05 68.25) (width 0.25) (layer "B.Cu") (net 22) (tstamp e1c71a89-4e45-4a56-a6ef-342af5f92d5c))
+ (segment (start 101.05 68.25) (end 102.15 67.15) (width 0.25) (layer "B.Cu") (net 22) (tstamp e20929e2-2c15-4a75-b1ed-9caa9bd27df7))
+ (segment (start 99.526997 67.999999) (end 99.776998 68.25) (width 0.25) (layer "B.Cu") (net 22) (tstamp f6a5cab3-78e5-4acf-8c67-f401df2846d0))
+ (segment (start 90.75001 62.05001) (end 100.696778 62.05001) (width 0.25) (layer "F.Cu") (net 23) (tstamp 0b43a8fb-b3d3-4444-a4b0-cf952c07dcfe))
+ (segment (start 100.7976 62.150832) (end 100.815832 62.150832) (width 0.25) (layer "F.Cu") (net 23) (tstamp 1020b588-7eb0-4b70-bbff-c77a867c3142))
+ (segment (start 90.75 62.05) (end 90.75001 62.05001) (width 0.25) (layer "F.Cu") (net 23) (tstamp 6df433d7-73cd-4877-8d2e-047853b9077c))
+ (segment (start 88.9125 63.05) (end 89.75 63.05) (width 0.25) (layer "F.Cu") (net 23) (tstamp aa0e7fe7-e9c2-477f-bcb2-53a1ebd9e3a6))
+ (segment (start 100.696778 62.05001) (end 100.7976 62.150832) (width 0.25) (layer "F.Cu") (net 23) (tstamp d5b0938b-9efb-4b58-8ac4-d92da9ed2e30))
+ (segment (start 89.75 63.05) (end 90.75 62.05) (width 0.25) (layer "F.Cu") (net 23) (tstamp fd146ca2-8fb8-4c71-9277-84f69bc5d3fc))
+ (segment (start 100.815832 62.150832) (end 101.15 62.485) (width 0.25) (layer "F.Cu") (net 23) (tstamp fe431a80-868e-482d-aa91-c96eb8387d6a))
+ (segment (start 107.94506 73.55) (end 108.17006 73.775) (width 0.25) (layer "F.Cu") (net 24) (tstamp 36210d52-4f9a-42bc-a022-019a63c67fc2))
+ (segment (start 102.2 73.55) (end 107.08 73.55) (width 0.25) (layer "F.Cu") (net 24) (tstamp 3e147ce1-21a6-4e77-a3db-fd00d575cd22))
+ (segment (start 88.9125 73.55) (end 102.2 73.55) (width 0.25) (layer "F.Cu") (net 24) (tstamp 5bb32dcb-8a97-4374-8a16-bc17822d4db3))
+ (segment (start 107.08 73.55) (end 107.94506 73.55) (width 0.25) (layer "F.Cu") (net 24) (tstamp 67d6d490-a9a4-4ec7-8744-7c7abc821282))
+ (via (at 108.17006 73.775) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 24) (tstamp 1c92f382-4ec3-478f-a1ca-afadd3087787))
+ (segment (start 108.17006 73.775) (end 109.670061 72.274999) (width 0.25) (layer "B.Cu") (net 24) (tstamp 4648968b-aa58-4f57-8f45-54b088364670))
+ (segment (start 112.77 71.45) (end 112.77 70.35) (width 0.25) (layer "B.Cu") (net 24) (tstamp a7cad282-51c3-4f24-be5e-311c2c5e959b))
+ (segment (start 111.945001 72.274999) (end 112.77 71.45) (width 0.25) (layer "B.Cu") (net 24) (tstamp c860c4e9-3ddd-4065-857c-b9aedc01e6ad))
+ (segment (start 109.670061 72.274999) (end 111.945001 72.274999) (width 0.25) (layer "B.Cu") (net 24) (tstamp ed1f5df2-cfb6-4083-a9e5-5d196546ef9b))
+ (segment (start 111.594999 70.724003) (end 111.594999 68.985001) (width 0.25) (layer "F.Cu") (net 25) (tstamp 7a6d9a4e-fe6a-4427-9f0c-a10fd3ceb923))
+ (segment (start 109.269002 73.05) (end 111.594999 70.724003) (width 0.25) (layer "F.Cu") (net 25) (tstamp b31ebd25-cf4c-4c3e-b83d-0ec793b65cd9))
+ (segment (start 88.9125 73.05) (end 109.269002 73.05) (width 0.25) (layer "F.Cu") (net 25) (tstamp b8382866-f10b-4adc-84fc-f6e5dd44681b))
+ (segment (start 111.594999 68.985001) (end 111.920001 68.659999) (width 0.25) (layer "F.Cu") (net 25) (tstamp d1422f38-9fce-4f5e-878a-341530beaf9c))
+ (segment (start 111.920001 68.659999) (end 112.77 67.81) (width 0.25) (layer "F.Cu") (net 25) (tstamp d91b4df3-08ca-4c95-92de-3004566cf2e7))
+ (segment (start 92.95 72.55) (end 93.2 72.3) (width 0.25) (layer "F.Cu") (net 26) (tstamp 058e77a4-10af-4bc8-a984-5984d3bbee4c))
+ (segment (start 88.9125 72.55) (end 92.95 72.55) (width 0.25) (layer "F.Cu") (net 26) (tstamp 9bac5a37-2a55-41dd-96ea-ec02b69e3ef4))
+ (via (at 93.2 72.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 26) (tstamp 18e95a1d-9d1d-4b93-8e4c-2d03c344acc0))
+ (segment (start 109.02 70.95) (end 109.02 69.83641) (width 0.25) (layer "B.Cu") (net 26) (tstamp 0bbd2e43-3eb0-4216-861b-a58366dbe43d))
+ (segment (start 109.871409 68.985001) (end 110.794001 68.985001) (width 0.25) (layer "B.Cu") (net 26) (tstamp 1eca5f72-2356-4c55-919d-595727faf3b9))
+ (segment (start 107.67 72.3) (end 109.02 70.95) (width 0.25) (layer "B.Cu") (net 26) (tstamp 44e993be-f2df-4e61-a598-dfd6e106a208))
+ (segment (start 93.2 72.3) (end 107.67 72.3) (width 0.25) (layer "B.Cu") (net 26) (tstamp 45b7fe01-a2fa-40c2-a3a2-4a9ae7c34dba))
+ (segment (start 111.594999 66.445001) (end 111.920001 66.119999) (width 0.25) (layer "B.Cu") (net 26) (tstamp 4c4b4317-29d0-438a-b331-525ede18773a))
+ (segment (start 110.794001 68.985001) (end 111.594999 68.184003) (width 0.25) (layer "B.Cu") (net 26) (tstamp 55fa5fa0-9426-4801-b40c-682e71189d8a))
+ (segment (start 109.02 69.83641) (end 109.871409 68.985001) (width 0.25) (layer "B.Cu") (net 26) (tstamp 5dffd1d6-faf9-418e-b9a0-84fb6b6b4454))
+ (segment (start 111.594999 68.184003) (end 111.594999 66.445001) (width 0.25) (layer "B.Cu") (net 26) (tstamp 6239967a-77bd-4ec9-89cd-e04efd8dbe26))
+ (segment (start 111.920001 66.119999) (end 112.77 65.27) (width 0.25) (layer "B.Cu") (net 26) (tstamp 83d9db3e-661a-47bf-b26c-99313ad8bac9))
+ (segment (start 88.9125 72.05) (end 92.036753 72.05) (width 0.25) (layer "F.Cu") (net 27) (tstamp 29ec1a54-dea0-4d1a-a3dc-a7441a09bb9e))
+ (segment (start 92.036753 72.05) (end 92.467205 71.619548) (width 0.25) (layer "F.Cu") (net 27) (tstamp 5778dc8c-60fe-435e-b75a-362eae1b81ab))
+ (via (at 92.467205 71.619548) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 27) (tstamp 020b7e1f-8bb0-4882-91d4-7894bf18db84))
+ (segment (start 108.56999 69.65001) (end 108.92 69.3) (width 0.25) (layer "B.Cu") (net 27) (tstamp 0ab1512b-eb91-4574-b11f-326e0ff10082))
+ (segment (start 108.92 67.380998) (end 109.855997 66.445001) (width 0.25) (layer "B.Cu") (net 27) (tstamp 18208121-3872-4be3-a687-40854be3e1c8))
+ (segment (start 110.958589 66.445001) (end 111.594999 65.808591) (width 0.25) (layer "B.Cu") (net 27) (tstamp 2cd2fee2-51b2-4fcd-8c94-c435e6791358))
+ (segment (start 107.47 71.85) (end 108.56999 70.75001) (width 0.25) (layer "B.Cu") (net 27) (tstamp 3768cce7-1e64-480e-bb38-0c6794a852ac))
+ (segment (start 111.594999 65.808591) (end 111.594999 63.905001) (width 0.25) (layer "B.Cu") (net 27) (tstamp 3d213c37-de80-490e-9f45-2814d3fc958b))
+ (segment (start 109.855997 66.445001) (end 110.958589 66.445001) (width 0.25) (layer "B.Cu") (net 27) (tstamp 84d5cf13-52aa-4648-82e7-8be6e886a6b2))
+ (segment (start 92.467205 71.619548) (end 92.867204 71.219549) (width 0.25) (layer "B.Cu") (net 27) (tstamp 9a458d6a-a84c-4faf-913e-90bab231d3f8))
+ (segment (start 93.192551 71.219549) (end 93.823002 71.85) (width 0.25) (layer "B.Cu") (net 27) (tstamp a1d977e9-aa2c-4b7a-b2e3-8ff3b816e1f2))
+ (segment (start 111.920001 63.579999) (end 112.77 62.73) (width 0.25) (layer "B.Cu") (net 27) (tstamp a2a4b1ad-c51a-492d-9e99-410eec4f55a3))
+ (segment (start 92.867204 71.219549) (end 93.192551 71.219549) (width 0.25) (layer "B.Cu") (net 27) (tstamp a4a80e68-9a9c-4dac-84a7-a9f3c47a0961))
+ (segment (start 111.594999 63.905001) (end 111.920001 63.579999) (width 0.25) (layer "B.Cu") (net 27) (tstamp b9f8b708-1745-43ec-9646-59495cbc6e07))
+ (segment (start 108.56999 70.75001) (end 108.56999 69.65001) (width 0.25) (layer "B.Cu") (net 27) (tstamp c202ddee-78ab-4ebb-beca-559aaf118430))
+ (segment (start 108.92 69.3) (end 108.92 67.380998) (width 0.25) (layer "B.Cu") (net 27) (tstamp de2abbd8-9b48-47ba-b77e-4c65ca048af6))
+ (segment (start 93.823002 71.85) (end 107.47 71.85) (width 0.25) (layer "B.Cu") (net 27) (tstamp e5889358-36b5-4652-9d71-4d4aa652a144))
+ (segment (start 109.07 72.6) (end 94.55 72.6) (width 0.25) (layer "F.Cu") (net 28) (tstamp 0e416ef5-3e03-4fa4-b2a6-3ab634a5ee03))
+ (segment (start 110.23 71.452592) (end 110.217408 71.452592) (width 0.25) (layer "F.Cu") (net 28) (tstamp 3dfbccca-f469-4a6f-a8bd-5f55435b5cfa))
+ (segment (start 110.217408 71.452592) (end 109.07 72.6) (width 0.25) (layer "F.Cu") (net 28) (tstamp 751752b1-1f0f-490c-ba43-2d34c357b41e))
+ (segment (start 110.23 70.35) (end 110.23 71.452592) (width 0.25) (layer "F.Cu") (net 28) (tstamp a353a360-a1da-42d3-a5f2-38aafc184a50))
+ (segment (start 94.55 72.6) (end 91 69.05) (width 0.25) (layer "F.Cu") (net 28) (tstamp d3dd0ba2-2496-4e95-8d54-12ee57bcbce2))
+ (segment (start 91 69.05) (end 88.9125 69.05) (width 0.25) (layer "F.Cu") (net 28) (tstamp e463ba2a-1cbc-4995-82d8-59710b3fcd2f))
+ (segment (start 89.79999 68.59999) (end 91.19999 68.59999) (width 0.25) (layer "F.Cu") (net 29) (tstamp 073c8287-235c-4712-a9a0-60a07a1119d5))
+ (segment (start 88.9125 68.55) (end 89.75 68.55) (width 0.25) (layer "F.Cu") (net 29) (tstamp 19264aae-fe9e-4afc-84ac-56ec33a3b20d))
+ (segment (start 93.4 70.81359) (end 94.73641 72.15) (width 0.25) (layer "F.Cu") (net 29) (tstamp 1a734ace-0cd0-489a-9380-915322ff12bd))
+ (segment (start 105.89 72.15) (end 110.23 67.81) (width 0.25) (layer "F.Cu") (net 29) (tstamp 20e1c48c-ae14-4a88-835e-87633cbb6a1c))
+ (segment (start 93.4 70.8) (end 93.4 70.81359) (width 0.25) (layer "F.Cu") (net 29) (tstamp 4d6dfe4f-0070-449e-bb5c-a3b1d4b26ba7))
+ (segment (start 89.75 68.55) (end 89.79999 68.59999) (width 0.25) (layer "F.Cu") (net 29) (tstamp 7e232027-e1fd-4d55-a751-dd67130d7d22))
+ (segment (start 91.19999 68.59999) (end 93.4 70.8) (width 0.25) (layer "F.Cu") (net 29) (tstamp c11e04e4-f63f-46b9-9a9c-9c7df49e614a))
+ (segment (start 94.73641 72.15) (end 105.89 72.15) (width 0.25) (layer "F.Cu") (net 29) (tstamp ed9596e5-f4f2-4fc2-bb34-16ad21b3b120))
+ (segment (start 109.02 67.280998) (end 109.02 68.3) (width 0.25) (layer "F.Cu") (net 30) (tstamp 08ac4c42-16f0-4513-b91e-bf0b3a111257))
+ (segment (start 109.380001 66.119999) (end 109.380001 66.920997) (width 0.25) (layer "F.Cu") (net 30) (tstamp 09ab0b5c-3dee-42c8-b9e5-de0673874ccd))
+ (segment (start 90.78641 67.55) (end 94.9364 71.69999) (width 0.25) (layer "F.Cu") (net 30) (tstamp 2b7c4f37-42c0-4571-a44b-b808484d3d74))
+ (segment (start 110.23 65.27) (end 109.380001 66.119999) (width 0.25) (layer "F.Cu") (net 30) (tstamp 35431843-170f-401f-88d7-da91172bed86))
+ (segment (start 94.9364 71.69999) (end 105.62001 71.69999) (width 0.25) (layer "F.Cu") (net 30) (tstamp 4c717b47-484c-4d70-8fcd-83c406ff2d17))
+ (segment (start 109.380001 66.920997) (end 109.02 67.280998) (width 0.25) (layer "F.Cu") (net 30) (tstamp 6fddc16f-ccc1-4ade-884c-d6efda461da8))
+ (segment (start 88.9125 67.55) (end 90.78641 67.55) (width 0.25) (layer "F.Cu") (net 30) (tstamp 85d211d4-76e7-4e49-a9c8-2e1cc8ab5805))
+ (segment (start 109.02 68.3) (end 105.62001 71.69999) (width 0.25) (layer "F.Cu") (net 30) (tstamp e0781b80-6f1b-4d08-b53f-b7d3f582e2ea))
+ (segment (start 95.07282 71.2) (end 105.47 71.2) (width 0.25) (layer "F.Cu") (net 31) (tstamp 133d5403-9be3-4603-824b-d3b76147e745))
+ (segment (start 108.56999 66.2936) (end 108.56999 68.10001) (width 0.25) (layer "F.Cu") (net 31) (tstamp 15a0f067-831a-4ddb-bdef-5fb7df267d8f))
+ (segment (start 109.054999 63.905001) (end 109.054999 65.808591) (width 0.25) (layer "F.Cu") (net 31) (tstamp 1ab4dceb-24cc-4050-aa74-e8fbb39d3760))
+ (segment (start 88.9125 67.05) (end 90.92282 67.05) (width 0.25) (layer "F.Cu") (net 31) (tstamp 4fc3183f-297c-42b7-b3bd-25a9ea18c844))
+ (segment (start 109.054999 65.808591) (end 108.56999 66.2936) (width 0.25) (layer "F.Cu") (net 31) (tstamp 6f78c1fb-f693-4737-b750-74e50c35a564))
+ (segment (start 90.92282 67.05) (end 95.07282 71.2) (width 0.25) (layer "F.Cu") (net 31) (tstamp 9b315454-a4a0-4952-bdbe-d4a8e96c16f9))
+ (segment (start 110.23 62.73) (end 109.054999 63.905001) (width 0.25) (layer "F.Cu") (net 31) (tstamp bbb99edd-f016-43ea-b1c7-0bcdd1915ee8))
+ (segment (start 105.47 71.2) (end 108.56999 68.10001) (width 0.25) (layer "F.Cu") (net 31) (tstamp de5c2064-b9e1-4057-a8cc-9308019ef4d3))
+ (segment (start 57.935 66.005) (end 57.915 66.025) (width 0.25) (layer "F.Cu") (net 32) (tstamp 0e18138e-f1a3-4288-bb34-3b6bcfb64ff6))
+ (segment (start 57.935 64.25) (end 57.935 66.005) (width 0.25) (layer "F.Cu") (net 32) (tstamp d9198b20-68ab-4f03-9039-95a74aeba0d6))
+ (segment (start 80.6 59.923002) (end 82 58.523002) (width 0.25) (layer "F.Cu") (net 33) (tstamp 7684f860-395c-40b3-8cc0-a644dcdbc220))
+ (segment (start 80.6 61.6) (end 80.6 59.923002) (width 0.25) (layer "F.Cu") (net 33) (tstamp aaf0fd50-bb22-4408-be5a-88f5ba4193be))
+ (segment (start 82 58.523002) (end 82 57.475) (width 0.25) (layer "F.Cu") (net 33) (tstamp acd72527-a657-482d-a530-89a1347375fc))
+ (segment (start 82 57.475) (end 82 56.6375) (width 0.25) (layer "F.Cu") (net 33) (tstamp dbfb14d7-1f97-4dd2-9004-1d129d3b4221))
+ (via (at 80.6 61.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 33) (tstamp e6cd2cdd-d49b-4491-8a15-4c46254b5c0a))
+ (segment (start 89.444001 54.975001) (end 90.055001 54.364001) (width 0.25) (layer "B.Cu") (net 33) (tstamp 25247d0c-5910-484b-9651-5750d422a450))
+ (segment (start 85.186811 55.425011) (end 87.090401 55.425011) (width 0.25) (layer "B.Cu") (net 33) (tstamp 3675ad1a-972f-4046-b23a-e6ca04304035))
+ (segment (start 84.711803 55.900019) (end 85.186811 55.425011) (width 0.25) (layer "B.Cu") (net 33) (tstamp 3b19a97f-624a-48d9-8072-15bdeede0fff))
+ (segment (start 83.500018 56.009212) (end 83.60921 55.90002) (width 0.25) (layer "B.Cu") (net 33) (tstamp 44509293-79e2-4fab-8860-b0cecb591afa))
+ (segment (start 90.055001 54.364001) (end 90.055001 50.885997) (width 0.25) (layer "B.Cu") (net 33) (tstamp 59142adb-6887-41fc-851e-9a7f51511d60))
+ (segment (start 90.855999 50.084999) (end 95.324999 50.084999) (width 0.25) (layer "B.Cu") (net 33) (tstamp 5b04e20f-8575-4362-b040-2e2133d670c8))
+ (segment (start 82.02282 61.2) (end 83.500018 59.722802) (width 0.25) (layer "B.Cu") (net 33) (tstamp 6ae901e7-3f37-4fdc-9fbb-f82666744826))
+ (segment (start 80.999999 61.200001) (end 82.02282 61.2) (width 0.25) (layer "B.Cu") (net 33) (tstamp 87f44303-a6e8-48e5-bb6d-f89abb09a999))
+ (segment (start 90.055001 50.885997) (end 90.855999 50.084999) (width 0.25) (layer "B.Cu") (net 33) (tstamp 8e715b73-353f-4cfc-aa33-1eac54b89b6c))
+ (segment (start 87.090401 55.425011) (end 87.540411 54.975001) (width 0.25) (layer "B.Cu") (net 33) (tstamp 92ec60c8-e914-4456-8d37-4b88fc0eb9c6))
+ (segment (start 80.6 61.6) (end 80.999999 61.200001) (width 0.25) (layer "B.Cu") (net 33) (tstamp acfcaba7-a8b8-4c21-a793-d3e0373f34dc))
+ (segment (start 83.60921 55.90002) (end 84.711803 55.900019) (width 0.25) (layer "B.Cu") (net 33) (tstamp b7ed4c31-5417-4fb5-9261-7dca42c1c776))
+ (segment (start 95.324999 50.084999) (end 95.650001 50.410001) (width 0.25) (layer "B.Cu") (net 33) (tstamp baa534a0-611b-4c48-8e86-5106dc852bd8))
+ (segment (start 83.500018 59.722802) (end 83.500018 56.009212) (width 0.25) (layer "B.Cu") (net 33) (tstamp bb5e8a0f-2ed5-4c2a-91b7-cb63c4c66e15))
+ (segment (start 95.650001 50.410001) (end 96.5 51.26) (width 0.25) (layer "B.Cu") (net 33) (tstamp edb2db40-12f7-45b3-a514-2a1299ac0231))
+ (segment (start 87.540411 54.975001) (end 89.444001 54.975001) (width 0.25) (layer "B.Cu") (net 33) (tstamp f58fca4c-73af-416f-b236-f3bb62b8fd00))
+ (segment (start 81.4 59.759412) (end 81.5 59.659412) (width 0.25) (layer "F.Cu") (net 34) (tstamp 02b1295e-cf95-47ff-9c57-f8ada28f2e94))
+ (segment (start 82.45001 58.659412) (end 82.450009 58.709403) (width 0.25) (layer "F.Cu") (net 34) (tstamp 4aee84d1-0859-48ac-a053-5a981ee1b24a))
+ (segment (start 82.5 56.6375) (end 82.5 58.659412) (width 0.25) (layer "F.Cu") (net 34) (tstamp 5fc4054a-b929-433e-a947-747fb7ed003d))
+ (segment (start 82.450009 58.709403) (end 81.5 59.659412) (width 0.25) (layer "F.Cu") (net 34) (tstamp 617edc57-1dbf-4296-b365-6d76f68a1c0f))
+ (segment (start 82.5 58.659412) (end 82.45001 58.659412) (width 0.25) (layer "F.Cu") (net 34) (tstamp 811f5389-c208-4640-ab1a-b454491bb330))
+ (segment (start 81.4 62.3) (end 81.4 59.759412) (width 0.25) (layer "F.Cu") (net 34) (tstamp d4876469-b949-49ce-b8fe-43cb458692a4))
+ (via (at 81.4 62.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 34) (tstamp b6f041a4-3ea0-418b-94a2-50c938beafa2))
+ (segment (start 81.959227 61.900001) (end 83.950028 59.909202) (width 0.25) (layer "B.Cu") (net 34) (tstamp 245a6fb4-6361-4438-82ca-8861d43ca7f5))
+ (segment (start 94.524001 52.624999) (end 95.135001 53.235999) (width 0.25) (layer "B.Cu") (net 34) (tstamp 296ded40-ed53-4798-8db4-dad7b794226b))
+ (segment (start 81.799999 61.900001) (end 81.959227 61.900001) (width 0.25) (layer "B.Cu") (net 34) (tstamp 2e0f69a6-955c-44f2-af4d-b4ad566ef54b))
+ (segment (start 87.251822 55.9) (end 87.726811 55.425011) (width 0.25) (layer "B.Cu") (net 34) (tstamp 337d1242-91ab-4446-8b9e-7609c6a49e3c))
+ (segment (start 87.726811 55.425011) (end 89.630401 55.425011) (width 0.25) (layer "B.Cu") (net 34) (tstamp 47be24ee-e15b-4cee-b84b-350111ac1499))
+ (segment (start 81.4 62.3) (end 81.799999 61.900001) (width 0.25) (layer "B.Cu") (net 34) (tstamp 49b38f13-9789-4c6d-bbd5-2c69a9e19e69))
+ (segment (start 95.5 53.7) (end 96.4 53.7) (width 0.25) (layer "B.Cu") (net 34) (tstamp 4d55ddc7-73be-49f7-98ea-a0ba474cbdb0))
+ (segment (start 91.984001 54.975001) (end 92.595001 54.364001) (width 0.25) (layer "B.Cu") (net 34) (tstamp 5290e0d7-1f24-4c0b-91ff-28c5a304ab9a))
+ (segment (start 92.595001 54.364001) (end 92.595001 53.304999) (width 0.25) (layer "B.Cu") (net 34) (tstamp 61fae217-e18a-4e68-8630-42cc06a8ba2f))
+ (segment (start 89.630401 55.425011) (end 90.080411 54.975001) (width 0.25) (layer "B.Cu") (net 34) (tstamp 624c6565-c4fd-4d29-87af-f77dd1ba0898))
+ (segment (start 95.135001 53.235999) (end 95.135001 53.335001) (width 0.25) (layer "B.Cu") (net 34) (tstamp 62a1b97d-067d-487c-835b-0166330d25fe))
+ (segment (start 95.135001 53.235999) (end 95.135999 53.235999) (width 0.25) (layer "B.Cu") (net 34) (tstamp 69f75991-c8c0-49a9-aed8-daa6ca9a5d73))
+ (segment (start 83.950028 56.4) (end 84.84823 56.4) (width 0.25) (layer "B.Cu") (net 34) (tstamp 71079b24-2e2e-494b-a607-86ccdae75c6e))
+ (segment (start 84.84823 56.4) (end 85.34823 55.9) (width 0.25) (layer "B.Cu") (net 34) (tstamp 927b1eb6-e6f4-412f-9a58-8dc81a4889a0))
+ (segment (start 96.4 53.7) (end 96.5 53.8) (width 0.25) (layer "B.Cu") (net 34) (tstamp ae293969-fa6d-4cb1-9969-16f8784d07e3))
+ (segment (start 95.135001 53.335001) (end 95.5 53.7) (width 0.25) (layer "B.Cu") (net 34) (tstamp bb673c7a-d2b0-45b0-bfe2-0b113c092a77))
+ (segment (start 83.950028 59.909202) (end 83.950028 56.4) (width 0.25) (layer "B.Cu") (net 34) (tstamp cce1404b-fc30-47cc-b852-e0061990f2bb))
+ (segment (start 90.080411 54.975001) (end 91.984001 54.975001) (width 0.25) (layer "B.Cu") (net 34) (tstamp d68589fa-205b-4356-a20d-821c85f5f45e))
+ (segment (start 93.275001 52.624999) (end 94.524001 52.624999) (width 0.25) (layer "B.Cu") (net 34) (tstamp d9ad01c4-9416-4b1f-8447-afc1d446fa8a))
+ (segment (start 85.34823 55.9) (end 87.251822 55.9) (width 0.25) (layer "B.Cu") (net 34) (tstamp f205e125-3760-485b-b76a-dc2502dc5679))
+ (segment (start 92.595001 53.304999) (end 93.275001 52.624999) (width 0.25) (layer "B.Cu") (net 34) (tstamp f60d71f9-9a8e-4a62-960d-f7b9664aea76))
+ (segment (start 83 56.6375) (end 83 58.7) (width 0.25) (layer "F.Cu") (net 35) (tstamp 45676199-bb82-4d58-98c1-b606deb355be))
+ (segment (start 83 58.795822) (end 83 58.7) (width 0.25) (layer "F.Cu") (net 35) (tstamp 55ac7ee1-f461-406b-8cf5-da47a7717180))
+ (segment (start 82.2 63) (end 82.2 59.595822) (width 0.25) (layer "F.Cu") (net 35) (tstamp 7c3df708-fb44-40cc-b435-cd67e8cec48a))
+ (segment (start 82.2 59.595822) (end 83 58.795822) (width 0.25) (layer "F.Cu") (net 35) (tstamp b14aea3f-7e9b-4416-ac0e-1c7beb3cd27c))
+ (via (at 82.2 63) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 35) (tstamp f364b99f-4502-4cba-a96d-4ed35ad108b5))
+ (segment (start 82.2 63) (end 82.599999 62.600001) (width 0.25) (layer "B.Cu") (net 35) (tstamp 0588e431-d56d-4df4-9ffd-6cd4bba412cb))
+ (segment (start 84.400038 60.095602) (end 84.400038 58.499962) (width 0.25) (layer "B.Cu") (net 35) (tstamp 15e1670d-9e79-4a5e-88ad-fbbb238a3e8a))
+ (segment (start 99.04 55.002081) (end 99.04 53.8) (width 0.25) (layer "B.Cu") (net 35) (tstamp 57121f1d-c971-4830-b974-00f7d706f0c9))
+ (segment (start 97.898001 57.725001) (end 99.04 56.583002) (width 0.25) (layer "B.Cu") (net 35) (tstamp 76862e4a-1816-475c-9943-666036c637f7))
+ (segment (start 82.599999 61.895638) (end 84.400038 60.095602) (width 0.25) (layer "B.Cu") (net 35) (tstamp 8019bb27-2172-4d60-932e-7bd55a890b6c))
+ (segment (start 99.04 56.583002) (end 99.04 55.002081) (width 0.25) (layer "B.Cu") (net 35) (tstamp ad09de7f-a090-4e65-951a-7cf11f73b06d))
+ (segment (start 85.174999 57.725001) (end 97.898001 57.725001) (width 0.25) (layer "B.Cu") (net 35) (tstamp ec13b96e-bc69-4de2-80ef-a515cc44afb5))
+ (segment (start 82.599999 62.600001) (end 82.599999 61.895638) (width 0.25) (layer "B.Cu") (net 35) (tstamp f1128c56-7c01-4d79-834b-ceab4dc35180))
+ (segment (start 84.400038 58.499962) (end 85.174999 57.725001) (width 0.25) (layer "B.Cu") (net 35) (tstamp f11a78b7-152e-46cf-81d1-bc8194db05a9))
+ (segment (start 91.77499 58.62501) (end 91.487653 58.912347) (width 0.25) (layer "F.Cu") (net 36) (tstamp 121b7b08-bed9-441b-b060-efed31f37089))
+ (segment (start 91.77499 57.068516) (end 91.77499 58.62501) (width 0.25) (layer "F.Cu") (net 36) (tstamp 14a3cbec-b1b9-4736-8e00-ba5be98954ab))
+ (segment (start 92.7 55.69641) (end 92.687905 55.69641) (width 0.25) (layer "F.Cu") (net 36) (tstamp 3bdaeac5-b4b7-4a96-b0da-b5e1b46798c2))
+ (segment (start 83.1 59.332232) (end 83.1 63.8) (width 0.25) (layer "F.Cu") (net 36) (tstamp 4375ab9a-cebb-448a-bb75-1fa4fe977171))
+ (segment (start 101.58 51.26) (end 100.215001 52.624999) (width 0.25) (layer "F.Cu") (net 36) (tstamp 567a04d6-5dce-4e5f-9e8e-f34010ecea5b))
+ (segment (start 83.5 58.932232) (end 83.1 59.332232) (width 0.25) (layer "F.Cu") (net 36) (tstamp 61eb7a4f-888e-4082-9c74-1d94f58e7c05))
+ (segment (start 93.421409 54.975001) (end 92.7 55.69641) (width 0.25) (layer "F.Cu") (net 36) (tstamp 6f3f676d-a47a-4e8c-8d6e-02275a3490d7))
+ (segment (start 95.135001 53.425997) (end 95.135001 54.364001) (width 0.25) (layer "F.Cu") (net 36) (tstamp 934c5f28-c928-4621-8122-b999b3ed10dd))
+ (segment (start 92.6 56.35) (end 92.493506 56.35) (width 0.25) (layer "F.Cu") (net 36) (tstamp 9fa58e42-4d1f-4e7f-a5a2-6fc9857446e3))
+ (segment (start 83.5 56.6375) (end 83.5 58.932232) (width 0.25) (layer "F.Cu") (net 36) (tstamp aeaaa120-9cc5-4520-9a70-067fbc8f5b7b))
+ (segment (start 92.6 55.784315) (end 92.6 56.35) (width 0.25) (layer "F.Cu") (net 36) (tstamp ca2c5f3f-362b-4808-b8c2-86726d31aa11))
+ (segment (start 92.687905 55.69641) (end 92.6 55.784315) (width 0.25) (layer "F.Cu") (net 36) (tstamp da7e6488-201f-4286-b86a-ca5aced3697a))
+ (segment (start 92.493506 56.35) (end 91.77499 57.068516) (width 0.25) (layer "F.Cu") (net 36) (tstamp dc0df782-a446-4364-8dc7-0190637b5f77))
+ (segment (start 95.135001 54.364001) (end 94.524001 54.975001) (width 0.25) (layer "F.Cu") (net 36) (tstamp e62e65e6-b466-4769-8746-eb8cd9450c76))
+ (segment (start 100.215001 52.624999) (end 95.935999 52.624999) (width 0.25) (layer "F.Cu") (net 36) (tstamp ea8efd53-9e19-4e37-86f5-e6c0c681f735))
+ (segment (start 95.935999 52.624999) (end 95.135001 53.425997) (width 0.25) (layer "F.Cu") (net 36) (tstamp f413d088-6fb9-4a8a-88fd-666ff68b7fdf))
+ (segment (start 94.524001 54.975001) (end 93.421409 54.975001) (width 0.25) (layer "F.Cu") (net 36) (tstamp f7c5fcef-379b-481f-a910-961b8aba9e9d))
+ (via (at 83.1 63.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 36) (tstamp 9475edbb-286b-4bed-b5f0-0b68a18bdc52))
+ (via (at 91.487653 58.912347) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 36) (tstamp e75a90f1-d275-4ca6-86ea-4b6dddffab59))
+ (segment (start 83.1 62.032049) (end 83.1 63.8) (width 0.25) (layer "B.Cu") (net 36) (tstamp 4e66ba18-389e-4ff9-97c1-8bd8fb047a01))
+ (segment (start 90.750317 58.175011) (end 85.361399 58.175011) (width 0.25) (layer "B.Cu") (net 36) (tstamp aae29862-3850-48eb-b7a8-38a62a8029dd))
+ (segment (start 85.361399 58.175011) (end 84.9 58.63641) (width 0.25) (layer "B.Cu") (net 36) (tstamp bf26cee8-9c9f-4547-9a40-e7028b986d1e))
+ (segment (start 84.9 58.63641) (end 84.9 60.232049) (width 0.25) (layer "B.Cu") (net 36) (tstamp cc5561df-9d20-4574-af60-64f10025a0ed))
+ (segment (start 91.487653 58.912347) (end 90.750317 58.175011) (width 0.25) (layer "B.Cu") (net 36) (tstamp d0111086-5d68-4ab0-b707-7da6b263c90b))
+ (segment (start 84.9 60.232049) (end 83.1 62.032049) (width 0.25) (layer "B.Cu") (net 36) (tstamp f2a44eaf-666f-422c-bb4d-a717499c3d1a))
+ (segment (start 84 56.6375) (end 84 62.9) (width 0.25) (layer "F.Cu") (net 37) (tstamp 0674c5a1-ca4b-4b6b-aa60-3847e1a37d52))
+ (segment (start 84 62.9) (end 83.9 63) (width 0.25) (layer "F.Cu") (net 37) (tstamp 1a85ffd6-ef8b-418f-990e-456d1ffab00e))
+ (via (at 83.9 63) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 37) (tstamp 835d4ac3-3fb1-48d9-8c28-6093fe917376))
+ (segment (start 98.084402 58.17501) (end 100.730001 55.529411) (width 0.25) (layer "B.Cu") (net 37) (tstamp 0aa1e38d-f07a-4820-b628-a171234563bb))
+ (segment (start 92.848001 59.675001) (end 90.94998 59.675001) (width 0.25) (layer "B.Cu") (net 37) (tstamp 1cbbfee4-06dd-44ee-af91-d336edf2459c))
+ (segment (start 100.730001 54.649999) (end 101.58 53.8) (width 0.25) (layer "B.Cu") (net 37) (tstamp 1f01b2a1-9ae4-4793-9d17-5ed5c0966b9f))
+ (segment (start 85.35001 60.418449) (end 85.35001 58.82281) (width 0.25) (layer "B.Cu") (net 37) (tstamp 33891c62-a79f-4243-b776-6be292690ac3))
+ (segment (start 84.299999 62.600001) (end 84.299999 61.46846) (width 0.25) (layer "B.Cu") (net 37) (tstamp 59058a09-f800-497d-b8e1-cdf9632c6766))
+ (segment (start 100.730001 55.529411) (end 100.730001 54.649999) (width 0.25) (layer "B.Cu") (net 37) (tstamp 637c5908-9371-4d80-a19b-036e111ef5cd))
+ (segment (start 84.299999 61.46846) (end 85.35001 60.418449) (width 0.25) (layer "B.Cu") (net 37) (tstamp 7c11b885-29b4-4eb2-b782-dde8e3724f0c))
+ (segment (start 94.347991 58.175011) (end 92.848001 59.675001) (width 0.25) (layer "B.Cu") (net 37) (tstamp 844f01a0-ac23-4a99-910e-4e91c579bb2b))
+ (segment (start 85.35001 58.82281) (end 85.547799 58.625021) (width 0.25) (layer "B.Cu") (net 37) (tstamp 9ed54841-4bec-491f-817d-b7e8b25ca06c))
+ (segment (start 90.94998 59.675001) (end 89.9 58.625021) (width 0.25) (layer "B.Cu") (net 37) (tstamp c2e901e5-a4cd-4374-af38-0566255ecbea))
+ (segment (start 94.347991 58.175011) (end 98.084402 58.17501) (width 0.25) (layer "B.Cu") (net 37) (tstamp e0692317-3143-4681-97c6-8fbe46592f31))
+ (segment (start 83.9 63) (end 84.299999 62.600001) (width 0.25) (layer "B.Cu") (net 37) (tstamp e2df2a45-3811-4210-89e0-9a66f3cb9430))
+ (segment (start 85.547799 58.625021) (end 89.9 58.625021) (width 0.25) (layer "B.Cu") (net 37) (tstamp f8e9fc00-8f60-4688-b1c9-6de1e4c0c204))
+ (segment (start 84.625001 62.651999) (end 84.625001 63.774999) (width 0.25) (layer "F.Cu") (net 38) (tstamp 2949af22-2432-469e-9f07-eee60be8acbd))
+ (segment (start 84.5 62.526998) (end 84.625001 62.651999) (width 0.25) (layer "F.Cu") (net 38) (tstamp 356199c8-c0f7-4995-bef0-53ad752a30c5))
+ (segment (start 84.5 56.6375) (end 84.5 62.526998) (width 0.25) (layer "F.Cu") (net 38) (tstamp 3997254a-8057-4464-ba07-e37f0720cbd8))
+ (segment (start 93.974154 56.325846) (end 94 56.3) (width 0.25) (layer "F.Cu") (net 38) (tstamp 5ef603f2-8407-4088-9f29-0b64dd4b046f))
+ (segment (start 84.625001 63.774999) (end 84.6 63.8) (width 0.25) (layer "F.Cu") (net 38) (tstamp 7983b95c-14e4-4dec-ab4e-09c81071d9de))
+ (segment (start 93.974154 59.574154) (end 93.974154 56.325846) (width 0.25) (layer "F.Cu") (net 38) (tstamp bce25bd3-0fe5-4c8f-bd6c-39e2d62ee70a))
+ (via (at 84.6 63.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 38) (tstamp 3cfddd47-0913-4692-89bb-8a69d22be5a7))
+ (via (at 93.974154 59.574154) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 38) (tstamp 76ee303c-1cfc-45a8-ae72-af3efaba6c47))
+ (via (at 94 56.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 38) (tstamp 872313a4-03e6-4e4a-b850-f54dcb50f9fc))
+ (segment (start 85.80002 59.49998) (end 85.80002 60.738451) (width 0.25) (layer "B.Cu") (net 38) (tstamp 03d57b22-a0ad-4d3d-9d1c-5573371e6c2f))
+ (segment (start 94.334315 55.4) (end 96.588982 55.4) (width 0.25) (layer "B.Cu") (net 38) (tstamp 06b6db7e-5210-41ec-a47b-0127ebbe0786))
+ (segment (start 93.423298 60.12501) (end 93.974154 59.574154) (width 0.25) (layer "B.Cu") (net 38) (tstamp 0fe3ebe2-61a9-477a-a657-d783c4c4d70e))
+ (segment (start 86.224969 59.075031) (end 85.80002 59.49998) (width 0.25) (layer "B.Cu") (net 38) (tstamp 159c8092-f459-40eb-b409-c2cace814e6e))
+ (segment (start 97.675001 54.364001) (end 97.675001 53.124999) (width 0.25) (layer "B.Cu") (net 38) (tstamp 39614f9f-2df5-492b-a093-45b7a48e295d))
+ (segment (start 94 56.3) (end 94 55.734315) (width 0.25) (layer "B.Cu") (net 38) (tstamp 3f9f133b-59b8-4791-b0ab-6fa861da9e3f))
+ (segment (start 89.675031 59.075031) (end 90.72501 60.12501) (width 0.25) (layer "B.Cu") (net 38) (tstamp 56bbedad-6259-4443-b321-0ffa1f89c336))
+ (segment (start 96.613992 55.42501) (end 97.675001 54.364001) (width 0.25) (layer "B.Cu") (net 38) (tstamp 6ee71a3c-fedb-4cc6-a3c6-f3d6f3ac6767))
+ (segment (start 98.364999 52.435001) (end 102.944999 52.435001) (width 0.25) (layer "B.Cu") (net 38) (tstamp 741879e3-3045-40c7-849d-7f437c35ee91))
+ (segment (start 84.750009 63.084306) (end 84.750009 61.788462) (width 0.25) (layer "B.Cu") (net 38) (tstamp 832b1e20-f118-4505-ad00-93c040f2f83d))
+ (segment (start 96.588982 55.4) (end 96.613992 55.42501) (width 0.25) (layer "B.Cu") (net 38) (tstamp 85621d90-361e-49b6-9449-b54a16cce021))
+ (segment (start 90.72501 60.12501) (end 93.423298 60.12501) (width 0.25) (layer "B.Cu") (net 38) (tstamp 8eacb9d3-c41d-4b39-abd1-0bc8f2e97411))
+ (segment (start 84.6 63.8) (end 84.6 63.234315) (width 0.25) (layer "B.Cu") (net 38) (tstamp a9ff0621-eacb-4187-ba89-29f236eec881))
+ (segment (start 94 55.734315) (end 94.334315 55.4) (width 0.25) (layer "B.Cu") (net 38) (tstamp ac81fb15-6f1a-451b-a962-fb87ffd26f6b))
+ (segment (start 89.675031 59.075031) (end 86.224969 59.075031) (width 0.25) (layer "B.Cu") (net 38) (tstamp b4afdd30-7a78-4cd8-8670-bb6dd787dcdc))
+ (segment (start 84.6 63.234315) (end 84.750009 63.084306) (width 0.25) (layer "B.Cu") (net 38) (tstamp cb0f5a26-0827-4807-aea7-55b25947b9d5))
+ (segment (start 102.944999 52.435001) (end 104.12 51.26) (width 0.25) (layer "B.Cu") (net 38) (tstamp dd4f23cd-8f89-457c-8b93-3828f8c20a8d))
+ (segment (start 97.675001 53.124999) (end 98.364999 52.435001) (width 0.25) (layer "B.Cu") (net 38) (tstamp e4d60aa0-829b-452e-a0b4-f0b282cbe2f3))
+ (segment (start 85.80002 60.738451) (end 84.750009 61.788462) (width 0.25) (layer "B.Cu") (net 38) (tstamp f46fb303-7470-41c0-b6e8-4553c1d6503f))
+ (segment (start 85 56.6375) (end 85 59.050415) (width 0.25) (layer "F.Cu") (net 39) (tstamp 86f6faec-7eee-404c-a73a-2ae625f33d8c))
+ (segment (start 85 59.050415) (end 86.52502 60.575435) (width 0.25) (layer "F.Cu") (net 39) (tstamp 90337a8b-a8c5-48e1-ad0f-b0e67716fe3c))
+ (via (at 86.52502 60.575435) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 39) (tstamp d3db736b-0e33-4126-b950-5488923df40e))
+ (segment (start 101.095822 55.8) (end 98.9 57.995822) (width 0.25) (layer "B.Cu") (net 39) (tstamp 0f3121ae-1081-4d81-b548-dceafa613e21))
+ (segment (start 86.52502 59.550061) (end 86.55004 59.525041) (width 0.25) (layer "B.Cu") (net 39) (tstamp 644ebc55-9b92-49bd-8dfa-8a3a0dd8d76d))
+ (segment (start 98.123002 60.6) (end 98.925001 59.798001) (width 0.25) (layer "B.Cu") (net 39) (tstamp 66cc4ddc-a52d-4ad7-986e-68f000539802))
+ (segment (start 102.12 55.8) (end 101.095822 55.8) (width 0.25) (layer "B.Cu") (net 39) (tstamp 85ec87eb-bb51-43f3-adf5-d04ca264762d))
+ (segment (start 104.12 53.8) (end 102.12 55.8) (width 0.25) (layer "B.Cu") (net 39) (tstamp 8f8bb641-6f96-48dd-a2de-b7e2aaf6efe0))
+ (segment (start 98.925001 59.798001) (end 98.925001 58.020823) (width 0.25) (layer "B.Cu") (net 39) (tstamp a16dbf15-8f5b-4766-b048-90ba89efcc02))
+ (segment (start 98.925001 58.020823) (end 98.9 57.995822) (width 0.25) (layer "B.Cu") (net 39) (tstamp cebfc912-6282-4a1e-923e-74c4961c2aad))
+ (segment (start 89.488631 59.525041) (end 90.56359 60.6) (width 0.25) (layer "B.Cu") (net 39) (tstamp cfec88d2-05ea-4320-9be6-2559d89ee700))
+ (segment (start 86.52502 60.575435) (end 86.52502 59.550061) (width 0.25) (layer "B.Cu") (net 39) (tstamp eb83440d-aa8b-4a1e-9e93-00cf0de78de9))
+ (segment (start 86.55004 59.525041) (end 89.488631 59.525041) (width 0.25) (layer "B.Cu") (net 39) (tstamp f7475c2a-e91e-435c-bec2-3307ef3e1f94))
+ (segment (start 90.56359 60.6) (end 98.123002 60.6) (width 0.25) (layer "B.Cu") (net 39) (tstamp fe1c93f4-4468-424b-a088-27aef08b62b4))
+ (segment (start 85.5 56.6375) (end 85.5 58.296292) (width 0.25) (layer "F.Cu") (net 40) (tstamp 6579642b-a152-47f7-af0e-0d8866bdfcb8))
+ (segment (start 85.5 58.296292) (end 87.478878 60.27517) (width 0.25) (layer "F.Cu") (net 40) (tstamp eac540a2-0555-4530-b9cb-9b037a65c0a7))
+ (via (at 87.478878 60.27517) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 40) (tstamp 5de5a872-aa15-495b-b53b-b8a64bbfa4f0))
+ (segment (start 99.375011 59.984401) (end 99.375011 58.157221) (width 0.25) (layer "B.Cu") (net 40) (tstamp 0df798c0-963e-4340-a737-18e50763521e))
+ (segment (start 90.42718 61.1) (end 98.259412 61.1) (width 0.25) (layer "B.Cu") (net 40) (tstamp 1d6518e1-cfe9-4078-adc2-cf8e6477b5cb))
+ (segment (start 105.484999 52.435001) (end 105.810001 52.109999) (width 0.25) (layer "B.Cu") (net 40) (tstamp 3f206607-332e-4c96-8963-5302804f476f))
+ (segment (start 102.306401 56.250009) (end 103.581409 54.975001) (width 0.25) (layer "B.Cu") (net 40) (tstamp 4208e41d-1d0a-40b9-bf94-fcbeb6562f9d))
+ (segment (start 104.684001 54.975001) (end 105.484999 54.174003) (width 0.25) (layer "B.Cu") (net 40) (tstamp 68f7174d-ce7a-41b4-89f8-dd7e3ded57a1))
+ (segment (start 99.375011 58.157221) (end 101.282222 56.25001) (width 0.25) (layer "B.Cu") (net 40) (tstamp 6d646c30-feab-4e3e-adf0-5427b73b5f08))
+ (segment (start 89.302231 59.975051) (end 90.42718 61.1) (width 0.25) (layer "B.Cu") (net 40) (tstamp 6e21d8a8-05db-450e-863d-764ba51b5b58))
+ (segment (start 88.044563 60.27517) (end 88.344682 59.975051) (width 0.25) (layer "B.Cu") (net 40) (tstamp 6e416a78-df14-48ee-9842-e6e24081191e))
+ (segment (start 101.282222 56.25001) (end 102.306401 56.250009) (width 0.25) (layer "B.Cu") (net 40) (tstamp 8e1983d7-818b-423d-95d2-7f219e4f6ba3))
+ (segment (start 105.484999 54.174003) (end 105.484999 52.435001) (width 0.25) (layer "B.Cu") (net 40) (tstamp b20fb198-6b0b-4cab-9ba8-ea9b46e8088f))
+ (segment (start 87.478878 60.27517) (end 88.044563 60.27517) (width 0.25) (layer "B.Cu") (net 40) (tstamp b2f7301d-582c-4990-a060-4a71ef08c6eb))
+ (segment (start 98.259412 61.1) (end 99.375011 59.984401) (width 0.25) (layer "B.Cu") (net 40) (tstamp cf45f134-35c0-4b31-91e7-048e45f34bf8))
+ (segment (start 103.581409 54.975001) (end 104.684001 54.975001) (width 0.25) (layer "B.Cu") (net 40) (tstamp d1f81642-eb3a-4277-b357-9cbb5a3aa5ac))
+ (segment (start 105.810001 52.109999) (end 106.66 51.26) (width 0.25) (layer "B.Cu") (net 40) (tstamp e3903eeb-8b72-4b40-a088-cbbba270c01b))
+ (segment (start 88.344682 59.975051) (end 89.302231 59.975051) (width 0.25) (layer "B.Cu") (net 40) (tstamp fa574bf3-ac2e-449d-91be-bcb1e35bdaba))
+ (segment (start 90.9625 57.55) (end 89.9125 57.55) (width 0.25) (layer "F.Cu") (net 41) (tstamp 33064f56-88c0-44a1-ac52-96957fe5ad49))
+ (segment (start 89.9125 57.55) (end 88.9125 58.55) (width 0.25) (layer "F.Cu") (net 41) (tstamp c2564ecf-bd43-431d-b9a2-c7be54487485))
+ (segment (start 69.5 62.3) (end 69.25 62.05) (width 0.25) (layer "F.Cu") (net 42) (tstamp 0208dcec-5844-41d6-8382-4437ac8ac82d))
+ (segment (start 69.25 62.05) (end 67.5875 62.05) (width 0.25) (layer "F.Cu") (net 42) (tstamp a2ead14b-89a8-4438-a7df-7876de28e69a))
+ (via (at 69.5 62.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 42) (tstamp 60d30b2f-02cb-42f2-b2ed-c84cb33e3e36))
+ (segment (start 68.56 55.539002) (end 68.56 61.36) (width 0.25) (layer "B.Cu") (net 42) (tstamp 00000000-0000-0000-0000-00005e49a359))
+ (segment (start 67.384999 52.435001) (end 67.384999 54.364001) (width 0.25) (layer "B.Cu") (net 42) (tstamp 1569382e-a4f5-4166-a19c-b78580f8c980))
+ (segment (start 68.56 51.26) (end 67.384999 52.435001) (width 0.25) (layer "B.Cu") (net 42) (tstamp 376a6f44-cf22-4d88-ac13-30f83803795f))
+ (segment (start 67.384999 54.364001) (end 68.56 55.539002) (width 0.25) (layer "B.Cu") (net 42) (tstamp 52d326d4-51c9-4c17-8412-9aaf3e6cdf4c))
+ (segment (start 68.56 61.36) (end 69.5 62.3) (width 0.25) (layer "B.Cu") (net 42) (tstamp df3e0d78-29b1-4811-9600-571610f4b8a8))
+ (segment (start 65.6 62.55) (end 67.5875 62.55) (width 0.25) (layer "F.Cu") (net 43) (tstamp ac0e5582-f44c-4bc2-8ae7-2c3f1115fb00))
+ (via (at 65.6 62.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 43) (tstamp 664ea685-f665-4315-aadf-581a656f41df))
+ (segment (start 64.844999 52.435001) (end 64.844999 55.044999) (width 0.25) (layer "B.Cu") (net 43) (tstamp 291e4200-f3c9-4b61-8158-17e8c4424a24))
+ (segment (start 64.844999 55.044999) (end 67.125001 57.325001) (width 0.25) (layer "B.Cu") (net 43) (tstamp 35e60fa0-27cf-4d0e-8bab-b364400c08c0))
+ (segment (start 67.125001 61.024999) (end 65.6 62.55) (width 0.25) (layer "B.Cu") (net 43) (tstamp 578f33ff-8d12-4136-bb61-e55b7655fa5b))
+ (segment (start 66.02 51.26) (end 64.844999 52.435001) (width 0.25) (layer "B.Cu") (net 43) (tstamp 933a17ae-06d4-4de3-aae1-d3835cc0d957))
+ (segment (start 67.125001 57.325001) (end 67.125001 61.024999) (width 0.25) (layer "B.Cu") (net 43) (tstamp 9d2af601-5327-4706-9acb-978b65e95af5))
+ (segment (start 81.5 55.8) (end 81.874989 55.425011) (width 0.25) (layer "F.Cu") (net 44) (tstamp 1d2d8ec8-1f1b-4d06-9a35-eff8e386bdb8))
+ (segment (start 92.76 55) (end 90.055412 55) (width 0.25) (layer "F.Cu") (net 44) (tstamp 22614aba-2c26-4590-8e12-a7a6b6de48de))
+ (segment (start 81.5 56.6375) (end 81.5 55.8) (width 0.25) (layer "F.Cu") (net 44) (tstamp 401b5a0c-f502-4551-9d61-fa50a303707e))
+ (segment (start 81.874989 55.425011) (end 89.630402 55.42501) (width 0.25) (layer "F.Cu") (net 44) (tstamp 4c069f0b-8c76-44a0-a999-7bd72a3e8dee))
+ (segment (start 89.630402 55.42501) (end 90.055412 55) (width 0.25) (layer "F.Cu") (net 44) (tstamp 92822296-9b31-4c78-bfe1-2dc7c2e425bc))
+ (segment (start 93.96 53.8) (end 92.76 55) (width 0.25) (layer "F.Cu") (net 44) (tstamp bf3524aa-7451-4bff-a4df-53f0aa1c0aeb))
+ (segment (start 80.5 56.6375) (end 80.5 54.779002) (width 0.25) (layer "F.Cu") (net 45) (tstamp 1a1da3ab-0792-420a-a2dd-c670f9cd52e8))
+ (segment (start 90.244999 52.435001) (end 90.570001 52.109999) (width 0.25) (layer "F.Cu") (net 45) (tstamp 5e27f565-c85a-4f3b-9862-58c0accdd5e3))
+ (segment (start 90.570001 52.109999) (end 91.42 51.26) (width 0.25) (layer "F.Cu") (net 45) (tstamp 9050328c-80d1-449f-94a8-27658961ba9d))
+ (segment (start 80.864999 52.435001) (end 90.244999 52.435001) (width 0.25) (layer "F.Cu") (net 45) (tstamp 99c0b885-9395-4eaa-a204-8d7dea094883))
+ (segment (start 80.084999 53.215001) (end 80.864999 52.435001) (width 0.25) (layer "F.Cu") (net 45) (tstamp a3a9b316-86eb-411d-82d0-37407c2e4142))
+ (segment (start 80.5 54.779002) (end 80.084999 54.364001) (width 0.25) (layer "F.Cu") (net 45) (tstamp d0060422-f68b-4ffa-bca8-6f70dc4f862d))
+ (segment (start 80.084999 54.364001) (end 80.084999 53.215001) (width 0.25) (layer "F.Cu") (net 45) (tstamp e315fb88-f764-4ec7-a92b-006692d5e26f))
+ (segment (start 81.424999 54.975001) (end 89.444001 54.975001) (width 0.25) (layer "F.Cu") (net 46) (tstamp 09321bf4-1ea1-49b5-b1f9-ac29d6606a74))
+ (segment (start 90.217919 53.8) (end 90.055001 53.962918) (width 0.25) (layer "F.Cu") (net 46) (tstamp 3742a313-c63e-4807-a7bf-be5a0ae2c781))
+ (segment (start 90.055001 53.962918) (end 90.055001 54.364001) (width 0.25) (layer "F.Cu") (net 46) (tstamp 5080cf4c-abda-4232-b279-44d0e6b9bde3))
+ (segment (start 80.95001 55.44999) (end 81.424999 54.975001) (width 0.25) (layer "F.Cu") (net 46) (tstamp 5b867f3d-ce38-4d21-95dd-fe114f76e9dc))
+ (segment (start 81 55.8) (end 80.95001 55.75001) (width 0.25) (layer "F.Cu") (net 46) (tstamp 7d3a9372-4f99-452e-9767-51a31df66106))
+ (segment (start 80.95001 55.75001) (end 80.95001 55.44999) (width 0.25) (layer "F.Cu") (net 46) (tstamp 89be6ff8-dff7-4df0-876d-d5989d658e36))
+ (segment (start 89.444001 54.975001) (end 90.055001 54.364001) (width 0.25) (layer "F.Cu") (net 46) (tstamp aa52a4ee-249d-4f84-a65a-9c1702b5bb75))
+ (segment (start 81 56.6375) (end 81 55.8) (width 0.25) (layer "F.Cu") (net 46) (tstamp e2349eb5-0f2d-4c2a-b154-1cfe1ab9cd91))
+ (segment (start 91.42 53.8) (end 90.217919 53.8) (width 0.25) (layer "F.Cu") (net 46) (tstamp ed76cb21-0b5e-4ca2-8075-7e28e38e7199))
+ (segment (start 88.030001 50.410001) (end 88.88 51.26) (width 0.25) (layer "F.Cu") (net 47) (tstamp 16aa2316-1a67-45e5-b6c4-e59dd85814f4))
+ (segment (start 77.5 56.6375) (end 77.5 50.740998) (width 0.25) (layer "F.Cu") (net 47) (tstamp 3b909fd4-b382-4019-8708-80d1d9a9fe1c))
+ (segment (start 77.5 50.740998) (end 78.155999 50.084999) (width 0.25) (layer "F.Cu") (net 47) (tstamp 5891aa7f-2e48-4492-8db1-d54810991036))
+ (segment (start 78.155999 50.084999) (end 87.704999 50.084999) (width 0.25) (layer "F.Cu") (net 47) (tstamp 7f4b7c2c-9af8-4317-9338-c2a6d8990ded))
+ (segment (start 87.704999 50.084999) (end 88.030001 50.410001) (width 0.25) (layer "F.Cu") (net 47) (tstamp 8ddee80f-a354-4a11-ae03-acb37cf50626))
+ (segment (start 77 56.6375) (end 77 54.62) (width 0.25) (layer "F.Cu") (net 48) (tstamp 5f8cf0a3-5039-4ac4-8310-e201f8c0505f))
+ (segment (start 77 54.62) (end 76.18 53.8) (width 0.25) (layer "F.Cu") (net 48) (tstamp b5de2bf0-583c-45d9-bc5e-15007fe3ede8))
+ (segment (start 74.5 54.679002) (end 75.004999 54.174003) (width 0.25) (layer "F.Cu") (net 49) (tstamp 9fa51663-d9ff-42d5-ab2b-c96b6768fc7a))
+ (segment (start 75.004999 52.435001) (end 75.330001 52.109999) (width 0.25) (layer "F.Cu") (net 49) (tstamp bfdbfa5d-af60-4bcb-aaee-563dc6121e2f))
+ (segment (start 75.004999 54.174003) (end 75.004999 52.435001) (width 0.25) (layer "F.Cu") (net 49) (tstamp e8a49c58-e69f-4870-ab15-e73f66a8d02b))
+ (segment (start 74.5 56.6375) (end 74.5 54.679002) (width 0.25) (layer "F.Cu") (net 49) (tstamp f61adca3-c1e4-457e-8212-9dc978cabab5))
+ (segment (start 75.330001 52.109999) (end 76.18 51.26) (width 0.25) (layer "F.Cu") (net 49) (tstamp fd693e1b-ee8d-4a26-aae0-561ba4b09a82))
+ (segment (start 74 54.16) (end 73.64 53.8) (width 0.25) (layer "F.Cu") (net 50) (tstamp d25a1e45-06d1-4c1c-9b3a-0fd8abd0bfed))
+ (segment (start 74 56.6375) (end 74 54.16) (width 0.25) (layer "F.Cu") (net 50) (tstamp e8558fbd-ea42-43a6-966a-7bd304bdfaad))
+ (segment (start 65.105011 55.425011) (end 64.329999 54.649999) (width 0.25) (layer "F.Cu") (net 51) (tstamp 2fea3f9c-a97b-4a77-88f7-98b3d8a00622))
+ (segment (start 70.590713 55.425011) (end 65.105011 55.425011) (width 0.25) (layer "F.Cu") (net 51) (tstamp 46a20b99-b616-4fa4-af79-eecf92b5c191))
+ (segment (start 71 55.834298) (end 70.590713 55.425011) (width 0.25) (layer "F.Cu") (net 51) (tstamp 6dfa921c-8a4f-4fcf-a0e7-8718b6271ea9))
+ (segment (start 64.329999 54.649999) (end 63.48 53.8) (width 0.25) (layer "F.Cu") (net 51) (tstamp ab26a42e-b7f6-4a80-b26c-c01085e448c7))
+ (segment (start 71 56.6375) (end 71 55.834298) (width 0.25) (layer "F.Cu") (net 51) (tstamp ee3188d0-94cf-4bcc-9f57-e516684fc142))
+ (segment (start 69 57.440702) (end 66.484292 57.440702) (width 0.25) (layer "F.Cu") (net 52) (tstamp 062fbe79-da43-4e6a-bd6f-509557f2df9b))
+ (segment (start 72.225001 58.748001) (end 71.848001 59.125001) (width 0.25) (layer "F.Cu") (net 52) (tstamp 2b894b8a-c098-4d9d-be0f-2ef41dea274e))
+ (segment (start 66.484292 57.440702) (end 64.018591 54.975001) (width 0.25) (layer "F.Cu") (net 52) (tstamp 3ce4c631-4e8b-4ee6-a520-34bf7b12880c))
+ (segment (start 61.789999 54.649999) (end 60.94 53.8) (width 0.25) (layer "F.Cu") (net 52) (tstamp 4116bfc2-eab3-4c29-a983-44eacd9f10f5))
+ (segment (start 64.018591 54.975001) (end 62.115001 54.975001) (width 0.25) (layer "F.Cu") (net 52) (tstamp 51320c8c-9c4a-48b8-a7b8-e2c8d1f2e5ad))
+ (segment (start 69.259308 57.70001) (end 69 57.440702) (width 0.25) (layer "F.Cu") (net 52) (tstamp 5f74c6fb-337b-40a9-9b79-933f2f30429a))
+ (segment (start 72 57.826998) (end 72.225001 58.051999) (width 0.25) (layer "F.Cu") (net 52) (tstamp 6776c573-26e6-4a02-ab96-18129f258651))
+ (segment (start 62.115001 54.975001) (end 61.789999 54.649999) (width 0.25) (layer "F.Cu") (net 52) (tstamp 704ba6e6-ee13-4d9d-b544-d836a743bdda))
+ (segment (start 72.225001 58.051999) (end 72.225001 58.748001) (width 0.25) (layer "F.Cu") (net 52) (tstamp 9ba85d0a-e58f-45a8-9d86-ad6c976003b7))
+ (segment (start 72 56.6375) (end 72 57.826998) (width 0.25) (layer "F.Cu") (net 52) (tstamp a067c43d-047d-48ca-a682-5bbb620e3988))
+ (segment (start 71.151999 59.125001) (end 70.774999 58.748001) (width 0.25) (layer "F.Cu") (net 52) (tstamp a9ad6ea5-8293-424c-89d4-c01baf033429))
+ (segment (start 70.650008 57.70001) (end 69.259308 57.70001) (width 0.25) (layer "F.Cu") (net 52) (tstamp d36e7ed4-f2bc-4d88-86ae-317d3c24af1a))
+ (segment (start 71.848001 59.125001) (end 71.151999 59.125001) (width 0.25) (layer "F.Cu") (net 52) (tstamp dbd87a35-3166-440e-a8f0-c71d214a12a6))
+ (segment (start 70.774999 58.748001) (end 70.774999 57.825001) (width 0.25) (layer "F.Cu") (net 52) (tstamp df1435bb-8018-455d-9925-63e774164119))
+ (segment (start 70.774999 57.825001) (end 70.650008 57.70001) (width 0.25) (layer "F.Cu") (net 52) (tstamp ff203a9b-3d2e-4e1d-a6f0-12d16e5120fb))
+ (segment (start 67.195001 54.975001) (end 66.869999 54.649999) (width 0.25) (layer "F.Cu") (net 53) (tstamp 226f524c-89b4-46ed-86fd-c8ea41059fd4))
+ (segment (start 71.675001 54.975001) (end 67.195001 54.975001) (width 0.25) (layer "F.Cu") (net 53) (tstamp 57e17378-f1f7-42d0-9ad3-fb44c2d5cdc3))
+ (segment (start 72.5 56.6375) (end 72.5 55.8) (width 0.25) (layer "F.Cu") (net 53) (tstamp 6ae47305-86b3-4e27-b3c6-46e195fdaa6d))
+ (segment (start 72.5 55.8) (end 71.675001 54.975001) (width 0.25) (layer "F.Cu") (net 53) (tstamp 710852c3-85af-44f2-af12-adc5798f2795))
+ (segment (start 66.869999 54.649999) (end 66.02 53.8) (width 0.25) (layer "F.Cu") (net 53) (tstamp 7147b342-4ca8-4694-a1ec-b615c151a5d0))
+ (segment (start 71.264588 53.8) (end 73 55.535412) (width 0.25) (layer "F.Cu") (net 54) (tstamp 5b5611ee-3a4f-4573-978f-2e48db0ecaf5))
+ (segment (start 73 55.8) (end 73 56.6375) (width 0.25) (layer "F.Cu") (net 54) (tstamp 84e154cc-34e9-48ac-ab7e-fc52b3bc90d0))
+ (segment (start 73 55.535412) (end 73 55.8) (width 0.25) (layer "F.Cu") (net 54) (tstamp a57e46ab-4127-4b88-afea-d94b5d7bc928))
+ (segment (start 71.1 53.8) (end 71.264588 53.8) (width 0.25) (layer "F.Cu") (net 54) (tstamp c1b73b2b-a0dd-4b0e-8d3d-c3beea420b93))
+ (segment (start 72.275001 52.435001) (end 71.949999 52.109999) (width 0.25) (layer "F.Cu") (net 55) (tstamp 037a257a-ceb2-409c-ab24-48a743172dae))
+ (segment (start 72.275001 54.174003) (end 72.275001 52.435001) (width 0.25) (layer "F.Cu") (net 55) (tstamp 3d8571f7-688f-49ac-8d91-22508c277f45))
+ (segment (start 71.949999 52.109999) (end 71.1 51.26) (width 0.25) (layer "F.Cu") (net 55) (tstamp 45899113-d22e-4a5b-822e-9aca23b124ee))
+ (segment (start 73.5 56.6375) (end 73.5 55.399002) (width 0.25) (layer "F.Cu") (net 55) (tstamp 8527ef2e-5212-4629-b6f5-b0130ab61dab))
+ (segment (start 73.5 55.399002) (end 72.275001 54.174003) (width 0.25) (layer "F.Cu") (net 55) (tstamp eecd895d-4aa1-458c-8512-c9957fd00fad))
(zone (net 1) (net_name "GND") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000062016a26) (hatch edge 0.508)
(connect_pads (clearance 0.254))
@@ -4653,7 +4422,7 @@
)
)
)
- (zone (net 12) (net_name "+5V") (layer "F.Cu") (tstamp 2056f16f-2d4a-4f35-8a56-49ab69eeef16) (hatch edge 0.508)
+ (zone (net 11) (net_name "+5V") (layer "F.Cu") (tstamp 2056f16f-2d4a-4f35-8a56-49ab69eeef16) (hatch edge 0.508)
(priority 1)
(connect_pads (clearance 0.254))
(min_thickness 0.2) (filled_areas_thickness no)
@@ -4667,21 +4436,23 @@
)
)
)
- (zone (net 15) (net_name "+1V2") (layer "F.Cu") (tstamp 914a2046-646f-4d53-b355-ce2139e25907) (hatch edge 0.508)
- (priority 1)
+ (zone (net 12) (net_name "+1V2") (layer "F.Cu") (tstamp 914a2046-646f-4d53-b355-ce2139e25907) (hatch edge 0.508)
+ (priority 2)
(connect_pads yes (clearance 0.2))
(min_thickness 0.2) (filled_areas_thickness no)
(fill (thermal_gap 0.3) (thermal_bridge_width 0.508))
(polygon
(pts
- (xy 62.98 57.4)
+ (xy 58 57.4)
(xy 66.48 57.4)
(xy 66.48 60.15)
- (xy 62.98 60.15)
+ (xy 63 60.244888)
+ (xy 63 59)
+ (xy 58 59)
)
)
)
- (zone (net 11) (net_name "+3V3") (layer "F.Cu") (tstamp c2079b33-906e-4c67-b0b6-7e228acc166b) (hatch edge 0.508)
+ (zone (net 10) (net_name "+3V3") (layer "F.Cu") (tstamp c2079b33-906e-4c67-b0b6-7e228acc166b) (hatch edge 0.508)
(priority 1)
(connect_pads yes (clearance 0.254))
(min_thickness 0.2) (filled_areas_thickness no)
@@ -4708,7 +4479,7 @@
)
)
)
- (zone (net 15) (net_name "+1V2") (layer "In2.Cu") (tstamp 00000000-0000-0000-0000-00005e379133) (hatch edge 0.508)
+ (zone (net 12) (net_name "+1V2") (layer "In2.Cu") (tstamp 00000000-0000-0000-0000-00005e379133) (hatch edge 0.508)
(priority 2)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
@@ -4722,7 +4493,7 @@
)
)
)
- (zone (net 15) (net_name "+1V2") (layer "In2.Cu") (tstamp 00000000-0000-0000-0000-00005e379136) (hatch edge 0.508)
+ (zone (net 12) (net_name "+1V2") (layer "In2.Cu") (tstamp 00000000-0000-0000-0000-00005e379136) (hatch edge 0.508)
(priority 1)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
@@ -4742,7 +4513,7 @@
)
)
)
- (zone (net 11) (net_name "+3V3") (layer "In2.Cu") (tstamp 00000000-0000-0000-0000-00005e379139) (hatch edge 0.508)
+ (zone (net 10) (net_name "+3V3") (layer "In2.Cu") (tstamp 00000000-0000-0000-0000-00005e379139) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
@@ -4755,7 +4526,7 @@
)
)
)
- (zone (net 12) (net_name "+5V") (layer "B.Cu") (tstamp 00000000-0000-0000-0000-000062016ef4) (hatch edge 0.508)
+ (zone (net 11) (net_name "+5V") (layer "B.Cu") (tstamp 00000000-0000-0000-0000-000062016ef4) (hatch edge 0.508)
(priority 1)
(connect_pads (clearance 0.254))
(min_thickness 0.2) (filled_areas_thickness no)
diff --git a/ice4pi.kicad_pro b/ice4pi.kicad_pro
index 611d81f..bfaea0c 100644
--- a/ice4pi.kicad_pro
+++ b/ice4pi.kicad_pro
@@ -45,7 +45,7 @@
"silk_text_upright": false,
"zones": {
"45_degree_only": false,
- "min_clearance": 0.254
+ "min_clearance": 0.19999999999999998
}
},
"diff_pair_dimensions": [],
diff --git a/ice4pi.kicad_sch b/ice4pi.kicad_sch
index 4ced06d..0a47034 100644
--- a/ice4pi.kicad_sch
+++ b/ice4pi.kicad_sch
@@ -5,7 +5,7 @@
(paper "A4")
(title_block
- (title "ice4pi-2.1")
+ (title "ice4pi-2.2")
)
(lib_symbols
@@ -1060,110 +1060,55 @@
)
)
)
- (symbol "ice4pi:LT3030" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at -10.16 16.51 0)
- (effects (font (size 1.27 1.27)))
+ (symbol "Regulator_Linear:MIC5504-1.2YM5" (in_bom yes) (on_board yes)
+ (property "Reference" "U" (id 0) (at -7.62 8.89 0)
+ (effects (font (size 1.27 1.27)) (justify left))
)
- (property "Value" "LT3030" (id 1) (at 12.7 -16.51 0)
- (effects (font (size 1.27 1.27)))
+ (property "Value" "MIC5504-1.2YM5" (id 1) (at -7.62 6.35 0)
+ (effects (font (size 1.27 1.27)) (justify left))
)
- (property "Footprint" "" (id 2) (at -10.16 16.51 0)
+ (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 0 -10.16 0)
(effects (font (size 1.27 1.27)) hide)
)
- (property "Datasheet" "" (id 3) (at -10.16 16.51 0)
+ (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/MIC550X.pdf" (id 3) (at -6.35 6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
- (symbol "LT3030_0_1"
- (rectangle (start -11.43 13.97) (end 11.43 -15.24)
- (stroke (width 0) (type default) (color 0 0 0 0))
+ (property "ki_keywords" "Micrel LDO voltage regulator" (id 4) (at 0 0 0)
+ (effects (font (size 1.27 1.27)) hide)
+ )
+ (property "ki_description" "300mA Low-dropout Voltage Regulator, Vout 1.2V, Vin up to 5.5V, SOT-23" (id 5) (at 0 0 0)
+ (effects (font (size 1.27 1.27)) hide)
+ )
+ (property "ki_fp_filters" "SOT?23?5*" (id 6) (at 0 0 0)
+ (effects (font (size 1.27 1.27)) hide)
+ )
+ (symbol "MIC5504-1.2YM5_0_1"
+ (rectangle (start -7.62 -5.08) (end 7.62 5.08)
+ (stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
- (pin input line (at -13.97 -2.54 0) (length 2.54)
- (name "~{SHDN2}" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -13.97 -8.89 0) (length 2.54)
- (name "PWRGD2" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -13.97 3.81 0) (length 2.54)
- (name "IN2_2" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -13.97 6.35 0) (length 2.54)
- (name "IN2_1" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 1.27 -17.78 90) (length 2.54)
- (name "GND1" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -13.97 8.89 0) (length 2.54)
- (name "IN1_2" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at -13.97 11.43 0) (length 2.54)
- (name "IN1_1" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -13.97 -6.35 0) (length 2.54)
- (name "PWRGD1" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -13.97 0 0) (length 2.54)
- (name "~{SHDN1}" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -13.97 -12.7 0) (length 2.54)
- (name "THERMPAD" (effects (font (size 1.27 1.27))))
- (number "21" (effects (font (size 1.27 1.27))))
- )
)
- (symbol "LT3030_1_1"
- (pin input line (at 13.97 2.54 180) (length 2.54)
- (name "ADJ1" (effects (font (size 1.27 1.27))))
+ (symbol "MIC5504-1.2YM5_1_1"
+ (pin power_in line (at -10.16 2.54 0) (length 2.54)
+ (name "VIN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
- (pin input line (at 13.97 -10.16 180) (length 2.54)
- (name "ADJ2" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 3.81 -17.78 90) (length 2.54)
- (name "GND2" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 13.97 5.08 180) (length 2.54)
- (name "BYP1" (effects (font (size 1.27 1.27))))
+ (pin power_in line (at 0 -7.62 90) (length 2.54)
+ (name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
- (pin power_out line (at 13.97 11.43 180) (length 2.54)
- (name "OUT1_1" (effects (font (size 1.27 1.27))))
+ (pin input line (at -10.16 -2.54 0) (length 2.54)
+ (name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
- (pin power_out line (at 13.97 8.89 180) (length 2.54)
- (name "OUT1_2" (effects (font (size 1.27 1.27))))
+ (pin no_connect line (at 7.62 -2.54 180) (length 2.54) hide
+ (name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
- (pin power_in line (at 8.89 -17.78 90) (length 2.54)
- (name "GND4" (effects (font (size 1.27 1.27))))
+ (pin power_out line (at 10.16 2.54 180) (length 2.54)
+ (name "VOUT" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
- (pin power_in line (at 6.35 -17.78 90) (length 2.54)
- (name "GND3" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin power_out line (at 13.97 -1.27 180) (length 2.54)
- (name "OUT2_1" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin power_out line (at 13.97 -3.81 180) (length 2.54)
- (name "OUT2_2" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at 13.97 -7.62 180) (length 2.54)
- (name "BYP2" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
)
)
(symbol "ice4pi:N25Q032A13ESC40F" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
@@ -1817,9 +1762,6 @@
(junction (at 240.03 26.67) (diameter 0) (color 0 0 0 0)
(uuid 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec)
)
- (junction (at 50.8 146.05) (diameter 0) (color 0 0 0 0)
- (uuid 4db55cb8-197b-4402-871f-ce582b65664b)
- )
(junction (at 232.41 26.67) (diameter 0) (color 0 0 0 0)
(uuid 4fb21471-41be-4be8-9687-66030f97befc)
)
@@ -1859,9 +1801,6 @@
(junction (at 204.47 123.19) (diameter 0) (color 0 0 0 0)
(uuid 810ed4ff-ffe2-4032-9af6-fb5ada3bae5b)
)
- (junction (at 19.05 113.03) (diameter 0) (color 0 0 0 0)
- (uuid 84d296ba-3d39-4264-ad19-947f90c54396)
- )
(junction (at 214.63 80.01) (diameter 0) (color 0 0 0 0)
(uuid 86dc7a78-7d51-4111-9eea-8a8f7977eb16)
)
@@ -1880,20 +1819,14 @@
(junction (at 232.41 21.59) (diameter 0) (color 0 0 0 0)
(uuid 911bdcbe-493f-4e21-a506-7cbc636e2c17)
)
- (junction (at 27.94 121.92) (diameter 0) (color 0 0 0 0)
- (uuid 91fe070a-a49b-4bc5-805a-42f23e10d114)
- )
(junction (at 273.05 102.87) (diameter 0) (color 0 0 0 0)
(uuid 9340c285-5767-42d5-8b6d-63fe2a40ddf3)
)
- (junction (at 59.69 129.54) (diameter 0) (color 0 0 0 0)
- (uuid 99dfa524-0366-4808-b4e8-328fc38e8656)
- )
(junction (at 102.87 106.68) (diameter 0) (color 0 0 0 0)
(uuid 9dab0cb7-2557-4419-963b-5ae736517f62)
)
- (junction (at 48.26 146.05) (diameter 0) (color 0 0 0 0)
- (uuid a24ce0e2-fdd3-4e6a-b754-5dee9713dd27)
+ (junction (at 36.83 129.54) (diameter 0) (color 0 0 0 0)
+ (uuid a47a847c-3aea-4b4e-83f7-146cc5f93b3c)
)
(junction (at 237.49 38.1) (diameter 0) (color 0 0 0 0)
(uuid a544eb0a-75db-4baf-bf54-9ca21744343b)
@@ -1904,12 +1837,6 @@
(junction (at 256.54 49.53) (diameter 0) (color 0 0 0 0)
(uuid aa02e544-13f5-4cf8-a5f4-3e6cda006090)
)
- (junction (at 55.88 129.54) (diameter 0) (color 0 0 0 0)
- (uuid b0271cdd-de22-4bf4-8f55-fc137cfbd4ec)
- )
- (junction (at 15.24 113.03) (diameter 0) (color 0 0 0 0)
- (uuid b09666f9-12f1-4ee9-8877-2292c94258ca)
- )
(junction (at 224.79 21.59) (diameter 0) (color 0 0 0 0)
(uuid b96fe6ac-3535-4455-ab88-ed77f5e46d6e)
)
@@ -1919,15 +1846,6 @@
(junction (at 236.22 120.65) (diameter 0) (color 0 0 0 0)
(uuid c144caa5-b0d4-4cef-840a-d4ad178a2102)
)
- (junction (at 81.28 138.43) (diameter 0) (color 0 0 0 0)
- (uuid c4cab9c5-d6e5-4660-b910-603a51b56783)
- )
- (junction (at 22.86 121.92) (diameter 0) (color 0 0 0 0)
- (uuid c8a7af6e-c432-4fa3-91ee-c8bf0c5a9ebe)
- )
- (junction (at 45.72 146.05) (diameter 0) (color 0 0 0 0)
- (uuid c8fd9dd3-06ad-4146-9239-0065013959ef)
- )
(junction (at 246.38 49.53) (diameter 0) (color 0 0 0 0)
(uuid d1262c4d-2245-4c4f-8f35-7bb32cd9e21e)
)
@@ -1946,18 +1864,12 @@
(junction (at 224.79 26.67) (diameter 0) (color 0 0 0 0)
(uuid dde51ae5-b215-445e-92bb-4a12ec410531)
)
- (junction (at 66.04 129.54) (diameter 0) (color 0 0 0 0)
- (uuid e091e263-c616-48ef-a460-465c70218987)
- )
(junction (at 204.47 148.59) (diameter 0) (color 0 0 0 0)
(uuid e36988d2-ecb2-461b-a443-7006f447e828)
)
(junction (at 99.06 16.51) (diameter 0) (color 0 0 0 0)
(uuid e472dac4-5b65-4920-b8b2-6065d140a69d)
)
- (junction (at 81.28 129.54) (diameter 0) (color 0 0 0 0)
- (uuid eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4)
- )
(junction (at 104.14 173.99) (diameter 0) (color 0 0 0 0)
(uuid f1447ad6-651c-45be-a2d6-33bddf672c2c)
)
@@ -1974,14 +1886,6 @@
(uuid fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f)
)
- (no_connect (at 27.94 116.84) (uuid 03f57fb4-32a3-4bc6-85b9-fd8ece4a9592))
- (no_connect (at 55.88 123.19) (uuid 24b72b0d-63b8-4e06-89d0-e94dcf39a600))
- (no_connect (at 55.88 119.38) (uuid 4431c0f6-83ea-4eee-95a8-991da2f03ccd))
- (no_connect (at 55.88 116.84) (uuid 90e761f6-1432-4f73-ad28-fa8869b7ec31))
- (no_connect (at 27.94 134.62) (uuid 9e813ec2-d4ce-4e2e-b379-c6fedb4c45db))
- (no_connect (at 55.88 125.73) (uuid a6738794-75ae-48a6-8949-ed8717400d71))
- (no_connect (at 27.94 119.38) (uuid b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2))
-
(wire (pts (xy 90.17 106.68) (xy 90.17 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0088d107-13d8-496c-8da6-7bbeb9d096b0)
@@ -2006,10 +1910,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0755aee5-bc01-4cb5-b830-583289df50a3)
)
- (wire (pts (xy 55.88 135.89) (xy 59.69 135.89))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 076046ab-4b56-4060-b8d9-0d80806d0277)
- )
(wire (pts (xy 189.23 113.03) (xy 204.47 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cbeb329-a88d-4a47-a5c2-a1d693de2f8c)
@@ -2026,14 +1926,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f31f11f-c374-4640-b9a4-07bbdba8d354)
)
- (wire (pts (xy 59.69 135.89) (xy 59.69 134.62))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1171ce37-6ad7-4662-bb68-5592c945ebf3)
- )
- (wire (pts (xy 19.05 125.73) (xy 19.05 113.03))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1199146e-a60b-416a-b503-e77d6d2892f9)
- )
(wire (pts (xy 245.11 38.1) (xy 252.73 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12422a89-3d0c-485c-9386-f77121fd68fd)
@@ -2050,18 +1942,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
)
- (wire (pts (xy 24.13 133.35) (xy 24.13 128.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 18ca5aef-6a2c-41ac-9e7f-bf7acb716e53)
- )
- (wire (pts (xy 22.86 130.81) (xy 22.86 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 18d11f32-e1a6-4f29-8e3c-0bfeb07299bd)
- )
- (wire (pts (xy 59.69 129.54) (xy 55.88 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b)
- )
(wire (pts (xy 107.95 173.99) (xy 104.14 173.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19b0959e-a79b-43b2-a5ad-525ced7e9131)
@@ -2118,10 +1998,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e903008-0276-4a73-8edb-5d9dfde6297c)
)
- (wire (pts (xy 48.26 146.05) (xy 50.8 146.05))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3f43d730-2a73-49fe-9672-32428e7f5b49)
- )
(wire (pts (xy 102.87 106.68) (xy 110.49 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 417f13e4-c121-485a-a6b5-8b55e70350b8)
@@ -2138,10 +2014,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45008225-f50f-4d6b-b508-6730a9408caf)
)
- (wire (pts (xy 27.94 137.16) (xy 19.05 137.16))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 479331ff-c540-41f4-84e6-b48d65171e59)
- )
(wire (pts (xy 219.71 115.57) (xy 219.71 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47baf4b1-0938-497d-88f9-671136aa8be7)
@@ -2210,10 +2082,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ff19d63-2cb4-438b-93c4-e66d37a05329)
)
- (wire (pts (xy 27.94 130.81) (xy 22.86 130.81))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6325c32f-c82a-4357-b022-f9c7e76f412e)
- )
(wire (pts (xy 137.16 128.27) (xy 148.59 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 633292d3-80c5-4986-be82-ce926e9f09f4)
@@ -2238,10 +2106,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2)
)
- (wire (pts (xy 27.94 124.46) (xy 27.94 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6afc19cf-38b4-47a3-bc2b-445b18724310)
- )
(wire (pts (xy 48.26 26.67) (xy 55.88 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c2d26bc-6eca-436c-8025-79f817bf57d6)
@@ -2314,10 +2178,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8322f275-268c-4e87-a69f-4cfbf05e747f)
)
- (wire (pts (xy 55.88 138.43) (xy 66.04 138.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8458d41c-5d62-455d-b6e1-9f718c0faac9)
- )
(wire (pts (xy 100.33 173.99) (xy 96.52 173.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c1605f9-6c91-4701-96bf-e753661d5e23)
@@ -2326,30 +2186,10 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d9a3ecc-539f-41da-8099-d37cea9c28e7)
)
- (wire (pts (xy 59.69 129.54) (xy 66.04 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91)
- )
- (wire (pts (xy 66.04 129.54) (xy 66.04 138.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 935057d5-6882-4c15-9a35-54677912ba12)
- )
(wire (pts (xy 260.35 120.65) (xy 273.05 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9702d639-3b1f-4825-8985-b32b9008503d)
)
- (wire (pts (xy 45.72 146.05) (xy 48.26 146.05))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 98b00c9d-9188-4bce-aa70-92d12dd9cf82)
- )
- (wire (pts (xy 19.05 113.03) (xy 15.24 113.03))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 997c2f12-73ba-4c01-9ee0-42e37cbab790)
- )
- (wire (pts (xy 50.8 147.32) (xy 50.8 146.05))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9aedbb9e-8340-4899-b813-05b23382a36b)
- )
(wire (pts (xy 189.23 130.81) (xy 204.47 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c607e49-ee5c-4e85-a7da-6fede9912412)
@@ -2378,10 +2218,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a690fc6c-55d9-47e6-b533-faa4b67e20f3)
)
- (wire (pts (xy 22.86 113.03) (xy 19.05 113.03))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a90361cd-254c-4d27-ae1f-9a6c85bafe28)
- )
(wire (pts (xy 191.77 24.13) (xy 199.39 24.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a)
@@ -2390,9 +2226,9 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac264c30-3e9a-4be2-b97a-9949b68bd497)
)
- (wire (pts (xy 43.18 146.05) (xy 45.72 146.05))
+ (wire (pts (xy 36.83 129.54) (xy 45.72 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
- (uuid afd38b10-2eca-4abe-aed1-a96fb07ffdbe)
+ (uuid adf2be76-dcc7-4dcc-947a-fbbb9e330180)
)
(wire (pts (xy 92.71 146.05) (xy 111.76 146.05))
(stroke (width 0) (type default) (color 0 0 0 0))
@@ -2430,10 +2266,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c41b3c8b-634e-435a-b582-96b83bbd4032)
)
- (wire (pts (xy 55.88 132.08) (xy 55.88 129.54))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c514e30c-e48e-4ca5-ab44-8b3afedef1f2)
- )
(wire (pts (xy 262.89 49.53) (xy 256.54 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864)
@@ -2446,14 +2278,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cbebc05a-c4dd-4baf-8c08-196e84e08b27)
)
- (wire (pts (xy 19.05 137.16) (xy 19.05 133.35))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid cc15f583-a41b-43af-ba94-a75455506a96)
- )
- (wire (pts (xy 22.86 121.92) (xy 22.86 113.03))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d01102e9-b170-4eb1-a0a4-9a31feb850b7)
- )
(wire (pts (xy 204.47 130.81) (xy 204.47 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d102186a-5b58-41d0-9985-3dbb3593f397)
@@ -2462,10 +2286,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d22e95aa-f3db-4fbc-a331-048a2523233e)
)
- (wire (pts (xy 81.28 138.43) (xy 76.2 138.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d3d57924-54a6-421d-a3a0-a044fc909e88)
- )
(wire (pts (xy 191.77 19.05) (xy 180.34 19.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d9c6d5d2-0b49-49ba-a970-cd2c32f74c54)
@@ -2506,7 +2326,7 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12)
)
- (wire (pts (xy 76.2 129.54) (xy 81.28 129.54))
+ (wire (pts (xy 76.2 129.54) (xy 88.9 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea6fde00-59dc-4a79-a647-7e38199fae0e)
)
@@ -2546,10 +2366,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f6c644f4-3036-41a6-9e14-2c08c079c6cd)
)
- (wire (pts (xy 81.28 137.16) (xy 81.28 138.43))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f73b5500-6337-4860-a114-6e307f65ec9f)
- )
(wire (pts (xy 133.35 118.11) (xy 133.35 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f7447e92-4293-41c4-be3f-69b30aad1f17)
@@ -2562,14 +2378,6 @@
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f9403623-c00c-4b71-bc5c-d763ff009386)
)
- (wire (pts (xy 24.13 128.27) (xy 27.94 128.27))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f9b1563b-384a-447c-9f47-736504e995c8)
- )
- (wire (pts (xy 22.86 121.92) (xy 27.94 121.92))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fe14c012-3d58-4e5e-9a37-4b9765a7f764)
- )
(global_label "PIO0_07" (shape bidirectional) (at 24.13 41.91 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
@@ -4282,119 +4090,60 @@
(pin "2" (uuid 1cba4a9f-db63-4ac9-8714-537ee017b72d))
)
- (symbol (lib_id "ice4pi:LT3030") (at 41.91 128.27 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e27fcd5)
- (property "Reference" "U3" (id 0) (at 41.91 110.109 0))
- (property "Value" "LT3030" (id 1) (at 41.91 112.4204 0))
- (property "Footprint" "ice4pi:TSSOP-20_4.4x6.5mm_P0.65mm" (id 2) (at 31.75 111.76 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 31.75 111.76 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "PN" "LT3030EFE#PBF" (id 4) (at 41.91 128.27 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "11" (uuid c482c94a-1189-49d4-a319-e3ae64100959))
- (pin "12" (uuid 329980e2-6d3b-4872-a4a9-f6b4c29649e1))
- (pin "13" (uuid a702021a-75fa-4937-8e74-1d70aae395cf))
- (pin "14" (uuid c1d9b722-2d95-4429-8bc1-423997dfbf46))
- (pin "16" (uuid 29ca19d0-005a-476c-97a6-ecbe7afaf368))
- (pin "17" (uuid 54a9a33a-3b83-4801-a2d3-1be53f82c957))
- (pin "18" (uuid 60db0be0-dab4-4333-8b49-ceaf5b0f9fe3))
- (pin "19" (uuid ed71b4d6-6d9d-4947-a1fc-6ed2c32d57c1))
- (pin "20" (uuid 23da1f4f-4459-4375-9185-cb87a2b13a8e))
- (pin "21" (uuid 5f186ab7-650d-48b9-a5f3-a17da1cd1863))
- (pin "1" (uuid 1713c52e-16ab-4cde-a4ba-897d4b7719ca))
- (pin "10" (uuid 8b785799-bfb1-49ab-aaac-ac32ab71b9dc))
- (pin "15" (uuid f92002ad-3b0a-4641-bcf6-5d16b97f10ad))
- (pin "2" (uuid 32d53283-8271-4c1c-ad86-7101d22a8e4e))
- (pin "3" (uuid 53c518ac-d58b-4fb6-ae0e-c81843505bf0))
- (pin "4" (uuid ca49d009-84fa-4129-b874-cf92ff68cb47))
- (pin "5" (uuid 7cadf606-ff23-4dff-94a1-d990cc9e8b6f))
- (pin "6" (uuid 08227c52-9e79-4e34-91ca-6b92b35d7963))
- (pin "7" (uuid 5548fe02-9124-498b-b5f7-ce3695240ae9))
- (pin "8" (uuid 474d4243-235c-488b-86c1-9613c3d59f32))
- (pin "9" (uuid 03999e6e-f086-4690-a1e1-2fb536faffae))
- )
-
- (symbol (lib_id "power:+5V") (at 15.24 113.03 0) (unit 1)
+ (symbol (lib_id "power:+5V") (at 36.83 129.54 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e2804cb)
- (property "Reference" "#PWR0129" (id 0) (at 15.24 116.84 0)
+ (property "Reference" "#PWR0129" (id 0) (at 36.83 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
- (property "Value" "+5V" (id 1) (at 15.621 108.6358 0))
- (property "Footprint" "" (id 2) (at 15.24 113.03 0)
+ (property "Value" "+5V" (id 1) (at 37.211 125.1458 0))
+ (property "Footprint" "" (id 2) (at 36.83 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
- (property "Datasheet" "" (id 3) (at 15.24 113.03 0)
+ (property "Datasheet" "" (id 3) (at 36.83 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 807f25c3-883b-4f3e-92b1-c33ed6e6f3f5))
)
- (symbol (lib_id "Device:C_Small") (at 15.24 115.57 0) (unit 1)
+ (symbol (lib_id "Device:C_Small") (at 36.83 132.08 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e280667)
- (property "Reference" "C1" (id 0) (at 17.5768 114.4016 0)
+ (property "Reference" "C1" (id 0) (at 39.1668 130.9116 0)
(effects (font (size 1.27 1.27)) (justify left))
)
- (property "Value" "10uF" (id 1) (at 17.5768 116.713 0)
+ (property "Value" "10uF" (id 1) (at 39.1668 133.223 0)
(effects (font (size 1.27 1.27)) (justify left))
)
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 15.24 115.57 0)
+ (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 36.83 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
- (property "Datasheet" "~" (id 3) (at 15.24 115.57 0)
+ (property "Datasheet" "~" (id 3) (at 36.83 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
- (property "PN" "ZRB15XR61A106ME01D" (id 4) (at 15.24 115.57 0)
+ (property "PN" "ZRB15XR61A106ME01D" (id 4) (at 36.83 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bbe41752-0e54-4bc9-af0b-6ccbaa206b74))
(pin "2" (uuid 07abf502-9c81-4fc9-8d40-8d0dfda1bf35))
)
- (symbol (lib_id "power:GND") (at 15.24 118.11 0) (unit 1)
+ (symbol (lib_id "power:GND") (at 36.83 134.62 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e28079e)
- (property "Reference" "#PWR0130" (id 0) (at 15.24 124.46 0)
+ (property "Reference" "#PWR0130" (id 0) (at 36.83 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
- (property "Value" "GND" (id 1) (at 15.367 122.5042 0))
- (property "Footprint" "" (id 2) (at 15.24 118.11 0)
+ (property "Value" "GND" (id 1) (at 36.957 139.0142 0))
+ (property "Footprint" "" (id 2) (at 36.83 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
- (property "Datasheet" "" (id 3) (at 15.24 118.11 0)
+ (property "Datasheet" "" (id 3) (at 36.83 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 810846b7-2b8e-40cb-9c38-9a9f000bd134))
)
- (symbol (lib_id "Device:R") (at 19.05 129.54 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e280901)
- (property "Reference" "R1" (id 0) (at 20.828 128.3716 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "1M" (id 1) (at 20.828 130.683 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 17.272 129.54 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 19.05 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "PN" "ERJ-2GEJ105X" (id 4) (at 19.05 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid a637d1dd-0cff-48f9-96f5-0ddfa0b83074))
- (pin "2" (uuid d36372ad-7ff2-48fe-b98c-626930168fbb))
- )
-
(symbol (lib_id "power:GND") (at 48.26 26.67 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e2974b8)
@@ -4531,22 +4280,6 @@
(pin "1" (uuid c4277be2-8ea1-4763-9c5f-287ddbd9f87e))
)
- (symbol (lib_id "power:GND") (at 50.8 147.32 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e29caa0)
- (property "Reference" "#PWR0131" (id 0) (at 50.8 153.67 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 50.927 151.7142 0))
- (property "Footprint" "" (id 2) (at 50.8 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 50.8 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 7b041b23-e2dc-4e47-b657-da0dade0c839))
- )
-
(symbol (lib_id "Device:C_Small") (at 191.77 21.59 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e29d489)
@@ -4655,22 +4388,6 @@
(pin "1" (uuid 1f55bad8-7d29-436c-860e-c5e9cf3d5299))
)
- (symbol (lib_id "power:GND") (at 27.94 140.97 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e2a09d4)
- (property "Reference" "#PWR0132" (id 0) (at 27.94 147.32 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 28.067 145.3642 0))
- (property "Footprint" "" (id 2) (at 27.94 140.97 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 27.94 140.97 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c49325ca-6e5b-4c60-8939-7c88aab7173b))
- )
-
(symbol (lib_id "Device:R") (at 245.11 66.04 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e2a0c2e)
@@ -4925,28 +4642,6 @@
(pin "2" (uuid 76239d3a-6947-4841-a7e3-1476cd80a018))
)
- (symbol (lib_id "Device:C_Small") (at 59.69 132.08 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e2d9385)
- (property "Reference" "C5" (id 0) (at 62.0268 130.9116 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "0.01uF" (id 1) (at 62.0268 133.223 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 59.69 132.08 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 59.69 132.08 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "PN" "885012205012" (id 4) (at 59.69 132.08 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 739df591-5663-4a2c-8c94-b22becda8e40))
- (pin "2" (uuid 329b6ec3-bab9-46aa-ad8b-3119c6de4a40))
- )
-
(symbol (lib_id "Device:R") (at 199.39 68.58 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e2db2f7)
@@ -5007,57 +4702,17 @@
(pin "2" (uuid 31a8ba14-c84f-4a28-b759-06fbdb564728))
)
- (symbol (lib_id "Device:R") (at 85.09 129.54 270) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e2ff1b2)
- (property "Reference" "R9" (id 0) (at 85.09 124.2822 90))
- (property "Value" "0.1" (id 1) (at 85.09 126.5936 90))
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 85.09 127.762 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 85.09 129.54 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "PN" "2176049-8" (id 4) (at 85.09 129.54 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid eaeddb05-e533-4609-bddf-fd121af10df2))
- (pin "2" (uuid fe12649d-bb0a-40f3-8811-3d0e7b82a240))
- )
-
- (symbol (lib_id "Device:R") (at 81.28 133.35 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e2ff1c3)
- (property "Reference" "R7" (id 0) (at 83.058 132.1816 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100" (id 1) (at 83.058 134.493 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 79.502 133.35 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 81.28 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "PN" "ERJ-2GEJ101X" (id 4) (at 81.28 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 07e4677a-e3dd-454d-96d6-fb3effce7aea))
- (pin "2" (uuid 5454de14-a250-4fb6-8cf2-f3e4e15210a0))
- )
-
- (symbol (lib_id "power:GND") (at 81.28 138.43 0) (unit 1)
+ (symbol (lib_id "power:GND") (at 76.2 138.43 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e2ff1ca)
- (property "Reference" "#PWR0135" (id 0) (at 81.28 144.78 0)
+ (property "Reference" "#PWR0135" (id 0) (at 76.2 144.78 0)
(effects (font (size 1.27 1.27)) hide)
)
- (property "Value" "GND" (id 1) (at 81.407 142.8242 0))
- (property "Footprint" "" (id 2) (at 81.28 138.43 0)
+ (property "Value" "GND" (id 1) (at 76.327 142.8242 0))
+ (property "Footprint" "" (id 2) (at 76.2 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
- (property "Datasheet" "" (id 3) (at 81.28 138.43 0)
+ (property "Datasheet" "" (id 3) (at 76.2 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 59b4f748-5947-453e-b4c9-9178c5709e25))
@@ -5199,22 +4854,6 @@
(pin "2" (uuid c5783842-8af5-4aae-9ae8-b37916743424))
)
- (symbol (lib_id "power:GND") (at 24.13 133.35 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 00000000-0000-0000-0000-00005e469794)
- (property "Reference" "#PWR0134" (id 0) (at 24.13 139.7 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 24.257 137.7442 0))
- (property "Footprint" "" (id 2) (at 24.13 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 24.13 133.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b56b1247-a1c2-4ff2-b0d4-6b4f57742b4c))
- )
-
(symbol (lib_id "Device:C_Small") (at 194.31 101.6 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e4a4ec3)
@@ -5389,6 +5028,40 @@
(pin "1" (uuid 7d4ff933-cd0c-468c-a149-65f0100f466e))
)
+ (symbol (lib_id "Regulator_Linear:MIC5504-1.2YM5") (at 55.88 132.08 0) (unit 1)
+ (in_bom yes) (on_board yes) (fields_autoplaced)
+ (uuid 329e525a-cfe4-4a84-bdd9-541b463e2e75)
+ (property "Reference" "U3" (id 0) (at 55.88 121.92 0))
+ (property "Value" "MIC5504-1.2YM5" (id 1) (at 55.88 124.46 0))
+ (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 55.88 142.24 0)
+ (effects (font (size 1.27 1.27)) hide)
+ )
+ (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/MIC550X.pdf" (id 3) (at 49.53 125.73 0)
+ (effects (font (size 1.27 1.27)) hide)
+ )
+ (pin "1" (uuid 108cea2d-0d13-46af-bdfb-e7737c618252))
+ (pin "2" (uuid c1d3a9e5-e201-4b05-a3ff-a1056dc0a25f))
+ (pin "3" (uuid e5bfd199-c98e-483b-ae86-caf5ff4be7c2))
+ (pin "4" (uuid 683ca415-b471-4063-afbd-f7d3d16e8065))
+ (pin "5" (uuid 4f4ec21f-2a10-4f54-a1a7-45077976f63d))
+ )
+
+ (symbol (lib_id "power:GND") (at 55.88 139.7 0) (unit 1)
+ (in_bom yes) (on_board yes)
+ (uuid eb8d9b92-b461-41f5-9299-3a167f76d05d)
+ (property "Reference" "#PWR0131" (id 0) (at 55.88 146.05 0)
+ (effects (font (size 1.27 1.27)) hide)
+ )
+ (property "Value" "GND" (id 1) (at 56.007 144.0942 0))
+ (property "Footprint" "" (id 2) (at 55.88 139.7 0)
+ (effects (font (size 1.27 1.27)) hide)
+ )
+ (property "Datasheet" "" (id 3) (at 55.88 139.7 0)
+ (effects (font (size 1.27 1.27)) hide)
+ )
+ (pin "1" (uuid 2fed5a07-ae85-4ee0-83e5-d3052bfd129b))
+ )
+
(sheet_instances
(path "/" (page "1"))
)
@@ -5484,18 +5157,12 @@
(path "/00000000-0000-0000-0000-00005e28079e"
(reference "#PWR0130") (unit 1) (value "GND") (footprint "")
)
- (path "/00000000-0000-0000-0000-00005e29caa0"
+ (path "/eb8d9b92-b461-41f5-9299-3a167f76d05d"
(reference "#PWR0131") (unit 1) (value "GND") (footprint "")
)
- (path "/00000000-0000-0000-0000-00005e2a09d4"
- (reference "#PWR0132") (unit 1) (value "GND") (footprint "")
- )
(path "/00000000-0000-0000-0000-00006230a1d0"
(reference "#PWR0133") (unit 1) (value "GND") (footprint "")
)
- (path "/00000000-0000-0000-0000-00005e469794"
- (reference "#PWR0134") (unit 1) (value "GND") (footprint "")
- )
(path "/00000000-0000-0000-0000-00005e2ff1ca"
(reference "#PWR0135") (unit 1) (value "GND") (footprint "")
)
@@ -5538,9 +5205,6 @@
(path "/00000000-0000-0000-0000-00005e4a4ec3"
(reference "C4") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
- (path "/00000000-0000-0000-0000-00005e2d9385"
- (reference "C5") (unit 1) (value "0.01uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
- )
(path "/00000000-0000-0000-0000-00005e271ffd"
(reference "C6") (unit 1) (value "0.01uF") (footprint "Capacitor_SMD:C_0402_1005Metric")
)
@@ -5637,18 +5301,9 @@
(path "/00000000-0000-0000-0000-0000620502d1"
(reference "J2") (unit 1) (value "raspberry_pi_2_3_4_ordered") (footprint "ice4pi:PinSocket_2x20_P2.54mm_Vertical_1_04mm")
)
- (path "/00000000-0000-0000-0000-00005e280901"
- (reference "R1") (unit 1) (value "1M") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
(path "/00000000-0000-0000-0000-00005e1e2982"
(reference "R2") (unit 1) (value "10K") (footprint "Resistor_SMD:R_0402_1005Metric")
)
- (path "/00000000-0000-0000-0000-00005e2ff1c3"
- (reference "R7") (unit 1) (value "100") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/00000000-0000-0000-0000-00005e2ff1b2"
- (reference "R9") (unit 1) (value "0.1") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
(path "/00000000-0000-0000-0000-00005e2d2fe4"
(reference "R10") (unit 1) (value "1K") (footprint "Resistor_SMD:R_0402_1005Metric")
)
@@ -5700,8 +5355,8 @@
(path "/00000000-0000-0000-0000-00005e1e1709"
(reference "U2") (unit 1) (value "W25Q32JVSSIQ") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
)
- (path "/00000000-0000-0000-0000-00005e27fcd5"
- (reference "U3") (unit 1) (value "LT3030") (footprint "ice4pi:TSSOP-20_4.4x6.5mm_P0.65mm")
+ (path "/329e525a-cfe4-4a84-bdd9-541b463e2e75"
+ (reference "U3") (unit 1) (value "MIC5504-1.2YM5") (footprint "Package_TO_SOT_SMD:SOT-23-5")
)
(path "/00000000-0000-0000-0000-00005e1e4caf"
(reference "U4") (unit 1) (value "DSC1001DI1-012.0000") (footprint "Oscillator:Oscillator_SMD_Abracon_ASDMB-4Pin_2.5x2.0mm")
diff --git a/ice4pi.pcf b/ice4pi.pcf
new file mode 100644
index 0000000..8b416b6
--- /dev/null
+++ b/ice4pi.pcf
@@ -0,0 +1,67 @@
+# 5 LEDs (identical to iCE40HX-1K iCEstick)
+set_io D1 99
+set_io D2 98
+set_io D3 97
+set_io D4 96
+set_io D5 95
+
+# 12MHz clock (identical to iCE40HX-1K iCEstick)
+set_io clk 21
+
+# pmod IO
+set_io P1 78
+set_io P2 79
+set_io P3 80
+set_io P4 81
+set_io P5 87
+set_io P6 88
+set_io P7 90
+set_io P8 91
+
+
+#ice4pi Raspberry Pi 40-pin connector
+# R1 3V3
+set_io R3 139
+set_io R5 141
+set_io R7 138
+# R9 GND
+set_io R11 137
+set_io R13 135
+set_io R15 129
+# R17 3V3
+set_io R19 67 #iCE_MOSI
+
+set_io R21 68 #iCE_MISO
+set_io R23 70 #iCE_SCK
+# R25 GND
+set_io R27 121
+set_io R29 120
+set_io R31 118
+set_io R33 117
+set_io R35 115
+set_io R37 113
+# R39 GND
+
+# R2 5V
+# R4 5V
+# R6 GND
+set_io R8 9 # RS232_Rx_TTL
+set_io R10 8 # RS232_Tx_TTL
+set_io R12 136
+# R14 GND
+set_io R16 134
+set_io R18 66 # iCE_CREST
+
+# R20 GND
+set_io R22 65 # iCE_DONE
+set_io R24 71 # iCE_SS_B
+set_io R26 128
+set_io R28 122
+# R30 GND
+set_io R32 119
+# R34 GND
+set_io R36 116
+set_io R38 114
+set_io R40 112
+
+