commit cdf5c2d1d2fdbe35644eb340ef6dbffd1826759c Author: s3lph Date: Sun Mar 19 02:02:29 2023 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..21269db --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# https://github.com/github/gitignore/blob/main/KiCad.gitignore +# For PCBs designed using KiCad: https://www.kicad.org/ +# Format documentation: https://kicad.org/help/file-formats/ + +# Temporary files +*.000 +*.bak +*.bck +*.kicad_pcb-bak +*.kicad_sch-bak +*-backups +*.kicad_prl +*.sch-bak +*~ +_autosave-* +*.tmp +*-save.pro +*-save.kicad_pcb +fp-info-cache + +# Netlist files (exported from Eeschema) +*.net + +# Autorouter files (exported from Pcbnew) +*.dsn +*.ses + +# Exported BOM files +*.xml +*.csv \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..fc51fd1 --- /dev/null +++ b/README.md @@ -0,0 +1,70 @@ +# AT27C040 PLCC to Commodore PET/CBM ROM Adapter PCB + +* Emulate 4K or 2K ROM +* Up to 16 different images on one ROM, selectable with 4 DIP switches +* Can be produced 1-sided (but then only 4 different images can be used) + +## Variations + +* 4K vs 2K + * 4K: Leave center solder bridge uncut + * 2K: Cut center solder bridge + +* Configuration + * unconfigurable + * Leave all solder bridges + * Do not populate the pullup resistors + * 1-sided, 2-bit configurable + * Cut the solder bridges beneath the dip switches + * Populate the pullup resistors on the front side + * 2-sided, 4-bit configurable + * Cut the solder bridges beneath the dip switches and on the bacl side + * Populate the pullup resistors on both sides + +## Image Generation + +Use `./mk27c040.py` to generate one 512K image from multiple individual 4K oder 2K images, e.g.: + +``` +./mk27c040.py -o combined.bin --00000 image1.bin --20000 image2.bin +``` + +You can look up the base addresses for the different DIP switch positions in the tables below. + +When the output image has been created, you can flash it to the ROM chip (using `minipro` in this example): + +``` +minipro -p AT27C040@PLCC32 -w combined.bin +``` + +### DIP Switch to Base Address Mapping + +When only 2 and 3 are populated: + +| 2 | 3 | Base Address | +|---|---|--------------| +| 0 | 0 | `$09000` | +| 0 | 1 | `$01000` | +| 1 | 0 | `$08000` | +| 1 | 1 | `$00000` | + +When all 4 switches are populated: + +| 1 | 2 | 3 | 4 | Base Address | +|---|---|---|---|--------------| +| 0 | 0 | 0 | 0 | `$39000` | +| 0 | 0 | 0 | 1 | `$19000` | +| 0 | 0 | 1 | 0 | `$31000` | +| 0 | 0 | 1 | 1 | `$11000` | +| 0 | 1 | 0 | 0 | `$38000` | +| 0 | 1 | 0 | 1 | `$18000` | +| 0 | 1 | 1 | 0 | `$30000` | +| 0 | 1 | 1 | 1 | `$10000` | +| 1 | 0 | 0 | 0 | `$29000` | +| 1 | 0 | 0 | 1 | `$09000` | +| 1 | 0 | 1 | 0 | `$21000` | +| 1 | 0 | 1 | 1 | `$01000` | +| 1 | 1 | 0 | 0 | `$28000` | +| 1 | 1 | 0 | 1 | `$08000` | +| 1 | 1 | 1 | 0 | `$20000` | +| 1 | 1 | 1 | 1 | `$00000` | diff --git a/mk27c040.py b/mk27c040.py new file mode 100755 index 0000000..b9c911f --- /dev/null +++ b/mk27c040.py @@ -0,0 +1,72 @@ +#!/usr/bin/env python3 + +import re +import sys +import argparse + + +ROMSIZE = 512 * 1024 + + +class FileMap: + + def __init__(self, base: int, filename: str): + self.base = base + self.filename = filename + with open(filename, 'rb') as f: + self.data = f.read() + if len(self.data) == 0: + raise AttributeError(f'File {filename} is empty') + if len(self.data) > 4096: + raise AttributeError(f'File {filename} exceeds 4KiB') + self.end = self.base + len(self.data) + if self.base < 0 or self.end > ROMSIZE: + raise AttributeError(f'File {filename} out of bounds: {hex(self.base)[2:]}:{hex(self.end-1)[2:]}') + if self.base & 0x0fff != 0: + raise AttributeError(f'File {filename} not aligned to 4KiB boundary: {hex(self.base)[2:]}:{hex(self.end-1)[2:]}') + + @staticmethod + def at(base: int): + def _filemap(f): + return FileMap(base, f) + return _filemap + + +def baseimage(byte): + b = int(byte, 16) + return bytearray([b]) * ROMSIZE + + +def create_image(ns): + buf = ns.fill + used = {} + for m in ns.maps: + if m.base in used: + raise KeyError(f'{m.filename} and {used[m.base]} are both mapped at {hex(m.base)[2:]}') + used[m.base] = m.filename + buf[m.base:m.end] = m.data + with open(ns.output, 'wb') as f: + f.write(buf) + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument('--output', '-o', type=str, metavar='FILE', default='27c040.bin', help='Write image to FILE (default: 27c040.bin)') + ap.add_argument('--', type=ValueError, metavar='FILE', help='Map FILE at the 4KiB-aligned sector starting at hex-address NNNNN.') + ap.add_argument('--fill', '-f', type=baseimage, default='FF', help='Fill unmapped areas with this hex byte (default: FF)') + + # https://stackoverflow.com/a/37367814 + ns, unknown = ap.parse_known_args(sys.argv[1:]) + for arg in unknown: + m = re.match('^--([0-9a-fA-F]{5})$', arg) + if m is None: + continue + base = int(m.group(1), 16) + ap.add_argument(arg, type=FileMap.at(base), dest='maps', action='append') + ns = ap.parse_args(sys.argv[1:]) + + create_image(ns) + + +if __name__ == '__main__': + main() diff --git a/pcb.kicad_pcb b/pcb.kicad_pcb new file mode 100644 index 0000000..8e3930c --- /dev/null +++ b/pcb.kicad_pcb @@ -0,0 +1,1238 @@ +(kicad_pcb (version 20211014) (generator pcbnew) + + (general + (thickness 1.6) + ) + + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + + (setup + (stackup + (layer "F.SilkS" (type "Top Silk Screen")) + (layer "F.Paste" (type "Top Solder Paste")) + (layer "F.Mask" (type "Top Solder Mask") (thickness 0.01)) + (layer "F.Cu" (type "copper") (thickness 0.035)) + (layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02)) + (layer "B.Cu" (type "copper") (thickness 0.035)) + (layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01)) + (layer "B.Paste" (type "Bottom Solder Paste")) + (layer "B.SilkS" (type "Bottom Silk Screen")) + (copper_finish "None") + (dielectric_constraints no) + ) + (pad_to_mask_clearance 0) + (pcbplotparams + (layerselection 0x00010a8_7fffffff) + (disableapertmacros false) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (svguseinch false) + (svgprecision 6) + (excludeedgelayer true) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (dxfpolygonmode true) + (dxfimperialunits true) + (dxfusepcbnewfont true) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (sketchpadsonfab false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 0) + (scaleselection 1) + (outputdirectory "/tmp/pet/") + ) + ) + + (net 0 "") + (net 1 "A7") + (net 2 "A6") + (net 3 "A5") + (net 4 "A4") + (net 5 "A3") + (net 6 "A2") + (net 7 "A1") + (net 8 "A0") + (net 9 "D0") + (net 10 "D1") + (net 11 "D2") + (net 12 "GND") + (net 13 "D3") + (net 14 "D4") + (net 15 "D5") + (net 16 "D6") + (net 17 "D7") + (net 18 "OE") + (net 19 "unconnected-(J1-Pad21)") + (net 20 "+5V") + (net 21 "A11") + (net 22 "CE") + (net 23 "A10") + (net 24 "A9") + (net 25 "A8") + (net 26 "A12") + (net 27 "A15") + (net 28 "A16") + (net 29 "A17") + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp 2f310d06-a2ff-4e86-95d4-88df1f96e6a9) + (at 47.752 45.212 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "pcb.kicad_sch") + (property "Sheetname" "") + (path "/a1ad4d61-6556-470c-9879-70831df1e9e1") + (attr smd) + (fp_text reference "R1" (at 2.032 0 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ee0f3e84-5a12-4e1d-9f31-7052402f7de0) + ) + (fp_text value "10kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ccad3605-e09d-42f5-a676-f4fc7574dd31) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 380481b6-6348-4bb3-a670-29edf806fd31) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 97b27063-2ae9-4c3d-8f60-49a508afdaff)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp ea947136-6406-433c-adbf-d7c75f0c7f66)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0c8a01d3-d4fd-4b41-8220-c70fd393fd8a)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 2b9ffecc-0e6a-4699-a7d6-b613a7308d8c)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 401402a7-dc33-460b-baa3-8f303d823222)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 6f328159-9b77-4a14-be49-bc127491e9f2)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 220cd223-f57c-4924-a8d1-00dcbbd9fd6a)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3423e621-d439-45cb-9c35-6f8ea0bf2103)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3a355a3b-2dd0-4302-bcf0-e958b99add69)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 3c7a4c6f-a990-4304-88b1-0b5e8d0726b7)) + (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 20 "+5V") (pintype "passive") (tstamp 5ae758ad-8acd-423e-aada-11d788a64aa2)) + (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 26 "A12") (pintype "passive") (tstamp 60bef1f9-9e05-4010-8bae-3685de51a119)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu") + (tedit 5C745284) (tstamp 41d12f3f-11c6-402c-bcf2-6f6e169eb2f6) + (at 53.848 49.276) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Sheetfile" "pcb.kicad_sch") + (property "Sheetname" "") + (path "/e1a57abc-e1de-4622-8769-4b8801fef914") + (attr exclude_from_pos_files) + (fp_text reference "JP5" (at -0.254 2.032) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 395df0a5-800c-4cca-a0f1-3ad76d2e76ca) + ) + (fp_text value "SolderJumper_2_Open" (at 0 1.9) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b3ee6304-4586-4924-9942-14d87bd91c7d) + ) + (fp_poly (pts + (xy 0.25 -0.3) + (xy -0.25 -0.3) + (xy -0.25 0.3) + (xy 0.25 0.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp b7ea6100-ff11-4609-86f6-89b95a0d171e)) + (fp_line (start -0.7 -1) (end 0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 14024e4b-59d0-4f66-8eba-1d0eb8f5d9a6)) + (fp_line (start 1.4 -0.3) (end 1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 49c4dcb9-cb9b-421e-b7b9-e495c75a42b7)) + (fp_line (start 0.7 1) (end -0.7 1) (layer "F.SilkS") (width 0.12) (tstamp b8a5679e-0824-4fd4-bd37-515f1c75fd73)) + (fp_line (start -1.4 0.3) (end -1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp f46360b3-2778-4224-b87e-99e44d6e0b71)) + (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 0db9632a-21af-4acb-9c05-e041f8c89b3a)) + (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 35505c17-306b-4361-9895-a67ced902f2d)) + (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp c14d7200-f91c-4b1f-9467-64c3336c7ef2)) + (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp e4e8c3f3-f9c5-4fd5-9df8-595c4d009ab6)) + (fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 412488c3-13b7-4cf8-8c58-0304d4e5151b)) + (fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp aba0fc13-5864-4b93-a0d5-5b97e1e36281)) + (fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp b93d027f-21f6-4fc9-ad3f-317eded6973b)) + (fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp bdfead1f-ec4f-41f7-bfd1-971493371164)) + (pad "1" smd custom (at -0.65 0) (size 1 0.5) (layers "F.Cu" "F.Mask") + (net 12 "GND") (pinfunction "A") (pintype "passive") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_poly (pts + (xy 0.5 0.75) + (xy 0 0.75) + (xy 0 -0.75) + (xy 0.5 -0.75) + ) (width 0) (fill yes)) + ) (tstamp 355984fe-c4ef-4584-9c88-7aed9a4b1db8)) + (pad "2" smd custom (at 0.65 0) (size 1 0.5) (layers "F.Cu" "F.Mask") + (net 29 "A17") (pinfunction "B") (pintype "passive") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_poly (pts + (xy 0 0.75) + (xy -0.5 0.75) + (xy -0.5 -0.75) + (xy 0 -0.75) + ) (width 0) (fill yes)) + ) (tstamp 537d030b-54bb-4562-9f1e-378ccefb4b2e)) + ) + + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu") + (tedit 5C745284) (tstamp 4a147d27-1179-4a00-87fa-88607d560f12) + (at 52.832 70.612 90) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Sheetfile" "pcb.kicad_sch") + (property "Sheetname" "") + (path "/8c56c6ba-0057-4349-a882-633a569afeeb") + (attr exclude_from_pos_files) + (fp_text reference "JP3" (at 0 2.286 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 70ad1139-50a2-4f62-960b-0274790f3382) + ) + (fp_text value "SolderJumper_2_Open" (at 0 1.9 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 23a565f8-c512-42e3-b944-2b21cc7ef5bf) + ) + (fp_poly (pts + (xy 0.25 -0.3) + (xy -0.25 -0.3) + (xy -0.25 0.3) + (xy 0.25 0.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 63ac02d9-df52-49d6-bf40-d68ede45c647)) + (fp_line (start -1.4 0.3) (end -1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 1aaba807-e811-49c9-9d19-feb0d07d9d41)) + (fp_line (start -0.7 -1) (end 0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 291d2e41-69fa-4c50-ba6f-fb2342afae58)) + (fp_line (start 0.7 1) (end -0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 3fd0a841-351f-4dc1-b3c2-1686bffa07d5)) + (fp_line (start 1.4 -0.3) (end 1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp d3079292-60d9-4a27-b0d3-92875084e9f6)) + (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 45047bb9-87a7-4ccc-955e-f309ddb6bb4f)) + (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp ae48c831-8775-4671-a20d-037464c16f4d)) + (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp e7dee0a0-1bf5-4243-ac45-e9c9a7f48039)) + (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp fb789d35-2164-4089-ab99-307afe88bcea)) + (fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 4a44d03f-3ed6-4671-a81d-65f7bbf02c9c)) + (fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 6c58bef7-a109-4acd-b484-5503636af5ac)) + (fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 9346ede7-230c-4692-b20f-a0ec78887e90)) + (fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp ac8ecb84-75c5-4603-8c9d-a73dd2fe55aa)) + (pad "1" smd custom (at -0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask") + (net 12 "GND") (pinfunction "A") (pintype "passive") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_poly (pts + (xy 0.5 0.75) + (xy 0 0.75) + (xy 0 -0.75) + (xy 0.5 -0.75) + ) (width 0) (fill yes)) + ) (tstamp cd5d4a39-3bf6-4df0-ae30-52287f16b6b1)) + (pad "2" smd custom (at 0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask") + (net 27 "A15") (pinfunction "B") (pintype "passive") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_poly (pts + (xy 0 0.75) + (xy -0.5 0.75) + (xy -0.5 -0.75) + (xy 0 -0.75) + ) (width 0) (fill yes)) + ) (tstamp a35d1496-4f2a-4cec-b501-e084102ec217)) + ) + + (footprint "Package_LCC:PLCC-32_11.4x14.0mm_P1.27mm" (layer "F.Cu") + (tedit 5B298677) (tstamp 4d9c5bb1-1a0b-4685-9b64-9623bdfa6e36) + (at 51.308 53.848) + (descr "PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py") + (tags "PLCC LCC") + (property "Sheetfile" "pcb.kicad_sch") + (property "Sheetname" "") + (path "/716e31c5-485f-40b5-88e3-a75900da9811") + (attr smd) + (fp_text reference "U1" (at 5.334 7.874) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f85d4ea0-e9e5-4e74-b9b9-4ca2bb2e7cd7) + ) + (fp_text value "27C040" (at 0 8.52) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8d461b4d-62dc-488b-8977-3c95555f9343) + ) + (fp_line (start -5.825 7.095) (end -5.825 5.64) (layer "F.SilkS") (width 0.12) (tstamp 05c1c0ae-f846-4942-b9ca-9f0f8f62492d)) + (fp_line (start 5.825 -7.095) (end 5.825 -5.64) (layer "F.SilkS") (width 0.12) (tstamp 184b2fad-24f5-4073-ae78-9c4ec35fa867)) + (fp_line (start 4.37 -7.095) (end 5.825 -7.095) (layer "F.SilkS") (width 0.12) (tstamp 28c42959-8e72-4709-83e0-fbb99eade23c)) + (fp_line (start -4.37 -7.095) (end -4.652782 -7.095) (layer "F.SilkS") (width 0.12) (tstamp 7134724f-277a-4c58-bbec-7ceaf30b9ed0)) + (fp_line (start 5.825 7.095) (end 5.825 5.64) (layer "F.SilkS") (width 0.12) (tstamp 83616a1b-53cb-4bc4-bfc7-a340c75ffaa4)) + (fp_line (start -4.652782 -7.095) (end -5.825 -5.922782) (layer "F.SilkS") (width 0.12) (tstamp 8a51259a-0b00-485b-ae12-40bbbcbb1fbf)) + (fp_line (start -5.825 -5.922782) (end -5.825 -5.64) (layer "F.SilkS") (width 0.12) (tstamp 91fb974e-99de-4e0c-bee5-7a6f88905951)) + (fp_line (start 4.37 7.095) (end 5.825 7.095) (layer "F.SilkS") (width 0.12) (tstamp cfc25d70-2748-49fe-bb69-5196d9ea547d)) + (fp_line (start -4.37 7.095) (end -5.825 7.095) (layer "F.SilkS") (width 0.12) (tstamp e196416c-d4d1-42d4-979d-990a370627ba)) + (fp_line (start 6.55 5.63) (end 6.55 0) (layer "F.CrtYd") (width 0.05) (tstamp 028825a5-a5a1-4471-a5f1-08090406bcd8)) + (fp_line (start 5.96 5.63) (end 6.55 5.63) (layer "F.CrtYd") (width 0.05) (tstamp 1427beee-3bac-4761-90c7-1d211b9ad51c)) + (fp_line (start 4.36 -7.23) (end 5.96 -7.23) (layer "F.CrtYd") (width 0.05) (tstamp 17d647d2-36cd-405f-a8c1-4a4bb5cb57ac)) + (fp_line (start -5.96 5.63) (end -6.55 5.63) (layer "F.CrtYd") (width 0.05) (tstamp 1a6cbd94-89ce-40b4-bf57-ce02cce2f2a0)) + (fp_line (start 4.36 7.82) (end 4.36 7.23) (layer "F.CrtYd") (width 0.05) (tstamp 1e3fd3d5-91a2-4915-bf3d-e5e3d46d180b)) + (fp_line (start -4.36 7.23) (end -5.96 7.23) (layer "F.CrtYd") (width 0.05) (tstamp 2bc709a0-58c7-4027-bd09-68d5e2408c67)) + (fp_line (start -4.36 -7.23) (end -4.68 -7.23) (layer "F.CrtYd") (width 0.05) (tstamp 46f17238-8a86-42fa-a9fd-be51f506f7e6)) + (fp_line (start -4.36 7.82) (end -4.36 7.23) (layer "F.CrtYd") (width 0.05) (tstamp 4c37a42c-e30e-4fbe-8a58-4d959e1e3766)) + (fp_line (start -5.96 -5.63) (end -6.55 -5.63) (layer "F.CrtYd") (width 0.05) (tstamp 4c492959-c00a-430a-b92b-afb6f355a82a)) + (fp_line (start 4.36 -7.82) (end 4.36 -7.23) (layer "F.CrtYd") (width 0.05) (tstamp 4c7e0aa8-63d6-4bff-88aa-64f636f5b95e)) + (fp_line (start 6.55 -5.63) (end 6.55 0) (layer "F.CrtYd") (width 0.05) (tstamp 530e1c0a-bb5b-44a7-b162-4c6f9e290093)) + (fp_line (start -4.36 -7.82) (end -4.36 -7.23) (layer "F.CrtYd") (width 0.05) (tstamp 73b3efd7-d2be-46cf-b06c-e91017a9877c)) + (fp_line (start -6.55 5.63) (end -6.55 0) (layer "F.CrtYd") (width 0.05) (tstamp 74af2938-5aa5-43d4-bb52-2d07b4b7e88e)) + (fp_line (start 5.96 7.23) (end 5.96 5.63) (layer "F.CrtYd") (width 0.05) (tstamp 773a22ae-c653-4f8d-930e-4149eabde637)) + (fp_line (start 0 7.82) (end 4.36 7.82) (layer "F.CrtYd") (width 0.05) (tstamp 7844fa1c-c2e9-46d4-aee9-55128915096f)) + (fp_line (start 0 -7.82) (end 4.36 -7.82) (layer "F.CrtYd") (width 0.05) (tstamp 80308ea8-7152-4634-99bf-492db3c9f37a)) + (fp_line (start 0 7.82) (end -4.36 7.82) (layer "F.CrtYd") (width 0.05) (tstamp 81c8ed7b-6f74-439b-b839-9329368f223c)) + (fp_line (start 5.96 -5.63) (end 6.55 -5.63) (layer "F.CrtYd") (width 0.05) (tstamp 9ae7e107-47c3-4f43-acc6-d14899796c06)) + (fp_line (start 4.36 7.23) (end 5.96 7.23) (layer "F.CrtYd") (width 0.05) (tstamp b7986f62-ea7a-4dc5-91cd-26acb8e0379b)) + (fp_line (start 5.96 -7.23) (end 5.96 -5.63) (layer "F.CrtYd") (width 0.05) (tstamp b988d6e1-acde-48d5-aaac-780083f0a33d)) + (fp_line (start 0 -7.82) (end -4.36 -7.82) (layer "F.CrtYd") (width 0.05) (tstamp c49cdd63-d196-49a7-b408-7af3848e936c)) + (fp_line (start -5.96 7.23) (end -5.96 5.63) (layer "F.CrtYd") (width 0.05) (tstamp cdb8e730-b927-443e-bb30-3662dd4e56b2)) + (fp_line (start -6.55 -5.63) (end -6.55 0) (layer "F.CrtYd") (width 0.05) (tstamp d0e758c8-d140-4a8a-8239-760094b94ecd)) + (fp_line (start -5.96 -5.95) (end -5.96 -5.63) (layer "F.CrtYd") (width 0.05) (tstamp dfcf21ae-fd3c-40b2-9ae0-524856d8c6da)) + (fp_line (start -4.68 -7.23) (end -5.96 -5.95) (layer "F.CrtYd") (width 0.05) (tstamp f573056c-87a1-403e-987f-f1dc1f10bd0b)) + (fp_line (start 0 -6.277893) (end 0.5 -6.985) (layer "F.Fab") (width 0.1) (tstamp 1787153b-aa75-4d9d-ba83-d6b350b998a0)) + (fp_line (start -5.715 6.985) (end -5.715 -5.845) (layer "F.Fab") (width 0.1) (tstamp 5a9cc8dc-b899-4016-9873-a99ec930a962)) + (fp_line (start 0.5 -6.985) (end 5.715 -6.985) (layer "F.Fab") (width 0.1) (tstamp 5c43dd51-b673-40c0-86bf-6d45aa01dce3)) + (fp_line (start 5.715 6.985) (end -5.715 6.985) (layer "F.Fab") (width 0.1) (tstamp 60e87dc7-656f-4705-b8d6-ece6cbaf41c3)) + (fp_line (start -5.715 -5.845) (end -4.575 -6.985) (layer "F.Fab") (width 0.1) (tstamp 6174394f-bb9b-4752-bb81-4ff9404b9295)) + (fp_line (start -0.5 -6.985) (end 0 -6.277893) (layer "F.Fab") (width 0.1) (tstamp 8b6d23e1-36db-42f1-8a08-9f4ec1369434)) + (fp_line (start -4.575 -6.985) (end -0.5 -6.985) (layer "F.Fab") (width 0.1) (tstamp 8c875065-be0e-41c1-a837-74699c7ba035)) + (fp_line (start 5.715 -6.985) (end 5.715 6.985) (layer "F.Fab") (width 0.1) (tstamp fd0058ab-f81f-45ed-b645-df2b0d3bfce5)) + (pad "1" smd roundrect (at 0 -6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 12 "GND") (pinfunction "VPP") (pintype "input") (tstamp 8edcf05f-b0d5-49a3-b916-fcd5f9b197b1)) + (pad "2" smd roundrect (at -1.27 -6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 28 "A16") (pinfunction "A16") (pintype "input") (tstamp 1d901cb2-360a-4708-b3ed-e4b172d3996f)) + (pad "3" smd roundrect (at -2.54 -6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 27 "A15") (pinfunction "A15") (pintype "input") (tstamp 1feb75da-52bc-4f54-bc22-6a4b1520ccea)) + (pad "4" smd roundrect (at -3.81 -6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 26 "A12") (pinfunction "A12") (pintype "input") (tstamp 7bd6a5a6-975a-47f2-9ae0-724cced216ae)) + (pad "5" smd roundrect (at -5.5625 -5.08) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 1 "A7") (pinfunction "A7") (pintype "input") (tstamp 4362d6f1-39b0-4140-a0c9-e1c7e29f1387)) + (pad "6" smd roundrect (at -5.5625 -3.81) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 2 "A6") (pinfunction "A6") (pintype "input") (tstamp 1c6434d3-2eb4-45c4-919b-76bc5df93b2a)) + (pad "7" smd roundrect (at -5.5625 -2.54) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 3 "A5") (pinfunction "A5") (pintype "input") (tstamp 14202ecb-5941-455d-a867-b86716db90d7)) + (pad "8" smd roundrect (at -5.5625 -1.27) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 4 "A4") (pinfunction "A4") (pintype "input") (tstamp 02c86f21-caef-4fbc-95b0-d828a7114318)) + (pad "9" smd roundrect (at -5.5625 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 5 "A3") (pinfunction "A3") (pintype "input") (tstamp 21930fd1-46a2-4b3e-9765-d207f0464a07)) + (pad "10" smd roundrect (at -5.5625 1.27) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 6 "A2") (pinfunction "A2") (pintype "input") (tstamp 3406438b-af44-4c6b-93b5-d0d24ae94a91)) + (pad "11" smd roundrect (at -5.5625 2.54) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "A1") (pinfunction "A1") (pintype "input") (tstamp dd25caf2-c470-499e-9b28-d47564283b2f)) + (pad "12" smd roundrect (at -5.5625 3.81) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 8 "A0") (pinfunction "A0") (pintype "input") (tstamp bdc5ca11-10e5-4600-9ef9-bb85404d6bea)) + (pad "13" smd roundrect (at -5.5625 5.08) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 9 "D0") (pinfunction "D0") (pintype "tri_state") (tstamp 39b32332-d6eb-4066-9c5a-784c77cb509f)) + (pad "14" smd roundrect (at -3.81 6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 10 "D1") (pinfunction "D1") (pintype "tri_state") (tstamp 1b77c8f9-b0fa-45ba-a726-522a68924cf1)) + (pad "15" smd roundrect (at -2.54 6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 11 "D2") (pinfunction "D2") (pintype "tri_state") (tstamp 9c6800c7-760c-4f03-9c91-64575523dd35)) + (pad "16" smd roundrect (at -1.27 6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 12 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f7cd5e79-c8f9-4e9b-991c-a91934b795d2)) + (pad "17" smd roundrect (at 0 6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 13 "D3") (pinfunction "D3") (pintype "tri_state") (tstamp 4711680f-0033-4792-90b3-99dc2aa8a7cf)) + (pad "18" smd roundrect (at 1.27 6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 14 "D4") (pinfunction "D4") (pintype "tri_state") (tstamp 4da42412-11c8-43c1-a7e4-fee17c98b4ba)) + (pad "19" smd roundrect (at 2.54 6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 15 "D5") (pinfunction "D5") (pintype "tri_state") (tstamp 94b2d264-2d2c-4376-b127-a770616fcdbf)) + (pad "20" smd roundrect (at 3.81 6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 16 "D6") (pinfunction "D6") (pintype "tri_state") (tstamp 3493c959-87a4-4c52-b026-4808a6774531)) + (pad "21" smd roundrect (at 5.5625 5.08) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 17 "D7") (pinfunction "D7") (pintype "tri_state") (tstamp b3b1beb9-ce17-4882-bb4d-7e5a00c65d48)) + (pad "22" smd roundrect (at 5.5625 3.81) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 22 "CE") (pinfunction "~{CE}") (pintype "input") (tstamp 14891ca4-c283-4a64-98dc-86c5d6e033a0)) + (pad "23" smd roundrect (at 5.5625 2.54) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 23 "A10") (pinfunction "A10") (pintype "input") (tstamp 362755ad-ea41-482e-bb23-627c6eb15a40)) + (pad "24" smd roundrect (at 5.5625 1.27) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 18 "OE") (pinfunction "~{OE}") (pintype "input") (tstamp c4b1e7cf-3aa3-45c5-8585-741388413869)) + (pad "25" smd roundrect (at 5.5625 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 21 "A11") (pinfunction "A11") (pintype "input") (tstamp 6dd24007-4e31-4437-a050-fa6e699c9468)) + (pad "26" smd roundrect (at 5.5625 -1.27) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 24 "A9") (pinfunction "A9") (pintype "input") (tstamp 2efaba24-aee5-4bea-ae84-dbce9fb4b72e)) + (pad "27" smd roundrect (at 5.5625 -2.54) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 25 "A8") (pinfunction "A8") (pintype "input") (tstamp edff7200-18c6-4e0c-99f9-a118fc24b63a)) + (pad "28" smd roundrect (at 5.5625 -3.81) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 12 "GND") (pinfunction "A13") (pintype "input") (tstamp e0e4f26b-9768-45ce-836e-303c9ffcd23d)) + (pad "29" smd roundrect (at 5.5625 -5.08) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 12 "GND") (pinfunction "A14") (pintype "input") (tstamp 4227d0f4-4162-4ece-9ec9-195feb76c6dd)) + (pad "30" smd roundrect (at 3.81 -6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 29 "A17") (pinfunction "A17") (pintype "input") (tstamp 1d27c77d-c33f-442a-bd7b-7b44d10eb43c)) + (pad "31" smd roundrect (at 2.54 -6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 12 "GND") (pinfunction "A18") (pintype "input") (tstamp a61b8793-ec96-4e3b-97b0-2185f1c8bd47)) + (pad "32" smd roundrect (at 1.27 -6.8375) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 20 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 022a97fa-643b-4302-b44c-26a956146db7)) + (model "${KICAD6_3DMODEL_DIR}/Package_LCC.3dshapes/PLCC-32_11.4x14.0mm_P1.27mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Button_Switch_THT:SW_DIP_SPSTx04_Slide_6.7x11.72mm_W7.62mm_P2.54mm_LowProfile" (layer "F.Cu") + (tedit 5A4E1404) (tstamp 51b7c265-622e-4c76-85e5-2aaf1ef4f312) + (at 47.752 73.152 90) + (descr "4x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile") + (tags "DIP Switch SPST Slide 7.62mm 300mil LowProfile") + (property "Sheetfile" "pcb.kicad_sch") + (property "Sheetname" "") + (path "/31446a24-8ce7-4dca-ab0b-d907a8be5e8d") + (attr through_hole) + (fp_text reference "SW1" (at 3.81 -3.11 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c12ae496-04b7-4bf3-9211-6370eac1d527) + ) + (fp_text value "SW_DIP_x04" (at 3.81 10.73 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c6b8c222-5abb-4f9d-9cb5-279a6ebb1ad3) + ) + (fp_text user "${REFERENCE}" (at 6.39 3.81 180) (layer "F.Fab") + (effects (font (size 0.8 0.8) (thickness 0.12))) + (tstamp 0a62740e-89ef-497c-abe4-5bf005279716) + ) + (fp_text user "on" (at 4.485 -1.3425 90) (layer "F.Fab") + (effects (font (size 0.8 0.8) (thickness 0.12))) + (tstamp 127a9e59-6f40-4867-8005-07ede1aa043b) + ) + (fp_line (start 5.62 4.445) (end 2 4.445) (layer "F.SilkS") (width 0.12) (tstamp 038ab6de-e1f9-44ed-8282-f0f630ae0e2e)) + (fp_line (start 2 4.685) (end 3.206667 4.685) (layer "F.SilkS") (width 0.12) (tstamp 1104181a-de46-4820-92d8-357c354569d3)) + (fp_line (start 0.4 8.61) (end 0.4 9.73) (layer "F.SilkS") (width 0.12) (tstamp 127e8ae0-181f-4c6f-9693-967e91c2a440)) + (fp_line (start 5.62 0.635) (end 5.62 -0.635) (layer "F.SilkS") (width 0.12) (tstamp 1336d492-9a75-4063-aa60-065cfb17aa5b)) + (fp_line (start 2 3.105) (end 3.206667 3.105) (layer "F.SilkS") (width 0.12) (tstamp 141c8def-8f39-4a92-94e5-8b530502620a)) + (fp_line (start 7.221 3.53) (end 7.221 4.091) (layer "F.SilkS") (width 0.12) (tstamp 17d2a24c-9f7d-466a-a9de-9008721f6b9d)) + (fp_line (start 2 5.165) (end 3.206667 5.165) (layer "F.SilkS") (width 0.12) (tstamp 1c955fbb-5e68-4933-a04e-d7b0255b3d11)) + (fp_line (start 5.62 -0.635) (end 2 -0.635) (layer "F.SilkS") (width 0.12) (tstamp 1cd27781-211d-40f2-81ff-3f8f1d13318a)) + (fp_line (start 2 5.525) (end 3.206667 5.525) (layer "F.SilkS") (width 0.12) (tstamp 1ecd55c5-20c1-47e0-816b-f8ea3bab2d54)) + (fp_line (start 2 2.265) (end 3.206667 2.265) (layer "F.SilkS") (width 0.12) (tstamp 25ed1cf0-c8d2-4dff-976a-8c6ef9999bc8)) + (fp_line (start 2 1.905) (end 2 3.175) (layer "F.SilkS") (width 0.12) (tstamp 26b888a3-a054-4e6f-8999-225699a6fe51)) + (fp_line (start 2 -0.515) (end 3.206667 -0.515) (layer "F.SilkS") (width 0.12) (tstamp 2a34e7c9-612a-4bd8-9570-b6e420b10085)) + (fp_line (start 2 6.985) (end 2 8.255) (layer "F.SilkS") (width 0.12) (tstamp 2c479ec2-ab05-447a-a32e-0580a123df6b)) + (fp_line (start 7.221 6.07) (end 7.221 6.631) (layer "F.SilkS") (width 0.12) (tstamp 2f5f88dd-193f-47f3-9623-d5cb9e905b94)) + (fp_line (start 0.4 -2.11) (end 7.221 -2.11) (layer "F.SilkS") (width 0.12) (tstamp 3725c7c6-5c87-48f5-9dd1-b9f5346889b6)) + (fp_line (start 3.206667 6.985) (end 3.206667 8.255) (layer "F.SilkS") (width 0.12) (tstamp 3c255049-39e5-484c-aa32-328e6e7e7ca9)) + (fp_line (start 2 2.865) (end 3.206667 2.865) (layer "F.SilkS") (width 0.12) (tstamp 4364dd6c-291c-4ab3-9af7-302b64934aa3)) + (fp_line (start 2 3.175) (end 5.62 3.175) (layer "F.SilkS") (width 0.12) (tstamp 4398c5b1-bd78-4ac7-aa76-a408d72bfb0d)) + (fp_line (start 2 -0.155) (end 3.206667 -0.155) (layer "F.SilkS") (width 0.12) (tstamp 448fb891-e19e-4e39-a251-5491f9d04ff8)) + (fp_line (start 3.206667 4.445) (end 3.206667 5.715) (layer "F.SilkS") (width 0.12) (tstamp 45c194ab-cda8-46f3-8a7f-69395016a217)) + (fp_line (start 0.4 9.73) (end 7.221 9.73) (layer "F.SilkS") (width 0.12) (tstamp 46a6f349-eaca-4f26-96b9-a3bbd93f9bb8)) + (fp_line (start 3.206667 -0.635) (end 3.206667 0.635) (layer "F.SilkS") (width 0.12) (tstamp 49a590ae-9e29-4657-837a-97455d278cb1)) + (fp_line (start 2 2.745) (end 3.206667 2.745) (layer "F.SilkS") (width 0.12) (tstamp 4e7d878d-73c2-4495-ab96-cfbe988cf114)) + (fp_line (start 2 5.405) (end 3.206667 5.405) (layer "F.SilkS") (width 0.12) (tstamp 55ef627b-b358-40e8-bba9-8d8d5b51ece1)) + (fp_line (start 2 5.645) (end 3.206667 5.645) (layer "F.SilkS") (width 0.12) (tstamp 5bc17435-a011-4a44-ac53-af37e08d6522)) + (fp_line (start 2 0.635) (end 5.62 0.635) (layer "F.SilkS") (width 0.12) (tstamp 5e113b49-30c2-4c92-a6e5-a73aa5905c47)) + (fp_line (start 2 -0.035) (end 3.206667 -0.035) (layer "F.SilkS") (width 0.12) (tstamp 639366ff-1e58-4181-935e-dd91cc582400)) + (fp_line (start 2 7.225) (end 3.206667 7.225) (layer "F.SilkS") (width 0.12) (tstamp 63eb3707-5808-4ca2-a468-45b642192112)) + (fp_line (start 2 2.025) (end 3.206667 2.025) (layer "F.SilkS") (width 0.12) (tstamp 68ee8b7e-55c3-4d58-868b-b1145e00b0aa)) + (fp_line (start 2 2.385) (end 3.206667 2.385) (layer "F.SilkS") (width 0.12) (tstamp 693f52c8-d32f-4dba-8081-49f9b563b51a)) + (fp_line (start 2 8.065) (end 3.206667 8.065) (layer "F.SilkS") (width 0.12) (tstamp 6c9a7d2c-0cd9-454f-870a-335f3b830559)) + (fp_line (start 5.62 1.905) (end 2 1.905) (layer "F.SilkS") (width 0.12) (tstamp 6e19f719-0040-4e5a-a2a1-94e4ad1eaa02)) + (fp_line (start 2 4.565) (end 3.206667 4.565) (layer "F.SilkS") (width 0.12) (tstamp 734fa374-0420-48bb-82b7-d16060528b34)) + (fp_line (start 3.206667 1.905) (end 3.206667 3.175) (layer "F.SilkS") (width 0.12) (tstamp 74b2f79c-3c11-4f05-a588-1fd37af85b50)) + (fp_line (start 0.4 -2.11) (end 0.4 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 74fbb114-dab7-4f80-871e-677a1d25d722)) + (fp_line (start 2 -0.275) (end 3.206667 -0.275) (layer "F.SilkS") (width 0.12) (tstamp 76e3d78c-bf33-4e73-9af9-442cbb793346)) + (fp_line (start 5.62 3.175) (end 5.62 1.905) (layer "F.SilkS") (width 0.12) (tstamp 78203551-e76d-45b2-9e72-4337233f1450)) + (fp_line (start 2 8.185) (end 3.206667 8.185) (layer "F.SilkS") (width 0.12) (tstamp 78beec89-8c96-47d3-81f5-bcebaedbd1ee)) + (fp_line (start 2 5.045) (end 3.206667 5.045) (layer "F.SilkS") (width 0.12) (tstamp 83500157-382f-4385-b3c5-af1c17917d87)) + (fp_line (start 2 7.345) (end 3.206667 7.345) (layer "F.SilkS") (width 0.12) (tstamp 83b48755-0ed7-423b-8576-45d3e14c23c4)) + (fp_line (start 7.221 0.99) (end 7.221 1.551) (layer "F.SilkS") (width 0.12) (tstamp 888d100b-0500-434f-a3b2-808c8e7a5caa)) + (fp_line (start 0.4 6.07) (end 0.4 6.631) (layer "F.SilkS") (width 0.12) (tstamp 891b9f51-a382-434e-8b29-0b20f1c2c032)) + (fp_line (start 2 7.705) (end 3.206667 7.705) (layer "F.SilkS") (width 0.12) (tstamp 89ea6ac7-49de-4f45-9fef-9770be731234)) + (fp_line (start 5.62 5.715) (end 5.62 4.445) (layer "F.SilkS") (width 0.12) (tstamp 8cd502e3-a78c-4b2f-8c7f-c0f8cafe4ad6)) + (fp_line (start 2 5.715) (end 5.62 5.715) (layer "F.SilkS") (width 0.12) (tstamp 8de15c2a-8afc-424d-a78e-b76eec57ca74)) + (fp_line (start 2 7.105) (end 3.206667 7.105) (layer "F.SilkS") (width 0.12) (tstamp 93a6dd29-2c25-43a1-ac50-90ee71059ed3)) + (fp_line (start 2 2.145) (end 3.206667 2.145) (layer "F.SilkS") (width 0.12) (tstamp 9aaf0567-bcaa-4cd6-9a6d-c6ecc46d3d41)) + (fp_line (start 2 -0.635) (end 2 0.635) (layer "F.SilkS") (width 0.12) (tstamp 9ab45f16-0806-43cf-8bca-97aa13886543)) + (fp_line (start 0.4 1.04) (end 0.4 1.551) (layer "F.SilkS") (width 0.12) (tstamp 9bd6a1e0-31c7-4ef5-a8b4-d56b921fb38c)) + (fp_line (start 0.16 -2.35) (end 0.16 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a12bda84-cbba-45af-ac61-931b7feb8cb4)) + (fp_line (start 0.4 3.53) (end 0.4 4.091) (layer "F.SilkS") (width 0.12) (tstamp a141769f-e2c7-4749-abd8-be877190b1b1)) + (fp_line (start 2 5.285) (end 3.206667 5.285) (layer "F.SilkS") (width 0.12) (tstamp a451ea43-2d98-48bc-a561-7130f68044ec)) + (fp_line (start 2 0.565) (end 3.206667 0.565) (layer "F.SilkS") (width 0.12) (tstamp a5b17a5d-d08e-4d33-a326-c65dcd010125)) + (fp_line (start 2 7.585) (end 3.206667 7.585) (layer "F.SilkS") (width 0.12) (tstamp aa02eb66-9555-4f32-a6ad-4b2def725fb8)) + (fp_line (start 2 0.325) (end 3.206667 0.325) (layer "F.SilkS") (width 0.12) (tstamp aeeb4bdf-6183-41c7-ad86-233b21c90fac)) + (fp_line (start 5.62 8.255) (end 5.62 6.985) (layer "F.SilkS") (width 0.12) (tstamp b5a90c87-8ff1-4dbd-9e50-a52d990a9095)) + (fp_line (start 5.62 6.985) (end 2 6.985) (layer "F.SilkS") (width 0.12) (tstamp b949183a-eaa2-425b-ac21-ca35ae2dc4f3)) + (fp_line (start 2 2.625) (end 3.206667 2.625) (layer "F.SilkS") (width 0.12) (tstamp bc938973-e6ea-450c-84f2-38ff59bac62e)) + (fp_line (start 7.221 8.61) (end 7.221 9.73) (layer "F.SilkS") (width 0.12) (tstamp cb236765-2f36-45ef-aef4-4d53c8e8815b)) + (fp_line (start 2 7.945) (end 3.206667 7.945) (layer "F.SilkS") (width 0.12) (tstamp cd64db6f-bc3c-4c77-b8c3-22411a6dc20e)) + (fp_line (start 2 2.505) (end 3.206667 2.505) (layer "F.SilkS") (width 0.12) (tstamp cf9721f4-a945-4856-98a2-94f38d7c6c0c)) + (fp_line (start 2 7.465) (end 3.206667 7.465) (layer "F.SilkS") (width 0.12) (tstamp d408d5cd-52ec-4cc0-97ea-d991d3ce6053)) + (fp_line (start 2 4.445) (end 2 5.715) (layer "F.SilkS") (width 0.12) (tstamp d6167b53-c9ce-43fa-8bbe-d85ce6d5f701)) + (fp_line (start 7.221 -2.11) (end 7.221 -0.99) (layer "F.SilkS") (width 0.12) (tstamp d915f4ec-cdea-441c-a087-981ff2d5ffcc)) + (fp_line (start 2 2.985) (end 3.206667 2.985) (layer "F.SilkS") (width 0.12) (tstamp dd24be3c-596e-458d-a9e1-76f355e8b650)) + (fp_line (start 2 8.255) (end 5.62 8.255) (layer "F.SilkS") (width 0.12) (tstamp e0df22e6-84f3-4d87-b340-df86e6f3b0cc)) + (fp_line (start 2 7.825) (end 3.206667 7.825) (layer "F.SilkS") (width 0.12) (tstamp e1b2938e-a833-4229-bdd2-fbe7391821ab)) + (fp_line (start 2 0.445) (end 3.206667 0.445) (layer "F.SilkS") (width 0.12) (tstamp e594f9c9-4405-4b01-8709-604267150d8d)) + (fp_line (start 2 4.805) (end 3.206667 4.805) (layer "F.SilkS") (width 0.12) (tstamp e739a248-d511-4679-b92e-98ad52d4151a)) + (fp_line (start 0.16 -2.35) (end 1.543 -2.35) (layer "F.SilkS") (width 0.12) (tstamp ef1c4356-3f44-42bc-add0-b666f464c60f)) + (fp_line (start 2 4.925) (end 3.206667 4.925) (layer "F.SilkS") (width 0.12) (tstamp f997ec90-19e5-49ea-a779-67927e5dc406)) + (fp_line (start 2 0.085) (end 3.206667 0.085) (layer "F.SilkS") (width 0.12) (tstamp fcb42e53-c8fa-44d2-878b-563e0eb30d23)) + (fp_line (start 2 -0.395) (end 3.206667 -0.395) (layer "F.SilkS") (width 0.12) (tstamp fcdd3c40-f1df-4eda-9c59-e7b9537aa103)) + (fp_line (start 2 0.205) (end 3.206667 0.205) (layer "F.SilkS") (width 0.12) (tstamp fd73dd67-2076-4ce2-8acc-416f3fd36d1e)) + (fp_line (start -1.1 -2.4) (end -1.1 10) (layer "F.CrtYd") (width 0.05) (tstamp 3bcff8ff-6534-4560-a490-f6fdfa01d72e)) + (fp_line (start 8.7 -2.4) (end -1.1 -2.4) (layer "F.CrtYd") (width 0.05) (tstamp 4579f388-e375-4a96-ae85-f774cf52e92a)) + (fp_line (start 8.7 10) (end 8.7 -2.4) (layer "F.CrtYd") (width 0.05) (tstamp 52774bbb-b5c7-426f-86a1-a34f358c97a6)) + (fp_line (start -1.1 10) (end 8.7 10) (layer "F.CrtYd") (width 0.05) (tstamp a4cd8c69-2e6c-4e06-9010-1acb722fbd46)) + (fp_line (start 2 2.405) (end 3.206667 2.405) (layer "F.Fab") (width 0.1) (tstamp 003d85f9-5fbc-49c6-a98b-4d3c5d95d9e0)) + (fp_line (start 2 5.445) (end 3.206667 5.445) (layer "F.Fab") (width 0.1) (tstamp 0177a8b8-eada-4b67-802f-70978801afb5)) + (fp_line (start 2 0.465) (end 3.206667 0.465) (layer "F.Fab") (width 0.1) (tstamp 02d3e726-20cf-430d-8aac-8aa1b9250c1c)) + (fp_line (start 2 0.165) (end 3.206667 0.165) (layer "F.Fab") (width 0.1) (tstamp 0477862b-7d86-400f-b993-98eb4368169c)) + (fp_line (start 2 -0.335) (end 3.206667 -0.335) (layer "F.Fab") (width 0.1) (tstamp 062ee35a-5f31-4622-864a-bf06c00bba84)) + (fp_line (start 0.46 -1.05) (end 1.46 -2.05) (layer "F.Fab") (width 0.1) (tstamp 06b978e6-85ce-401f-a04f-bf6a9af383cf)) + (fp_line (start 2 3.105) (end 3.206667 3.105) (layer "F.Fab") (width 0.1) (tstamp 08c1539f-2eea-4527-9c12-a134aa499aa2)) + (fp_line (start 7.16 9.67) (end 0.46 9.67) (layer "F.Fab") (width 0.1) (tstamp 0b45bca9-efcb-43c6-a8bb-0578574f70b4)) + (fp_line (start 2 1.905) (end 2 3.175) (layer "F.Fab") (width 0.1) (tstamp 1170ffd5-6942-4b0c-9623-eb4c074dc429)) + (fp_line (start 5.62 5.715) (end 5.62 4.445) (layer "F.Fab") (width 0.1) (tstamp 1410ac36-c047-4fe2-b20d-0b9f78d296a9)) + (fp_line (start 5.62 -0.635) (end 2 -0.635) (layer "F.Fab") (width 0.1) (tstamp 19ef1831-113e-480a-ad10-2b3d5be1f5ec)) + (fp_line (start 5.62 3.175) (end 5.62 1.905) (layer "F.Fab") (width 0.1) (tstamp 1ba68122-4459-48a3-ba9c-66f2da3898b8)) + (fp_line (start 2 7.185) (end 3.206667 7.185) (layer "F.Fab") (width 0.1) (tstamp 22a7b55f-d92f-49f0-b145-20ab665b0425)) + (fp_line (start 2 7.585) (end 3.206667 7.585) (layer "F.Fab") (width 0.1) (tstamp 244e555f-4ba2-49b0-9ab3-1f451564f5a8)) + (fp_line (start 5.62 1.905) (end 2 1.905) (layer "F.Fab") (width 0.1) (tstamp 2807477d-1905-45d8-ba28-3a4431227ee0)) + (fp_line (start 1.46 -2.05) (end 7.16 -2.05) (layer "F.Fab") (width 0.1) (tstamp 2d65e6da-8909-4364-a8bd-f4553cb690e5)) + (fp_line (start 3.206667 -0.635) (end 3.206667 0.635) (layer "F.Fab") (width 0.1) (tstamp 3105bc32-e788-43b3-a7ed-5f4f539caf4e)) + (fp_line (start 5.62 4.445) (end 2 4.445) (layer "F.Fab") (width 0.1) (tstamp 32f5d8a4-5240-4bee-b64f-c1f65b9f8316)) + (fp_line (start 2 2.905) (end 3.206667 2.905) (layer "F.Fab") (width 0.1) (tstamp 35a62a6a-d780-4de6-8d8f-210f9f6c15eb)) + (fp_line (start 5.62 8.255) (end 5.62 6.985) (layer "F.Fab") (width 0.1) (tstamp 3dc5c785-50f6-4f05-bf08-35f8d0443700)) + (fp_line (start 2 7.985) (end 3.206667 7.985) (layer "F.Fab") (width 0.1) (tstamp 4078cd1e-3bfd-4833-9973-967baf421539)) + (fp_line (start 2 3.175) (end 5.62 3.175) (layer "F.Fab") (width 0.1) (tstamp 4573e092-4d0f-4dae-90a1-fdd47ced0109)) + (fp_line (start 2 0.365) (end 3.206667 0.365) (layer "F.Fab") (width 0.1) (tstamp 46e158f9-2818-4c30-ad09-fb09761f1742)) + (fp_line (start 7.16 -2.05) (end 7.16 9.67) (layer "F.Fab") (width 0.1) (tstamp 4bf6affe-aadf-40e2-9239-0b6e863fccc3)) + (fp_line (start 2 0.265) (end 3.206667 0.265) (layer "F.Fab") (width 0.1) (tstamp 4c4ce25a-c013-43ad-a478-0c1440b21f2f)) + (fp_line (start 2 5.345) (end 3.206667 5.345) (layer "F.Fab") (width 0.1) (tstamp 4fb95810-6d57-46e8-b844-643b971504a0)) + (fp_line (start 2 7.385) (end 3.206667 7.385) (layer "F.Fab") (width 0.1) (tstamp 57412ce3-ecb6-42cc-ae3b-e037e8cf969a)) + (fp_line (start 2 4.445) (end 2 5.715) (layer "F.Fab") (width 0.1) (tstamp 5748097c-d657-4822-997b-db1c684ca1ab)) + (fp_line (start 2 8.255) (end 5.62 8.255) (layer "F.Fab") (width 0.1) (tstamp 5a30ba7c-bc1e-4fda-91d0-69fdb034ba0c)) + (fp_line (start 3.206667 1.905) (end 3.206667 3.175) (layer "F.Fab") (width 0.1) (tstamp 755ec021-528e-4493-99b4-197d8699447f)) + (fp_line (start 2 3.005) (end 3.206667 3.005) (layer "F.Fab") (width 0.1) (tstamp 77578875-41ff-45eb-9039-fd8e3dea0d91)) + (fp_line (start 2 2.705) (end 3.206667 2.705) (layer "F.Fab") (width 0.1) (tstamp 78568a21-69c3-4dd8-97f1-d79d1150210e)) + (fp_line (start 0.46 9.67) (end 0.46 -1.05) (layer "F.Fab") (width 0.1) (tstamp 7ba59bbf-c7d0-435d-8273-5aa1d7f3b8a2)) + (fp_line (start 2 2.205) (end 3.206667 2.205) (layer "F.Fab") (width 0.1) (tstamp 7d75c427-3248-46a7-9d26-bfe3d22071de)) + (fp_line (start 2 -0.035) (end 3.206667 -0.035) (layer "F.Fab") (width 0.1) (tstamp 7e5bd7cb-c7c7-4ead-a77d-d4e3b3911348)) + (fp_line (start 2 2.505) (end 3.206667 2.505) (layer "F.Fab") (width 0.1) (tstamp 84b0850f-fb01-45b1-b277-ee3c9c517f37)) + (fp_line (start 2 2.305) (end 3.206667 2.305) (layer "F.Fab") (width 0.1) (tstamp 8d063cbe-42d4-4d93-93cd-49d4b790f576)) + (fp_line (start 2 2.605) (end 3.206667 2.605) (layer "F.Fab") (width 0.1) (tstamp 8db3024a-ea8f-4cb8-8536-8010620bc38a)) + (fp_line (start 2 5.545) (end 3.206667 5.545) (layer "F.Fab") (width 0.1) (tstamp 8f9f0312-a6da-44a7-9598-9e2034eb733d)) + (fp_line (start 2 -0.635) (end 2 0.635) (layer "F.Fab") (width 0.1) (tstamp 90269f7c-a94e-41a8-83bc-1361a8ac10b2)) + (fp_line (start 2 2.105) (end 3.206667 2.105) (layer "F.Fab") (width 0.1) (tstamp 90850a1f-9b01-42e8-8f6e-711e5d644e4e)) + (fp_line (start 2 6.985) (end 2 8.255) (layer "F.Fab") (width 0.1) (tstamp 947a523c-804a-4aca-8018-e13fcb45a2de)) + (fp_line (start 2 4.945) (end 3.206667 4.945) (layer "F.Fab") (width 0.1) (tstamp 98a42338-9f3a-4048-979f-82928b1be6b3)) + (fp_line (start 2 7.285) (end 3.206667 7.285) (layer "F.Fab") (width 0.1) (tstamp 99794c2d-8dad-4938-9dad-78984fc87fa4)) + (fp_line (start 2 8.185) (end 3.206667 8.185) (layer "F.Fab") (width 0.1) (tstamp 9a135457-e2bf-4c4a-991e-a26c7000281a)) + (fp_line (start 5.62 0.635) (end 5.62 -0.635) (layer "F.Fab") (width 0.1) (tstamp a02ba725-ed49-4d6f-a8c1-9668c6498bba)) + (fp_line (start 2 4.545) (end 3.206667 4.545) (layer "F.Fab") (width 0.1) (tstamp a105c9ae-fc02-4e82-8469-92c0c72c61e8)) + (fp_line (start 2 2.805) (end 3.206667 2.805) (layer "F.Fab") (width 0.1) (tstamp ae4ce3a6-4ec6-42bd-8590-efbcb5045e52)) + (fp_line (start 2 0.065) (end 3.206667 0.065) (layer "F.Fab") (width 0.1) (tstamp af16c235-daf6-45da-87da-282c77df4f5b)) + (fp_line (start 2 7.085) (end 3.206667 7.085) (layer "F.Fab") (width 0.1) (tstamp b5d0f806-037d-4164-92e3-1da3522a84b3)) + (fp_line (start 2 2.005) (end 3.206667 2.005) (layer "F.Fab") (width 0.1) (tstamp b895ca01-046e-459f-af3b-5218c6fc89db)) + (fp_line (start 2 0.635) (end 5.62 0.635) (layer "F.Fab") (width 0.1) (tstamp b92b1120-9784-4807-9cd4-580640f43449)) + (fp_line (start 2 7.485) (end 3.206667 7.485) (layer "F.Fab") (width 0.1) (tstamp b9f8fb5d-5874-42d3-929f-d87f78f25849)) + (fp_line (start 3.206667 6.985) (end 3.206667 8.255) (layer "F.Fab") (width 0.1) (tstamp ba862392-d1fa-411a-94de-c86fb779578f)) + (fp_line (start 3.206667 4.445) (end 3.206667 5.715) (layer "F.Fab") (width 0.1) (tstamp bd5571f1-4b78-4344-bcd5-aa3ffff83009)) + (fp_line (start 2 0.565) (end 3.206667 0.565) (layer "F.Fab") (width 0.1) (tstamp c53319c7-e340-4d3a-9443-6d6e3788520a)) + (fp_line (start 2 7.885) (end 3.206667 7.885) (layer "F.Fab") (width 0.1) (tstamp c834f39f-d372-4ed5-991f-ccb529fabb75)) + (fp_line (start 2 7.685) (end 3.206667 7.685) (layer "F.Fab") (width 0.1) (tstamp cda8fc21-59b6-465b-a1d4-90d2abe51335)) + (fp_line (start 2 -0.135) (end 3.206667 -0.135) (layer "F.Fab") (width 0.1) (tstamp cdd300ce-ab97-49d0-8ff2-69844eeb34a7)) + (fp_line (start 2 5.715) (end 5.62 5.715) (layer "F.Fab") (width 0.1) (tstamp d1653dfe-9eda-40bb-83d1-5451f6c865f1)) + (fp_line (start 2 4.745) (end 3.206667 4.745) (layer "F.Fab") (width 0.1) (tstamp d7591539-35c0-438a-96e5-8bed233d8a47)) + (fp_line (start 2 -0.435) (end 3.206667 -0.435) (layer "F.Fab") (width 0.1) (tstamp d812fe9b-9621-4357-be7a-68fa2beb3d4e)) + (fp_line (start 2 4.845) (end 3.206667 4.845) (layer "F.Fab") (width 0.1) (tstamp dbb13b1e-989e-4557-9034-dc152cfe341e)) + (fp_line (start 2 5.145) (end 3.206667 5.145) (layer "F.Fab") (width 0.1) (tstamp dd39d946-f9d2-413e-ba7a-925867401dbb)) + (fp_line (start 5.62 6.985) (end 2 6.985) (layer "F.Fab") (width 0.1) (tstamp e3b4b56e-1f52-450b-8489-ca84d306ba5d)) + (fp_line (start 2 5.245) (end 3.206667 5.245) (layer "F.Fab") (width 0.1) (tstamp ef6a6aa8-156e-4dc0-b6fd-8c8052e74e59)) + (fp_line (start 2 -0.535) (end 3.206667 -0.535) (layer "F.Fab") (width 0.1) (tstamp f49488d7-402c-4d45-9e3a-7344a5f608e7)) + (fp_line (start 2 5.645) (end 3.206667 5.645) (layer "F.Fab") (width 0.1) (tstamp f4fa4291-4134-4a5c-849d-95338b27bc47)) + (fp_line (start 2 7.785) (end 3.206667 7.785) (layer "F.Fab") (width 0.1) (tstamp f7895ea4-08ad-4223-b89d-a70771ab4c33)) + (fp_line (start 2 -0.235) (end 3.206667 -0.235) (layer "F.Fab") (width 0.1) (tstamp f8c3e7dc-be32-482b-b57f-339caf03f193)) + (fp_line (start 2 5.045) (end 3.206667 5.045) (layer "F.Fab") (width 0.1) (tstamp fa9d0a4e-cfb6-4401-97dd-255de71601e3)) + (fp_line (start 2 8.085) (end 3.206667 8.085) (layer "F.Fab") (width 0.1) (tstamp fb4e29bc-d501-4649-a3b6-79f3e083d49c)) + (fp_line (start 2 4.645) (end 3.206667 4.645) (layer "F.Fab") (width 0.1) (tstamp ff227b2c-2be7-4d61-871b-76bfe6b46984)) + (pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 12 "GND") (pintype "passive") (tstamp ab3b766c-e2d4-4516-b8f9-35169be5e589)) + (pad "2" thru_hole oval (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 12 "GND") (pintype "passive") (tstamp f3b42b1e-7bea-4b36-a5e7-64ef3dc53f1c)) + (pad "3" thru_hole oval (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 12 "GND") (pintype "passive") (tstamp f03b2ce5-0156-4968-9d9b-1e4a349ba088)) + (pad "4" thru_hole oval (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 12 "GND") (pintype "passive") (tstamp 2b2c3f7c-4352-411a-97c3-d84f0f9e9283)) + (pad "5" thru_hole oval (at 7.62 7.62 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 29 "A17") (pintype "passive") (tstamp 22cd649a-c998-43c2-ac65-e8cc39423cf1)) + (pad "6" thru_hole oval (at 7.62 5.08 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 27 "A15") (pintype "passive") (tstamp d5f2e9d2-03e2-4cbc-8fca-d4b6047ba733)) + (pad "7" thru_hole oval (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 26 "A12") (pintype "passive") (tstamp 9dc11114-7df1-423c-8fcd-733fcac03089)) + (pad "8" thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 28 "A16") (pintype "passive") (tstamp 9ab08b46-6723-4c55-996f-c40b63dbeb70)) + (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_DIP_SPSTx04_Slide_6.7x11.72mm_W7.62mm_P2.54mm_LowProfile.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 90)) + ) + ) + + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu") + (tedit 5C745284) (tstamp 681fd7f9-0a51-41ee-b732-53f4406467a0) + (at 50.292 70.612 90) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Sheetfile" "pcb.kicad_sch") + (property "Sheetname" "") + (path "/abd627b1-6972-4245-b8dc-6952c6ad227b") + (attr exclude_from_pos_files) + (fp_text reference "JP1" (at 0 -1.8 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 06b0de7a-8452-47e4-8156-099c9b3d0d4a) + ) + (fp_text value "SolderJumper_2_Open" (at 0 1.9 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d204374d-427d-4184-8cac-34c3c45ae776) + ) + (fp_poly (pts + (xy 0.25 -0.3) + (xy -0.25 -0.3) + (xy -0.25 0.3) + (xy 0.25 0.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp c40555a2-76f6-47f6-8565-ddb5b88a8a7f)) + (fp_line (start -0.7 -1) (end 0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 3017ff5a-a688-458b-bc91-2b91ea1e010c)) + (fp_line (start 1.4 -0.3) (end 1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 710deca7-5df4-4e58-8361-22c21253049c)) + (fp_line (start -1.4 0.3) (end -1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp a4e64c80-b2df-4558-a2cb-a8c6591229fc)) + (fp_line (start 0.7 1) (end -0.7 1) (layer "F.SilkS") (width 0.12) (tstamp d505ba7e-ac8c-43a9-96ab-75c05d042f88)) + (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 2d06b9ca-8acd-4dde-82af-2f04bb0f605f)) + (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 56dcfdd4-a743-4142-9693-f6294ad7e428)) + (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp ab2492fb-5ac3-4b2a-b037-e9cee37167b9)) + (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp bbb741ba-316d-46de-b5ab-b0a0f937c88b)) + (fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 2d345aa1-b8a7-433b-98bf-3fb90d3260bf)) + (fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 7076fdf9-3d9e-46dc-8021-cde9c82fa64e)) + (fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp a35b849b-99f9-44ef-a71c-43032176d7da)) + (fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp cb7c1e3e-a32d-43a8-bf93-cbb15668bf6c)) + (pad "1" smd custom (at -0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask") + (net 12 "GND") (pinfunction "A") (pintype "passive") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_poly (pts + (xy 0.5 0.75) + (xy 0 0.75) + (xy 0 -0.75) + (xy 0.5 -0.75) + ) (width 0) (fill yes)) + ) (tstamp 54b9aef8-b50a-46a4-bd39-fa76fe97d610)) + (pad "2" smd custom (at 0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask") + (net 26 "A12") (pinfunction "B") (pintype "passive") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_poly (pts + (xy 0 0.75) + (xy -0.5 0.75) + (xy -0.5 -0.75) + (xy 0 -0.75) + ) (width 0) (fill yes)) + ) (tstamp 5073e2aa-8704-462c-b9ec-5d0a20454258)) + ) + + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu") + (tedit 5C745284) (tstamp 73c391c7-0be1-4b2b-8b04-862892b96a80) + (at 49.784 49.784 90) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Sheetfile" "pcb.kicad_sch") + (property "Sheetname" "") + (path "/13c8c714-033d-4ff3-b0f9-ca208a328fd2") + (attr exclude_from_pos_files) + (fp_text reference "JP4" (at -2.286 0.762 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 96fa3736-070f-437c-b67e-34080cd0f9e4) + ) + (fp_text value "SolderJumper_2_Open" (at 0 1.9 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e321aecd-3c35-4269-8106-100a64352fd1) + ) + (fp_poly (pts + (xy 0.25 -0.3) + (xy -0.25 -0.3) + (xy -0.25 0.3) + (xy 0.25 0.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 59d8ba21-cafb-4664-ad77-269d60e2afa7)) + (fp_line (start 0.7 1) (end -0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 16ee6ea3-f8e7-42d6-adf2-84c0e1e68606)) + (fp_line (start 1.4 -0.3) (end 1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp 230e039b-1200-49f4-9764-81cfdd0b465a)) + (fp_line (start -1.4 0.3) (end -1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp b44b23f0-bd88-4300-979d-37f303b9f6a0)) + (fp_line (start -0.7 -1) (end 0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp cf4cb541-1fc3-4ad8-99c6-748cb872c6eb)) + (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) (layer "F.SilkS") (width 0.12) (tstamp 061b0977-703d-47fc-ba64-d6fb3f8737c3)) + (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) (layer "F.SilkS") (width 0.12) (tstamp 4bb6aa50-20a8-40c0-9694-aa4503d2e061)) + (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) (layer "F.SilkS") (width 0.12) (tstamp e92cc26d-27f8-43e9-a58e-4cbff1061bf5)) + (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) (layer "F.SilkS") (width 0.12) (tstamp f98741d9-e0ab-4e63-868b-6552fb9e4771)) + (fp_line (start 1.65 1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 5be841dc-3b4a-40c9-969b-e11a4fb210b2)) + (fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 7785b82d-e310-4126-be03-f0dab068352e)) + (fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 91ba689b-5dd8-4302-8420-efca48ac6b5f)) + (fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp fcd8b1c2-0644-4e8e-b5df-9c237120459f)) + (pad "1" smd custom (at -0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask") + (net 12 "GND") (pinfunction "A") (pintype "passive") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_poly (pts + (xy 0.5 0.75) + (xy 0 0.75) + (xy 0 -0.75) + (xy 0.5 -0.75) + ) (width 0) (fill yes)) + ) (tstamp 6c9aaaba-b9a5-4111-8987-89315ec6be88)) + (pad "2" smd custom (at 0.65 0 90) (size 1 0.5) (layers "F.Cu" "F.Mask") + (net 28 "A16") (pinfunction "B") (pintype "passive") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_poly (pts + (xy 0 0.75) + (xy -0.5 0.75) + (xy -0.5 -0.75) + (xy 0 -0.75) + ) (width 0) (fill yes)) + ) (tstamp 0f924b75-883b-4726-a9f0-fbdae6b526a3)) + ) + + (footprint "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm" (layer "F.Cu") + (tedit 5C745321) (tstamp 9a87bd82-e206-4261-bea6-61955053afd5) + (at 51.308 55.372) + (descr "SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Sheetfile" "pcb.kicad_sch") + (property "Sheetname" "") + (path "/22cb26b9-d501-4786-ab70-b7ac2868619c") + (attr exclude_from_pos_files) + (fp_text reference "JP2" (at 0 -1.8) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 46adbde6-4156-414c-a677-91a5d52c06f0) + ) + (fp_text value "SolderJumper_3_Open" (at 0 1.9) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 96f4b525-44cb-47ae-85ba-1452b6ebe244) + ) + (fp_poly (pts + (xy -0.9 -0.3) + (xy -0.4 -0.3) + (xy -0.4 0.3) + (xy -0.9 0.3) + ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2023edfa-31eb-4ce8-bbfb-1b3ee06a646a)) + (fp_line (start -1.2 1.2) (end -1.5 1.5) (layer "F.SilkS") (width 0.12) (tstamp 299ed31b-8320-42e3-a997-78990b515eff)) + (fp_line (start 2.05 -0.3) (end 2.05 0.3) (layer "F.SilkS") (width 0.12) (tstamp 2de4b987-0841-4651-8ab8-607d0e4adada)) + (fp_line (start -1.2 1.2) (end -0.9 1.5) (layer "F.SilkS") (width 0.12) (tstamp 3a86f6c2-5c5a-4a7c-bab3-4e0a21235fed)) + (fp_line (start -2.05 0.3) (end -2.05 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 46a60137-2053-422a-b5c5-c89257ba074c)) + (fp_line (start -1.4 -1) (end 1.4 -1) (layer "F.SilkS") (width 0.12) (tstamp 550b4c3d-d7ae-47ac-897c-516108b07dc8)) + (fp_line (start 1.4 1) (end -1.4 1) (layer "F.SilkS") (width 0.12) (tstamp a37318fa-8dc9-42f8-88a1-5023278e8589)) + (fp_line (start -1.5 1.5) (end -0.9 1.5) (layer "F.SilkS") (width 0.12) (tstamp f69aac93-d3de-4f65-b6b0-69b31a1eeedd)) + (fp_arc (start 1.35 -1) (mid 1.844975 -0.794975) (end 2.05 -0.3) (layer "F.SilkS") (width 0.12) (tstamp 1cb90ce4-cf2a-4f56-afc5-1a491c09cd7f)) + (fp_arc (start -2.05 -0.3) (mid -1.844975 -0.794975) (end -1.35 -1) (layer "F.SilkS") (width 0.12) (tstamp 66bc6277-2edc-41bc-8067-43e8d3ce64b9)) + (fp_arc (start 2.05 0.3) (mid 1.844975 0.794975) (end 1.35 1) (layer "F.SilkS") (width 0.12) (tstamp 7114252f-4490-4dce-982e-4accb431f84f)) + (fp_arc (start -1.35 1) (mid -1.844975 0.794975) (end -2.05 0.3) (layer "F.SilkS") (width 0.12) (tstamp c31541b0-05b3-4f9a-a5ca-240448e17a33)) + (fp_line (start 2.3 1.25) (end 2.3 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 15c65522-24fa-4b4d-9b33-0ab7e606bd74)) + (fp_line (start -2.3 -1.25) (end -2.3 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 2614eab2-50de-46b0-9eda-9ba6f3213d6f)) + (fp_line (start 2.3 1.25) (end -2.3 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 46087030-b1b4-416d-abb4-7e66dc5f5fa0)) + (fp_line (start -2.3 -1.25) (end 2.3 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp a7df7acc-f6e9-4422-bcc5-4de0be2fc24b)) + (pad "1" smd custom (at -1.3 0) (size 1 0.5) (layers "F.Cu" "F.Mask") + (net 12 "GND") (pinfunction "A") (pintype "passive") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_poly (pts + (xy 0.55 0.75) + (xy 0 0.75) + (xy 0 -0.75) + (xy 0.55 -0.75) + ) (width 0) (fill yes)) + ) (tstamp 2c3c7953-603d-4b95-b24a-60ee04407d91)) + (pad "2" smd rect (at 0 0) (size 1 1.5) (layers "F.Cu" "F.Mask") + (net 18 "OE") (pinfunction "C") (pintype "input") (tstamp 58ad9e6b-87fb-406b-9e91-c79663704b5d)) + (pad "3" smd custom (at 1.3 0) (size 1 0.5) (layers "F.Cu" "F.Mask") + (net 21 "A11") (pinfunction "B") (pintype "passive") (zone_connect 2) + (options (clearance outline) (anchor rect)) + (primitives + (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) + (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) + (gr_poly (pts + (xy 0 0.75) + (xy -0.55 0.75) + (xy -0.55 -0.75) + (xy 0 -0.75) + ) (width 0) (fill yes)) + ) (tstamp edca2338-bb9e-4ddb-83b5-70fb952eb8e5)) + ) + + (footprint "s3lph:DIP-24_W15.24mm_Socket" (layer "F.Cu") + (tedit 6226A8AF) (tstamp a4c4d437-bfda-443b-b6ba-40a4fa35f626) + (at 43.688 45.212) + (descr "24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket") + (tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket") + (property "Sheetfile" "pcb.kicad_sch") + (property "Sheetname" "") + (path "/fe9073de-b4ae-429c-945b-a199d6313a17") + (attr through_hole) + (fp_text reference "J1" (at 7.62 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5eb46f76-35f9-446b-8f6a-dbe168b1e971) + ) + (fp_text value "Conn_02x12_Counter_Clockwise" (at 7.62 30.27) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9b706d86-c85e-4b05-8684-55bce29dcd05) + ) + (fp_text user "${REFERENCE}" (at 7.62 13.97) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8bc6bf30-f1df-402f-8dc2-3450f7f4cbe4) + ) + (fp_line (start 14.08 29.27) (end 14.08 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 41939858-e4bb-43fe-8369-05806fcb84a3)) + (fp_line (start 1.16 -1.33) (end 1.16 29.27) (layer "F.SilkS") (width 0.12) (tstamp 5814da1a-5b59-4120-96e6-e196ceeaf62b)) + (fp_line (start 14.08 -1.33) (end 8.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 621e05b0-58b1-419d-8183-3914a914d8ee)) + (fp_line (start -1.33 -1.39) (end -1.33 29.33) (layer "F.SilkS") (width 0.12) (tstamp 72b4671f-6c5b-4786-97e7-5dc50397c8fc)) + (fp_line (start 1.16 29.27) (end 14.08 29.27) (layer "F.SilkS") (width 0.12) (tstamp 8bb018cd-8116-4724-8a9b-3cb10800e514)) + (fp_line (start -1.33 29.33) (end 16.57 29.33) (layer "F.SilkS") (width 0.12) (tstamp a0aaccdc-df00-4285-ac53-25854f6105d3)) + (fp_line (start 16.57 -1.39) (end -1.33 -1.39) (layer "F.SilkS") (width 0.12) (tstamp ad623348-37a9-4f95-bf8c-99a7f6ac3a0a)) + (fp_line (start 16.57 29.33) (end 16.57 -1.39) (layer "F.SilkS") (width 0.12) (tstamp bccc1e2d-ada4-4464-a11a-4fc7ad74aca6)) + (fp_line (start 6.62 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d9e7df62-6e96-4343-8407-4410dab45470)) + (fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33) (layer "F.SilkS") (width 0.12) (tstamp febd94e1-6da3-432a-801c-86caa28a100e)) + (fp_line (start 16.8 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 1e96f738-b9ef-427e-8702-1debafcc1e21)) + (fp_line (start -1.55 -1.6) (end -1.55 29.55) (layer "F.CrtYd") (width 0.05) (tstamp edb5cb46-3671-4e7d-af63-00e328ae373d)) + (fp_line (start -1.55 29.55) (end 16.8 29.55) (layer "F.CrtYd") (width 0.05) (tstamp ee45e4a9-f675-4233-95bb-1993d1966e65)) + (fp_line (start 16.8 29.55) (end 16.8 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp f2c2cb47-c165-4a66-8b30-56dcb74b6382)) + (fp_line (start 14.985 29.21) (end 0.255 29.21) (layer "F.Fab") (width 0.1) (tstamp 0be705d0-6310-4449-9b9c-bcfdc1cf5abe)) + (fp_line (start -1.27 29.27) (end 16.51 29.27) (layer "F.Fab") (width 0.1) (tstamp 0f213eb2-0357-4383-9adf-ca773e11bf2f)) + (fp_line (start 0.255 -0.27) (end 1.255 -1.27) (layer "F.Fab") (width 0.1) (tstamp 512a9a9b-4604-46aa-990d-181097e9f1d3)) + (fp_line (start 16.51 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 5d174a32-835c-49df-ab6c-04bc8210c6a7)) + (fp_line (start 1.255 -1.27) (end 14.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 65f569b4-41c9-4be0-b01c-c1c40fa836e6)) + (fp_line (start -1.27 -1.33) (end -1.27 29.27) (layer "F.Fab") (width 0.1) (tstamp 9225e751-955e-4cf5-a8f5-c7f47c0e5033)) + (fp_line (start 0.255 29.21) (end 0.255 -0.27) (layer "F.Fab") (width 0.1) (tstamp a7c2a519-b9e9-4bfc-9627-b7686f8ac7ca)) + (fp_line (start 14.985 -1.27) (end 14.985 29.21) (layer "F.Fab") (width 0.1) (tstamp b8e2f25e-7996-43f7-8acc-dcd64346efd5)) + (fp_line (start 16.51 29.27) (end 16.51 -1.33) (layer "F.Fab") (width 0.1) (tstamp d257e278-bf93-4141-a940-b41d8d7da6bd)) + (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 1 "A7") (pinfunction "Pin_1") (pintype "passive") (tstamp 7f2f51f1-0f8a-4b77-aa33-3a7b73d38099)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 2 "A6") (pinfunction "Pin_2") (pintype "passive") (tstamp 8f5c5909-8b28-4251-9abc-fecc4a5b7b8f)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 3 "A5") (pinfunction "Pin_3") (pintype "passive") (tstamp c72a6465-9c3d-4372-aae7-825a2a24e5af)) + (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "A4") (pinfunction "Pin_4") (pintype "passive") (tstamp 5eae6f8d-e406-496e-9d39-e0b146cd16bd)) + (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 5 "A3") (pinfunction "Pin_5") (pintype "passive") (tstamp b08fa6da-a09f-431d-9a5b-14c77b6967a8)) + (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 6 "A2") (pinfunction "Pin_6") (pintype "passive") (tstamp 327b5f98-ef3e-4cac-a53c-00544a649497)) + (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 7 "A1") (pinfunction "Pin_7") (pintype "passive") (tstamp e52c90d9-abca-404a-9800-af58d9372971)) + (pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 8 "A0") (pinfunction "Pin_8") (pintype "passive") (tstamp 7eb2b374-4b8d-46dc-a281-e14c8e896592)) + (pad "9" thru_hole oval (at 0 20.32) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 9 "D0") (pinfunction "Pin_9") (pintype "passive") (tstamp a5ff887c-2d12-41df-ba06-146365622835)) + (pad "10" thru_hole oval (at 0 22.86) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 10 "D1") (pinfunction "Pin_10") (pintype "passive") (tstamp 60fe928e-63c0-407a-82aa-c8f52d4d58a3)) + (pad "11" thru_hole oval (at 0 25.4) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 11 "D2") (pinfunction "Pin_11") (pintype "passive") (tstamp 4e5858c4-2b99-4311-b446-d1b0489a4b57)) + (pad "12" thru_hole oval (at 0 27.94) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 12 "GND") (pinfunction "Pin_12") (pintype "passive") (tstamp 716296a2-ec24-4c1b-9591-47f5c9348887)) + (pad "13" thru_hole oval (at 15.24 27.94) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 13 "D3") (pinfunction "Pin_13") (pintype "passive") (tstamp 47869318-e79f-4a7e-a1ed-f6dabd4bc28d)) + (pad "14" thru_hole oval (at 15.24 25.4) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 14 "D4") (pinfunction "Pin_14") (pintype "passive") (tstamp 5a864016-df86-40cd-ad2f-87ab31e1fc44)) + (pad "15" thru_hole oval (at 15.24 22.86) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 15 "D5") (pinfunction "Pin_15") (pintype "passive") (tstamp 6af42828-01cc-44b1-9c33-bd9788229809)) + (pad "16" thru_hole oval (at 15.24 20.32) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 16 "D6") (pinfunction "Pin_16") (pintype "passive") (tstamp 8f09645e-1240-41e8-9daa-9effbcf6a655)) + (pad "17" thru_hole oval (at 15.24 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 17 "D7") (pinfunction "Pin_17") (pintype "passive") (tstamp 56367e34-cf24-4a37-bbd6-b8d6b5d15a07)) + (pad "18" thru_hole oval (at 15.24 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 21 "A11") (pinfunction "Pin_18") (pintype "passive") (tstamp 90eb95e5-76b2-4dcc-a7cd-479baeb7c37f)) + (pad "19" thru_hole oval (at 15.24 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 23 "A10") (pinfunction "Pin_19") (pintype "passive") (tstamp 8e4e6c78-4d2d-4c5d-b610-05de9ec7f531)) + (pad "20" thru_hole oval (at 15.24 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 22 "CE") (pinfunction "Pin_20") (pintype "passive") (tstamp 2677a373-1a33-4585-8796-6080fc001e7f)) + (pad "21" thru_hole oval (at 15.24 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 19 "unconnected-(J1-Pad21)") (pinfunction "Pin_21") (pintype "passive+no_connect") (tstamp 575a5587-6b35-47c6-a321-ef4b0b0626a8)) + (pad "22" thru_hole oval (at 15.24 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 24 "A9") (pinfunction "Pin_22") (pintype "passive") (tstamp c2e2f72a-2d45-4b06-af24-04b8b8164d10)) + (pad "23" thru_hole oval (at 15.24 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 25 "A8") (pinfunction "Pin_23") (pintype "passive") (tstamp efd85a1f-a7b7-43fa-b745-7a510e47d54e)) + (pad "24" thru_hole oval (at 15.24 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 20 "+5V") (pinfunction "Pin_24") (pintype "passive") (tstamp d0603947-e2c2-42dc-9400-a9d483fa9980)) + (model "s3lph.3dshapes/DIP-24_W15.24mm_Socket.x3d" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") + (tedit 5F68FEEE) (tstamp bb5bd5af-89d5-46f6-bfc1-d483c802f61a) + (at 51.816 45.212 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "pcb.kicad_sch") + (property "Sheetname" "") + (path "/ea7446f4-dd41-420d-8031-fb36e90fc95a") + (attr smd) + (fp_text reference "R2" (at -2.54 0 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 790adcea-bf20-45e9-896b-5211115fc743) + ) + (fp_text value "10kOhm" (at 0 1.43) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 98028d8b-3103-44d0-8a80-7035a6a0f3ca) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06))) + (tstamp 2f984d5a-eeb5-40da-9040-cddbc771461a) + ) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 4c140255-132b-4e08-ae89-cad251e56876)) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 93dcbc3a-d759-4ff7-a196-dd8e151a94d9)) + (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3a261695-8ba2-4441-be59-1d41f8ae7c2f)) + (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 3c206e85-7327-479f-9a5c-72b0665e5dbf)) + (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 76ebd28a-4153-4679-b11a-8ee93bc846b7)) + (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp f5e545a4-f5b7-411d-8204-4fb55a3d53ff)) + (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp b7ff7bbb-7f2d-4b59-9080-7fa5e3b6993a)) + (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp c6001ec9-9d9a-4408-b570-a42cce03ed21)) + (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp eb9fafa0-c05f-4a08-9aee-2be865b0f4bb)) + (fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f4079b09-3d03-4869-90e1-cb10204841d5)) + (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 20 "+5V") (pintype "passive") (tstamp 8df8887c-0b0b-4c0d-8f83-5a9aab9dff09)) + (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 27 "A15") (pintype "passive") (tstamp 2f0598c2-488f-4968-812b-62b9a17c3516)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "B.Cu") + (tedit 5F68FEEE) (tstamp b352d21a-9d0c-42da-bdfe-356afec9821e) + (at 52.832 46.927 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "pcb.kicad_sch") + (property "Sheetname" "") + (path "/0cdd608c-fa1f-474b-b411-b1ca078633be") + (attr smd) + (fp_text reference "R3" (at 0 1.43 90) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 5081823b-af15-4652-8f62-e115e4598367) + ) + (fp_text value "10kOhm" (at 0 -1.43 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 34407fba-357b-4052-9216-06c1e2cae3ea) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + (tstamp 8ef140e1-a86a-45e5-8f2c-e06066832fcb) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp 623a95d3-92aa-43fc-bfb7-1927169d4600)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "B.SilkS") (width 0.12) (tstamp bf3dac99-ac50-4ac6-bfbd-9ed628e3720e)) + (fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 67a11f6a-4ece-4dc6-a8e5-fd9307451010)) + (fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp afaec224-6eb9-4aa4-acce-937066a89442)) + (fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp e8fbed20-1a41-45ab-b1f5-aa1a8c24ac3c)) + (fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp fb078252-2c69-4f10-b8ca-ec674f33126f)) + (fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 6a6afd5b-5f14-4832-96b7-394ff3546428)) + (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp c339890a-ec9b-43c8-bca3-90f292a91f7c)) + (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp d00d1a13-a7a0-45e0-aac5-1ff3926884e0)) + (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp fbe4ca78-db1d-425c-822e-cbaf51a10d48)) + (pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 20 "+5V") (pintype "passive") (tstamp 4a06368c-ac2a-4bd5-acce-393b80f8a278)) + (pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 28 "A16") (pintype "passive") (tstamp ae278b01-6140-4258-b3e1-878a503a5a62)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_SMD:R_0603_1608Metric" (layer "B.Cu") + (tedit 5F68FEEE) (tstamp d375f196-6f2b-4a02-b59f-0abcafe1e5a7) + (at 54.61 46.927 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Sheetfile" "pcb.kicad_sch") + (property "Sheetname" "") + (path "/0c4deb65-0fc2-4582-bf94-bf317032277f") + (attr smd) + (fp_text reference "R4" (at 0 -1.524 90) (layer "B.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 685e6150-e36f-47e8-b723-9a93196f7f6d) + ) + (fp_text value "10kOhm" (at 0 -1.43 90) (layer "B.Fab") + (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) + (tstamp 1fc3251f-68ef-4f72-a209-18ab14ab73e6) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab") + (effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror)) + (tstamp 7b973887-a7d0-4ced-9ce0-e7012bc4f667) + ) + (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp 0e20cbc1-6cd0-4252-8a14-c1d9146f2a63)) + (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "B.SilkS") (width 0.12) (tstamp ce619f39-5aaf-49e9-a33c-26732dec8e95)) + (fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 666a127f-bbf1-44d7-9945-883a859a094b)) + (fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 893c591c-b6ff-4f7c-af38-4373a74e1168)) + (fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp ab962808-f856-4da6-875e-d33b9b900c1c)) + (fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp bfb630e3-509a-4343-86ca-b017c6eec725)) + (fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 3019cd7d-d905-4256-ac07-1e58a26f3c06)) + (fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 4c7091d4-515a-46e1-8ca0-f82aa5cb62fb)) + (fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 654b3b97-d6ef-4fab-aedc-733bab6d7f72)) + (fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 6b56dce3-891e-4c99-a6a2-469129a36085)) + (pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 20 "+5V") (pintype "passive") (tstamp 4f4ed3ff-b7e3-455c-be2d-f1d3c4be2168)) + (pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25) + (net 29 "A17") (pintype "passive") (tstamp f7a08f47-28a3-4664-b73f-efd412909c91)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (gr_rect (start 60.452 43.688) (end 42.164 74.676) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 00c0593a-3a17-457a-ad01-d417a9dd7613)) + (gr_text "JLCJLCJLCJLC" (at 47.752 54.102 90) (layer "F.SilkS") (tstamp 09c6ca89-863f-42d4-867e-9a769c316610) + (effects (font (size 1 1) (thickness 0.15))) + ) + (gr_text "2K" (at 54.61 55.372) (layer "F.SilkS") (tstamp 9421d8ab-ec24-4783-b746-a12fbd00100e) + (effects (font (size 1 1) (thickness 0.15))) + ) + + (segment (start 45.7455 48.768) (end 45.7455 47.2695) (width 0.25) (layer "F.Cu") (net 1) (tstamp 2ed72cbe-3cc1-4a3a-8142-4a4a149161bd)) + (segment (start 45.7455 47.2695) (end 43.688 45.212) (width 0.25) (layer "F.Cu") (net 1) (tstamp e9c40bb3-be70-4a91-ac6a-6ecc9e9df269)) + (segment (start 45.606928 50.038) (end 43.688 48.119072) (width 0.25) (layer "F.Cu") (net 2) (tstamp 9343b8f0-d6db-4749-84d0-9192ee0349b8)) + (segment (start 43.688 48.119072) (end 43.688 47.752) (width 0.25) (layer "F.Cu") (net 2) (tstamp ac7ac7f0-8b47-44cf-bac3-60de41768ade)) + (segment (start 45.7455 50.038) (end 45.606928 50.038) (width 0.25) (layer "F.Cu") (net 2) (tstamp c02b95e3-ff86-473f-87c2-42bb9f8c359f)) + (segment (start 45.7455 51.308) (end 44.704 51.308) (width 0.25) (layer "F.Cu") (net 3) (tstamp 3f5711a9-6942-47d5-a776-bcde1cb23334)) + (segment (start 44.704 51.308) (end 43.688 50.292) (width 0.25) (layer "F.Cu") (net 3) (tstamp d9d035e7-3f75-4e23-9588-e6e671c6883f)) + (segment (start 45.7455 52.578) (end 43.942 52.578) (width 0.25) (layer "F.Cu") (net 4) (tstamp 1a5ae835-a050-40fb-ba25-7da63d89b6d9)) + (segment (start 43.942 52.578) (end 43.688 52.832) (width 0.25) (layer "F.Cu") (net 4) (tstamp fece86cd-ea27-4043-9b67-352b0fdba5e9)) + (segment (start 45.7455 53.848) (end 45.212 53.848) (width 0.25) (layer "F.Cu") (net 5) (tstamp 310129f0-c982-40a6-9684-043596868f34)) + (segment (start 45.212 53.848) (end 43.688 55.372) (width 0.25) (layer "F.Cu") (net 5) (tstamp 84b14fb8-ff54-43e0-ae12-49ee5b00e8c0)) + (segment (start 43.688 57.036928) (end 43.688 57.912) (width 0.25) (layer "F.Cu") (net 6) (tstamp 5b83a401-2009-495a-8ea7-d0e11708202c)) + (segment (start 45.606928 55.118) (end 43.688 57.036928) (width 0.25) (layer "F.Cu") (net 6) (tstamp a0d8ef2b-4696-4e63-8af8-c3f46c859ed8)) + (segment (start 45.7455 55.118) (end 45.606928 55.118) (width 0.25) (layer "F.Cu") (net 6) (tstamp c285c711-ad4d-4352-860e-e0a178640595)) + (segment (start 45.884072 56.388) (end 46.80752 57.311448) (width 0.25) (layer "F.Cu") (net 7) (tstamp 065de5ae-16ce-44ba-b896-864a1f000c74)) + (segment (start 45.7455 56.388) (end 45.884072 56.388) (width 0.25) (layer "F.Cu") (net 7) (tstamp 068a5ae8-1057-40ce-a284-0555cf24bf49)) + (segment (start 46.80752 57.311448) (end 46.80752 59.36448) (width 0.25) (layer "F.Cu") (net 7) (tstamp 1bc8fc52-9b47-4b21-93ea-3189a849827b)) + (segment (start 43.688 60.452) (end 42.563489 61.576511) (width 0.25) (layer "F.Cu") (net 7) (tstamp 46fb629c-d285-42cc-919c-dcc17231c5a9)) + (segment (start 46.80752 59.36448) (end 46.217979 59.954021) (width 0.25) (layer "F.Cu") (net 7) (tstamp 6a56818c-aba8-4fdb-a399-7136ff12b0b1)) + (segment (start 46.217979 63.890389) (end 45.602244 64.506124) (width 0.25) (layer "F.Cu") (net 7) (tstamp 6fbecabc-ea0d-495b-893d-c66ff58b846f)) + (segment (start 44.153789 66.656511) (end 45.593 65.2173) (width 0.25) (layer "F.Cu") (net 7) (tstamp 9d572222-2691-4c1d-8a91-7388174fe257)) + (segment (start 45.593 65.2173) (end 45.593 64.506124) (width 0.25) (layer "F.Cu") (net 7) (tstamp ac5a9b30-d639-4913-8cbc-6baf7d3e5a3b)) + (segment (start 42.563489 65.997789) (end 43.222211 66.656511) (width 0.25) (layer "F.Cu") (net 7) (tstamp e898e141-0ac3-4f99-949a-d970c881a99f)) + (segment (start 43.222211 66.656511) (end 44.153789 66.656511) (width 0.25) (layer "F.Cu") (net 7) (tstamp e96557f2-c1a9-4fec-b509-4ed1952a1f96)) + (segment (start 46.217979 59.954021) (end 46.217979 63.890389) (width 0.25) (layer "F.Cu") (net 7) (tstamp f07f7672-282e-4d21-9b44-2237025c003d)) + (segment (start 42.563489 61.576511) (end 42.563489 65.997789) (width 0.25) (layer "F.Cu") (net 7) (tstamp f84de9b4-45f1-42a1-ad28-9c68fa7280ac)) + (segment (start 44.812511 59.986211) (end 44.812511 61.867489) (width 0.25) (layer "F.Cu") (net 8) (tstamp 1ab1c593-839a-4542-a2a3-1201dbc04f0a)) + (segment (start 45.606928 57.658) (end 44.68348 58.581448) (width 0.25) (layer "F.Cu") (net 8) (tstamp 6775d502-c047-4ea5-9a55-c29f79ba0a2b)) + (segment (start 44.68348 58.581448) (end 44.68348 59.85718) (width 0.25) (layer "F.Cu") (net 8) (tstamp 7b5f3f21-83bb-4072-86a4-298d1e73fe9b)) + (segment (start 44.68348 59.85718) (end 44.812511 59.986211) (width 0.25) (layer "F.Cu") (net 8) (tstamp a9a36a75-420d-49ce-9062-e6b204c29358)) + (segment (start 44.812511 61.867489) (end 43.688 62.992) (width 0.25) (layer "F.Cu") (net 8) (tstamp ca6e2466-a90a-4dab-be16-b070610e5087)) + (segment (start 45.7455 57.658) (end 45.606928 57.658) (width 0.25) (layer "F.Cu") (net 8) (tstamp e07dac1a-a540-4074-9f0a-edc06dec3938)) + (segment (start 45.7455 58.928) (end 45.7455 63.346796) (width 0.25) (layer "F.Cu") (net 9) (tstamp 5b524da1-e1d4-4bc1-bd36-277a76d7799a)) + (segment (start 43.688 65.404296) (end 43.688 65.532) (width 0.25) (layer "F.Cu") (net 9) (tstamp 61f2976b-b4eb-4743-9ef6-e3a7e1c06006)) + (segment (start 45.7455 63.346796) (end 43.688 65.404296) (width 0.25) (layer "F.Cu") (net 9) (tstamp 79af8aab-a94a-4726-aca3-fc3dec1314d1)) + (segment (start 47.498 60.6855) (end 46.66749 61.51601) (width 0.25) (layer "F.Cu") (net 10) (tstamp 04e33a75-4ece-4af0-a419-08b96cb499df)) + (segment (start 46.177979 64.819317) (end 46.66749 64.329806) (width 0.25) (layer "F.Cu") (net 10) (tstamp 25193a74-bbd2-4a36-9aa4-0eee36f3424a)) + (segment (start 46.177979 65.582021) (end 46.177979 64.819317) (width 0.25) (layer "F.Cu") (net 10) (tstamp 366d1df8-c000-41be-a897-81b9034d74dc)) + (segment (start 46.66749 61.51601) (end 46.66749 64.329806) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5affa688-c6f4-4a9c-9ade-a9a4dddccc9e)) + (segment (start 46.177979 65.582021) (end 43.688 68.072) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5bed1691-9b26-4a4f-9da3-6f9adf1bbe0e)) + (segment (start 43.688 70.612) (end 44.81937 70.612) (width 0.25) (layer "F.Cu") (net 11) (tstamp 3b809d5e-1cd6-4bd7-8775-d6e8648b017c)) + (segment (start 49.022 63.881) (end 48.768 63.627) (width 0.25) (layer "F.Cu") (net 11) (tstamp 585b55b9-201c-4e76-b154-5a2a5aaa1e45)) + (segment (start 49.022 66.40937) (end 49.022 63.881) (width 0.25) (layer "F.Cu") (net 11) (tstamp c67c40cd-214e-4852-807f-21c7596825b0)) + (segment (start 48.768 60.6855) (end 48.768 63.627) (width 0.25) (layer "F.Cu") (net 11) (tstamp cf37b6b4-8ea0-4e01-a3f9-ee0e8076876a)) + (segment (start 44.81937 70.612) (end 49.022 66.40937) (width 0.25) (layer "F.Cu") (net 11) (tstamp f3fdc9ad-8f64-4302-805a-0f6e9a622d1c)) + (segment (start 51.308 47.0105) (end 51.308 47.37704) (width 0.25) (layer "F.Cu") (net 12) (tstamp 0a938a27-1c05-4e4e-b796-22e009abeed7)) + (segment (start 52.924552 48.07252) (end 52.00348 48.07252) (width 0.25) (layer "F.Cu") (net 12) (tstamp 0c89e906-e5d3-4c6a-a57b-42f59e1b8e45)) + (segment (start 50.008 55.372) (end 50.008 50.658) (width 0.25) (layer "F.Cu") (net 12) (tstamp 151d850f-b13d-4d6b-85f2-b59ffdd0cee4)) + (segment (start 43.688 73.152) (end 47.752 73.152) (width 0.25) (layer "F.Cu") (net 12) (tstamp 1f5e6c63-02d6-4306-89ff-6792d9e2a954)) + (segment (start 47.752 73.152) (end 50.292 73.152) (width 0.25) (layer "F.Cu") (net 12) (tstamp 238d0754-146c-4b10-b325-ea44e4e804c9)) + (segment (start 54.102 66.294) (end 54.102 65.278) (width 0.25) (layer "F.Cu") (net 12) (tstamp 24751c26-179b-4db0-a4f2-99ac9f1c219d)) + (segment (start 50.008 55.372) (end 50.008 60.6555) (width 0.25) (layer "F.Cu") (net 12) (tstamp 26697778-8b5d-418d-bdd7-cce4ebba3840)) + (segment (start 56.979011 48.876511) (end 56.8705 48.768) (width 0.25) (layer "F.Cu") (net 12) (tstamp 3aa8b50c-783c-4eec-8831-2712ab357d0b)) + (segment (start 60.052511 48.217789) (end 59.393789 48.876511) (width 0.25) (layer "F.Cu") (net 12) (tstamp 3aeb039f-b531-4df2-b92e-2c83e604f649)) + (segment (start 53.848 47.0105) (end 53.848 46.871928) (width 0.25) (layer "F.Cu") (net 12) (tstamp 3ffc2901-4c2a-4401-be40-291517d4560d)) + (segment (start 55.372 73.152) (end 52.832 73.152) (width 0.25) (layer "F.Cu") (net 12) (tstamp 42663ec9-bd8e-4873-af28-f2e800ae073e)) + (segment (start 60.052511 47.286211) (end 60.052511 48.217789) (width 0.25) (layer "F.Cu") (net 12) (tstamp 4c739241-7474-4e58-b15a-a8bbc7d59160)) + (segment (start 59.393789 46.627489) (end 60.052511 47.286211) (width 0.25) (layer "F.Cu") (net 12) (tstamp 4d85f808-f136-4c50-92c9-7be177d979ad)) + (segment (start 56.143561 46.627489) (end 59.393789 46.627489) (width 0.25) (layer "F.Cu") (net 12) (tstamp 53ad3824-914e-4d62-8bea-20e1d760cf18)) + (segment (start 50.292 73.152) (end 50.292 71.262) (width 0.25) (layer "F.Cu") (net 12) (tstamp 554d5ee1-dcb5-443b-aebc-4028e6bf9686)) + (segment (start 54.102 65.2117) (end 50.038 61.1477) (width 0.25) (layer "F.Cu") (net 12) (tstamp 5a670927-ea2f-476e-89d5-e3751e15ce39)) + (segment (start 55.372 73.152) (end 55.372 67.564) (width 0.25) (layer "F.Cu") (net 12) (tstamp 5f9e97d6-7b90-4159-aa54-74f7b2a7ee5e)) + (segment (start 56.8705 50.038) (end 56.8705 48.768) (width 0.25) (layer "F.Cu") (net 12) (tstamp 817997f0-f4ac-40a3-8daf-bc036e4b4d2e)) + (segment (start 50.008 60.6555) (end 50.038 60.6855) (width 0.25) (layer "F.Cu") (net 12) (tstamp 87d20f85-ac74-413a-aad1-1560283ea59f)) + (segment (start 53.198 48.345968) (end 52.924552 48.07252) (width 0.25) (layer "F.Cu") (net 12) (tstamp 9354e8db-f868-40e3-b54f-4724794d8b3a)) + (segment (start 59.393789 48.876511) (end 56.979011 48.876511) (width 0.25) (layer "F.Cu") (net 12) (tstamp ae72ed57-7ce4-4ce9-a11a-76682294d8fb)) + (segment (start 53.848 47.0105) (end 53.848 47.149072) (width 0.25) (layer "F.Cu") (net 12) (tstamp b490894c-e361-449a-9352-76aef06e01b7)) + (segment (start 55.464552 45.94848) (end 56.143561 46.627489) (width 0.25) (layer "F.Cu") (net 12) (tstamp b96bc9b8-56da-469f-b2f4-027845d0735e)) + (segment (start 55.372 67.564) (end 54.102 66.294) (width 0.25) (layer "F.Cu") (net 12) (tstamp be721247-eb62-48ad-8ec6-c901e4a9b408)) + (segment (start 50.008 50.658) (end 49.784 50.434) (width 0.25) (layer "F.Cu") (net 12) (tstamp bf268803-81da-4784-a406-92c683be174b)) + (segment (start 52.832 73.152) (end 50.292 73.152) (width 0.25) (layer "F.Cu") (net 12) (tstamp d47ffb89-88a6-47ff-af7a-5496cb6287e3)) + (segment (start 49.784 50.434) (end 52.04 50.434) (width 0.25) (layer "F.Cu") (net 12) (tstamp dccbaa16-b364-445d-a6ea-dd9a758db64c)) + (segment (start 54.102 65.278) (end 54.102 65.2117) (width 0.25) (layer "F.Cu") (net 12) (tstamp e6aad275-6054-4323-9bd6-edf4a5deab56)) + (segment (start 52.04 50.434) (end 53.198 49.276) (width 0.25) (layer "F.Cu") (net 12) (tstamp e836ee5c-b239-4183-b211-28ec8d64a95a)) + (segment (start 51.308 47.37704) (end 52.00348 48.07252) (width 0.25) (layer "F.Cu") (net 12) (tstamp e9e4fd16-8f8b-4fe2-80d0-307d4503be2e)) + (segment (start 53.198 49.276) (end 53.198 48.345968) (width 0.25) (layer "F.Cu") (net 12) (tstamp eb8af002-c8e4-4ac5-8b6d-08c3c26d6f22)) + (segment (start 54.771448 45.94848) (end 55.464552 45.94848) (width 0.25) (layer "F.Cu") (net 12) (tstamp f2d583fd-6080-4e35-bd28-107d8c67232e)) + (segment (start 53.848 46.871928) (end 54.771448 45.94848) (width 0.25) (layer "F.Cu") (net 12) (tstamp f4ab717f-5466-4169-8eb3-14864213de4e)) + (segment (start 50.038 61.1477) (end 50.038 60.6855) (width 0.25) (layer "F.Cu") (net 12) (tstamp fa855eaa-d849-4441-9830-74282266c5ca)) + (segment (start 53.848 47.149072) (end 52.924552 48.07252) (width 0.25) (layer "F.Cu") (net 12) (tstamp fadb5448-4541-4fda-b85c-296fe9052c64)) + (segment (start 52.832 73.152) (end 52.832 71.262) (width 0.25) (layer "F.Cu") (net 12) (tstamp feb9e115-786a-4ae7-973b-faac11abc298)) + (segment (start 55.837789 64.407489) (end 54.906211 64.407489) (width 0.25) (layer "F.Cu") (net 13) (tstamp 1c229472-4a5e-4831-b031-6cfed65a7555)) + (segment (start 54.247489 63.763561) (end 51.308 60.824072) (width 0.25) (layer "F.Cu") (net 13) (tstamp 57eae678-9c17-43aa-a1f7-b8633afe7d25)) + (segment (start 51.308 60.824072) (end 51.308 60.6855) (width 0.25) (layer "F.Cu") (net 13) (tstamp 7085ea2c-44aa-4079-90ba-9701349a1dc8)) + (segment (start 56.496511 70.720511) (end 56.496511 65.066211) (width 0.25) (layer "F.Cu") (net 13) (tstamp 7c390c98-0887-4a89-8fb5-acc71848aed4)) + (segment (start 54.262283 63.763561) (end 54.247489 63.763561) (width 0.25) (layer "F.Cu") (net 13) (tstamp 8d1df8cb-fef4-4a33-9451-7dc9ecb546ae)) + (segment (start 56.496511 65.066211) (end 55.837789 64.407489) (width 0.25) (layer "F.Cu") (net 13) (tstamp 9030526b-a316-4714-978c-de3f5868f154)) + (segment (start 54.906211 64.407489) (end 54.262283 63.763561) (width 0.25) (layer "F.Cu") (net 13) (tstamp bd88b766-21f1-4dc3-ad25-10cb2aeea6f4)) + (segment (start 58.928 73.152) (end 56.496511 70.720511) (width 0.25) (layer "F.Cu") (net 13) (tstamp fee2dc7d-798b-427e-8904-fb963764c795)) + (segment (start 58.928 70.612) (end 56.946022 68.630022) (width 0.25) (layer "F.Cu") (net 14) (tstamp 803b017b-bd5e-4dc8-b3c9-0207410b1783)) + (segment (start 56.946021 64.880017) (end 56.023982 63.957978) (width 0.25) (layer "F.Cu") (net 14) (tstamp 9b02c8c3-9246-4b4e-8eeb-02118d4739fa)) + (segment (start 56.023982 63.957978) (end 55.711906 63.957978) (width 0.25) (layer "F.Cu") (net 14) (tstamp b2751315-7a68-4807-be3a-e4b29db13ee4)) + (segment (start 56.946022 68.630022) (end 56.946021 64.880017) (width 0.25) (layer "F.Cu") (net 14) (tstamp bc3ebcf4-bb67-4760-9914-189d1379e69f)) + (segment (start 52.578 60.824072) (end 52.578 60.6855) (width 0.25) (layer "F.Cu") (net 14) (tstamp beae2002-9375-4fd6-93f9-4f86a742c157)) + (segment (start 55.711906 63.957978) (end 52.578 60.824072) (width 0.25) (layer "F.Cu") (net 14) (tstamp db8385ce-55f9-4ab9-97c5-d94bf4da69e4)) + (segment (start 58.643881 66.656511) (end 58.462211 66.656511) (width 0.25) (layer "F.Cu") (net 15) (tstamp 23fe7de8-65dd-4458-8af2-f4589823a35f)) + (segment (start 53.848 61.146294) (end 53.848 60.6855) (width 0.25) (layer "F.Cu") (net 15) (tstamp 41e613f2-2a14-4483-8566-f738a4930c8c)) + (segment (start 58.462211 66.656511) (end 57.803489 65.997789) (width 0.25) (layer "F.Cu") (net 15) (tstamp 4405e108-f3f8-41dd-b612-20fe09692da8)) + (segment (start 57.803489 65.101783) (end 53.848 61.146294) (width 0.25) (layer "F.Cu") (net 15) (tstamp 8e841fc8-b600-41c2-8718-5b9e6d899f17)) + (segment (start 57.803489 65.997789) (end 57.803489 65.101783) (width 0.25) (layer "F.Cu") (net 15) (tstamp f26c547f-64fe-48e9-9a7a-ca54d2f4eea1)) + (segment (start 58.928 66.94063) (end 58.643881 66.656511) (width 0.25) (layer "F.Cu") (net 15) (tstamp f6fbb35a-bda1-40be-91ca-1737aa223ef6)) + (segment (start 58.928 68.072) (end 58.928 66.94063) (width 0.25) (layer "F.Cu") (net 15) (tstamp f85a6ed8-333e-4993-a7d8-574af3e186b9)) + (segment (start 55.118 61.722) (end 55.118 60.6855) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3891a704-a6c9-482e-81b2-d42bd6e42e53)) + (segment (start 58.928 65.532) (end 55.118 61.722) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7d8dbb1a-bb72-41dc-8ed2-807bc2eb0d2e)) + (segment (start 56.8705 60.9345) (end 56.8705 58.928) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2b5dc2db-e1de-4685-af70-bda21c283ac1)) + (segment (start 58.928 62.992) (end 56.8705 60.9345) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9261d14b-3676-45be-82f6-abc89e320210)) + (segment (start 55.118 55.118) (end 56.8705 55.118) (width 0.25) (layer "F.Cu") (net 18) (tstamp 023011fd-8c6b-4c59-927b-38a6b78ac7d1)) + (segment (start 53.34 56.896) (end 55.118 55.118) (width 0.25) (layer "F.Cu") (net 18) (tstamp 0a75f060-9ad0-4ebe-ae07-34bbdb9c610f)) + (segment (start 51.832 56.896) (end 53.34 56.896) (width 0.25) (layer "F.Cu") (net 18) (tstamp 826883eb-791a-4f94-b3a6-d07e9c71fba1)) + (segment (start 51.308 55.372) (end 51.308 56.372) (width 0.25) (layer "F.Cu") (net 18) (tstamp a5424812-224a-4644-80cd-92ea92f4e925)) + (segment (start 51.308 56.372) (end 51.832 56.896) (width 0.25) (layer "F.Cu") (net 18) (tstamp c46a482e-bfa4-4ed5-a49f-3179709c39a1)) + (segment (start 52.578 47.0105) (end 52.578 45.275) (width 0.25) (layer "F.Cu") (net 20) (tstamp 2d8b16da-7039-46d1-b3e0-d51ad5b27623)) + (segment (start 52.641 45.212) (end 51.84148 44.41248) (width 0.25) (layer "F.Cu") (net 20) (tstamp 4774b128-5174-4a67-891b-3d5e4141c347)) + (segment (start 58.928 45.212) (end 52.641 45.212) (width 0.25) (layer "F.Cu") (net 20) (tstamp 4e45766f-979e-4943-979d-00673cffae72)) + (segment (start 52.578 45.275) (end 52.641 45.212) (width 0.25) (layer "F.Cu") (net 20) (tstamp 809bdcca-273e-43ff-8e6a-9117f11e9c62)) + (segment (start 49.37652 44.41248) (end 48.577 45.212) (width 0.25) (layer "F.Cu") (net 20) (tstamp af5c2214-3c8e-4332-81bc-0bb4818db060)) + (segment (start 51.84148 44.41248) (end 49.37652 44.41248) (width 0.25) (layer "F.Cu") (net 20) (tstamp fe393a0d-c6df-4a0b-9106-1b4c26ec9bfe)) + (segment (start 55.5 45.212) (end 54.61 46.102) (width 0.25) (layer "B.Cu") (net 20) (tstamp 3acc7025-ece3-40e5-90a2-e2fa9f35dd32)) + (segment (start 58.928 45.212) (end 55.5 45.212) (width 0.25) (layer "B.Cu") (net 20) (tstamp 42b31109-a63a-4677-96b1-3e977f162310)) + (segment (start 54.61 46.102) (end 52.832 46.102) (width 0.25) (layer "B.Cu") (net 20) (tstamp c378b76e-6761-4295-9491-256a4807b525)) + (segment (start 59.102811 53.956511) (end 56.979011 53.956511) (width 0.25) (layer "F.Cu") (net 21) (tstamp 29da739d-c2ca-49f2-9ee2-ee6636ae1dea)) + (segment (start 56.979011 53.956511) (end 56.8705 53.848) (width 0.25) (layer "F.Cu") (net 21) (tstamp 471eb4c1-1fb6-4731-b769-cc81195874cc)) + (segment (start 60.052511 54.906211) (end 59.102811 53.956511) (width 0.25) (layer "F.Cu") (net 21) (tstamp 6a625978-850a-45fd-8737-a5233c233ebd)) + (segment (start 56.767 53.7445) (end 56.8705 53.848) (width 0.25) (layer "F.Cu") (net 21) (tstamp 9bd72d67-d096-409c-bd5c-e7870f05b8d1)) + (segment (start 60.052511 59.327489) (end 60.052511 54.906211) (width 0.25) (layer "F.Cu") (net 21) (tstamp a8caaf32-6833-4065-a1df-1481de0313ff)) + (segment (start 56.8705 53.848) (end 54.132 53.848) (width 0.25) (layer "F.Cu") (net 21) (tstamp be9206a0-1e3f-464c-b99b-a19991c12874)) + (segment (start 58.928 60.452) (end 60.052511 59.327489) (width 0.25) (layer "F.Cu") (net 21) (tstamp ca75c077-f24e-4105-bb17-e07a86a020b8)) + (segment (start 54.132 53.848) (end 52.608 55.372) (width 0.25) (layer "F.Cu") (net 21) (tstamp d059ffa8-9d81-4f40-b0c7-ef6c05c002ef)) + (segment (start 56.22502 57.01252) (end 56.8705 57.658) (width 0.25) (layer "F.Cu") (net 22) (tstamp 1f11b6f3-f263-4946-8266-e5e879b69444)) + (segment (start 56.086448 55.76348) (end 55.80848 56.041448) (width 0.25) (layer "F.Cu") (net 22) (tstamp 252cda77-0297-4658-be81-0daea8195b13)) + (segment (start 55.80848 56.041448) (end 55.80848 56.734552) (width 0.25) (layer "F.Cu") (net 22) (tstamp 88e3af35-e975-415d-96f3-bb80150de8bc)) + (segment (start 58.928 55.372) (end 58.53652 55.76348) (width 0.25) (layer "F.Cu") (net 22) (tstamp 8927b998-6b2b-4fad-8d9c-60878d6c0af4)) + (segment (start 55.80848 56.734552) (end 56.086448 57.01252) (width 0.25) (layer "F.Cu") (net 22) (tstamp bc3ef0f4-d764-419d-8573-993d31d31445)) + (segment (start 58.928 55.739072) (end 58.928 55.372) (width 0.25) (layer "F.Cu") (net 22) (tstamp d98f2240-2e34-4080-9767-e3208f9ebcae)) + (segment (start 58.53652 55.76348) (end 56.086448 55.76348) (width 0.25) (layer "F.Cu") (net 22) (tstamp e9c8d488-a794-41de-9313-bc0b4d79fad7)) + (segment (start 56.086448 57.01252) (end 56.22502 57.01252) (width 0.25) (layer "F.Cu") (net 22) (tstamp f576930a-1a32-473f-911e-6ac354b950e6)) + (segment (start 58.928 55.372) (end 58.674 55.118) (width 0.25) (layer "F.Cu") (net 22) (tstamp fbf8ac89-c320-46e2-b575-18008179d8e3)) + (segment (start 56.8705 56.388) (end 57.404 56.388) (width 0.25) (layer "F.Cu") (net 23) (tstamp 3d736fea-2696-4be1-b181-df683e267329)) + (segment (start 57.404 56.388) (end 58.928 57.912) (width 0.25) (layer "F.Cu") (net 23) (tstamp f25eb369-9d3c-4480-832e-63c5dbe08161)) + (segment (start 56.8705 52.578) (end 57.009072 52.578) (width 0.25) (layer "F.Cu") (net 24) (tstamp 9066286b-ca98-4f50-820e-096a6e0afde5)) + (segment (start 57.009072 52.578) (end 58.928 50.659072) (width 0.25) (layer "F.Cu") (net 24) (tstamp cecd3c12-4f58-4548-b199-a9a6719f69ac)) + (segment (start 58.928 50.659072) (end 58.928 50.292) (width 0.25) (layer "F.Cu") (net 24) (tstamp e90e32aa-33f2-49ed-a646-bf2b655b8476)) + (segment (start 55.80848 50.384552) (end 55.80848 48.421448) (width 0.25) (layer "F.Cu") (net 25) (tstamp 33e483e1-28ce-477f-8e1a-90f7633c989b)) + (segment (start 56.477928 47.752) (end 58.928 47.752) (width 0.25) (layer "F.Cu") (net 25) (tstamp 4697463b-94dc-4b8c-aee1-c5141fa35e5c)) + (segment (start 55.80848 48.421448) (end 56.477928 47.752) (width 0.25) (layer "F.Cu") (net 25) (tstamp b0430c73-63bd-4b7f-b49c-f0732ebbb2f5)) + (segment (start 56.731928 51.308) (end 55.80848 50.384552) (width 0.25) (layer "F.Cu") (net 25) (tstamp c5eb055d-d792-407e-be11-cdfb358264b5)) + (segment (start 56.8705 51.308) (end 56.731928 51.308) (width 0.25) (layer "F.Cu") (net 25) (tstamp f9fe7e15-d7e0-464d-9549-7d15d3860916)) + (segment (start 46.99 47.5185) (end 46.99 56.304246) (width 0.25) (layer "F.Cu") (net 26) (tstamp 03eb300a-5f6e-4d3f-b371-2bdb6f7d76d9)) + (segment (start 47.498 47.0105) (end 46.99 47.5185) (width 0.25) (layer "F.Cu") (net 26) (tstamp 041568c4-9dc7-475c-8bfb-b87e32a2005d)) + (segment (start 48.12252 57.436766) (end 48.12252 63.57118) (width 0.25) (layer "F.Cu") (net 26) (tstamp 0e347f5e-959a-44a9-9ea9-360d2ad897a5)) + (segment (start 45.085 71.755) (end 46.878 69.962) (width 0.25) (layer "F.Cu") (net 26) (tstamp 15a8efac-d9fd-4ecf-8a4a-53fd64a44c0f)) + (segment (start 46.927 46.4395) (end 47.498 47.0105) (width 0.25) (layer "F.Cu") (net 26) (tstamp 22bfebf0-10ca-4b90-b3bf-d133492db6df)) + (segment (start 43.222211 69.487489) (end 42.545 70.1647) (width 0.25) (layer "F.Cu") (net 26) (tstamp 2a0cb0b2-9ac2-44f6-8949-d14b0b931ffe)) + (segment (start 46.878 69.962) (end 50.292 69.962) (width 0.25) (layer "F.Cu") (net 26) (tstamp 2d74bb8d-de77-4958-a1db-56a01f938d3b)) + (segment (start 46.627489 65.066211) (end 46.627489 66.722811) (width 0.25) (layer "F.Cu") (net 26) (tstamp 342334b7-6092-4f61-9771-2b8fc04c1cdc)) + (segment (start 42.545 71.0593) (end 43.2407 71.755) (width 0.25) (layer "F.Cu") (net 26) (tstamp 4a7a5ebc-40a1-492e-91d5-563a644e9d9d)) + (segment (start 48.12252 63.57118) (end 46.627489 65.066211) (width 0.25) (layer "F.Cu") (net 26) (tstamp 53490bf5-e482-4733-a714-8609da73bb21)) + (segment (start 43.2407 71.755) (end 45.085 71.755) (width 0.25) (layer "F.Cu") (net 26) (tstamp 58261aa4-4205-4439-8d8e-4b83eb460b1e)) + (segment (start 46.99 56.304246) (end 48.12252 57.436766) (width 0.25) (layer "F.Cu") (net 26) (tstamp 778afe45-9f16-4ca1-a254-07a0979cd9bb)) + (segment (start 43.862811 69.487489) (end 43.222211 69.487489) (width 0.25) (layer "F.Cu") (net 26) (tstamp 7e5ec390-f97b-4804-9629-b010a74c0caf)) + (segment (start 50.292 69.962) (end 50.292 65.532) (width 0.25) (layer "F.Cu") (net 26) (tstamp 9b3ecb1b-8155-4a89-9d54-9f27f2514c86)) + (segment (start 46.927 45.212) (end 46.927 46.4395) (width 0.25) (layer "F.Cu") (net 26) (tstamp ae95ed07-1a2c-4fb8-b076-1f926f7b4ec5)) + (segment (start 42.545 70.1647) (end 42.545 71.0593) (width 0.25) (layer "F.Cu") (net 26) (tstamp bd31d757-07f1-4ea7-948a-b0e16bb0761d)) + (segment (start 46.627489 66.722811) (end 43.862811 69.487489) (width 0.25) (layer "F.Cu") (net 26) (tstamp d51e8962-87f3-45ab-aef1-e3fd856a9a67)) + (segment (start 48.768 46.871928) (end 50.427928 45.212) (width 0.25) (layer "F.Cu") (net 27) (tstamp 06cf11ed-11b5-4f9c-a14c-84581e3413f7)) + (segment (start 49.39252 62.09252) (end 52.832 65.532) (width 0.25) (layer "F.Cu") (net 27) (tstamp 60222471-4339-470e-94ad-a3989b366d9d)) + (segment (start 49.39252 57.52052) (end 49.39252 62.09252) (width 0.25) (layer "F.Cu") (net 27) (tstamp 62def94f-da82-4011-bf35-41c3c797a86b)) + (segment (start 47.752 48.514) (end 47.752 55.88) (width 0.25) (layer "F.Cu") (net 27) (tstamp 6b8afd19-0304-4bb1-bbbb-9c1c90728de6)) + (segment (start 50.427928 45.212) (end 50.991 45.212) (width 0.25) (layer "F.Cu") (net 27) (tstamp 6ebc2ab9-a568-413b-8c4f-2e369e20f109)) + (segment (start 48.768 47.0105) (end 48.768 47.498) (width 0.25) (layer "F.Cu") (net 27) (tstamp 7215e3ab-6ad6-4323-a021-07baca282c25)) + (segment (start 48.768 47.0105) (end 48.768 46.871928) (width 0.25) (layer "F.Cu") (net 27) (tstamp 98ceb48e-0870-4479-8029-69df1b5b1967)) + (segment (start 47.752 55.88) (end 49.39252 57.52052) (width 0.25) (layer "F.Cu") (net 27) (tstamp ace519ac-34a0-4c5b-8268-9ed5ecaff650)) + (segment (start 48.768 47.498) (end 47.752 48.514) (width 0.25) (layer "F.Cu") (net 27) (tstamp acf2ac89-d19c-4fc5-b3e5-650246529e6b)) + (segment (start 52.832 69.962) (end 52.832 65.532) (width 0.25) (layer "F.Cu") (net 27) (tstamp dd06c53d-16fb-4a9e-8aae-ff135cb05e90)) + (segment (start 50.038 47.0105) (end 50.038 48.88) (width 0.25) (layer "F.Cu") (net 28) (tstamp 7878cf50-9c6c-49da-8387-28fb97f25f24)) + (segment (start 50.038 48.88) (end 49.784 49.134) (width 0.25) (layer "F.Cu") (net 28) (tstamp 89809723-149c-4a55-83a8-d6b279c4807e)) + (segment (start 51.166 49.134) (end 51.308 49.276) (width 0.25) (layer "F.Cu") (net 28) (tstamp b286f1a2-b7c6-4f69-b596-f8c0437a9cd3)) + (segment (start 49.784 49.134) (end 51.166 49.134) (width 0.25) (layer "F.Cu") (net 28) (tstamp c95437c3-a140-4e70-b667-2277b4b31f5a)) + (via (at 51.308 49.276) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 28) (tstamp dad502e7-48c0-4ee0-8e6e-1c4b94b0b1fb)) + (segment (start 52.832 47.752) (end 51.308 49.276) (width 0.25) (layer "B.Cu") (net 28) (tstamp 337bdb2d-6304-4cf6-92bd-d4bbdac648a0)) + (segment (start 47.752 65.532) (end 47.752 52.832) (width 0.25) (layer "B.Cu") (net 28) (tstamp dbf5a762-d4d0-4d61-a3c0-905dd9f3b04c)) + (segment (start 47.752 52.832) (end 51.308 49.276) (width 0.25) (layer "B.Cu") (net 28) (tstamp e5d40187-c8bb-4e65-9e01-71e3d21055c3)) + (segment (start 55.118 48.006) (end 55.118 47.0105) (width 0.25) (layer "F.Cu") (net 29) (tstamp 16ffffe4-e05b-4161-80a6-b36c06ddbf6f)) + (segment (start 54.498 50.434) (end 54.864 50.8) (width 0.25) (layer "F.Cu") (net 29) (tstamp 295e4d47-748b-491f-835d-e1cd021d7473)) + (segment (start 54.498 49.276) (end 54.498 50.434) (width 0.25) (layer "F.Cu") (net 29) (tstamp ae3a27cf-da63-458b-b615-ef55e99a0994)) + (segment (start 54.498 49.276) (end 54.498 48.626) (width 0.25) (layer "F.Cu") (net 29) (tstamp e45a2b1e-e201-4ef1-a619-069700256f6b)) + (segment (start 54.498 48.626) (end 55.118 48.006) (width 0.25) (layer "F.Cu") (net 29) (tstamp e9f678d9-fa7e-4bc3-8912-bb2df443db91)) + (via (at 54.864 50.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 29) (tstamp a02abe2f-a70b-4da2-9984-7202e6cddfd0)) + (segment (start 55.372 65.532) (end 55.372 51.308) (width 0.25) (layer "B.Cu") (net 29) (tstamp 1bfa8b4a-9659-4728-b514-33bd6e48ce5b)) + (segment (start 55.372 51.308) (end 54.864 50.8) (width 0.25) (layer "B.Cu") (net 29) (tstamp aaa7e9fd-951f-449d-bae4-051ba6926664)) + (segment (start 54.61 50.546) (end 54.864 50.8) (width 0.25) (layer "B.Cu") (net 29) (tstamp b151accd-b9f9-4aab-b33f-502d359716aa)) + (segment (start 54.61 47.752) (end 54.61 50.546) (width 0.25) (layer "B.Cu") (net 29) (tstamp eb250f56-8179-4ec9-ab8e-01d79f37b793)) + +) diff --git a/pcb.kicad_pro b/pcb.kicad_pro new file mode 100644 index 0000000..9345591 --- /dev/null +++ b/pcb.kicad_pro @@ -0,0 +1,435 @@ +{ + "board": { + "design_settings": { + "defaults": { + "board_outline_line_width": 0.09999999999999999, + "copper_line_width": 0.19999999999999998, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.049999999999999996, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.09999999999999999, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.15, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.15, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.15, + "silk_text_upright": false, + "zones": { + "45_degree_only": false, + "min_clearance": 0.508 + } + }, + "diff_pair_dimensions": [ + { + "gap": 0.0, + "via_gap": 0.0, + "width": 0.0 + } + ], + "drc_exclusions": [], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "copper_edge_clearance": "error", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint_type_mismatch": "error", + "hole_clearance": "error", + "hole_near_hole": "error", + "invalid_outline": "error", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "error", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zone_has_empty_net": "error", + "zones_intersect": "error" + }, + "rules": { + "allow_blind_buried_vias": false, + "allow_microvias": false, + "max_error": 0.005, + "min_clearance": 0.0, + "min_copper_edge_clearance": 0.0, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.19999999999999998, + "min_microvia_drill": 0.09999999999999999, + "min_silk_clearance": 0.0, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.19999999999999998, + "min_via_annular_width": 0.049999999999999996, + "min_via_diameter": 0.39999999999999997, + "solder_mask_clearance": 0.0, + "solder_mask_min_width": 0.0, + "use_height_for_length_calcs": true + }, + "track_widths": [ + 0.0, + 0.3, + 0.8 + ], + "via_dimensions": [ + { + "diameter": 0.0, + "drill": 0.0 + } + ], + "zones_allow_external_fillets": false, + "zones_use_no_outline": true + }, + "layer_presets": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_label_syntax": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "pcb.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12.0, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.25, + "via_diameter": 0.8, + "via_drill": 0.4, + "wire_width": 6.0 + } + ], + "meta": { + "version": 2 + }, + "net_colors": null + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "specctra_dsn": "", + "step": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "drawing": { + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "ngspice": { + "fix_include_paths": true, + "fix_passive_vals": false, + "meta": { + "version": 0 + }, + "model_mode": 0, + "workbook_filename": "" + }, + "page_layout_descr_file": "", + "plot_directory": "", + "spice_adjust_passive_values": false, + "spice_external_command": "spice \"%I\"", + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", + "" + ] + ], + "text_variables": {} +} diff --git a/pcb.kicad_sch b/pcb.kicad_sch new file mode 100644 index 0000000..d3c580d --- /dev/null +++ b/pcb.kicad_sch @@ -0,0 +1,2290 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55) + + (paper "A4") + + (lib_symbols + (symbol "Connector_Generic:Conn_02x12_Counter_Clockwise" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 1.27 15.24 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_02x12_Counter_Clockwise" (id 1) (at 1.27 -17.78 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, double row, 02x12, counter clockwise pin numbering scheme (similar to DIP packge numbering), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_02x12_Counter_Clockwise_1_1" + (rectangle (start -1.27 -15.113) (end 0 -15.367) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -12.573) (end 0 -12.827) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -10.033) (end 0 -10.287) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -7.493) (end 0 -7.747) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 5.207) (end 0 4.953) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 7.747) (end 0 7.493) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 10.287) (end 0 10.033) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 12.827) (end 0 12.573) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 13.97) (end 3.81 -16.51) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (rectangle (start 3.81 -15.113) (end 2.54 -15.367) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 -12.573) (end 2.54 -12.827) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 -10.033) (end 2.54 -10.287) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 -7.493) (end 2.54 -7.747) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 -4.953) (end 2.54 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 -2.413) (end 2.54 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 0.127) (end 2.54 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 2.667) (end 2.54 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 5.207) (end 2.54 4.953) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 7.747) (end 2.54 7.493) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 10.287) (end 2.54 10.033) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 12.827) (end 2.54 12.573) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 12.7 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -10.16 0) (length 3.81) + (name "Pin_10" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -12.7 0) (length 3.81) + (name "Pin_11" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -15.24 0) (length 3.81) + (name "Pin_12" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -15.24 180) (length 3.81) + (name "Pin_13" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -12.7 180) (length 3.81) + (name "Pin_14" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -10.16 180) (length 3.81) + (name "Pin_15" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -7.62 180) (length 3.81) + (name "Pin_16" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -5.08 180) (length 3.81) + (name "Pin_17" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -2.54 180) (length 3.81) + (name "Pin_18" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 0 180) (length 3.81) + (name "Pin_19" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 10.16 0) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 2.54 180) (length 3.81) + (name "Pin_20" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 5.08 180) (length 3.81) + (name "Pin_21" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 7.62 180) (length 3.81) + (name "Pin_22" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 10.16 180) (length 3.81) + (name "Pin_23" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 12.7 180) (length 3.81) + (name "Pin_24" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 7.62 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 5.08 0) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 2.54 0) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_7" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_8" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -7.62 0) (length 3.81) + (name "Pin_9" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 2.032 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "R" (id 1) (at 0 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at -1.778 0 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Resistor" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "R_0_1" + (rectangle (start -1.016 -2.54) (end 1.016 2.54) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "R_1_1" + (pin passive line (at 0 3.81 270) (length 1.27) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 1.27) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "JP" (id 0) (at 0 2.032 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SolderJumper_2_Open" (id 1) (at 0 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "solder jumper SPST" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Solder Jumper, 2-pole, open" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "SolderJumper*Open*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SolderJumper_2_Open_0_1" + (arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -0.254 1.016) + (xy -0.254 -1.016) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.254 1.016) + (xy 0.254 -1.016) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "SolderJumper_2_Open_1_1" + (pin passive line (at -3.81 0 0) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 0 180) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Jumper:SolderJumper_3_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "JP" (id 0) (at -2.54 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SolderJumper_3_Open" (id 1) (at 0 2.794 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "Solder Jumper SPDT" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Solder Jumper, 3-pole, open" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "SolderJumper*Open*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SolderJumper_3_Open_0_1" + (arc (start -1.016 1.016) (mid -2.032 0) (end -1.016 -1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -1.016 1.016) (mid -2.032 0) (end -1.016 -1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -0.508 1.016) (end 0.508 -1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -2.54 0) + (xy -2.032 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.016 1.016) + (xy -1.016 -1.016) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 -1.27) + (xy 0 -1.016) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.016 1.016) + (xy 1.016 -1.016) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 0) + (xy 2.032 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.016 -1.016) (mid 2.032 0) (end 1.016 1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start 1.016 -1.016) (mid 2.032 0) (end 1.016 1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "SolderJumper_3_Open_1_1" + (pin passive line (at -5.08 0 0) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 0 -3.81 90) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 2.54) + (name "B" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Memory_EPROM:27C040" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -7.62 31.75 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "27C040" (id 1) (at 2.54 -31.75 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/devicedoc/doc0189.pdf" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "OTP EPROM 4MiBit" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "OTP EPROM 4 MiBit (512 Ki x 8)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "DIP*W15.24mm* PLCC*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "27C040_1_1" + (rectangle (start -7.62 30.48) (end 7.62 -30.48) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin input line (at -10.16 -22.86 0) (length 2.54) + (name "VPP" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 22.86 0) (length 2.54) + (name "A2" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 25.4 0) (length 2.54) + (name "A1" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 27.94 0) (length 2.54) + (name "A0" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 10.16 27.94 180) (length 2.54) + (name "D0" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 10.16 25.4 180) (length 2.54) + (name "D1" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 10.16 22.86 180) (length 2.54) + (name "D2" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -33.02 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 10.16 20.32 180) (length 2.54) + (name "D3" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 10.16 17.78 180) (length 2.54) + (name "D4" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 10.16 15.24 180) (length 2.54) + (name "D5" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -12.7 0) (length 2.54) + (name "A16" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 10.16 12.7 180) (length 2.54) + (name "D6" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin tri_state line (at 10.16 10.16 180) (length 2.54) + (name "D7" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -25.4 0) (length 2.54) + (name "~{CE}" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 2.54 0) (length 2.54) + (name "A10" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -27.94 0) (length 2.54) + (name "~{OE}" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 0 0) (length 2.54) + (name "A11" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 5.08 0) (length 2.54) + (name "A9" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 7.62 0) (length 2.54) + (name "A8" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -5.08 0) (length 2.54) + (name "A13" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -7.62 0) (length 2.54) + (name "A14" (effects (font (size 1.27 1.27)))) + (number "29" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -10.16 0) (length 2.54) + (name "A15" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -15.24 0) (length 2.54) + (name "A17" (effects (font (size 1.27 1.27)))) + (number "30" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -17.78 0) (length 2.54) + (name "A18" (effects (font (size 1.27 1.27)))) + (number "31" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 33.02 270) (length 2.54) + (name "VCC" (effects (font (size 1.27 1.27)))) + (number "32" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 -2.54 0) (length 2.54) + (name "A12" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 10.16 0) (length 2.54) + (name "A7" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 12.7 0) (length 2.54) + (name "A6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 15.24 0) (length 2.54) + (name "A5" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 17.78 0) (length 2.54) + (name "A4" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -10.16 20.32 0) (length 2.54) + (name "A3" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Switch:SW_DIP_x04" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "SW" (id 0) (at 0 8.89 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SW_DIP_x04" (id 1) (at 0 -6.35 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "dip switch" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "4x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "SW?DIP?x4*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SW_DIP_x04_0_0" + (circle (center -2.032 -2.54) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center -2.032 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center -2.032 2.54) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center -2.032 5.08) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 -2.3876) + (xy 2.3622 -1.3462) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 0.127) + (xy 2.3622 1.1684) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 2.667) + (xy 2.3622 3.7084) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 5.207) + (xy 2.3622 6.2484) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.032 -2.54) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.032 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.032 2.54) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.032 5.08) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SW_DIP_x04_0_1" + (rectangle (start -3.81 7.62) (end 3.81 -5.08) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "SW_DIP_x04_1_1" + (pin passive line (at -7.62 5.08 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -7.62 2.54 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -7.62 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -7.62 -2.54 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -2.54 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 2.54 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 5.08 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 0 3.556 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+5V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+5V" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 54.61 115.57) (diameter 0) (color 0 0 0 0) + (uuid 18318eb4-c95b-4abb-a453-a304f6bf3105) + ) + (junction (at 52.07 113.03) (diameter 0) (color 0 0 0 0) + (uuid 3300ec87-4315-4ada-a233-caa0878e2426) + ) + (junction (at 33.02 113.03) (diameter 0) (color 0 0 0 0) + (uuid 562e70e0-8e6c-4391-ae4b-5af8b375bd80) + ) + (junction (at 46.99 107.95) (diameter 0) (color 0 0 0 0) + (uuid 5ab77b13-9a4c-47c4-83bf-5cc41b9231e3) + ) + (junction (at 90.17 99.06) (diameter 0) (color 0 0 0 0) + (uuid 5c3a205d-c6e9-474c-90fb-bd1cf1725c03) + ) + (junction (at 90.17 88.9) (diameter 0) (color 0 0 0 0) + (uuid 959698de-a8b0-4703-bcd3-b6acfdd5a542) + ) + (junction (at 35.56 115.57) (diameter 0) (color 0 0 0 0) + (uuid 9de56287-bfb4-4a36-86eb-04e2277e9994) + ) + (junction (at 30.48 110.49) (diameter 0) (color 0 0 0 0) + (uuid 9de86ab4-2011-4c58-b4c6-f84a2948d16f) + ) + (junction (at 49.53 110.49) (diameter 0) (color 0 0 0 0) + (uuid acdfba8e-0438-4355-babd-7f18f0a9d336) + ) + (junction (at 27.94 107.95) (diameter 0) (color 0 0 0 0) + (uuid f14fab93-994a-4660-98e7-01b61836c2b0) + ) + + (no_connect (at 58.42 60.96) (uuid 575fac3d-8af2-4127-8a2e-b7603e09f611)) + + (wire (pts (xy 118.11 104.14) (xy 100.33 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03d8f4de-b66d-4724-a89c-9d29d4f60125) + ) + (wire (pts (xy 35.56 104.14) (xy 35.56 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05fb8eee-cfcd-467d-a8f4-c70caca5ceaf) + ) + (wire (pts (xy 30.48 95.25) (xy 30.48 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 07820dfb-89d1-4352-b8db-059cbdf1b6ca) + ) + (wire (pts (xy 38.1 73.66) (xy 45.72 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a74f4e7-bc70-49a4-89bc-9f6b2edc89f5) + ) + (wire (pts (xy 30.48 110.49) (xy 30.48 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0a7769e7-a000-420c-b9fa-4fc42c37e406) + ) + (wire (pts (xy 46.99 107.95) (xy 69.85 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0bfb1bb4-bacc-4488-b3a9-77e4a80e1b91) + ) + (wire (pts (xy 30.48 104.14) (xy 30.48 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 105d8994-0645-4058-abc7-7a8084b35fbe) + ) + (wire (pts (xy 69.85 113.03) (xy 52.07 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 13b3773a-848c-4fb5-81ce-aa20f33e8431) + ) + (wire (pts (xy 90.17 88.9) (xy 90.17 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 156dcbed-3c9b-42e7-a5ee-057529e233b1) + ) + (wire (pts (xy 90.17 99.06) (xy 118.11 99.06)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 17ac2a03-0d42-4c4c-be6e-cefefa8e6181) + ) + (wire (pts (xy 49.53 110.49) (xy 49.53 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1946fb9c-bf08-43b7-8051-8fde26f2a5ac) + ) + (wire (pts (xy 33.02 134.62) (xy 33.02 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a97ead2-7589-4551-b2d9-de162cb5deac) + ) + (wire (pts (xy 128.27 114.3) (xy 128.27 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1c1ef12e-c7b0-492e-9b79-680b7414cc11) + ) + (wire (pts (xy 45.72 81.28) (xy 43.18 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 24a1cdab-c9ce-4136-88e4-ae4c940e4508) + ) + (wire (pts (xy 115.57 58.42) (xy 118.11 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 25bbecee-8ee1-43c8-8f94-20f2e33ef659) + ) + (wire (pts (xy 60.96 53.34) (xy 60.96 46.99)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28fafd2d-38b0-46f3-b28a-75bd5d280399) + ) + (wire (pts (xy 52.07 130.81) (xy 52.07 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2a30684b-d341-42dc-b009-7ec513a6b4c4) + ) + (wire (pts (xy 138.43 53.34) (xy 142.24 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3028ab64-3179-40f9-9745-fe1d66e9a5ed) + ) + (wire (pts (xy 52.07 113.03) (xy 33.02 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 35419ea4-9e6c-468e-9bd0-ef798a7da530) + ) + (wire (pts (xy 38.1 66.04) (xy 45.72 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 39249b14-09cf-494d-b565-a35f7f65413e) + ) + (wire (pts (xy 138.43 66.04) (xy 142.24 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3dc1f3dd-91a1-4c57-b1c1-8cd5864e4c46) + ) + (wire (pts (xy 90.17 86.36) (xy 90.17 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fb2e979-fbfc-4af4-8e4f-b4ea053d3181) + ) + (wire (pts (xy 35.56 134.62) (xy 35.56 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4088de92-b3c7-41c2-86f7-8e76343c8265) + ) + (wire (pts (xy 173.99 93.98) (xy 176.53 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 42401028-0456-4e29-8554-355b9e737c71) + ) + (wire (pts (xy 170.18 83.82) (xy 170.18 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 463b0b19-58ec-443e-ac3c-00d88758d0c5) + ) + (wire (pts (xy 115.57 63.5) (xy 118.11 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 46987691-56ef-4f97-b9bb-4f1fe1e66bda) + ) + (wire (pts (xy 38.1 60.96) (xy 45.72 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4898897a-056a-47ec-9324-46bcb763d86b) + ) + (wire (pts (xy 90.17 88.9) (xy 118.11 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d5e7f39-6d01-478a-bfde-ba84215300bb) + ) + (wire (pts (xy 33.02 104.14) (xy 33.02 113.03)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4d85ecce-45a5-4011-aff3-eec60aea6411) + ) + (wire (pts (xy 115.57 83.82) (xy 118.11 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4f4b751d-4323-43d3-b6b1-ce0d095a67bf) + ) + (wire (pts (xy 138.43 55.88) (xy 142.24 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 505b807f-7dd0-43f5-9762-87cc1988b013) + ) + (wire (pts (xy 27.94 95.25) (xy 27.94 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 51a797d4-059b-452a-9b69-065a2325473d) + ) + (wire (pts (xy 58.42 58.42) (xy 64.77 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52c6d709-bf2c-4bb8-aab3-486121f784ad) + ) + (wire (pts (xy 46.99 130.81) (xy 46.99 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55886a13-caf9-49b0-9624-f97ed14f9b25) + ) + (wire (pts (xy 114.3 109.22) (xy 118.11 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 569af787-4bd4-4801-9a4c-634cb3f1552d) + ) + (wire (pts (xy 38.1 76.2) (xy 45.72 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5b26a88a-ac7c-4788-83ff-fbe1c32ff733) + ) + (wire (pts (xy 115.57 60.96) (xy 118.11 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6351e8b2-6d93-4037-bec5-7f623179b519) + ) + (wire (pts (xy 33.02 113.03) (xy 33.02 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6364286b-f0b5-4719-a9a0-eb3bbd6fa48e) + ) + (wire (pts (xy 58.42 78.74) (xy 64.77 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 639528ad-20dd-4898-84aa-e10201a80dfc) + ) + (wire (pts (xy 38.1 78.74) (xy 45.72 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71a95f4d-515a-4eef-8568-34d95590fe38) + ) + (wire (pts (xy 115.57 73.66) (xy 118.11 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 751dc550-82f0-4b2d-8257-f545fba6b16b) + ) + (wire (pts (xy 46.99 107.95) (xy 46.99 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 767dc6a1-23a6-438e-ae97-63ff8dc62f0a) + ) + (wire (pts (xy 115.57 53.34) (xy 118.11 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8209cf7c-8b0a-46cc-85be-35de3f6c5a50) + ) + (wire (pts (xy 114.3 106.68) (xy 118.11 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 82d764ad-cd5d-4959-87f6-9a5cb3ad13a1) + ) + (wire (pts (xy 49.53 110.49) (xy 69.85 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 835234fd-f519-467a-8e4f-f34b8abb383f) + ) + (wire (pts (xy 115.57 68.58) (xy 118.11 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 85bb29c4-5bbf-42a7-b0c9-42bd39c5dcc3) + ) + (wire (pts (xy 58.42 53.34) (xy 60.96 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 88cf1223-6b5c-4ed0-a05e-255ce5e108c8) + ) + (wire (pts (xy 115.57 78.74) (xy 118.11 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 911fe29c-b31d-45dd-9586-b21b8e787bf7) + ) + (wire (pts (xy 38.1 55.88) (xy 45.72 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 91b09a26-e199-4e17-a35d-10087699f6a0) + ) + (wire (pts (xy 38.1 53.34) (xy 45.72 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9283b59b-e421-4dce-b9e3-f0ff3fbaa720) + ) + (wire (pts (xy 58.42 68.58) (xy 64.77 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9341652e-4d70-4290-b89a-0eb81f49472a) + ) + (wire (pts (xy 58.42 63.5) (xy 64.77 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 93966ab6-4f64-4eb3-89de-acb15f2d859d) + ) + (wire (pts (xy 115.57 93.98) (xy 118.11 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96361931-90e6-466d-9931-086a0ffba5fb) + ) + (wire (pts (xy 115.57 96.52) (xy 118.11 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 97e6edc2-6d31-45d2-ba00-4062afc94427) + ) + (wire (pts (xy 38.1 58.42) (xy 45.72 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9af3cfdf-9ed7-4950-ab95-8ea4ecedc635) + ) + (wire (pts (xy 35.56 115.57) (xy 54.61 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9b32a2c9-63e0-4b0c-9a7f-44d1bcdc11c5) + ) + (wire (pts (xy 30.48 134.62) (xy 30.48 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9c339621-8fb3-41c6-870e-7a83e5295657) + ) + (wire (pts (xy 38.1 68.58) (xy 45.72 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a08890ca-d6f2-483a-a71c-ac2e119d377b) + ) + (wire (pts (xy 27.94 104.14) (xy 27.94 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1d9ba47-8644-41f5-9636-0bd6da7dcf27) + ) + (wire (pts (xy 27.94 107.95) (xy 46.99 107.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a37ca359-0492-436a-9df2-90fdf4913389) + ) + (wire (pts (xy 58.42 66.04) (xy 64.77 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a3d65116-caf8-44db-9529-7f66d3f2b20e) + ) + (wire (pts (xy 115.57 76.2) (xy 118.11 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a70da9fd-140c-498c-bac4-9c0ad4cc5f15) + ) + (wire (pts (xy 100.33 104.14) (xy 100.33 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid af8730ba-4aca-4759-9b8d-e74032efa187) + ) + (wire (pts (xy 138.43 71.12) (xy 142.24 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid affe9ed0-6f24-4296-a14d-47123c6d6e05) + ) + (wire (pts (xy 54.61 115.57) (xy 69.85 115.57)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0b85a7a-6580-485f-8be0-e819c1ff63f7) + ) + (wire (pts (xy 27.94 107.95) (xy 27.94 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3f229a9-ca0b-4a57-a910-4641fa04d855) + ) + (wire (pts (xy 54.61 115.57) (xy 54.61 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b46de5a6-fd1a-47f1-b54f-7984e4dedf1e) + ) + (wire (pts (xy 43.18 81.28) (xy 43.18 83.82)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b4d2c23a-7cc4-45c9-8b80-2fac4ca991f3) + ) + (wire (pts (xy 115.57 71.12) (xy 118.11 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5116120-d10c-4274-ac42-a925e2535cb7) + ) + (wire (pts (xy 138.43 60.96) (xy 142.24 60.96)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b8a19e5b-f774-4085-b8c3-e9a67fab6e92) + ) + (wire (pts (xy 52.07 113.03) (xy 52.07 123.19)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bc2858fa-6ea6-4989-8572-a4a38ce9cd2c) + ) + (wire (pts (xy 58.42 73.66) (xy 64.77 73.66)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be8608e0-ab81-4182-aecb-52a7ac82f292) + ) + (wire (pts (xy 33.02 95.25) (xy 33.02 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1969b61-b245-4815-b4d3-68200068d7f6) + ) + (wire (pts (xy 30.48 110.49) (xy 49.53 110.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c26a9c0d-dad6-4d5d-874f-cbe89b97e884) + ) + (wire (pts (xy 115.57 81.28) (xy 118.11 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3f3d7a4-6566-41d9-997c-c11b70251231) + ) + (wire (pts (xy 58.42 55.88) (xy 64.77 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c457d6bc-d372-4e5a-9060-512765531115) + ) + (wire (pts (xy 35.56 95.25) (xy 35.56 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5ad2c2b-7d97-4894-b0f0-e840600224dc) + ) + (wire (pts (xy 90.17 99.06) (xy 90.17 100.33)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c614d43a-1f1d-408b-9a81-4e7e5253c0fa) + ) + (wire (pts (xy 128.27 44.45) (xy 128.27 48.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c66fd03a-304d-4ccf-a7b5-a6e16da0cf94) + ) + (wire (pts (xy 49.53 130.81) (xy 49.53 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c84baec6-a6ed-44cd-b8dd-e94fb4139b0c) + ) + (wire (pts (xy 38.1 71.12) (xy 45.72 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cb3e3938-6218-4fd1-b217-7cb8ce2f897f) + ) + (wire (pts (xy 138.43 68.58) (xy 142.24 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cc01b78f-ff81-49cf-a351-8bd03a45761b) + ) + (wire (pts (xy 170.18 99.06) (xy 170.18 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cd8c52aa-8c0c-412f-acf6-e52a5f408f1c) + ) + (wire (pts (xy 27.94 134.62) (xy 27.94 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d29a5755-7eec-4076-923f-7ac7d0cf6e3a) + ) + (wire (pts (xy 115.57 66.04) (xy 118.11 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid daf28de1-1e78-4561-afde-31048d48998c) + ) + (wire (pts (xy 35.56 115.57) (xy 35.56 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e26c4cda-5c82-4894-8d91-31736f502ea8) + ) + (wire (pts (xy 115.57 91.44) (xy 118.11 91.44)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e56469b0-2210-4c4e-b1bf-f1f746bbcb45) + ) + (wire (pts (xy 38.1 63.5) (xy 45.72 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5add63a-de0a-4120-b858-29ef0661de86) + ) + (wire (pts (xy 115.57 55.88) (xy 118.11 55.88)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e5b117d2-ee58-4c69-9cc7-77c9810e759c) + ) + (wire (pts (xy 90.17 86.36) (xy 118.11 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e74966d1-9864-43e6-bbfb-3c6735d35f77) + ) + (wire (pts (xy 54.61 130.81) (xy 54.61 140.97)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e8a19cc1-24ec-4408-979b-fed80f20e209) + ) + (wire (pts (xy 138.43 58.42) (xy 142.24 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ebe86027-4a97-46e2-a846-9c8add8a0bc9) + ) + (wire (pts (xy 58.42 71.12) (xy 64.77 71.12)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid edf2e0fd-0536-4405-afa9-810418844425) + ) + (wire (pts (xy 138.43 63.5) (xy 142.24 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef70de54-a087-42ae-9130-8bca1ae3ceda) + ) + (wire (pts (xy 58.42 76.2) (xy 64.77 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f318d741-a166-4200-9df8-bacbcdae83b1) + ) + (wire (pts (xy 58.42 81.28) (xy 64.77 81.28)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f7ee1144-61c9-4909-a362-f03fc5f65cfe) + ) + + (global_label "A10" (shape output) (at 64.77 66.04 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 10308fbf-d1cb-4288-aefe-77c06be0cb0e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 70.6907 65.9606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A8" (shape input) (at 115.57 73.66 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 114fe52c-9f2f-4e6e-ba8e-a773e5e46fb6) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.8588 73.5806 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A7" (shape input) (at 115.57 71.12 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1222251d-8aa7-46fb-82ce-8386e0b62ef9) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.8588 71.0406 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A16" (shape input) (at 115.57 93.98 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1a08e841-e5da-406a-80d2-b8b0596a9e58) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 109.6493 93.9006 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A15" (shape input) (at 115.57 91.44 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 1aa198f7-49bb-4e27-adb6-5bae8f32eda8) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 109.6493 91.3606 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A5" (shape output) (at 38.1 58.42 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 284b11f3-c03b-44f1-8ebe-46aab93f9dfd) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.3888 58.3406 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A12" (shape input) (at 115.57 83.82 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 38016615-dfaa-49cc-a001-a4aed10b3f54) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 109.6493 83.8994 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A7" (shape output) (at 38.1 53.34 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 3a7974bd-fde1-41a7-8e06-84dbb6cf0d16) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.3888 53.2606 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A1" (shape input) (at 115.57 55.88 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 3d4b2c34-ce9f-44d6-9cb0-82bbaa777d74) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.8588 55.8006 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "OE" (shape input) (at 114.3 109.22 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 41b45786-3672-4df2-b5ba-061141bbda10) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 109.4074 109.1406 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "D1" (shape input) (at 38.1 76.2 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 4352be14-56ba-4710-be9f-84270fd7cef1) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.2074 76.1206 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A2" (shape output) (at 38.1 66.04 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 4c11b483-af36-467a-91a2-98795feab456) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.3888 65.9606 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "CE" (shape input) (at 114.3 106.68 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 52edde95-211c-4b7d-be15-f61e89e344d7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 109.4679 106.7594 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "D3" (shape input) (at 64.77 81.28 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 54be5d16-ad9a-408c-9149-58d10d174905) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.6626 81.2006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A4" (shape input) (at 115.57 63.5 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 5840df24-9bbd-4724-a7c3-53d3e5baa449) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.8588 63.4206 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "OE" (shape output) (at 176.53 93.98 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 5aaaed73-2c28-40b6-a729-beee69c4bbb4) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 181.4226 93.9006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A6" (shape input) (at 115.57 68.58 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 60957444-8eae-4b10-9824-795a1d57f9df) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.8588 68.5006 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "D7" (shape output) (at 142.24 71.12 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 6126b171-520c-4e44-93c7-bea8fe7672e3) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.1326 71.0406 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A2" (shape input) (at 115.57 58.42 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 61445f6a-3610-4183-8eeb-ada889f5907f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.8588 58.3406 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A17" (shape input) (at 115.57 96.52 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 6ade772c-e9c7-4f56-a765-a59c40dd9673) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 109.6493 96.4406 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A15" (shape output) (at 69.85 113.03 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 702e11aa-e131-4f3e-9cb9-c36bd9e55c7c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 75.7707 112.9506 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "D5" (shape input) (at 64.77 76.2 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 72872ae8-9abc-4293-a1b2-1e5e325b929e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.6626 76.1206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A10" (shape input) (at 115.57 78.74 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 73c4138f-ae62-4d25-b862-2444dafa84a5) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 109.6493 78.6606 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "D3" (shape output) (at 142.24 60.96 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7442fe26-37b9-433a-a0f3-034f2ae5044b) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.1326 60.8806 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "D2" (shape output) (at 142.24 58.42 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 74bc7444-1c8f-45ff-b98c-ad127fc0728c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.1326 58.3406 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "D0" (shape input) (at 38.1 73.66 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 75bca677-e946-45e8-a49a-e3594a052bc3) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.2074 73.7394 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A9" (shape input) (at 115.57 76.2 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 7a8c8906-0539-4de1-9789-c988bd080e9c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.8588 76.1206 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "D2" (shape input) (at 38.1 78.74 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 8944acdc-5680-48a3-8385-a5c6826e0d16) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.2074 78.6606 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A17" (shape output) (at 69.85 115.57 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 8d2cdb1f-b42f-4373-9e36-aa6dbc0c4fc1) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 75.7707 115.4906 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A8" (shape output) (at 64.77 55.88 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 8ed9db1c-014a-459b-8802-efc493a1c040) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.4812 55.8006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A12" (shape output) (at 69.85 110.49 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 92ae2b73-eaad-413d-a0d1-a0d7f0a4bba2) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 75.7707 110.5694 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A16" (shape output) (at 69.85 107.95 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 92c4afc9-0b89-472e-af18-83d6bf5eb91a) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 75.7707 107.8706 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A0" (shape input) (at 115.57 53.34 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 93cc0c01-c02c-4b4c-94e5-124f70bb0a3a) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.8588 53.2606 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "D0" (shape output) (at 142.24 53.34 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 98543a39-4872-4bcc-830e-28a25cf469b7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.1326 53.2606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "D6" (shape output) (at 142.24 68.58 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 9e57859b-6172-4be4-a454-1450e8ab790a) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.1326 68.5006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A1" (shape output) (at 38.1 68.58 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 9efd3a5a-9709-48ac-b68a-007df6a43861) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.3888 68.5006 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A3" (shape input) (at 115.57 60.96 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid a416710c-f834-4a3a-9fb0-60b4304c4b37) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.8588 60.8806 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A3" (shape output) (at 38.1 63.5 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid a74d1fda-e9fe-4ff3-a9ef-05cec8a8af86) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.3888 63.4206 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "CE" (shape output) (at 64.77 63.5 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid a8cdba18-8592-4c51-a325-e02efd32bb47) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.6021 63.4206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A5" (shape input) (at 115.57 66.04 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid b57911a7-2ebd-4c18-a220-aecab2c45378) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.8588 65.9606 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "D4" (shape input) (at 64.77 78.74 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b85a5ac0-2450-4200-a0f7-a36611a4907a) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.6626 78.6606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "D5" (shape output) (at 142.24 66.04 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c9c8457a-7d19-47e1-9e1b-b6597ce0b703) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.1326 65.9606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A11" (shape output) (at 64.77 68.58 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid cb12113a-e6af-44ad-b673-fac3a3490958) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 70.6907 68.5006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A9" (shape output) (at 64.77 58.42 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid cc25965c-3363-4aad-ae5c-764a3f2cbf2b) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.4812 58.3406 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A6" (shape output) (at 38.1 55.88 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid d2d4c2a3-b4f6-457b-8804-a77b11d68fcd) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.3888 55.8006 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "D4" (shape output) (at 142.24 63.5 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d2fb7fc5-32dc-4a57-900e-b36cad01f4ab) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.1326 63.4206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "D7" (shape input) (at 64.77 71.12 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d97d1132-9451-4d1d-b449-d1d6d9e55a5c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.6626 71.0406 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A11" (shape input) (at 115.57 81.28 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid dbc7067b-c122-4f07-9f04-4f2ae88fd9f7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 109.6493 81.3594 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "D1" (shape output) (at 142.24 55.88 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid e099e40f-25d6-4bdc-99da-eb0ee8da7c8a) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.1326 55.8006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A4" (shape output) (at 38.1 60.96 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid e6bb3fe2-58f7-4ca2-9c9d-148746a9fc6c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.3888 60.8806 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "D6" (shape input) (at 64.77 73.66 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid e6d838cf-b55c-42ff-8404-aca511201cc8) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 69.6626 73.5806 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "A0" (shape output) (at 38.1 71.12 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid f5268979-dee2-4cd6-a3bc-d57ff9f37af2) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.3888 71.0406 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "A11" (shape input) (at 170.18 83.82 90) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f737c5fc-2c96-41d5-9938-642d38107b47) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 170.1006 77.8993 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + + (symbol (lib_id "Device:R") (at 35.56 100.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0c4deb65-0fc2-4582-bf94-bf317032277f) + (property "Reference" "R4" (id 0) (at 37.338 99.4215 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10kOhm" (id 1) (at 37.338 102.1966 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 33.782 100.33 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 35.56 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6ff37887-4994-46f8-820b-36c5ae472f8d)) + (pin "2" (uuid 600975ea-a700-4310-9060-721a117699ef)) + ) + + (symbol (lib_id "Device:R") (at 27.94 100.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0cdd608c-fa1f-474b-b411-b1ca078633be) + (property "Reference" "R3" (id 0) (at 29.718 99.4215 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10kOhm" (id 1) (at 29.718 102.1966 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 26.162 100.33 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 27.94 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0291eb19-a0af-4830-afa8-0d328b8b124c)) + (pin "2" (uuid 2d1f24f8-33b9-4319-960a-f4f296b2d1ee)) + ) + + (symbol (lib_id "Jumper:SolderJumper_2_Open") (at 46.99 127 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 13c8c714-033d-4ff3-b0f9-ca208a328fd2) + (property "Reference" "JP4" (id 0) (at 48.641 126.0915 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "SolderJumper_2_Open" (id 1) (at 48.641 128.8666 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (id 2) (at 46.99 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 46.99 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 01f11fea-135b-406e-af75-b461fe326cf6)) + (pin "2" (uuid d01773fd-4fc8-4385-9173-f95cd61f94f3)) + ) + + (symbol (lib_id "Jumper:SolderJumper_3_Open") (at 170.18 93.98 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 22cb26b9-d501-4786-ab70-b7ac2868619c) + (property "Reference" "JP2" (id 0) (at 168.5291 93.0715 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SolderJumper_3_Open" (id 1) (at 168.5291 95.8466 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm" (id 2) (at 170.18 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 170.18 93.98 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8672a05d-b750-4ddd-a92d-4c58fddcdd4e)) + (pin "2" (uuid 469553b1-52fa-4564-9359-73b74ba8f58f)) + (pin "3" (uuid b64fe3cc-3a1f-41b6-9ac9-fa971c4a06a6)) + ) + + (symbol (lib_id "power:GND") (at 54.61 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 2c923a4b-83fc-4684-8bd7-e79f2667d777) + (property "Reference" "#PWR0119" (id 0) (at 54.61 147.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 54.61 145.5325 0)) + (property "Footprint" "" (id 2) (at 54.61 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 54.61 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 66b0519a-58f9-40bb-81d0-1f136f0f7347)) + ) + + (symbol (lib_id "Switch:SW_DIP_x04") (at 33.02 127 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 31446a24-8ce7-4dca-ab0b-d907a8be5e8d) + (property "Reference" "SW1" (id 0) (at 38.862 126.0915 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "SW_DIP_x04" (id 1) (at 38.862 128.8666 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Button_Switch_THT:SW_DIP_SPSTx04_Slide_6.7x11.72mm_W7.62mm_P2.54mm_LowProfile" (id 2) (at 33.02 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 33.02 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ebeadaad-fbad-490e-b1e8-497ced7ea37f)) + (pin "2" (uuid 434de308-3c0f-471e-b2ea-4b1db61e07dc)) + (pin "3" (uuid 11b49d13-b047-4242-be65-9a9b1c80ec58)) + (pin "4" (uuid 006bc43b-d3a8-4a38-a8dc-5a24da3f9b4d)) + (pin "5" (uuid 496eb987-d081-4e1e-a63a-28ee1d48f2f8)) + (pin "6" (uuid 0157ed9d-375b-4b39-a7c1-9cb08dcf67bf)) + (pin "7" (uuid 6c55033c-55b9-4835-9ab8-f334f8a3ffed)) + (pin "8" (uuid f0d59009-bdb6-4150-8249-d2a9c5928391)) + ) + + (symbol (lib_id "power:GND") (at 33.02 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 32f92fc1-491e-4a70-9a5a-7d3b6e658e77) + (property "Reference" "#PWR0112" (id 0) (at 33.02 147.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 33.02 145.5325 0)) + (property "Footprint" "" (id 2) (at 33.02 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 33.02 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6804ef78-c1e6-423d-bd5b-73f15701b374)) + ) + + (symbol (lib_id "power:+5V") (at 27.94 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4e27881f-3e96-4f7d-b0a3-8a3a4f71c27f) + (property "Reference" "#PWR0113" (id 0) (at 27.94 99.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 27.94 91.6455 0)) + (property "Footprint" "" (id 2) (at 27.94 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 27.94 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e38fc2a3-426d-4ef7-970c-1b1e56d161ce)) + ) + + (symbol (lib_id "power:GND") (at 128.27 116.84 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5359fec8-b978-4b0d-9f98-9284b5f3e7a7) + (property "Reference" "#PWR0104" (id 0) (at 128.27 123.19 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 128.27 121.4025 0)) + (property "Footprint" "" (id 2) (at 128.27 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 128.27 116.84 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9f1054fd-c7d0-45b6-8fa8-08cb2a240093)) + ) + + (symbol (lib_id "power:GND") (at 49.53 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6e9006d8-f879-45f5-9b63-fc261e27772c) + (property "Reference" "#PWR0117" (id 0) (at 49.53 147.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 49.53 145.5325 0)) + (property "Footprint" "" (id 2) (at 49.53 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 49.53 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 60185039-f217-4de0-b3b8-aae246472f66)) + ) + + (symbol (lib_id "Memory_EPROM:27C040") (at 128.27 81.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 716e31c5-485f-40b5-88e3-a75900da9811) + (property "Reference" "U1" (id 0) (at 130.2894 46.8335 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "27C040" (id 1) (at 130.2894 49.6086 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_LCC:PLCC-32_11.4x14.0mm_P1.27mm" (id 2) (at 128.27 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/devicedoc/doc0189.pdf" (id 3) (at 128.27 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ce83728b-bebd-48c2-8734-b6a50d837931)) + (pin "10" (uuid c41b3c8b-634e-435a-b582-96b83bbd4032)) + (pin "11" (uuid 9340c285-5767-42d5-8b6d-63fe2a40ddf3)) + (pin "12" (uuid 1831fb37-1c5d-42c4-b898-151be6fca9dc)) + (pin "13" (uuid 0f22151c-f260-4674-b486-4710a2c42a55)) + (pin "14" (uuid fe8d9267-7834-48d6-a191-c8724b2ee78d)) + (pin "15" (uuid 0b21a65d-d20b-411e-920a-75c343ac5136)) + (pin "16" (uuid 3cd1bda0-18db-417d-b581-a0c50623df68)) + (pin "17" (uuid d57dcfee-5058-4fc2-a68b-05f9a48f685b)) + (pin "18" (uuid 03c52831-5dc5-43c5-a442-8d23643b46fb)) + (pin "19" (uuid a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5)) + (pin "2" (uuid 29e78086-2175-405e-9ba3-c48766d2f50c)) + (pin "20" (uuid 94a873dc-af67-4ef9-8159-1f7c93eeb3d7)) + (pin "21" (uuid 4c8eb964-bdf4-44de-90e9-e2ab82dd5313)) + (pin "22" (uuid aa14c3bd-4acc-4908-9d28-228585a22a9d)) + (pin "23" (uuid 9bb20359-0f8b-45bc-9d38-6626ed3a939d)) + (pin "24" (uuid 2d210a96-f81f-42a9-8bf4-1b43c11086f3)) + (pin "25" (uuid e857610b-4434-4144-b04e-43c1ebdc5ceb)) + (pin "26" (uuid 6c2e273e-743c-4f1e-a647-4171f8122550)) + (pin "27" (uuid 666713b0-70f4-42df-8761-f65bc212d03b)) + (pin "28" (uuid 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e)) + (pin "29" (uuid 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280)) + (pin "3" (uuid 7aed3a71-054b-4aaa-9c0a-030523c32827)) + (pin "30" (uuid 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2)) + (pin "31" (uuid 42713045-fffd-4b2d-ae1e-7232d705fb12)) + (pin "32" (uuid c0515cd2-cdaa-467e-8354-0f6eadfa35c9)) + (pin "4" (uuid 1bf544e3-5940-4576-9291-2464e95c0ee2)) + (pin "5" (uuid 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7)) + (pin "6" (uuid bdc7face-9f7c-4701-80bb-4cc144448db1)) + (pin "7" (uuid 97fe9c60-586f-4895-8504-4d3729f5f81a)) + (pin "8" (uuid 922058ca-d09a-45fd-8394-05f3e2c1e03a)) + (pin "9" (uuid 0f54db53-a272-4955-88fb-d7ab00657bb0)) + ) + + (symbol (lib_id "power:GND") (at 35.56 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7c64e598-555e-4633-ab4a-b539227c327f) + (property "Reference" "#PWR0115" (id 0) (at 35.56 147.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 35.56 145.5325 0)) + (property "Footprint" "" (id 2) (at 35.56 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 35.56 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6d0b8eed-2e3e-4c91-acc5-62f167b10d44)) + ) + + (symbol (lib_id "power:+5V") (at 128.27 44.45 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8141f226-6f0a-4ee4-acaa-39a5ea41233f) + (property "Reference" "#PWR0105" (id 0) (at 128.27 48.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 128.27 40.8455 0)) + (property "Footprint" "" (id 2) (at 128.27 44.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 128.27 44.45 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid dda6d46a-09da-469a-a641-c4ec10ef7d94)) + ) + + (symbol (lib_id "power:GND") (at 52.07 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 85d20062-e0a6-42d0-8014-302ba7451a02) + (property "Reference" "#PWR0118" (id 0) (at 52.07 147.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 52.07 145.5325 0)) + (property "Footprint" "" (id 2) (at 52.07 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 52.07 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5d15476e-0997-4852-8143-e6a3ac71425b)) + ) + + (symbol (lib_id "Jumper:SolderJumper_2_Open") (at 52.07 127 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8c56c6ba-0057-4349-a882-633a569afeeb) + (property "Reference" "JP3" (id 0) (at 53.721 126.0915 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "SolderJumper_2_Open" (id 1) (at 53.721 128.8666 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (id 2) (at 52.07 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 52.07 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 239c56d1-9cb1-414c-97e5-dcbe8211b2ba)) + (pin "2" (uuid 8bbfd3c0-2ace-4089-95f4-98c7b5dcd954)) + ) + + (symbol (lib_id "Device:R") (at 30.48 100.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a1ad4d61-6556-470c-9879-70831df1e9e1) + (property "Reference" "R1" (id 0) (at 32.258 99.4215 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10kOhm" (id 1) (at 32.258 102.1966 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 28.702 100.33 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 30.48 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid eff3aa55-7baf-4744-b267-4ca650ffba7e)) + (pin "2" (uuid 8d749d97-f1b6-4af3-bb68-6cdd90253a5f)) + ) + + (symbol (lib_id "Jumper:SolderJumper_2_Open") (at 49.53 127 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid abd627b1-6972-4245-b8dc-6952c6ad227b) + (property "Reference" "JP1" (id 0) (at 51.181 126.0915 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "SolderJumper_2_Open" (id 1) (at 51.181 128.8666 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (id 2) (at 49.53 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 49.53 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 31e31be2-ea4d-40fd-b07f-d998e157e6f3)) + (pin "2" (uuid 9c1152f2-746c-4313-aa8d-22ce8aa1aa63)) + ) + + (symbol (lib_id "power:GND") (at 46.99 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid afacd1a7-dba6-4099-bec1-023b041e933b) + (property "Reference" "#PWR0116" (id 0) (at 46.99 147.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 46.99 145.5325 0)) + (property "Footprint" "" (id 2) (at 46.99 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 46.99 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid eb73387c-6672-46a0-ac2d-71814356cf0a)) + ) + + (symbol (lib_id "power:GND") (at 30.48 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b63bd667-f2d9-44ef-91c8-0a8a156c214f) + (property "Reference" "#PWR0110" (id 0) (at 30.48 147.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 30.48 145.5325 0)) + (property "Footprint" "" (id 2) (at 30.48 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 30.48 140.97 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid be1ea428-d74e-4125-8596-38f82be06487)) + ) + + (symbol (lib_id "power:GND") (at 90.17 100.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c2b6d1ec-cee5-453e-8837-1487e13194cc) + (property "Reference" "#PWR0102" (id 0) (at 90.17 106.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 90.17 104.8925 0)) + (property "Footprint" "" (id 2) (at 90.17 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 90.17 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 65081ec7-675a-458d-b9b1-0765cb049390)) + ) + + (symbol (lib_id "power:+5V") (at 60.96 46.99 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d49880c4-aff6-48f1-902e-12e0790d3b2e) + (property "Reference" "#PWR0103" (id 0) (at 60.96 50.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 60.96 43.3855 0)) + (property "Footprint" "" (id 2) (at 60.96 46.99 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 60.96 46.99 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 71e1a595-9cf3-4047-8ef3-5e8c37ca3a8e)) + ) + + (symbol (lib_id "power:+5V") (at 33.02 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d9043f3a-0d1f-4873-9cee-d93f0d7b57fc) + (property "Reference" "#PWR0109" (id 0) (at 33.02 99.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 33.02 91.6455 0)) + (property "Footprint" "" (id 2) (at 33.02 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 33.02 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7ca34555-9f42-4554-a6c9-7ab196fd338a)) + ) + + (symbol (lib_id "power:GND") (at 100.33 106.68 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e1380406-12f4-40df-8731-3c2c38c67e90) + (property "Reference" "#PWR0101" (id 0) (at 100.33 113.03 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 100.33 111.2425 0)) + (property "Footprint" "" (id 2) (at 100.33 106.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 100.33 106.68 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a68fea17-0b0f-4480-95ea-c0dfd36819f1)) + ) + + (symbol (lib_id "Jumper:SolderJumper_2_Open") (at 54.61 127 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e1a57abc-e1de-4622-8769-4b8801fef914) + (property "Reference" "JP5" (id 0) (at 56.261 126.0915 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "SolderJumper_2_Open" (id 1) (at 56.261 128.8666 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (id 2) (at 54.61 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 54.61 127 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d2e66279-3f9e-430f-8f98-515acdad8524)) + (pin "2" (uuid 2a5f06fe-a047-4ba0-ac3b-a4b14a357abf)) + ) + + (symbol (lib_id "power:+5V") (at 30.48 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e25678c3-7a6f-406f-b60f-2c8f0cc0a45b) + (property "Reference" "#PWR0107" (id 0) (at 30.48 99.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 30.48 91.6455 0)) + (property "Footprint" "" (id 2) (at 30.48 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 30.48 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 477159c8-6842-4fdb-8985-f042f4e62500)) + ) + + (symbol (lib_id "power:+5V") (at 35.56 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e34d5fe4-ed76-4288-a813-3e5a51d6f2ab) + (property "Reference" "#PWR0111" (id 0) (at 35.56 99.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 35.56 91.6455 0)) + (property "Footprint" "" (id 2) (at 35.56 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 35.56 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid aa88ab4c-50eb-4f47-8fe9-a611238a1e31)) + ) + + (symbol (lib_id "Device:R") (at 33.02 100.33 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ea7446f4-dd41-420d-8031-fb36e90fc95a) + (property "Reference" "R2" (id 0) (at 34.798 99.4215 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "10kOhm" (id 1) (at 34.798 102.1966 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 31.242 100.33 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 33.02 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 11b5b0e6-98d5-4eee-98fb-bb00ebe1f9d2)) + (pin "2" (uuid 1496b6d4-e091-4ff3-b505-fb944079e83f)) + ) + + (symbol (lib_id "power:GND") (at 170.18 104.14 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed8cae4f-91dd-4b4e-8735-82d1cba8a90d) + (property "Reference" "#PWR0108" (id 0) (at 170.18 110.49 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 170.18 108.7025 0)) + (property "Footprint" "" (id 2) (at 170.18 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 170.18 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid dde911d8-e684-4acb-b148-28ee3c11cf89)) + ) + + (symbol (lib_id "power:GND") (at 27.94 140.97 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f5b0b191-4080-4cd6-b288-ea2d0693ea4d) + (property "Reference" "#PWR0114" (id 0) (at 27.94 147.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 27.94 145.5325 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 70ffa418-4725-4e6f-9cc7-a5a264ae28f2)) + ) + + (symbol (lib_id "power:GND") (at 43.18 83.82 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f7b72427-2e9e-4c5e-8c5a-380ae512d15f) + (property "Reference" "#PWR0106" (id 0) (at 43.18 90.17 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 43.18 88.3825 0)) + (property "Footprint" "" (id 2) (at 43.18 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 43.18 83.82 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 05847d21-c8ba-4c0b-b31b-eeafc066b0b9)) + ) + + (symbol (lib_id "Connector_Generic:Conn_02x12_Counter_Clockwise") (at 50.8 66.04 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fe9073de-b4ae-429c-945b-a199d6313a17) + (property "Reference" "J1" (id 0) (at 52.07 48.1035 0)) + (property "Value" "Conn_02x12_Counter_Clockwise" (id 1) (at 52.07 50.8786 0)) + (property "Footprint" "s3lph:DIP-24_W15.24mm_Socket" (id 2) (at 50.8 66.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 50.8 66.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d789eb5c-7750-4e88-bd51-088f1d8d4899)) + (pin "10" (uuid db3e62ed-d2c4-4262-9844-874282d066c8)) + (pin "11" (uuid 4a151dd5-28d8-42af-b70d-d52cf427540e)) + (pin "12" (uuid 92563de1-61c4-4e3f-8603-96474790934f)) + (pin "13" (uuid 4f4277d9-4ff1-4fe4-9af0-84cedee4b2b6)) + (pin "14" (uuid 97816a30-8562-4b40-bfd6-82faaadf14b2)) + (pin "15" (uuid dc4bf440-2891-440b-98cc-4ec7ceadee72)) + (pin "16" (uuid 7c938fcf-5266-4f01-b9d8-797ff7c61f4c)) + (pin "17" (uuid 06d56cea-efec-4ee2-a30e-da196d83ccb4)) + (pin "18" (uuid 7b66c522-eb2b-4ac5-8fa6-badbd9e03844)) + (pin "19" (uuid 0504c604-5989-41d4-98b3-73baf39661a4)) + (pin "2" (uuid 737d10d1-31d2-4ac3-8e9f-c01d3ad411b5)) + (pin "20" (uuid e807127d-3013-4e6e-a160-f258e33d9fb8)) + (pin "21" (uuid 6fb81dc6-41d5-4f97-ab8d-08492b739776)) + (pin "22" (uuid a4a90bd3-5586-4453-acbb-4d2c22443f49)) + (pin "23" (uuid edbc17dd-aa76-4d77-81ec-11ed42efea05)) + (pin "24" (uuid a82cec30-45c1-49b3-b9e6-e30cc49eb759)) + (pin "3" (uuid 572f678c-7489-4a0c-81c3-6f024e0707be)) + (pin "4" (uuid 20a40fd4-4825-456a-b45d-96e8fe1622a5)) + (pin "5" (uuid dc538eb4-034b-4b8a-a5e5-4a3e1e9a8cd3)) + (pin "6" (uuid b5e1d796-f3d8-4363-a6bf-5bf078e880e8)) + (pin "7" (uuid b89e3fe5-d3a3-4087-a7a3-319b60fcc6e9)) + (pin "8" (uuid 5d4ed9ca-985c-4d79-b913-0fd671b604bc)) + (pin "9" (uuid 0368658f-3125-4888-be8d-2d00cf819e46)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/e1380406-12f4-40df-8731-3c2c38c67e90" + (reference "#PWR0101") (unit 1) (value "GND") (footprint "") + ) + (path "/c2b6d1ec-cee5-453e-8837-1487e13194cc" + (reference "#PWR0102") (unit 1) (value "GND") (footprint "") + ) + (path "/d49880c4-aff6-48f1-902e-12e0790d3b2e" + (reference "#PWR0103") (unit 1) (value "+5V") (footprint "") + ) + (path "/5359fec8-b978-4b0d-9f98-9284b5f3e7a7" + (reference "#PWR0104") (unit 1) (value "GND") (footprint "") + ) + (path "/8141f226-6f0a-4ee4-acaa-39a5ea41233f" + (reference "#PWR0105") (unit 1) (value "+5V") (footprint "") + ) + (path "/f7b72427-2e9e-4c5e-8c5a-380ae512d15f" + (reference "#PWR0106") (unit 1) (value "GND") (footprint "") + ) + (path "/e25678c3-7a6f-406f-b60f-2c8f0cc0a45b" + (reference "#PWR0107") (unit 1) (value "+5V") (footprint "") + ) + (path "/ed8cae4f-91dd-4b4e-8735-82d1cba8a90d" + (reference "#PWR0108") (unit 1) (value "GND") (footprint "") + ) + (path "/d9043f3a-0d1f-4873-9cee-d93f0d7b57fc" + (reference "#PWR0109") (unit 1) (value "+5V") (footprint "") + ) + (path "/b63bd667-f2d9-44ef-91c8-0a8a156c214f" + (reference "#PWR0110") (unit 1) (value "GND") (footprint "") + ) + (path "/e34d5fe4-ed76-4288-a813-3e5a51d6f2ab" + (reference "#PWR0111") (unit 1) (value "+5V") (footprint "") + ) + (path "/32f92fc1-491e-4a70-9a5a-7d3b6e658e77" + (reference "#PWR0112") (unit 1) (value "GND") (footprint "") + ) + (path "/4e27881f-3e96-4f7d-b0a3-8a3a4f71c27f" + (reference "#PWR0113") (unit 1) (value "+5V") (footprint "") + ) + (path "/f5b0b191-4080-4cd6-b288-ea2d0693ea4d" + (reference "#PWR0114") (unit 1) (value "GND") (footprint "") + ) + (path "/7c64e598-555e-4633-ab4a-b539227c327f" + (reference "#PWR0115") (unit 1) (value "GND") (footprint "") + ) + (path "/afacd1a7-dba6-4099-bec1-023b041e933b" + (reference "#PWR0116") (unit 1) (value "GND") (footprint "") + ) + (path "/6e9006d8-f879-45f5-9b63-fc261e27772c" + (reference "#PWR0117") (unit 1) (value "GND") (footprint "") + ) + (path "/85d20062-e0a6-42d0-8014-302ba7451a02" + (reference "#PWR0118") (unit 1) (value "GND") (footprint "") + ) + (path "/2c923a4b-83fc-4684-8bd7-e79f2667d777" + (reference "#PWR0119") (unit 1) (value "GND") (footprint "") + ) + (path "/fe9073de-b4ae-429c-945b-a199d6313a17" + (reference "J1") (unit 1) (value "Conn_02x12_Counter_Clockwise") (footprint "s3lph:DIP-24_W15.24mm_Socket") + ) + (path "/abd627b1-6972-4245-b8dc-6952c6ad227b" + (reference "JP1") (unit 1) (value "SolderJumper_2_Open") (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm") + ) + (path "/22cb26b9-d501-4786-ab70-b7ac2868619c" + (reference "JP2") (unit 1) (value "SolderJumper_3_Open") (footprint "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm") + ) + (path "/8c56c6ba-0057-4349-a882-633a569afeeb" + (reference "JP3") (unit 1) (value "SolderJumper_2_Open") (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm") + ) + (path "/13c8c714-033d-4ff3-b0f9-ca208a328fd2" + (reference "JP4") (unit 1) (value "SolderJumper_2_Open") (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm") + ) + (path "/e1a57abc-e1de-4622-8769-4b8801fef914" + (reference "JP5") (unit 1) (value "SolderJumper_2_Open") (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm") + ) + (path "/a1ad4d61-6556-470c-9879-70831df1e9e1" + (reference "R1") (unit 1) (value "10kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/ea7446f4-dd41-420d-8031-fb36e90fc95a" + (reference "R2") (unit 1) (value "10kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/0cdd608c-fa1f-474b-b411-b1ca078633be" + (reference "R3") (unit 1) (value "10kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/0c4deb65-0fc2-4582-bf94-bf317032277f" + (reference "R4") (unit 1) (value "10kOhm") (footprint "Resistor_SMD:R_0603_1608Metric") + ) + (path "/31446a24-8ce7-4dca-ab0b-d907a8be5e8d" + (reference "SW1") (unit 1) (value "SW_DIP_x04") (footprint "Button_Switch_THT:SW_DIP_SPSTx04_Slide_6.7x11.72mm_W7.62mm_P2.54mm_LowProfile") + ) + (path "/716e31c5-485f-40b5-88e3-a75900da9811" + (reference "U1") (unit 1) (value "27C040") (footprint "Package_LCC:PLCC-32_11.4x14.0mm_P1.27mm") + ) + ) +)