Full Code of andrewjrae/rae-dux for AI

rae-dux d55cd1f23217 cached
22 files
1.2 MB
523.9k tokens
1 requests
Download .txt
Showing preview only (1,253K chars total). Download the full file or copy to clipboard to get everything.
Repository: andrewjrae/rae-dux
Branch: rae-dux
Commit: d55cd1f23217
Files: 22
Total size: 1.2 MB

Directory structure:
gitextract_4msa8ey3/

├── .github/
│   ├── actions/
│   │   ├── autoroute/
│   │   │   └── action.yml
│   │   ├── export-dsn/
│   │   │   └── action.yml
│   │   ├── export-gerbers/
│   │   │   └── action.yml
│   │   └── import-ses/
│   │       └── action.yml
│   └── workflows/
│       └── build.yml
├── .gitignore
├── .tool-versions
├── Makefile
├── README.org
├── build.sh
├── gen_images.sh
├── output/
│   └── pcbs/
│       ├── board-routed.kicad_pcb
│       ├── board-routed.kicad_prl
│       ├── board-routed.kicad_pro
│       ├── board.dsn
│       ├── board.kicad_pcb
│       ├── board.kicad_prl
│       ├── board.kicad_pro
│       └── board.pro
├── package.json
├── rae-dux.yaml
└── style.json

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/actions/autoroute/action.yml
================================================
name: 'Autoroute'
description: 'Autoroute a given DSN file to SES with FreeRouting'
inputs:
  dsn_file:
    description: 'Specctra DSN input file'
    required: true
  ses_file:
    description: 'Specctra SES output file'
    required: true
runs:
  using: 'docker'
  image: 'docker://soundmonster/freerouting_cli:v0.1.0'
  entrypoint: '/bin/sh'
  args:
    - '-c'
    - |
      java -jar /opt/freerouting_cli.jar -de ${{ inputs.dsn_file }} -do ${{ inputs.ses_file }}


================================================
FILE: .github/actions/export-dsn/action.yml
================================================
name: 'Export DSN'
description: 'Export Specctra DSN from a Kicad PCB'
inputs:
  pcb_file:
    description: 'Kicad input file'
    required: true
  dsn_file:
    description: 'Specctra DSN output file'
    required: true
runs:
  using: 'docker'
  image: 'docker://soundmonster/kicad-automation-scripts:latest'
  entrypoint: '/bin/sh'
  args:
    - '-c'
    # GH actions set $HOME to a weird location and we have to move Kicad settings there first
    - |
      mkdir -p $HOME/.config/kicad ;
      cp /root/.config/kicad/* $HOME/.config/kicad ;
      /usr/lib/python2.7/dist-packages/kicad-automation/pcbnew_automation/export_dsn.py ${{ inputs.pcb_file }} ${{ inputs.dsn_file }}


================================================
FILE: .github/actions/export-gerbers/action.yml
================================================
name: 'Export Gerbers'
description: 'Export Gerber files from a Kicad PCB'
inputs:
  pcb_file:
    description: 'Kicad input file'
    required: true
  gerbers_dir:
    description: 'Gerbers folder'
    required: true
  fab:
    description: 'Fabrication profile'
    default: 'jlcpcb'
  flags:
    description: 'Additional flags for kikit fab'
    default: '--no-assembly'
runs:
  using: 'docker'
  image: 'docker://yaqwsx/kikit:v0.7'
  entrypoint: '/bin/sh'
  args:
    - '-c'
    - |
      mkdir -p $GITHUB_WORKSPACE/${{ inputs.gerbers_dir }} ;
      kikit fab ${{ inputs.fab }} ${{ inputs.flags }} $GITHUB_WORKSPACE/${{ inputs.pcb_file }} $GITHUB_WORKSPACE/${{ inputs.gerbers_dir }}


================================================
FILE: .github/actions/import-ses/action.yml
================================================
name: 'Import SES to Kicad'
description: 'Import Specctra SES into a Kicad PCB'
inputs:
  pcb_input_file:
    description: 'Kicad input file'
    required: true
  pcb_output_file:
    description: 'Kicad output file'
    required: true
  ses_file:
    description: 'Specctra SES file'
    required: true
runs:
  using: 'docker'
  image: 'docker://soundmonster/kicad-automation-scripts:latest'
  entrypoint: '/bin/sh'
  args:
    - '-c'
    # GH actions set $HOME to a weird location and we have to move Kicad settings there first
    - |
      mkdir -p $HOME/.config/kicad ;
      cp /root/.config/kicad/* $HOME/.config/kicad ;
      /usr/lib/python2.7/dist-packages/kicad-automation/pcbnew_automation/import_ses.py $GITHUB_WORKSPACE/${{ inputs.pcb_input_file }} $GITHUB_WORKSPACE/${{ inputs.ses_file }} ;


================================================
FILE: .github/workflows/build.yml
================================================
on: [push, pull_request, workflow_dispatch]

name: Build
jobs:
  generate:
    runs-on: ubuntu-latest
    name: Generate
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Use Node.js 17
        uses: actions/setup-node@v2
        with:
          node-version: 17.x
      - name: Install dependencies
        run: npm install
      - name: Generate unrouted PCBs
        run: npm run gen
      - name: Export DSN for main PCB
        uses: ./.github/actions/export-dsn
        with:
          pcb_file: output/pcbs/board.kicad_pcb
          dsn_file: output/pcbs/board.dsn
      - name: Autoroute main PCB
        uses: ./.github/actions/autoroute
        with:
          dsn_file: output/pcbs/board.dsn
          ses_file: output/pcbs/board.ses
      - name: Import SES into main PCB
        uses: ./.github/actions/import-ses
        with:
          pcb_input_file: output/pcbs/board.kicad_pcb
          pcb_output_file: output/pcbs/board_routed.kicad_pcb
          ses_file: output/pcbs/board.ses
      - name: Export Gerbers for main PCB
        uses: ./.github/actions/export-gerbers
        with:
          pcb_file: output/pcbs/board.kicad_pcb
          gerbers_dir: output/gerbers/board
      - name: Persist output
        uses: actions/upload-artifact@v2
        with:
          name: rae-dux-routed-pcbs-and-gerbers
          path: output


================================================
FILE: .gitignore
================================================
node_modules
/output/outlines/
/output/pcbs/board-backups/
/output/pcbs/fp-info-cache


================================================
FILE: .tool-versions
================================================
nodejs 17.1.0


================================================
FILE: Makefile
================================================
# .DELETE_ON_ERROR:
.SECONDARY:
.PHONY: clean all setup
.DEFAULT: all

container_cmd ?= docker
container_args ?= -w /board -v $(shell pwd):/board --rm

setup:
	npm install

# outputs from 
output/pcbs/board.kicad_pcb &: rae-dux.yaml
	npm run gen

output/pcbs/%.dsn: output/pcbs/%.kicad_pcb
	# file can not be present or the script will refuse to run
	if [ -f "$@" ] ; then rm $@ ; fi
	${container_cmd} run ${container_args} soundmonster/kicad-automation-scripts:latest /usr/lib/python2.7/dist-packages/kicad-automation/pcbnew_automation/export_dsn.py $< $@

output/routed_pcbs/%.ses: output/pcbs/%.dsn
	mkdir -p $(shell dirname $@)
	${container_cmd} run ${container_args} soundmonster/freerouting_cli:v0.1.0 java -jar /opt/freerouting_cli.jar -de $< -do $@ -mp 15 -us global

output/routed_pcbs/%.kicad_pcb: output/routed_pcbs/%.ses output/pcbs/%.kicad_pcb
	mkdir -p $(shell dirname $@)
	# file can not be present or the script will refuse to run
	if [ -f "$@" ] ; then rm $@ ; fi
	${container_cmd} run ${container_args} soundmonster/kicad-automation-scripts:latest /usr/lib/python2.7/dist-packages/kicad-automation/pcbnew_automation/import_ses.py output/pcbs/$*.kicad_pcb $< --output-file $@

output/routed_pcbs/%-drc/: output/routed_pcbs/%.kicad_pcb
	mkdir -p $@
	${container_cmd} run ${container_args} soundmonster/kicad-automation-scripts:latest /usr/lib/python2.7/dist-packages/kicad-automation/pcbnew_automation/run_drc.py  $< $@

output/routed_pcbs/%-front.png: output/routed_pcbs/%.kicad_pcb
	mkdir -p $(shell dirname $@)
	${container_cmd} run ${container_args} yaqwsx/kikit:v1.0.0 pcbdraw --style builtin:oshpark-afterdark.json $< $@

output/routed_pcbs/%-back.png: output/routed_pcbs/%.kicad_pcb
	mkdir -p $(shell dirname $@)
	${container_cmd} run ${container_args} yaqwsx/kikit:v1.0.0 pcbdraw -b --style builtin:oshpark-afterdark.json $< $@

output/gerbers/%/gerbers.zip: output/routed_pcbs/%.kicad_pcb
	mkdir -p $(shell dirname $@)
	${container_cmd} run ${container_args} yaqwsx/kikit:v0.7 kikit fab jlcpcb --no-assembly $< $(shell dirname $@)

clean:
	rm -rf output

all: \
	output/routed_pcbs/board-front.png \
	output/routed_pcbs/board-back.png \
	output/gerbers/board/gerbers.zip



================================================
FILE: README.org
================================================
* rae-dux
| [[images/board-front.png]] | [[images/board-back.png]] |

The rae-dux is a 36-key (diodeless!), wireless keyboard inspired by the [[https://github.com/tapioki/cephalopoda/tree/main/Architeuthis%20dux][Architeuthis Dux]].
This project used to use the [[https://github.com/soundmonster/samoklava][samoklava workflow]], however the auto-router had
troubles with the splay, currently I just use the image generating parts of the
samoklava workflow.

*This has now been printed and is working perfectly with ZMK!*
The ZMK shield can be found [[https://github.com/andrewjrae/zmk-config/tree/development/config/boards/shields/rae_dux][here]], as far as I can tell small custom projects
like this aren't to be merged into ZMK main, so you'll have to emulate what I'm
doing in my =zmk-config= [[https://github.com/andrewjrae/zmk-config/tree/development/config][here]].

** Build Guide
The wonderful @tzcl created a [[https://www.tzcl.me/blog/rae-dux][build guide]] for the rae-dux, so if you are curious
about building the board, but don't have experience with this sort of thing go
check it out!

** Important Notes
- *Wireless only*, the 36-key diodeless approach uses the P0 pin which is usually dedicated to TRRS
- Since I ended up largely ditching the samoklava workflow, *the actions page with gerbers is out of date and no longer relevant**
- Their is only one MCU footprint, so *one controller has to be flipped* (I assume
   if you can get this printed you can figure out the correct orientation)
- The [[./rae-dux.yaml][rae-dux.yaml]] file relies on [[https://github.com/andrewjrae/ergogen/tree/rae-dux][my fork of ergogen]] which naturally relies on
  [[https://github.com/soundmonster/ergogen/tree/samoklava][soundmonster's fork of ergogen]], and a simple JST battery footprint inspired by
  [[https://github.com/benvallack][@benvallack]].
- If you want to skip out on the switch, there is no jumper to use the JST
  connector, so you'll have to bodge a wire somewhere, or try shorting the
  switch footprint.
- Kicad files are 6.0, so unfortunately not backwards compatible.


================================================
FILE: build.sh
================================================
#!/bin/sh

# container_cmd=podman
container_cmd=docker
container_args="-w /board -v $(pwd):/board --rm"

rm -rf output
npm run gen
${container_cmd} run ${container_args} soundmonster/kicad-automation-scripts:latest /usr/lib/python2.7/dist-packages/kicad-automation/pcbnew_automation/export_dsn.py output/pcbs/board.kicad_pcb output/pcbs/board.dsn
# ${container_cmd} run ${container_args} soundmonster/freerouting_cli:v0.1.0 java -jar /opt/freerouting_cli.jar -de output/pcbs/board.dsn -do output/pcbs/board.ses
# pcbdraw also supports a style file as JSON
# ${container_cmd} run ${container_args} soundmonster/kicad-automation-scripts:latest /usr/lib/python2.7/dist-packages/kicad-automation/pcbnew_automation/import_ses.py output/pcbs/board.kicad_pcb output/pcbs/board.ses --output-file output/pcbs/board-routed.kicad_pcb
# ${container_cmd} run ${container_args} soundmonster/kicad-automation-scripts:latest /usr/lib/python2.7/dist-packages/kicad-automation/pcbnew_automation/run_drc.py output/pcbs/board-routed.kicad_pcb output/pcbs/drc/


================================================
FILE: gen_images.sh
================================================
#!/bin/sh

container_cmd=docker
container_args="-w /board -v $(pwd):/board --rm"

${container_cmd} run ${container_args} yaqwsx/kikit:v1.0.0 pcbdraw --style style.json output/pcbs/board-routed.kicad_pcb images/board-front.png
${container_cmd} run ${container_args} yaqwsx/kikit:v1.0.0 pcbdraw -b --style style.json output/pcbs/board-routed.kicad_pcb images/board-back.png
# ${container_cmd} run ${container_args} yaqwsx/kikit:v0.7 kikit fab jlcpcb --no-assembly output/pcbs/board-routed.kicad_pcb production/pcb/board


================================================
FILE: output/pcbs/board-routed.kicad_pcb
================================================
(kicad_pcb (version 20211014) (generator pcbnew)

  (general
    (thickness 1.6)
  )

  (paper "A3")
  (title_block
    (title "board")
    (rev "v1.0.0")
    (company "Unknown")
  )

  (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)
  )

  (setup
    (pad_to_mask_clearance 0.05)
    (pcbplotparams
      (layerselection 0x00010fc_ffffffff)
      (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 1)
      (scaleselection 1)
      (outputdirectory "")
    )
  )

  (net 0 "")
  (net 1 "P6")
  (net 2 "GND")
  (net 3 "P5")
  (net 4 "P4")
  (net 5 "P3")
  (net 6 "P2")
  (net 7 "P0")
  (net 8 "P1")
  (net 9 "P18")
  (net 10 "P15")
  (net 11 "P14")
  (net 12 "P16")
  (net 13 "P10")
  (net 14 "P19")
  (net 15 "P20")
  (net 16 "P21")
  (net 17 "P7")
  (net 18 "P8")
  (net 19 "P9")
  (net 20 "RAW")
  (net 21 "RST")
  (net 22 "VCC")
  (net 23 "Bplus")
  (net 24 "Bminus")
  (net 25 "Braw")

  (footprint "E73:SPDT_C128955" (layer "F.Cu")
    (tedit 0) (tstamp 00000000-0000-0000-0000-00005bf2cc3c)
    (at 162.411087 -73.316483 -90)
    (attr through_hole)
    (fp_text reference "T1" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp f699494a-77d6-4c73-bd50-29c1c1c5b879)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
    )
    (fp_line (start -3.3 -1.35) (end -3.3 1.5) (layer "F.SilkS") (width 0.15) (tstamp 1c052668-6749-425a-9a77-35f046c8aa39))
    (fp_line (start 1.95 -1.35) (end -1.95 -1.35) (layer "F.SilkS") (width 0.15) (tstamp 6bd46644-7209-4d4d-acd8-f4c0d045bc61))
    (fp_line (start -3.3 1.5) (end 3.3 1.5) (layer "F.SilkS") (width 0.15) (tstamp 9db16341-dac0-4aab-9c62-7d88c111c1ce))
    (fp_line (start 0 -1.35) (end 3.3 -1.35) (layer "F.SilkS") (width 0.15) (tstamp ab8b0540-9c9f-4195-88f5-7bed0b0a8ed6))
    (fp_line (start 3.3 1.5) (end 3.3 -1.35) (layer "F.SilkS") (width 0.15) (tstamp b7d06af4-a5b1-447f-9b1a-8b44eb1cc204))
    (fp_line (start 0 -1.35) (end -3.3 -1.35) (layer "F.SilkS") (width 0.15) (tstamp befdfbe5-f3e5-423b-a34e-7bba3f218536))
    (fp_line (start 1.95 -3.85) (end 1.95 -1.35) (layer "Dwgs.User") (width 0.15) (tstamp aa047297-22f8-4de0-a969-0b3451b8e164))
    (fp_line (start -1.95 -1.35) (end -1.95 -3.85) (layer "Dwgs.User") (width 0.15) (tstamp df3dc9a2-ba40-4c3a-87fe-61cc8e23d71b))
    (fp_line (start -1.95 -3.85) (end 1.95 -3.85) (layer "Dwgs.User") (width 0.15) (tstamp e79c8e11-ed47-4701-ae80-a54cdb6682a5))
    (pad "" smd rect (at 3.7 1.1 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2518d4ea-25cc-4e57-a0d6-8482034e7318))
    (pad "" smd rect (at -3.7 -1.1 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 799e761c-1426-40e9-a069-1f4cb353bfaa))
    (pad "" smd rect (at 3.7 -1.1 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp db851147-6a1e-4d19-898c-0ba71182359b))
    (pad "" smd rect (at -3.7 1.1 270) (size 0.9 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e69c64f9-717d-4a97-b3df-80325ec2fa63))
    (pad "1" smd rect (at 2.25 2.075 270) (size 0.9 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 25 "Braw") (tstamp b794d099-f823-4d35-9755-ca1c45247ee9))
    (pad "2" smd rect (at -0.75 2.075 270) (size 0.9 1.25) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 23 "Bplus") (tstamp de370984-7922-4327-a0ba-7cd613995df4))
    (pad "3" smd rect (at -2.25 2.075 270) (size 0.9 1.25) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7))
  )

  (footprint "lib:bat" (layer "F.Cu")
    (tedit 0) (tstamp 00000000-0000-0000-0000-00005bf2cc94)
    (at 154.411087 -55.816483)
    (attr through_hole)
    (fp_text reference "PAD1" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 42d3f9d6-2a47-41a8-b942-295fcb83bcd8)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 7bea05d4-1dec-4cd6-aa53-302dde803254)
    )
    (fp_text user "B+" (at 2 1.8) (layer "B.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
      (tstamp 12fa3c3f-3d14-451a-a6a8-884fd1b32fa7)
    )
    (fp_text user "B+" (at -2 1.8) (layer "B.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
      (tstamp 1cc5480b-56b7-4379-98e2-ccafc88911a7)
    )
    (fp_text user "B-" (at 0 1.8) (layer "B.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
      (tstamp ca6e2466-a90a-4dab-be16-b070610e5087)
    )
    (fp_text user "B-" (at 0 1.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 851f3d61-ba3b-4e6e-abd4-cafa4d9b64cb)
    )
    (fp_text user "B+" (at -2 1.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp a5362821-c161-4c7a-a00c-40e1d7472d56)
    )
    (fp_text user "B+" (at 2 1.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp d95c6650-fcd9-4184-97fe-fde43ea5c0cd)
    )
    (pad "1" thru_hole roundrect locked (at -2 0) (size 1.5 2.25) (drill 1.0922) (layers *.Cu *.SilkS *.Mask) (roundrect_rratio 0.25)
      (net 25 "Braw") (tstamp 9a8ad8bb-d9a9-4b2b-bc88-ea6fd2676d45))
    (pad "1" thru_hole roundrect locked (at 2 0) (size 1.5 2.25) (drill 1.0922) (layers *.Cu *.SilkS *.Mask) (roundrect_rratio 0.25)
      (net 25 "Braw") (tstamp f4a1ab68-998b-43e3-aa33-40b58210bc99))
    (pad "2" thru_hole roundrect locked (at 0 0) (size 1.5 2.25) (drill 1.0922) (layers *.Cu *.SilkS *.Mask) (roundrect_rratio 0.25)
      (net 24 "Bminus") (tstamp d18f2428-546f-4066-8ffb-7653303685db))
  )

  (footprint "kbd:ResetSW" (layer "F.Cu")
    (tedit 5B9559E6) (tstamp 00000000-0000-0000-0000-000061905781)
    (at 161.911087 -59.316483 -90)
    (descr "Two pin through hole Tactile Switch, the same as on the Corne")
    (tags "Tactile Switch")
    (attr through_hole)
    (fp_text reference "B1" (at 0 2.55) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a917c6d9-225d-4c90-bf25-fe8eff8abd3f)
    )
    (fp_text value "" (at 0 -2.55) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 89a3dae6-dcb5-435b-a383-656b6a19a316)
    )
    (fp_text user "RESET" (at 0.127 0 -90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 26bc8641-9bca-4204-9709-deedbe202a36)
    )
    (fp_text user "RESET" (at 0 0 -90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b54cae5b-c17c-4ed7-b249-2e7d5e83609a)
    )
    (fp_line (start -3 1.75) (end -3 1.5) (layer "B.SilkS") (width 0.15) (tstamp 1317ff66-8ecf-46c9-9612-8d2eae03c537))
    (fp_line (start 3 1.75) (end -3 1.75) (layer "B.SilkS") (width 0.15) (tstamp 1755646e-fc08-4e43-a301-d9b3ea704cf6))
    (fp_line (start 3 -1.75) (end 3 -1.5) (layer "B.SilkS") (width 0.15) (tstamp 8aff0f38-92a8-45ec-b106-b185e93ca3fd))
    (fp_line (start -3 -1.5) (end -3 -1.75) (layer "B.SilkS") (width 0.15) (tstamp ef4533db-6ea4-4b68-b436-8e9575be570d))
    (fp_line (start -3 -1.75) (end 3 -1.75) (layer "B.SilkS") (width 0.15) (tstamp f5dba25f-5f9b-4770-84f9-c038fb119360))
    (fp_line (start 3 1.5) (end 3 1.75) (layer "B.SilkS") (width 0.15) (tstamp fd5f7d77-0f73-4021-88a8-0641f0fe8d98))
    (fp_line (start -3 -1.75) (end 3 -1.75) (layer "F.SilkS") (width 0.15) (tstamp 0ba17a9b-d889-426c-b4fe-048bed6b6be8))
    (fp_line (start -3 1.75) (end 3 1.75) (layer "F.SilkS") (width 0.15) (tstamp 63caf46e-0228-40de-b819-c6bd29dd1711))
    (fp_line (start 3 -1.75) (end 3 -1.5) (layer "F.SilkS") (width 0.15) (tstamp 761c8e29-382a-475c-a37a-7201cc9cd0f5))
    (fp_line (start -3 1.75) (end -3 1.5) (layer "F.SilkS") (width 0.15) (tstamp 94a10cae-6ef2-4b64-9d98-fb22aa3306cc))
    (fp_line (start 3 1.75) (end 3 1.5) (layer "F.SilkS") (width 0.15) (tstamp a7fc0812-140f-4d96-9cd8-ead8c1c610b1))
    (fp_line (start -3 -1.75) (end -3 -1.5) (layer "F.SilkS") (width 0.15) (tstamp f33ec0db-ef0f-4576-8054-2833161a8f30))
    (pad "1" thru_hole circle locked (at 3.25 0 270) (size 2 2) (drill 1.3) (layers *.Cu *.Mask "F.SilkS")
      (net 21 "RST") (tstamp 7233cb6b-d8fd-4fcd-9b4f-8b0ed19b1b12))
    (pad "2" thru_hole circle locked (at -3.25 0 270) (size 2 2) (drill 1.3) (layers *.Cu *.Mask "F.SilkS")
      (net 2 "GND") (tstamp e50c80c5-80c4-46a3-8c1e-c9c3a71a0934))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2)
    (at 71.38711 -104.745067 10)
    (attr through_hole)
    (fp_text reference "S11" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7)
    )
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp f3628265-0155-43e2-a467-c40ff783e265))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 182b2d54-931d-49d6-9f39-60a752623e36))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp cb24efdd-07c6-4317-9277-131625b065ac))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120))
    (pad "1" smd rect locked (at -3.275 -5.95 10) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 7 "P0") (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8))
    (pad "1" smd rect locked (at 3.275 -5.95 10) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 7 "P0") (tstamp bd065eaf-e495-4837-bdb3-129934de1fc7))
    (pad "2" smd rect locked (at 8.275 -3.75 10) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6))
    (pad "2" smd rect locked (at -8.275 -3.75 10) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 0cbeb329-a88d-4a47-a5c2-a1d693de2f8c)
    (at 152.428645 -41.360213 150)
    (attr through_hole)
    (fp_text reference "S34" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp eac8d865-0226-4958-b547-6b5592f39713)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 443bc73a-8dc0-4e2f-a292-a5eff00efa5b)
    )
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 014d13cd-26ad-4d0e-86ad-a43b541cab14))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 1427bb3f-0689-4b41-a816-cd79a5202fd0))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 59cb2966-1e9c-4b3b-b3c8-7499378d8dde))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 633292d3-80c5-4986-be82-ce926e9f09f4))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 7744b6ee-910d-401d-b730-65c35d3d8092))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 78f9c3d3-3556-46f6-9744-05ad54b330f0))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 83021f70-e61e-4ad3-bae7-b9f02b28be4f))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 8b7bbefd-8f78-41f8-809c-2534a5de3b39))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp a25b7e01-1754-4cc9-8a14-3d9c461e5af5))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp cc75e5ae-3348-4e7a-bd16-4df685ee47bd))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp d0cd3439-276c-41ba-b38d-f84f6da38415))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp dda1e6ca-91ec-4136-b90b-3c54d79454b9))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 89c9afdc-c346-4300-a392-5f9dd8c1e5bd))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp b854a395-bfc6-4140-9640-75d4f9296771))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp f5bf5b4a-5213-48af-a5cd-0d67969d2de6))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 18 "P8") (tstamp 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 18 "P8") (tstamp cbebc05a-c4dd-4baf-8c08-196e84e08b27))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 14094ad2-b562-4efa-8c6f-51d7a3134345))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp f7447e92-4293-41c4-be3f-69b30aad1f17))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459)
    (at 94.221643 -97.114167 5)
    (attr through_hole)
    (fp_text reference "S15" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af)
    )
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp cb16d05e-318b-4e51-867b-70d791d75bea))
    (pad "1" smd rect locked (at 3.275 -5.95 5) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 9 "P18") (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573))
    (pad "1" smd rect locked (at -3.275 -5.95 5) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 9 "P18") (tstamp a5e521b9-814e-4853-a5ac-f158785c6269))
    (pad "2" smd rect locked (at 8.275 -3.75 5) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp 262f1ea9-0133-4b43-be36-456207ea857c))
    (pad "2" smd rect locked (at -8.275 -3.75 5) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp ec5c2062-3a41-4636-8803-069e60a1641a))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 155b0b7c-70b4-4a26-a550-bac13cab0aa4)
    (at 115.411087 -93.149816)
    (attr through_hole)
    (fp_text reference "S21" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9)
    )
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 143ed874-a01f-4ced-ba4e-bbb66ddd1f70))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 61fe4c73-be59-4519-98f1-a634322a841d))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 699feae1-8cdd-4d2b-947f-f24849c73cdb))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 71f92193-19b0-44ed-bc7f-77535083d769))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp af347946-e3da-4427-87ab-77b747929f50))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b6cd701f-4223-4e72-a305-466869ccb250))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp d88958ac-68cd-4955-a63f-0eaa329dec86))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp e5864fe6-2a71-47f0-90ce-38c3f8901580))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp f9c81c26-f253-4227-a69f-53e64841cfbe))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp fd3499d5-6fd2-49a4-bdb0-109cee899fde))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 00f3ea8b-8a54-4e56-84ff-d98f6c00496c))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 2891767f-251c-48c4-91c0-deb1b368f45c))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 411d4270-c66c-4318-b7fb-1470d34862b8))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 8fcec304-c6b1-4655-8326-beacd0476953))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 9bac9ad3-a7b9-47f0-87c7-d8630653df68))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp bc0dbc57-3ae8-4ce5-a05c-2d6003bba475))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp e7e08b48-3d04-49da-8349-6de530a20c67))
    (pad "1" smd rect locked (at 3.275 -5.95) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 12 "P16") (tstamp 009b5465-0a65-4237-93e7-eb65321eeb18))
    (pad "1" smd rect locked (at -3.275 -5.95) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 12 "P16") (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69))
    (pad "2" smd rect locked (at -8.275 -3.75) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp 221bef83-3ea7-4d3f-adeb-53a8a07c6273))
    (pad "2" smd rect locked (at 8.275 -3.75) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d)
    (at 77.291148 -71.261603 -170)
    (attr through_hole)
    (fp_text reference "S8" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46)
    )
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 5 "P3") (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 5 "P3") (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 35a9f71f-ba35-47f6-814e-4106ac36c51e)
    (at 95.703291 -80.178857 -175)
    (attr through_hole)
    (fp_text reference "S14" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87)
    )
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 3fd54105-4b7e-4004-9801-76ec66108a22))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 6fd4442e-30b3-428b-9306-61418a63d311))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 82be7aae-5d06-4178-8c3e-98760c41b054))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp e1535036-5d36-405f-bb86-3819621c4f23))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp e65b62be-e01b-4688-a999-1d1be370c4ae))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 8 "P1") (tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 8 "P1") (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721)
    (at 115.411087 -76.149816 180)
    (attr through_hole)
    (fp_text reference "S20" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29)
    )
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 26801cfb-b53b-4a6a-a2f4-5f4986565765))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 6e435cd4-da2b-4602-a0aa-5dd988834dff))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 6f675e5f-8fe6-4148-baf1-da97afc770f8))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6f80f798-dc24-438f-a1eb-4ee2936267c8))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp aa79024d-ca7e-4c24-b127-7df08bbd0c75))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp c49d23ab-146d-4089-864f-2d22b5b414b9))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp c7af8405-da2e-4a34-b9b8-518f342f8995))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp eae14f5f-515c-4a6f-ad0e-e8ef233d14bf))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp f78e02cd-9600-4173-be8d-67e530b5d19f))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 088f77ba-fca9-42b3-876e-a6937267f957))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 71989e06-8659-4605-b2da-4f729cc41263))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 9a0b74a5-4879-4b51-8e8e-6d85a0107422))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 11 "P14") (tstamp 4f411f68-04bd-4175-a406-bcaa4cf6601e))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 11 "P14") (tstamp 917920ab-0c6e-4927-974d-ef342cdd4f63))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 8fc062a7-114d-48eb-a8f8-71128838f380))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 3e0392c0-affc-4114-9de5-1f1cfe79418a)
    (at 134.411087 -90.316483 180)
    (attr through_hole)
    (fp_text reference "S28" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 35ef9c4a-35f6-467b-a704-b1d9354880cf)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp b8b961e9-8a60-45fc-999a-a7a3baff4e0d)
    )
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 0ceb97d6-1b0f-4b71-921e-b0955c30c998))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 1241b7f2-e266-4f5c-8a97-9f0f9d0eef37))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 2b5a9ad3-7ec4-447d-916c-47adf5f9674f))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6241e6d3-a754-45b6-9f7c-e43019b93226))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 626679e8-6101-4722-ac57-5b8d9dab4c8b))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 691af561-538d-4e8f-a916-26cad45eb7d6))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 7d0dab95-9e7a-486e-a1d7-fc48860fd57d))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp a7f25f41-0b4c-4430-b6cd-b2160b2db099))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp b59f18ce-2e34-4b6e-b14d-8d73b8268179))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp b7bf6e08-7978-4190-aff5-c90d967f0f9c))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp c8a44971-63c1-4a19-879d-b6647b2dc08d))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp f1782535-55f4-4299-bd4f-6f51b0b7259c))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 9f782c92-a5e8-49db-bfda-752b35522ce4))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp ccc4cc25-ac17-45ef-825c-e079951ffb21))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp da6f4122-0ecc-496f-b0fd-e4abef534976))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 15 "P20") (tstamp 7ce7415d-7c22-49f6-8215-488853ccc8c6))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 15 "P20") (tstamp 88002554-c459-46e5-8b22-6ea6fe07fd4c))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 5a222fb6-5159-4931-9015-19df65643140))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 8cdc8ef9-532e-4bf5-9998-7213b9e692a2))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 42ff012d-5eb7-42b9-bb45-415cf26799c6)
    (at 134.411087 -73.316483 180)
    (attr through_hole)
    (fp_text reference "S26" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp f8bd6470-fafd-47f2-8ed5-9449988187ce)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce)
    )
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 011ee658-718d-416a-85fd-961729cd1ee5))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 18c61c95-8af1-4986-b67e-c7af9c15ab6b))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 4e27930e-1827-4788-aa6b-487321d46602))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 72508b1f-1505-46cb-9d37-2081c5a12aca))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 7a74c4b1-6243-4a12-85a2-bc41d346e7aa))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 7d76d925-f900-42af-a03f-bb32d2381b09))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 802c2dc3-ca9f-491e-9d66-7893e89ac34c))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 8cd050d6-228c-4da0-9533-b4f8d14cfb34))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp a5be2cb8-c68d-4180-8412-69a6b4c5b1d4))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp ed8a7f02-cf05-41d0-97b4-4388ef205e73))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp eed466bf-cd88-4860-9abf-41a594ca08bd))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp f1e619ac-5067-41df-8384-776ec70a6093))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 593b8647-0095-46cc-ba23-3cf2a86edb5e))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 60aa0ce8-9d0e-48ca-bbf9-866403979e9b))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp bde95c06-433a-4c03-bc48-e3abcdb4e054))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 14 "P19") (tstamp 7e1217ba-8a3d-4079-8d7b-b45f90cfbf53))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 14 "P19") (tstamp ba6fc20e-7eff-4d5f-81e4-d1fad93be155))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 2035ea48-3ef5-4d7f-8c3c-50981b30c89a))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 2e90e294-82e1-45da-9bf1-b91dfe0dc8f6))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 53e34696-241f-47e5-a477-f469335c8a61)
    (at 134.411087 -107.316483)
    (attr through_hole)
    (fp_text reference "S29" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 18d11f32-e1a6-4f29-8e3c-0bfeb07299bd)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp a90361cd-254c-4d27-ae1f-9a6c85bafe28)
    )
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 03f57fb4-32a3-4bc6-85b9-fd8ece4a9592))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 18ca5aef-6a2c-41ac-9e7f-bf7acb716e53))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 501880c3-8633-456f-9add-0e8fa1932ba6))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 6afc19cf-38b4-47a3-bc2b-445b18724310))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 84d296ba-3d39-4264-ad19-947f90c54396))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 91fe070a-a49b-4bc5-805a-42f23e10d114))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp c454102f-dc92-4550-9492-797fc8e6b49c))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp c8a7af6e-c432-4fa3-91ee-c8bf0c5a9ebe))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp d01102e9-b170-4eb1-a0a4-9a31feb850b7))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp f9b1563b-384a-447c-9f47-736504e995c8))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp fe14c012-3d58-4e5e-9a37-4b9765a7f764))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 1e48966e-d29d-4521-8939-ec8ac570431d))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 4431c0f6-83ea-4eee-95a8-991da2f03ccd))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 528fd7da-c9a6-40ae-9f1a-60f6a7f4d534))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 7a879184-fad8-4feb-afb5-86fe8d34f1f7))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 90e761f6-1432-4f73-ad28-fa8869b7ec31))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp d692b5e6-71b2-4fa6-bc83-618add8d8fef))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp e413cfad-d7bd-41ab-b8dd-4b67484671a6))
    (pad "1" smd rect locked (at 3.275 -5.95) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 16 "P21") (tstamp 07d160b6-23e1-4aa0-95cb-440482e6fc15))
    (pad "1" smd rect locked (at -3.275 -5.95) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 16 "P21") (tstamp 24b72b0d-63b8-4e06-89d0-e94dcf39a600))
    (pad "2" smd rect locked (at -8.275 -3.75) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp a62609cd-29b7-4918-b97d-7b2404ba61cf))
    (pad "2" smd rect locked (at 8.275 -3.75) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp a6738794-75ae-48a6-8949-ed8717400d71))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 62a1f3d4-027d-4ecf-a37a-6fcf4263e9d2)
    (at 152.428645 -41.360213 -30)
    (attr through_hole)
    (fp_text reference "S33" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp a5c8e189-1ddc-4a66-984b-e0fd1529d346)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp c71f56c1-5b7c-4373-9716-fffac482104c)
    )
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 01f82238-6335-48fe-8b0a-6853e227345a))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 0e249018-17e7-42b3-ae5d-5ebf3ae299ae))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 13bbfffc-affb-4b43-9eb1-f2ed90a8a919))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 52a8f1be-73ca-41a8-bc24-2320706b0ec1))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 71f8d568-0f23-4ff2-8e60-1600ce517a48))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 7c00778a-4692-4f9b-87d5-2d355077ce1e))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 7db990e4-92e1-4f99-b4d2-435bbec1ba83))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 8efee08b-b92e-4ba6-8722-c058e18114fe))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 97581b9a-3f6b-4e88-8768-6fdb60e6aca6))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp dbe92a0d-89cb-4d3f-9497-c2c1d93a3018))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp e300709f-6c72-488d-a598-efcbd6d3af54))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 63489ebf-0f52-43a6-a0ab-158b1a7d4988))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 6d0c9e39-9878-44c8-8283-9a59e45006fa))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 7c411b3e-aca2-424f-b644-2d21c9d80fa7))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp cd5e758d-cb66-484a-ae8b-21f53ceee49e))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp d102186a-5b58-41d0-9985-3dbb3593f397))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp e36988d2-ecb2-461b-a443-7006f447e828))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp e6d68f56-4a40-4849-b8d1-13d5ca292900))
    (pad "1" smd rect locked (at -3.275 -5.95 330) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 18 "P8") (tstamp 7c2008c8-0626-4a09-a873-065e83502a0e))
    (pad "1" smd rect locked (at 3.275 -5.95 330) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 18 "P8") (tstamp 9c607e49-ee5c-4e85-a7da-6fede9912412))
    (pad "2" smd rect locked (at -8.275 -3.75 330) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp e5e5220d-5b7e-47da-a902-b997ec8d4d58))
    (pad "2" smd rect locked (at 8.275 -3.75 330) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp f4a8afbe-ed68-4253-959f-6be4d2cbf8c5))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 637f12be-fa48-4ce4-96b2-04c21a8795c8)
    (at 168.347243 -29.145444 -45)
    (attr through_hole)
    (fp_text reference "S35" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp a599509f-fbb9-4db4-9adf-9e96bab1138d)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 8bdea5f6-7a53-427a-92b8-fd15994c2e8c)
    )
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 1cb22080-0f59-4c18-a6e6-8685ef44ec53))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 2165c9a4-eb84-4cb6-a870-2fdc39d2511b))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 235067e2-1686-40fe-a9a0-61704311b2b1))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 31f91ec8-56e4-4e08-9ccd-012652772211))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 5e7c3a32-8dda-4e6a-9838-c94d1f165575))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 5f31b97b-d794-46d6-bbd9-7a5638bcf704))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 701e1517-e8cf-46f4-b538-98e721c97380))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 75b944f9-bf25-4dc7-8104-e9f80b4f359b))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 84d4e166-b429-409a-ab37-c6a10fd82ff5))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 98861672-254d-432b-8e5a-10d885a5ffdc))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp be41ac9e-b8ba-4089-983b-b84269707f1c))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp e87738fc-e372-4c48-9de9-398fd8b4874c))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 2de1ffee-2174-41d2-8969-68b8d21e5a7d))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 34c0bee6-7425-4435-8857-d1fe8dfb6d89))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 3c9169cc-3a77-4ae0-8afc-cbfc472a28c5))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 3e57b728-64e6-4470-8f27-a43c0dd85050))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp a7f2e97b-29f3-44fd-bf8a-97a3c1528b61))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp bac7c5b3-99df-445a-ade9-1e608bbbe27e))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp e0830067-5b66-4ce1-b2d1-aaa8af20baf7))
    (pad "1" smd rect locked (at 3.275 -5.95 315) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 19 "P9") (tstamp 6cb535a7-247d-4f99-997d-c21b160eadfa))
    (pad "1" smd rect locked (at -3.275 -5.95 315) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 19 "P9") (tstamp 7f2b3ce3-2f20-426d-b769-e0329b6a8111))
    (pad "2" smd rect locked (at 8.275 -3.75 315) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp 6cb93665-0bcd-4104-8633-fffd1811eee0))
    (pad "2" smd rect locked (at -8.275 -3.75 315) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b)
    (at 77.291148 -71.261603 10)
    (attr through_hole)
    (fp_text reference "S7" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12)
    )
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 66043bca-a260-4915-9fce-8a51d324c687))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 852dabbf-de45-4470-8176-59d37a754407))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
    (pad "1" smd rect locked (at -3.275 -5.95 10) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 5 "P3") (tstamp 5528bcad-2950-4673-90eb-c37e6952c475))
    (pad "1" smd rect locked (at 3.275 -5.95 10) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 5 "P3") (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
    (pad "2" smd rect locked (at 8.275 -3.75 10) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d))
    (pad "2" smd rect locked (at -8.275 -3.75 10) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 6a780180-586a-4241-a52d-dc7a5ffcc966)
    (at 63.029681 -49.257181 -163)
    (attr through_hole)
    (fp_text reference "S2" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp c801d42e-dd94-493e-bd2f-6c3ddad43f55)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 3172f2e2-18d2-4a80-ae30-5707b3409798)
    )
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 03d88a85-11fd-47aa-954c-c318bb15294a))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 0dcdf1b8-13c6-48b4-bd94-5d26038ff231))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 13475e15-f37c-4de8-857e-1722b0c39513))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 2732632c-4768-42b6-bf7f-14643424019e))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 712d6a7d-2b62-464f-b745-fd2a6b0187f6))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 842e430f-0c35-45f3-a0b5-95ae7b7ae388))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 854dd5d4-5fd2-4730-bd49-a9cd8299a065))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 98e81e80-1f85-4152-be3f-99785ea97751))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp b3d08afa-f296-4e3b-8825-73b6331d35bf))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp b635b16e-60bb-4b3e-9fc3-47d34eef8381))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 58dc14f9-c158-4824-a84e-24a6a482a7a4))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp dde3dba8-1b81-466c-93a3-c284ff4da1ef))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp f976e2cc-36f9-4479-a816-2c74d1d5da6f))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 1 "P6") (tstamp 120a7b0f-ddfd-4447-85c1-35665465acdb))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 1 "P6") (tstamp 48f827a8-6e22-4a2e-abdc-c2a03098d883))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 8d55e186-3e11-40e8-a65e-b36a8a00069e))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp e877bf4a-4210-4bd3-b7b0-806eb4affc5b))
  )

  (footprint "E73:SPDT_C128955" (layer "F.Cu")
    (tedit 0) (tstamp 6d2a06fb-0b1e-452a-ab38-11a5f45e1b32)
    (at 162.411087 -73.316483 -90)
    (attr through_hole)
    (fp_text reference "T2" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 8bd46048-cab7-4adf-af9a-bc2710c1894c)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 992a2b00-5e28-4edd-88b5-994891512d8d)
    )
    (fp_line (start 1.95 -1.35) (end -1.95 -1.35) (layer "B.SilkS") (width 0.15) (tstamp 18f1018d-5857-4c32-a072-f3de80352f74))
    (fp_line (start 3.3 1.5) (end 3.3 -1.35) (layer "B.SilkS") (width 0.15) (tstamp 3d552623-2969-4b15-8623-368144f225e9))
    (fp_line (start -3.3 -1.35) (end -3.3 1.5) (layer "B.SilkS") (width 0.15) (tstamp 92848721-49b5-4e4c-b042-6fd51e1d562f))
    (fp_line (start -3.3 1.5) (end 3.3 1.5) (layer "B.SilkS") (width 0.15) (tstamp c07eebcc-30d2-439d-8030-faea6ade4486))
    (fp_line (start 0 -1.35) (end -3.3 -1.35) (layer "B.SilkS") (width 0.15) (tstamp db1ed10a-ef86-43bf-93dc-9be76327f6d2))
    (fp_line (start 0 -1.35) (end 3.3 -1.35) (layer "B.SilkS") (width 0.15) (tstamp e65bab67-68b7-4b22-a939-6f2c05164d2a))
    (fp_line (start 1.95 -3.85) (end 1.95 -1.35) (layer "Dwgs.User") (width 0.15) (tstamp 8aeae536-fd36-430e-be47-1a856eced2fc))
    (fp_line (start -1.95 -3.85) (end 1.95 -3.85) (layer "Dwgs.User") (width 0.15) (tstamp bc3b3f93-69e0-44a5-b919-319b81d13095))
    (fp_line (start -1.95 -1.35) (end -1.95 -3.85) (layer "Dwgs.User") (width 0.15) (tstamp eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03))
    (pad "" smd rect locked (at 3.7 -1.1 270) (size 0.9 0.9) (layers "B.Cu" "B.Paste" "B.Mask") (tstamp 015f5586-ba76-4a98-9114-f5cd2c67134d))
    (pad "" smd rect locked (at -3.7 -1.1 270) (size 0.9 0.9) (layers "B.Cu" "B.Paste" "B.Mask") (tstamp 2f424da3-8fae-4941-bc6d-20044787372f))
    (pad "" smd rect locked (at 3.7 1.1 270) (size 0.9 0.9) (layers "B.Cu" "B.Paste" "B.Mask") (tstamp 541721d1-074b-496e-a833-813044b3e8ca))
    (pad "" smd rect locked (at -3.7 1.1 270) (size 0.9 0.9) (layers "B.Cu" "B.Paste" "B.Mask") (tstamp d05faa1f-5f69-41bf-86d3-2cd224432e1b))
    (pad "" np_thru_hole circle locked (at -1.5 0) (size 1 1) (drill 0.9) (layers *.Cu *.Mask) (tstamp fa20e708-ec85-4e0b-8402-f74a2724f920))
    (pad "" np_thru_hole circle locked (at 1.5 0) (size 1 1) (drill 0.9) (layers *.Cu *.Mask) (tstamp fb35e3b1-aff6-41a7-9cf0-52694b95edeb))
    (pad "1" smd rect locked (at -2.25 2.075 270) (size 0.9 1.25) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 25 "Braw") (tstamp 21492bcd-343a-4b2b-b55a-b4586c11bdeb))
    (pad "2" smd rect locked (at 0.75 2.075 270) (size 0.9 1.25) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 23 "Bplus") (tstamp 96315415-cfed-47d2-b3dd-d782358bd0df))
    (pad "3" smd rect locked (at 2.25 2.075 270) (size 0.9 1.25) (layers "B.Cu" "B.Paste" "B.Mask") (tstamp 46cbe85d-ff47-428e-b187-4ebd50a66e0c))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 7447a6e7-8205-46ba-afca-d0fa8f90c95a)
    (at 63.029681 -49.257181 17)
    (attr through_hole)
    (fp_text reference "S1" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp a9ec539a-d80d-40cc-803c-12b6adefe42a)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp c264c438-a475-4ad4-9915-0f1e6ecf3053)
    )
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 0f41a909-27c4-4be2-9d5e-9ae2108c8ff5))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 1b54105e-6590-4d26-a763-ecfcf81eedc4))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 2bf3f24b-fd30-41a7-a274-9b519491916b))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 35354519-a28c-40c4-befd-0943e98dea53))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 4831966c-bb32-4bc8-a400-0382a02ffa1c))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 4d4b0fcd-2c79-4fc3-b5fa-7a0741601344))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 587a157d-dedf-4558-a037-1a94bbba1848))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 632acde9-b7fd-4f04-8cb4-d2cbb06b3595))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 78f88cf6-751c-4e9b-ae75-fb8b6d44ff39))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 9762c9ed-64d8-4f3e-baf6-f6ba6effc919))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp c19dbe3c-ced0-48f7-a91d-777569cfb936))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp e25ce415-914a-48fe-bf09-324317917b2e))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 0867287d-2e6a-4d69-a366-c29f88198f2b))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 38f2d955-ea7a-4a21-aba6-02ae23f1bd4a))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 417f13e4-c121-485a-a6b5-8b55e70350b8))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 6b25f522-8e2d-4cd8-9d5d-a2b80f60133b))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 75286985-9fa5-4d30-89c5-493b6e63cd66))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 9dab0cb7-2557-4419-963b-5ae736517f62))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp afd3dbad-e7a8-4e4c-b77c-4065a69aefa2))
    (pad "1" smd rect locked (at 3.275 -5.95 17) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 1 "P6") (tstamp c201e1b2-fc01-4110-bdaa-a33290468c83))
    (pad "1" smd rect locked (at -3.275 -5.95 17) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 1 "P6") (tstamp dabe541b-b164-4180-97a4-5ca761b86800))
    (pad "2" smd rect locked (at -8.275 -3.75 17) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp 0088d107-13d8-496c-8da6-7bbeb9d096b0))
    (pad "2" smd rect locked (at 8.275 -3.75 17) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp e12e827e-36be-4503-8eef-6fc7e8bc5d49))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb)
    (at 53.089043 -81.771543 17)
    (attr through_hole)
    (fp_text reference "S5" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45)
    )
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 54365317-1355-4216-bb75-829375abc4ec))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 66116376-6967-4178-9f23-a26cdeafc400))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 87371631-aa02-498a-998a-09bdb74784c1))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp c144caa5-b0d4-4cef-840a-d4ad178a2102))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506))
    (pad "1" smd rect locked (at 3.275 -5.95 17) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 4 "P4") (tstamp 127679a9-3981-4934-815e-896a4e3ff56e))
    (pad "1" smd rect locked (at -3.275 -5.95 17) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 4 "P4") (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c))
    (pad "2" smd rect locked (at -8.275 -3.75 17) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11))
    (pad "2" smd rect locked (at 8.275 -3.75 17) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 7a2f50f6-0c99-4e8d-9c2a-8f2f961d2e6d)
    (at 134.411087 -90.316483)
    (attr through_hole)
    (fp_text reference "S27" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp d1eca865-05c5-48a4-96cf-ed5f8a640e25)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp cebb9021-66d3-4116-98d4-5e6f3c1552be)
    )
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 008da5b9-6f95-4113-b7d0-d93ac62efd33))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 04cf2f2c-74bf-400d-b4f6-201720df00ed))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 1bdd5841-68b7-42e2-9447-cbdb608d8a08))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 3b686d17-1000-4762-ba31-589d599a3edf))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 5701b80f-f006-4814-81c9-0c7f006088a9))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 63c56ea4-91a3-4172-b9de-a4388cc8f894))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 66bc2bca-dab7-4947-a0ff-403cdaf9fb89))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 9286cf02-1563-41d2-9931-c192c33bab31))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 9b6bb172-1ac4-440a-ac75-c1917d9d59c7))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp aeb03be9-98f0-43f6-9432-1bb35aa04bab))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp c25449d6-d734-4953-b762-98f82a830248))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp d7e4abd8-69f5-4706-b12e-898194e5bf56))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 0fafc6b9-fd35-4a55-9270-7a8e7ce3cb13))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 2878a73c-5447-4cd9-8194-14f52ab9459c))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 44646447-0a8e-4aec-a74e-22bf765d0f33))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 5d3d7893-1d11-4f1d-9052-85cf0e07d281))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 66218487-e316-4467-9eba-79d4626ab24e))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 79476267-290e-445f-995b-0afd0e11a4b5))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 955cc99e-a129-42cf-abc7-aa99813fdb5f))
    (pad "1" smd rect locked (at -3.275 -5.95) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 15 "P20") (tstamp 8b290a17-6328-4178-9131-29524d345539))
    (pad "1" smd rect locked (at 3.275 -5.95) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 15 "P20") (tstamp dca1d7db-c913-4d73-a2cc-fdc9651eda69))
    (pad "2" smd rect locked (at 8.275 -3.75) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp 27b2eb82-662b-42d8-90e6-830fec4bb8d2))
    (pad "2" smd rect locked (at -8.275 -3.75) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp cf815d51-c956-4c5a-adde-c373cb025b07))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 7c5f3091-7791-43b3-8d50-43f6a72274c9)
    (at 168.347243 -29.145444 135)
    (attr through_hole)
    (fp_text reference "S36" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 0cc9bf07-55b9-458f-b8aa-41b2f51fa940)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 241e0c85-4796-48eb-a5a0-1c0f2d6e5910)
    )
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 386ad9e3-71fa-420f-8722-88548b024fc5))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 5d49e9a6-41dd-4072-adde-ef1036c1979b))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 6a2bcc72-047b-4846-8583-1109e3552669))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 775e8983-a723-43c5-bf00-61681f0840f3))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 7f9683c1-2203-43df-8fa1-719a0dc360df))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 87a1984f-543d-4f2e-ad8a-7a3a24ee6047))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp b0054ce1-b60e-41de-a6a2-bf712784dd39))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp c873689a-d206-42f5-aead-9199b4d63f51))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp c8ab8246-b2bb-4b06-b45e-2548482466fd))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp cee2f43a-7d22-4585-a857-73949bd17a9d))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp dc1d84c8-33da-4489-be8e-2a1de3001779))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 212bf70c-2324-47d9-8700-59771063baeb))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 44035e53-ff94-45ad-801f-55a1ce042a0d))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp be2983fa-f06e-485e-bea1-3dd96b916ec5))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 19 "P9") (tstamp 3efa2ece-8f3f-4a8c-96e9-6ab3ec6f1f70))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 19 "P9") (tstamp a0e7a81b-2259-4f8d-8368-ba75f2004714))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 430d6d73-9de6-41ca-b788-178d709f4aae))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 70d34adf-9bd8-469e-8c77-5c0d7adf511e))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56)
    (at 74.339129 -88.003335 10)
    (attr through_hole)
    (fp_text reference "S9" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 4780a290-d25c-4459-9579-eba3f7678762)
    )
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp c43663ee-9a0d-4f27-a292-89ba89964065))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp a15a7506-eae4-4933-84da-9ad754258706))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
    (pad "1" smd rect locked (at 3.275 -5.95 10) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 6 "P2") (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e))
    (pad "1" smd rect locked (at -3.275 -5.95 10) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 6 "P2") (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
    (pad "2" smd rect locked (at -8.275 -3.75 10) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067))
    (pad "2" smd rect locked (at 8.275 -3.75 10) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 81a15393-727e-448b-a777-b18773023d89)
    (at 94.221643 -97.114167 -175)
    (attr through_hole)
    (fp_text reference "S16" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc)
    )
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 592f25e6-a01b-47fd-8172-3da01117d00a))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 59ec3156-036e-4049-89db-91a9dd07095f))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp c09938fd-06b9-4771-9f63-2311626243b3))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp cb614b23-9af3-4aec-bed8-c1374e001510))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 9 "P18") (tstamp 2846428d-39de-4eae-8ce2-64955d56c493))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 9 "P18") (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 844d7d7a-b386-45a8-aaf6-bf41bbcb43b5)
    (at 134.411087 -107.316483 180)
    (attr through_hole)
    (fp_text reference "S30" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 6ac3ab53-7523-4805-bfd2-5de19dff127e)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp a8219a78-6b33-4efa-a789-6a67ce8f7a50)
    )
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 05f2859d-2820-4e84-b395-696011feb13b))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 2a1de22d-6451-488d-af77-0bf8841bd695))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 4b1fce17-dec7-457e-ba3b-a77604e77dc9))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 576f00e6-a1be-45d3-9b93-e26d9e0fe306))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 713e0777-58b2-4487-baca-60d0ebed27c3))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 869d6302-ae22-478f-9723-3feacbb12eef))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp a0dee8e6-f88a-4f05-aba0-bab3aafdf2bc))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp a8fb8ee0-623f-4870-a716-ecc88f37ef9a))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp d66d3c12-11ce-4566-9a45-962e329503d8))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp e1b88aa4-d887-4eea-83ff-5c009f4390c4))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp f19c9655-8ddb-411a-96dd-bd986870c3c6))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp f3044f68-903d-4063-b253-30d8e3a83eae))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 2c60448a-e30f-46b2-89e1-a44f51688efc))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 901440f4-e2a6-4447-83cc-f58a2b26f5c4))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp d7e5a060-eb57-4238-9312-26bc885fc97d))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 16 "P21") (tstamp 25bc3602-3fb4-4a04-94e3-21ba22562c24))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 16 "P21") (tstamp 4a54c707-7b6f-4a3d-a74d-5e3526114aba))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 4aa97874-2fd2-414c-b381-9420384c2fd8))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 7760a75a-d74b-4185-b34e-cbc7b2c339b6))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213)
    (at 95.703291 -80.178857 5)
    (attr through_hole)
    (fp_text reference "S13" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077)
    )
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 6781326c-6e0d-4753-8f28-0f5c687e01f9))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp c8029a4c-945d-42ca-871a-dd73ff50a1a3))
    (pad "1" smd rect locked (at -3.275 -5.95 5) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 8 "P1") (tstamp 7f52d787-caa3-4a92-b1b2-19d554dc29a4))
    (pad "1" smd rect locked (at 3.275 -5.95 5) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 8 "P1") (tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb))
    (pad "2" smd rect locked (at 8.275 -3.75 5) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp 101ef598-601d-400e-9ef6-d655fbb1dbfa))
    (pad "2" smd rect locked (at -8.275 -3.75 5) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp 5b34a16c-5a14-4291-8242-ea6d6ac54372))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 88610282-a92d-4c3d-917a-ea95d59e0759)
    (at 115.411087 -110.149816 180)
    (attr through_hole)
    (fp_text reference "S24" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp dae72997-44fc-4275-b36f-cd70bf46cfba)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 5d9921f1-08b3-4cc9-8cf7-e9a72ca2fdb7)
    )
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 0fd35a3e-b394-4aae-875a-fac843f9cbb7))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 3326423d-8df7-4a7e-a354-349430b8fbd7))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 4185c36c-c66e-4dbd-be5d-841e551f4885))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 4d4fecdd-be4a-47e9-9085-2268d5852d8f))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 4ec618ae-096f-4256-9328-005ee04f13d6))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 8458d41c-5d62-455d-b6e1-9f718c0faac9))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 92035a88-6c95-4a61-bd8a-cb8dd9e5018a))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 935057d5-6882-4c15-9a35-54677912ba12))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp c8b6b273-3d20-4a46-8069-f6d608563604))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp cc48dd41-7768-48d3-b096-2c4cc2126c9d))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 71c6e723-673c-45a9-a0e4-9742220c52a3))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp b4833916-7a3e-4498-86fb-ec6d13262ffe))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp e091e263-c616-48ef-a460-465c70218987))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 13 "P10") (tstamp c088f712-1abe-4cac-9a8b-d564931395aa))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 13 "P10") (tstamp f73b5500-6337-4860-a114-6e307f65ec9f))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp d3d57924-54a6-421d-a3a0-a044fc909e88))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp ea6fde00-59dc-4a79-a647-7e38199fae0e))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd)
    (at 92.739996 -114.049477 5)
    (attr through_hole)
    (fp_text reference "S17" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp c106154f-d948-43e5-abfa-e1b96055d91b)
    )
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
    (pad "1" smd rect locked (at -3.275 -5.95 5) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 10 "P15") (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35))
    (pad "1" smd rect locked (at 3.275 -5.95 5) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 10 "P15") (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75))
    (pad "2" smd rect locked (at 8.275 -3.75 5) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
    (pad "2" smd rect locked (at -8.275 -3.75 5) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp 9ccf03e8-755a-4cd9-96fc-30e1d08fa253)
    (at 58.059362 -65.514362 -163)
    (attr through_hole)
    (fp_text reference "S4" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6)
    )
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 62c076a3-d618-44a2-9042-9a08b3576787))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp afb8e687-4a13-41a1-b8c0-89a749e897fe))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp da469d11-a8a4-414b-9449-d151eeaf4853))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp e8314017-7be6-4011-9179-37449a29b311))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp f1830a1b-f0cc-47ae-a2c9-679c82032f14))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 3 "P5") (tstamp 55e740a3-0735-4744-896e-2bf5437093b9))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 3 "P5") (tstamp c022004a-c968-410e-b59e-fbab0e561e9d))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160)
    (at 74.339129 -88.003335 -170)
    (attr through_hole)
    (fp_text reference "S10" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp df32840e-2912-4088-b54c-9a85f64c0265)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b)
    )
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 68877d35-b796-44db-9124-b8e744e7412e))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 4fb21471-41be-4be8-9687-66030f97befc))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 6 "P2") (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 6 "P2") (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)
    (at 115.411087 -93.149816 180)
    (attr through_hole)
    (fp_text reference "S22" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp aa130053-a451-4f12-97f7-3d4d891a5f83)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 9186fd02-f30d-4e17-aa38-378ab73e3908)
    )
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 1199146e-a60b-416a-b503-e77d6d2892f9))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 3f43d730-2a73-49fe-9672-32428e7f5b49))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 477892a1-722e-4cda-bb6c-fcdb8ba5f93e))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 479331ff-c540-41f4-84e6-b48d65171e59))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 4d586a18-26c5-441e-a9ff-8125ee516126))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 9186dae5-6dc3-4744-9f90-e697559c6ac8))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 997c2f12-73ba-4c01-9ee0-42e37cbab790))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp afd38b10-2eca-4abe-aed1-a96fb07ffdbe))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp b09666f9-12f1-4ee9-8877-2292c94258ca))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp cc15f583-a41b-43af-ba94-a75455506a96))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp f1a9fb80-4cc4-410f-9616-e19c969dcab5))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 98b00c9d-9188-4bce-aa70-92d12dd9cf82))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp a24ce0e2-fdd3-4e6a-b754-5dee9713dd27))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp c8fd9dd3-06ad-4146-9239-0065013959ef))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 12 "P16") (tstamp 9031bb33-c6aa-4758-bf5c-3274ed3ebab7))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 12 "P16") (tstamp 9aedbb9e-8340-4899-b813-05b23382a36b))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 4db55cb8-197b-4402-871f-ce582b65664b))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp fa918b6d-f6cf-4471-be3b-4ff713f55a2e))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09)
    (at 133.891046 -49.038738 -15)
    (attr through_hole)
    (fp_text reference "S31" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp be4b72db-0e02-4d9b-844a-aff689b4e648)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 5889287d-b845-4684-b23e-663811b25d27)
    )
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 269f19c3-6824-45a8-be29-fa58d70cbb42))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 2e0a9f64-1b78-4597-8d50-d12d2268a95a))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 38cfe839-c630-43d3-a9ec-6a89ba9e318a))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 582622a2-fad4-4737-9a80-be9fffbba8ab))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 59fc765e-1357-4c94-9529-5635418c7d73))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 96db52e2-6336-4f5e-846e-528c594d0509))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 9aaeec6e-84fe-4644-b0bc-5de24626ff48))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp d3e133b7-2c84-4206-a2b1-e693cb57fe56))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp da481376-0e49-44d3-91b8-aaa39b869dd1))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp f0ff5d1c-5481-4958-b844-4f68a17d4166))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp f988d6ea-11c5-4837-b1d1-5c292ded50c6))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp fdc60c06-30fa-4dfb-96b4-809b755999e1))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 1dfbf353-5b24-4c0f-8322-8fcd514ae75e))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 337e8520-cbd2-42c0-8d17-743bab17cbbd))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 5c7d6eaf-f256-4349-8203-d2e836872231))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 89a8e170-a222-41c0-b545-c9f4c5604011))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 9529c01f-e1cd-40be-b7f0-83780a544249))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp b13e8448-bf35-4ec0-9c70-3f2250718cc2))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp e0c7ddff-8c90-465f-be62-21fb49b059fa))
    (pad "1" smd rect locked (at -3.275 -5.95 345) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 17 "P7") (tstamp d68e5ddb-039c-483f-88a3-1b0b7964b482))
    (pad "1" smd rect locked (at 3.275 -5.95 345) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 17 "P7") (tstamp dde8619c-5a8c-40eb-9845-65e6a654222d))
    (pad "2" smd rect locked (at 8.275 -3.75 345) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp 6f580eb1-88cc-489d-a7ca-9efa5e590715))
    (pad "2" smd rect locked (at -8.275 -3.75 345) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp c7df8431-dcf5-4ab4-b8f8-21c1cafc5246))
  )

  (footprint "ProMicro" (layer "F.Cu")
    (tedit 5B307E4C) (tstamp cb083d38-4f11-4a80-8b19-ab751c405e4a)
    (at 154.411087 -96.316483 -90)
    (attr through_hole)
    (fp_text reference "MCU1" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 3249bd81-9fd4-4194-9b4f-2e333b2195b8)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1)
    )
    (fp_text user "P08" (at 11.43 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 051b8cb0-ae77-4e09-98a7-bf2103319e66)
    )
    (fp_text user "P01" (at -13.97 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 083becc8-e25d-4206-9636-55457650bbe3)
    )
    (fp_text user "P21" (at -3.81 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 10d8ad0e-6a08-4053-92aa-23a15910fd21)
    )
    (fp_text user "P14" (at 8.89 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 123968c6-74e7-4754-8c36-08ea08e42555)
    )
    (fp_text user "B+" (at -16.51 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43)
    )
    (fp_text user "P20" (at -1.27 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 2b64d2cb-d62a-4762-97ea-f1b0d4293c4f)
    )
    (fp_text user "P09" (at 13.97 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 35c09d1f-2914-4d1e-a002-df30af772f3b)
    )
    (fp_text user "P16" (at 11.43 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 3e3d55c8-e0ea-48fb-8421-a84b7cb7055b)
    )
    (fp_text user "RST" (at -8.89 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 475ed8b3-90bf-48cd-bce5-d8f48b689541)
    )
    (fp_text user "P02" (at -3.81 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 4a7e3849-3bc9-4bb3-b16a-fab2f5cee0e5)
    )
    (fp_text user "P18" (at 3.81 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 5f312b85-6822-40a3-b417-2df49696ca2d)
    )
    (fp_text user "P10" (at 13.97 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 725cdf26-4b92-46db-bca9-10d930002dda)
    )
    (fp_text user "GND" (at -6.35 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 79451892-db6b-4999-916d-6392174ee493)
    )
    (fp_text user "P00" (at -11.43 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 7acd513a-187b-4936-9f93-2e521ce33ad5)
    )
    (fp_text user "RAW" (at -13.97 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 7b766787-7689-40b8-9ef5-c0b1af45a9ae)
    )
    (fp_text user "P03" (at -1.27 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 888fd7cb-2fc6-480c-bcfa-0b71303087d3)
    )
    (fp_text user "GND" (at -8.89 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 8e295ed4-82cb-4d9f-8888-7ad2dd4d5129)
    )
    (fp_text user "P07" (at 8.89 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 974c48bf-534e-4335-98e1-b0426c783e99)
    )
    (fp_text user "P19" (at 1.27 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp 99186658-0361-40ba-ae93-62f23c5622e6)
    )
    (fp_text user "P04" (at 1.27 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp a92f3b72-ed6d-4d99-9da6-35771bec3c77)
    )
    (fp_text user "P05" (at 3.81 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp aa1c6f47-cbd4-4cbd-8265-e5ac08b7ffc8)
    )
    (fp_text user "GND" (at -11.43 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp df2a6036-7274-4398-9365-148b6ddab90d)
    )
    (fp_text user "B-" (at -16.51 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp eaa0d51a-ee4e-4d3a-a801-bddb7027e94c)
    )
    (fp_text user "P15" (at 6.35 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp ee29d712-3378-4507-a00b-003526b29bb1)
    )
    (fp_text user "P06" (at 6.35 -4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp f28e56e7-283b-4b9a-ae27-95e89770fbf8)
    )
    (fp_text user "VCC" (at -6.35 4.8) (layer "F.SilkS")
      (effects (font (size 0.8 0.8) (thickness 0.15)))
      (tstamp fc83cd71-1198-4019-87a1-dc154bceead3)
    )
    (fp_line (start -17.78 -8.89) (end -17.78 8.89) (layer "F.SilkS") (width 0.15) (tstamp 0b9f21ed-3d41-4f23-ae45-74117a5f3153))
    (fp_line (start -15.24 6.35) (end -15.24 8.89) (layer "F.SilkS") (width 0.15) (tstamp 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19))
    (fp_line (start 15.24 8.89) (end 15.24 -8.89) (layer "F.SilkS") (width 0.15) (tstamp 76afa8e0-9b3a-439d-843c-ad039d3b6354))
    (fp_line (start -15.24 6.35) (end -12.7 6.35) (layer "F.SilkS") (width 0.15) (tstamp 8486c294-aa7e-43c3-b257-1ca3356dd17a))
    (fp_line (start -17.78 8.89) (end 15.24 8.89) (layer "F.SilkS") (width 0.15) (tstamp 946404ba-9297-43ec-9d67-30184041145f))
    (fp_line (start 15.24 -8.89) (end -17.78 -8.89) (layer "F.SilkS") (width 0.15) (tstamp a76a574b-1cac-43eb-81e6-0e2e278cea39))
    (fp_line (start -12.7 6.35) (end -12.7 8.89) (layer "F.SilkS") (width 0.15) (tstamp aee7520e-3bfc-435f-a66b-1dd1f5aa6a87))
    (fp_line (start -14.224 3.81) (end -19.304 3.81) (layer "Dwgs.User") (width 0.15) (tstamp 1b023dd4-5185-4576-b544-68a05b9c360b))
    (fp_line (start -19.304 3.81) (end -19.304 -3.81) (layer "Dwgs.User") (width 0.15) (tstamp 90f81af1-b6de-44aa-a46b-6504a157ce6c))
    (fp_line (start -19.304 -3.81) (end -14.224 -3.81) (layer "Dwgs.User") (width 0.15) (tstamp 9e0e6fc0-a269-4822-b93d-4c5e6689ff11))
    (fp_line (start -14.224 -3.81) (end -14.224 3.81) (layer "Dwgs.User") (width 0.15) (tstamp a64aeb89-c24a-493b-9aab-87a6be930bde))
    (pad "1" thru_hole rect locked (at -13.97 7.62 270) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 20 "RAW") (tstamp e2b24e25-1a0d-434a-876b-c595b47d80d2))
    (pad "2" thru_hole circle locked (at -11.43 7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 2 "GND") (tstamp fad4c712-0a2e-465d-a9f8-83d26bd66e37))
    (pad "3" thru_hole circle locked (at -8.89 7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 21 "RST") (tstamp 422b10b9-e829-44a2-8808-05edd8cb3050))
    (pad "4" thru_hole circle locked (at -6.35 7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 22 "VCC") (tstamp 20901d7e-a300-4069-8967-a6a7e97a68bc))
    (pad "5" thru_hole circle locked (at -3.81 7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 16 "P21") (tstamp cf21dfe3-ab4f-4ad9-b7cf-dc892d833b13))
    (pad "6" thru_hole circle locked (at -1.27 7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 15 "P20") (tstamp 0d993e48-cea3-4104-9c5a-d8f97b64a3ac))
    (pad "7" thru_hole circle locked (at 1.27 7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 14 "P19") (tstamp b12e5309-5d01-40ef-a9c3-8453e00a555e))
    (pad "8" thru_hole circle locked (at 3.81 7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 9 "P18") (tstamp be6b17f9-34f5-44e9-a4c7-725d2e274a9d))
    (pad "9" thru_hole circle locked (at 6.35 7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 10 "P15") (tstamp f56d244f-1fa4-4475-ac1d-f41eed31a48b))
    (pad "10" thru_hole circle locked (at 8.89 7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 11 "P14") (tstamp 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5))
    (pad "11" thru_hole circle locked (at 11.43 7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 12 "P16") (tstamp 86ad0555-08b3-4dde-9a3e-c1e5e29b6615))
    (pad "12" thru_hole circle locked (at 13.97 7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 13 "P10") (tstamp 73fbe87f-3928-49c2-bf87-839d907c6aef))
    (pad "13" thru_hole circle locked (at -13.97 -7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 8 "P1") (tstamp dd334895-c8ff-4719-bac4-c0b289bb5899))
    (pad "14" thru_hole circle locked (at -11.43 -7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 7 "P0") (tstamp 02538207-54a8-4266-8d51-23871852b2ff))
    (pad "15" thru_hole circle locked (at -8.89 -7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 2 "GND") (tstamp 17ed3508-fa2e-4593-a799-bfd39a6cc14d))
    (pad "16" thru_hole circle locked (at -6.35 -7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 2 "GND") (tstamp 0f560957-a8c5-442f-b20c-c2d88613742c))
    (pad "17" thru_hole circle locked (at -3.81 -7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 6 "P2") (tstamp 5f6afe3e-3cb2-473a-819c-dc94ae52a6be))
    (pad "18" thru_hole circle locked (at -1.27 -7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 5 "P3") (tstamp 98970bf0-1168-4b4e-a1c9-3b0c8d7eaacf))
    (pad "19" thru_hole circle locked (at 1.27 -7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 4 "P4") (tstamp c67ad10d-2f75-4ec6-a139-47058f7f06b2))
    (pad "20" thru_hole circle locked (at 3.81 -7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 3 "P5") (tstamp 2a6075ae-c7fa-41db-86b8-3f996740bdc2))
    (pad "21" thru_hole circle locked (at 6.35 -7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 1 "P6") (tstamp 8f12311d-6f4c-4d28-a5bc-d6cb462bade7))
    (pad "22" thru_hole circle locked (at 8.89 -7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 17 "P7") (tstamp db742b9e-1fed-4e0c-b783-f911ab5116aa))
    (pad "23" thru_hole circle locked (at 11.43 -7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 18 "P8") (tstamp 4344bc11-e822-474b-8d61-d12211e719b1))
    (pad "24" thru_hole circle locked (at 13.97 -7.62) (size 1.7526 1.7526) (drill 1.0922) (layers *.Cu *.SilkS *.Mask)
      (net 19 "P9") (tstamp 12c8f4c9-cb79-4390-b96c-a717c693de17))
    (pad "25" thru_hole roundrect locked (at -16.51 7.62) (size 1.5 1.5) (drill 1.0922) (layers *.Cu *.SilkS *.Mask) (roundrect_rratio 0.25)
      (net 23 "Bplus") (tstamp 5f38bdb2-3657-474e-8e86-d6bb0b298110))
    (pad "25" thru_hole roundrect locked (at -16.51 -7.62) (size 1.5 1.5) (drill 1.0922) (layers *.Cu *.SilkS *.Mask) (roundrect_rratio 0.25)
      (net 24 "Bminus") (tstamp d72c89a6-7578-4468-964e-2a845431195f))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b)
    (at 58.059362 -65.514362 17)
    (attr through_hole)
    (fp_text reference "S3" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a)
    )
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 0147f16a-c952-4891-8f53-a9fb8cddeb8d))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 1860e030-7a36-4298-b7fc-a16d48ab15ba))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 6a44418c-7bb4-4e99-8836-57f153c19721))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 8322f275-268c-4e87-a69f-4cfbf05e747f))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp aa02e544-13f5-4cf8-a5f4-3e6cda006090))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b1169a2d-8998-4b50-a48d-c520bcc1b8e1))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp b6270a28-e0d9-4655-a18a-03dbf007b940))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp d1262c4d-2245-4c4f-8f35-7bb32cd9e21e))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp d22e95aa-f3db-4fbc-a331-048a2523233e))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp f3490fa5-5a27-423b-af60-53609669542c))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 0a3cc030-c9dd-4d74-9d50-715ed2b361a2))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 13abf99d-5265-4779-8973-e94370fd18ff))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 15875808-74d5-4210-b8ca-aa8fbc04ae21))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 3dcc657b-55a1-48e0-9667-e01e7b6b08b5))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 67f6e996-3c99-493c-8f6f-e739e2ed5d7a))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp a7520ad3-0f8b-4788-92d4-8ffb277041e6))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp dd00c2e1-6027-4717-b312-4fab3ee52002))
    (pad "1" smd rect locked (at -3.275 -5.95 17) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 3 "P5") (tstamp 32667662-ae86-4904-b198-3e95f11851bf))
    (pad "1" smd rect locked (at 3.275 -5.95 17) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 3 "P5") (tstamp a795f1ba-cdd5-4cc5-9a52-08586e982934))
    (pad "2" smd rect locked (at -8.275 -3.75 17) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp 46918595-4a45-48e8-84c0-961b4db7f35f))
    (pad "2" smd rect locked (at 8.275 -3.75 17) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp a05d7640-f2f6-4ba7-8c51-5a4af431fc13))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp d38aa458-d7c4-47af-ba08-2b6be506a3fd)
    (at 133.891046 -49.038738 165)
    (attr through_hole)
    (fp_text reference "S32" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 98fe66f3-ec8b-4515-ae34-617f2124a7ec)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp fc3d51c1-8b35-4da3-a742-0ebe104989d7)
    )
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 10e52e95-44f3-4059-a86d-dcda603e0623))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 252f1275-081d-4d77-8bd5-3b9e6916ef42))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 62e8c4d4-266c-4e53-8981-1028251d724c))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp bb59b92a-e4d0-4b9e-82cd-26304f5c15b8))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp bd793ae5-cde5-43f6-8def-1f95f35b1be6))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp e70b6168-f98e-4322-bc55-500948ef7b77))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp f44d04c5-0d17-4d52-8328-ef3b4fdfba5f))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp f6983918-fe05-46ea-b355-bc522ec53440))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 0fc5db66-6188-4c1f-bb14-0868bef113eb))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 142dd724-2a9f-4eea-ab21-209b1bc7ec65))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 15a82541-58d8-45b5-99c5-fb52e017e3ea))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 17 "P7") (tstamp 2f291a4b-4ecb-4692-9ad2-324f9784c0d4))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 17 "P7") (tstamp 759788bd-3cb9-4d38-b58c-5cb10b7dca6b))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 20caf6d2-76a7-497e-ac56-f6d31eb9027b))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp f447e585-df78-4239-b8cb-4653b3837bb1))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415)
    (at 71.38711 -104.745067 -170)
    (attr through_hole)
    (fp_text reference "S12" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02)
    )
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 7 "P0") (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 7 "P0") (tstamp f40d350f-0d3e-4f8a-b004-d950f2f8f1ba))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 2d67a417-188f-4014-9282-000265d80009))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp e97b5984-9f0f-43a4-9b8a-838eef4cceb2)
    (at 115.411087 -110.149816)
    (attr through_hole)
    (fp_text reference "S23" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005)
    )
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 2454fd1b-3484-4838-8b7e-d26357238fe1))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 43707e99-bdd7-4b02-9974-540ed6c2b0aa))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 45884597-7014-4461-83ee-9975c42b9a53))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 79770cd5-32d7-429a-8248-0d9e6212231a))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp ae77c3c8-1144-468e-ad5b-a0b4090735bd))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp b0271cdd-de22-4bf4-8f55-fc137cfbd4ec))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp c3c499b1-9227-4e4b-9982-f9f1aa6203b9))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp c514e30c-e48e-4ca5-ab44-8b3afedef1f2))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp e17e6c0e-7e5b-43f0-ad48-0a2760b45b04))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp e4e20505-1208-4100-a4aa-676f50844c06))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 076046ab-4b56-4060-b8d9-0d80806d0277))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 1171ce37-6ad7-4662-bb68-5592c945ebf3))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 180245d9-4a3f-4d1b-adcc-b4eafac722e0))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 1fbb0219-551e-409b-a61b-76e8cebdfb9d))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 54212c01-b363-47b8-a145-45c40df316f4))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 99332785-d9f1-4363-9377-26ddc18e6d2c))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp d4c9471f-7503-4339-928c-d1abae1eede6))
    (pad "1" smd rect locked (at -3.275 -5.95) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 13 "P10") (tstamp 7bfba61b-6752-4a45-9ee6-5984dcb15041))
    (pad "1" smd rect locked (at 3.275 -5.95) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 13 "P10") (tstamp f8f3a9fc-1e34-4573-a767-508104e8d242))
    (pad "2" smd rect locked (at -8.275 -3.75) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp 28e37b45-f843-47c2-85c9-ca19f5430ece))
    (pad "2" smd rect locked (at 8.275 -3.75) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4)
    (at 134.411087 -73.316483)
    (attr through_hole)
    (fp_text reference "S25" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp cb721686-5255-4788-a3b0-ce4312e32eb7)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp d4db7f11-8cfe-40d2-b021-b36f05241701)
    )
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 0a1a4d88-972a-46ce-b25e-6cb796bd41f7))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 1f9ae101-c652-4998-a503-17aedf3d5746))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 29bb7297-26fb-4776-9266-2355d022bab0))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 36d783e7-096f-4c97-9672-7e08c083b87b))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 5c30b9b4-3014-4f50-9329-27a539b67e01))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 6ffdf05e-e119-49f9-85e9-13e4901df42a))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 88cb65f4-7e9e-44eb-8692-3b6e2e788a94))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 9a2d648d-863a-4b7b-80f9-d537185c212b))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp c4cab9c5-d6e5-4660-b910-603a51b56783))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp cb6062da-8dcd-4826-92fd-4071e9e97213))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp e5b328f6-dc69-4905-ae98-2dc3200a51d6))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp faa1812c-fdf3-47ae-9cf4-ae06a263bfbd))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 30c33e3e-fb78-498d-bffe-76273d527004))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 4c843bdb-6c9e-40dd-85e2-0567846e18ba))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 5b0a5a46-7b51-4262-a80e-d33dd1806615))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 72b36951-3ec7-4569-9c88-cf9b4afe1cae))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp bdf40d30-88ff-4479-bad1-69529464b61b))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp c9b9e62d-dede-4d1a-9a05-275614f8bdb2))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp eb8d02e9-145c-465d-b6a8-bae84d47a94b))
    (pad "1" smd rect locked (at -3.275 -5.95) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 14 "P19") (tstamp 57276367-9ce4-4738-88d7-6e8cb94c966c))
    (pad "1" smd rect locked (at 3.275 -5.95) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 14 "P19") (tstamp c3b3d7f4-943f-4cff-b180-87ef3e1bcbff))
    (pad "2" smd rect locked (at 8.275 -3.75) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp e5217a0c-7f55-4c30-adda-7f8d95709d1b))
    (pad "2" smd rect locked (at -8.275 -3.75) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp f64497d1-1d62-44a4-8e5e-6fba4ebc969a))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f)
    (at 53.089043 -81.771543 -163)
    (attr through_hole)
    (fp_text reference "S6" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb)
    )
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp ce83728b-bebd-48c2-8734-b6a50d837931))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 4 "P4") (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 4 "P4") (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp f7667b23-296e-4362-a7e3-949632c8954b)
    (at 115.411087 -76.149816)
    (attr through_hole)
    (fp_text reference "S19" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c)
    )
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp 0ae82096-0994-4fb0-9a2a-d4ac4804abac))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 0f324b67-75ef-407f-8dbc-3c1fc5c2abba))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 1c68b844-c861-46b7-b734-0242168a4220))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 224768bc-6009-43ba-aa4a-70cbaa15b5a3))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 752417ee-7d0b-4ac8-a22c-26669881a2ab))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp 8195a7cf-4576-44dd-9e0e-ee048fdb93dd))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 9f80220c-1612-4589-b9ca-a5579617bdb8))
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp d2d7bea6-0c22-495f-8666-323b30e03150))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp e0f06b5c-de63-4833-a591-ca9e19217a35))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp e7bb7815-0d52-4bb8-b29a-8cf960bd2905))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp fef37e8b-0ff0-4da2-8a57-acaf19551d1a))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp 4b03e854-02fe-44cc-bece-f8268b7cae54))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe))
    (pad "" np_thru_hole circle locked (at -5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp a7531a95-7ca1-4f34-955e-18120cec99e6))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp b5071759-a4d7-4769-be02-251f23cd4454))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp cada57e2-1fa7-4b9d-a2a0-2218773d5c50))
    (pad "" np_thru_hole circle locked (at 5 -3.75) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e))
    (pad "" np_thru_hole circle locked (at 0 -5.95) (size 3 3) (drill 3) (layers *.Cu *.Mask) (tstamp f8fc38ec-0b98-40bc-ae2f-e5cc29973bca))
    (pad "1" smd rect locked (at 3.275 -5.95) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 11 "P14") (tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8))
    (pad "1" smd rect locked (at -3.275 -5.95) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 11 "P14") (tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc))
    (pad "2" smd rect locked (at 8.275 -3.75) (size 2.6 2.6) (layers "B.Cu" "B.Paste" "B.Mask")
      (net 2 "GND") (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8))
    (pad "2" smd rect locked (at -8.275 -3.75) (size 2.6 2.6) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "GND") (tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26))
  )

  (footprint "PG1350" (layer "F.Cu")
    (tedit 5DD50112) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386)
    (at 92.739996 -114.049477 -175)
    (attr through_hole)
    (fp_text reference "S18" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354)
    )
    (fp_text value "" (at 0 0) (layer "F.SilkS") hide
      (effects (font (size 1.27 1.27) (thickness 0.15)))
      (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098)
    )
    (fp_line (start 7 -7) (end 6 -7) (layer "Dwgs.User") (width 0.15) (tstamp 109caac1-5036-4f23-9a66-f569d871501b))
    (fp_line (start 7 6) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131))
    (fp_line (start -9 8.5) (end -9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f))
    (fp_line (start 6 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b))
    (fp_line (start 9 -8.5) (end 9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp 4a850cb6-bb24-4274-a902-e49f34f0a0e3))
    (fp_line (start -9 -8.5) (end 9 -8.5) (layer "Dwgs.User") (width 0.15) (tstamp 6b7c1048-12b6-46b2-b762-fa3ad30472dd))
    (fp_line (start -6 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92))
    (fp_line (start 7 -7) (end 7 -6) (layer "Dwgs.User") (width 0.15) (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23))
    (fp_line (start -7 -6) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558))
    (fp_line (start -7 7) (end -6 7) (layer "Dwgs.User") (width 0.15) (tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7))
    (fp_line (start 9 8.5) (end -9 8.5) (layer "Dwgs.User") (width 0.15) (tstamp e5203297-b913-4288-a576-12a92185cb52))
    (fp_line (start -7 7) (end -7 6) (layer "Dwgs.User") (width 0.15) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
    (pad "" np_thru_hole circle locked (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 0cc45b5b-96b3-4284-9cae-a3a9e324a916))
    (pad "" np_thru_hole circle locked (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask) (tstamp f1447ad6-651c-45be-a2d6-33bddf672c2c))
    (pad "" np_thru_hole circle locked (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp f6c644f4-3036-41a6-9e14-2c08c079c6cd))
    (pad "1" thru_hole circle locked (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 10 "P15") (tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760))
    (pad "1" thru_hole circle locked (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 10 "P15") (tstamp 79e31048-072a-4a40-a625-26bb0b5f046b))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc))
    (pad "2" thru_hole circle locked (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
      (net 2 "GND") (tstamp c76d4423-ef1b-4a6f-8176-33d65f2877bb))
  )

  (gr_arc (start 104.212524 -119.749815) (mid 102.861343 -120.275261) (end 102.220134 -121.575505) (layer "Edge.Cuts") (width 0.15) (tstamp 0554bea0-89b2-4e25-9ea3-4c73921c94cb))
  (gr_arc (start 82.233091 -118.259454) (mid 81.827408 -116.867619) (end 80.587997 -116.115527) (layer "Edge.Cuts") (width 0.15) (tstamp 22962957-1efd-404d-83db-5b233b6c15b0))
  (gr_arc (start 180.721611 -30.206103) (mid 181.307397 -28.79189) (end 180.721611 -27.377677) (layer "Edge.Cuts") (width 0.15) (tstamp 275b6416-db29-42cc-9307-bf426917c3b4))
  (gr_arc (start 167.528587 -47.330455) (mid 165.211835 -51.649611) (end 164.411087 -56.485027) (layer "Edge.Cuts") (width 0.15) (tstamp 278a91dc-d57d-4a5c-a045-34b6bd84131f))
  (gr_line (start 167.528587 -47.330456) (end 180.721611 -30.206104) (layer "Edge.Cuts") (width 0.15) (tstamp 29126f72-63f7-4275-8b12-6b96a71c6f17))
  (gr_line (start 60.120825 -110.475759) (end 62.576774 -96.547382) (layer "Edge.Cuts") (width 0.15) (tstamp 29cbb0bc-f66b-4d11-80e7-5bb270e42496))
  (gr_line (start 116.922394 -41.80264) (end 76.148965 -42.467382) (layer "Edge.Cuts") (width 0.15) (tstamp 2ea8fa6f-efc3-40fe-bcf9-05bfa46ead4f))
  (gr_line (start 83.834124 -122.906984) (end 99.972478 -124.318907) (layer "Edge.Cuts") (width 0.15) (tstamp 355ced6c-c08a-4586-9a09-7a9c624536f6))
  (gr_arc (start 58.09038 -37.708445) (mid 56.566694 -37.855159) (end 55.593028 -39.036311) (layer "Edge.Cuts") (width 0.15) (tstamp 3c22d605-7855-4cc6-8ad2-906cadbd02dc))
  (gr_line (start 58.090381 -37.708444) (end 71.518873 -41.813947) (layer "Edge.Cuts") (width 0.15) (tstamp 3ed2c840-383d-4cbd-bc3b-c4ea4c97b333))
  (gr_line (start 125.511087 -116.916483) (end 142.511087 -116.916483) (layer "Edge.Cuts") (width 0.15) (tstamp 4086cbd7-6ba7-4e63-8da9-17e60627ee17))
  (gr_line (start 162.411087 -114.966483) (end 144.510462 -114.966483) (layer "Edge.Cuts") (width 0.15) (tstamp 4641c87c-bffa-41fe-ae77-be3a97a6f797))
  (gr_line (start 104.212524 -119.749816) (end 123.511087 -119.749816) (layer "Edge.Cuts") (width 0.15) (tstamp 465137b4-f6f7-4d51-9b40-b161947d5cc1))
  (gr_arc (start 71.518873 -41.813947) (mid 73.8083 -42.322192) (end 76.148965 -42.467382) (layer "Edge.Cuts") (width 0.15) (tstamp 4cc0e615-05a0-4f42-a208-4011ba8ef841))
  (gr_line (start 41.20834 -86.086505) (end 55.593028 -39.036311) (layer "Edge.Cuts") (width 0.15) (tstamp 6a0919c2-460c-4229-b872-14e318e1ba8b))
  (gr_arc (start 99.972478 -124.318908) (mid 101.432365 -123.858607) (end 102.139179 -122.500829) (layer "Edge.Cuts") (width 0.15) (tstamp 88606262-3ac5-44a1-aacc-18b26cf4d396))
  (gr_arc (start 123.511087 -119.749816) (mid 124.925301 -119.16403) (end 125.511087 -117.749816) (layer "Edge.Cuts") (width 0.15) (tstamp 8d063f79-9282-4820-bcf4-1ff3c006cf08))
  (gr_arc (start 60.120826 -110.475759) (mid 60.452137 -111.970208) (end 61.743144 -112.792671) (layer "Edge.Cuts") (width 0.15) (tstamp 8eb98c56-17e4-4de6-a3e3-06dcfa392040))
  (gr_line (start 170.11501 -16.771075) (end 180.721611 -27.377677) (layer "Edge.Cuts") (width 0.15) (tstamp 91fc5800-6029-46b1-848d-ca0091f97267))
  (gr_arc (start 116.922394 -41.80264) (mid 120.439885 -41.325215) (end 123.746692 -40.034594) (layer "Edge.Cuts") (width 0.15) (tstamp 98966de3-2364-43d8-a2e0-b03bb9487b03))
  (gr_line (start 167.286582 -16.771075) (end 123.746692 -40.034594) (layer "Edge.Cuts") (width 0.15) (tstamp 9da1ace0-4181-4f12-80f8-16786a9e5c07))
  (gr_arc (start 142.511087 -116.916483) (mid 143.907511 -116.348265) (end 144.510462 -114.966483) (layer "Edge.Cuts") (width 0.15) (tstamp af186015-d283-4209-aade-a247e5de01df))
  (gr_arc (start 170.11501 -16.771075) (mid 168.700796 -16.185288) (end 167.286582 -16.771075) (layer "Edge.Cuts") (width 0.15) (tstamp bb8162f0-99c8-4884-be5b-c0d0c7e81ff6))
  (gr_arc (start 41.208341 -86.086504) (mid 41.355055 -87.61019) (end 42.536206 -88.583857) (layer "Edge.Cuts") (width 0.15) (tstamp bd085057-7c0e-463a-982b-968a2dc1f0f8))
  (gr_line (start 102.139179 -122.500829) (end 102.220134 -121.575505) (layer "Edge.Cuts") (width 0.15) (tstamp c2dd13db-24b6-40f1-b75b-b9ab893d92ea))
  (gr_line (start 61.743144 -112.792671) (end 80.587997 -116.115527) (layer "Edge.Cuts") (width 0.15) (tstamp c401e9c6-1deb-4979-99be-7c801c952098))
  (gr_arc (start 62.576773 -96.547382) (mid 62.312438 -95.155089) (end 61.191902 -94.287476) (layer "Edge.Cuts") (width 0.15) (tstamp c66a19ed-90c0-4502-ae75-6a4c4ab9f297))
  (gr_arc (start 82.016046 -120.740284) (mid 82.476347 -122.20017) (end 83.834124 -122.906984) (layer "Edge.Cuts") (width 0.15) (tstamp cd1cff81-9d8a-4511-96d6-4ddb79484001))
  (gr_line (start 42.536206 -88.583857) (end 61.191902 -94.287476) (layer "Edge.Cuts") (width 0.15) (tstamp d1c19c11-0a13-4237-b6b4-fb2ef1db7c6d))
  (gr_line (start 125.511087 -117.749816) (end 125.511087 -116.916483) (layer "Edge.Cuts") (width 0.15) (tstamp d1cd5391-31d2-459f-8adb-4ae3f304a833))
  (gr_line (start 82.23309 -118.259454) (end 82.016046 -120.740283) (layer "Edge.Cuts") (width 0.15) (tstamp d8200a86-aa75-47a3-ad2a-7f4c9c999a6f))
  (gr_arc (start 162.411087 -114.966483) (mid 163.825301 -114.380697) (end 164.411087 -112.966483) (layer "Edge.Cuts") (width 0.15) (tstamp da546d77-4b03-4562-8fc6-837fd68e7691))
  (gr_line (start 164.411087 -56.485027) (end 164.411087 -112.966483) (layer "Edge.Cuts") (width 0.15) (tstamp e2fac877-439c-4da0-af2e-5fdc70f85d42))
  (gr_text "rae-dux v0.1\nby ajrae" (at 114.765715 -54.163355) (layer "B.SilkS") (tstamp 653a86ba-a1ae-4175-9d4c-c788087956d0)
    (effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
  )
  (gr_text "rae-dux v0.1\nby ajrae" (at 114.765715 -54.163355) (layer "F.SilkS") (tstamp df83f395-2d18-47e2-a370-952ca41c2b3a)
    (effects (font (size 1 1) (thickness 0.15)) (justify left))
  )

  (segment (start 156.23304 -85.87504) (end 160.324483 -89.966483) (width 0.25) (layer "F.Cu") (net 1) (tstamp 058c60a7-b811-4242-808a-75d3e551e9d1))
  (segment (start 62.282887 -47.085081) (end 59.35917 -44.161364) (width 0.25) (layer "F.Cu") (net 1) (tstamp 1194f695-0776-4569-9365-1388ff1f61b6))
  (segment (start 68.922217 -47.085081) (end 74.694536 -52.8574) (width 0.25) (layer "F.Cu") (net 1) (tstamp 18d57c17-b777-46d5-9adc-709c48da03df))
  (segment (start 156.23304 -76.545342) (end 156.23304 -85.87504) (width 0.25) (layer "F.Cu") (net 1) (tstamp 1f79c2b0-8c4a-450d-9177-850c8d22fcb5))
  (segment (start 68.922217 -47.085081) (end 62.282887 -47.085081) (width 0.25) (layer "F.Cu") (net 1) (tstamp 37d1dfa4-5d65-41f6-b95b-52682d6e97aa))
  (segment (start 145.012549 -65.324851) (end 156.23304 -76.545342) (width 0.25) (layer "F.Cu") (net 1) (tstamp 390ef2c4-cec1-4e0a-94f8-f4439182a0a0))
  (segment (start 114.112878 -60.03556) (end 139.723256 -60.03556) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3d19184f-a408-4d18-8233-f726584d74a4))
  (segment (start 160.324483 -89.966483) (end 162.031087 -89.966483) (width 0.25) (layer "F.Cu") (net 1) (tstamp b7b89dd0-6899-417c-8ffd-77b30c20f9fb))
  (segment (start 74.694536 -52.8574) (end 91.3638 -52.8574) (width 0.25) (layer "F.Cu") (net 1) (tstamp bbe6dd70-4693-484e-9fd7-a8969f9dcfda))
  (segment (start 64.421967 -55.904712) (end 64.421967 -51.585331) (width 0.25) (layer "F.Cu") (net 1) (tstamp dafe6b83-eb3b-467f-a569-9f3ec0c65625))
  (segment (start 64.421967 -51.585331) (end 68.922217 -47.085081) (width 0.25) (layer "F.Cu") (net 1) (tstamp e50f3aa8-ce7d-480b-8970-ce974ebb6ef9))
  (segment (start 91.3638 -52.8574) (end 94.80048 -56.29408) (width 0.25) (layer "F.Cu") (net 1) (tstamp e70ce607-fb04-464f-ae78-2b351b5aebd0))
  (segment (start 139.723256 -60.03556) (end 145.012549 -65.324851) (width 0.25) (layer "F.Cu") (net 1) (tstamp ef35e599-bb9e-4dbd-86f1-b8079d15c14b))
  (segment (start 110.371397 -56.29408) (end 114.112878 -60.03556) (width 0.25) (layer "F.Cu") (net 1) (tstamp fa63e44e-899b-4990-88b1-c2db50876d60))
  (segment (start 94.80048 -56.29408) (end 110.371397 -56.29408) (width 0.25) (layer "F.Cu") (net 1) (tstamp ff81a2d4-5bd5-46a9-994c-cd643a8cf71f))
  (segment (start 58.158171 -53.989677) (end 59.35917 -52.788678) (width 0.25) (layer "B.Cu") (net 1) (tstamp 5fe5f375-4e42-4c76-a2a1-ff8c6cf7ef08))
  (segment (start 59.35917 -52.788678) (end 59.35917 -44.161364) (width 0.25) (layer "B.Cu") (net 1) (tstamp fdfc51ad-5bb5-4d37-a9fc-897ff5d4ed8a))
  (segment (start 53.878684 -58.856165) (end 49.049546 -63.685303) (width 0.5) (layer "F.Cu") (net 2) (tstamp 004a02e4-0272-470d-a14e-2fe52fe82593))
  (segment (start 90.637192 -74.301308) (end 87.132946 -77.805554) (width 0.5) (layer "F.Cu") (net 2) (tstamp 07ea9fe0-fccf-4161-ae79-4bb53994d273))
  (segment (start 126.136087 -70.718936) (end 126.136087 -77.066483) (width 0.5) (layer "F.Cu") (net 2) (tstamp 0da7e2aa-d9f3-4593-ac1b-d89c546ab178))
  (segment (start 87.673897 -108.171928) (end 84.169651 -111.676174) (width 0.5) (layer "F.Cu") (net 2) (tstamp 0e4017fd-02b7-4b3e-b764-397cfccac2d2))
  (segment (start 67.206698 -97.918702) (end 62.586645 -102.538755) (width 0.5) (layer "F.Cu") (net 2) (tstamp 12ffb73f-62d0-42c1-8932-5ebb64fff657))
  (segment (start 132.364014 -43.339776) (end 129.327896 -43.339776) (width 0.5) (layer "F.Cu") (net 2) (tstamp 1efab745-4ea2-4503-bd05-3123a3de84ef))
  (segment (start 126.136087 -87.718936) (end 126.136087 -94.066483) (width 0.5) (layer "F.Cu") (net 2) (tstamp 27101d2b-1f80-4d40-be5b-78bdcb31c291))
  (segment (start 115.411087 -104.249816) (end 110.43854 -104.249816) (width 0.5) (layer "F.Cu") (net 2) (tstamp 279cd597-6735-4af4-af86-33cfd2693447))
  (segment (start 110.43854 -104.249816) (end 107.136087 -107.552269) (width 0.5) (layer "F.Cu") (net 2) (tstamp 2e955124-6939-410c-81be-086896fd0cd7))
  (segment (start 125.807135 -53.741241) (end 126.868581 -54.802687) (width 0.5) (layer "F.Cu") (net 2) (tstamp 2ed795d4-9928-4760-a0b0-796f1d7302ac))
  (segment (start 134.411087 -84.416483) (end 129.43854 -84.416483) (width 0.5) (layer "F.Cu") (net 2) (tstamp 2fb7c72d-0d63-4df2-879e-15ff023fd1c7))
  (segment (start 84.169651 -111.676174) (end 84.169651 -117.063993) (width 0.5) (layer "F.Cu") (net 2) (tstamp 34937f78-0cd7-450b-8935-ad6822032278))
  (segment (start 96.21751 -74.301308) (end 90.637192 -74.301308) (width 0.5) (layer "F.Cu") (net 2) (tstamp 34f494d3-f727-4e92-b04b-bb02d398ea06))
  (segment (start 70.08003 -81.17697) (end 65.538664 -85.718336) (width 0.5) (layer "F.Cu") (net 2) (tstamp 35519fd5-08ff-4fab-91c9-037e2a0c1c90))
  (segment (start 144.4244 -39.868068) (end 144.4244 -46.032423) (width 0.5) (layer "F.Cu") (net 2) (tstamp 35ed081c-163b-4979-90e3-f6e508b6c0fd))
  (segment (start 59.784355 -59.872164) (end 58.768356 -58.856165) (width 0.5) (layer "F.Cu") (net 2) (tstamp 3d93a757-86c3-452d-8e7e-e1472380bc48))
  (segment (start 77.299673 -64.435238) (end 73.105762 -64.435238) (width 0.5) (layer "F.Cu") (net 2) (tstamp 40bfb65c-939e-4197-86e3-6cf6a69d7e87))
  (segment (start 54.019865 -47.072135) (end 54.019865 -50.423948) (width 0.5) (layer "F.Cu") (net 2) (tstamp 433391fc-e6f5-4064-b65f-ff89a4ee71ab))
  (segment (start 126.136087 -104.718936) (end 126.136087 -111.066483) (width 0.5) (layer "F.Cu") (net 2) (tstamp 47d22e24-7c7f-4617-a22e-884660a7a8ff))
  (segment (start 110.43854 -70.249816) (end 107.136087 -73.552269) (width 0.5) (layer "F.Cu") (net 2) (tstamp 4a333138-062a-4541-87e1-d6ef03b1e3dd))
  (segment (start 68.490683 -69.050317) (end 68.490683 -73.517693) (width 0.5) (layer "F.Cu") (net 2) (tstamp 4b9f66ac-7648-42bc-a33f-c121d6a3f822))
  (segment (start 129.327896 -43.339776) (end 125.807135 -46.860537) (width 0.5) (layer "F.Cu") (net 2) (tstamp 4e5c0499-4917-48e7-9f4d-c201cc63ee81))
  (segment (start 93.254215 -108.171928) (end 87.673897 -108.171928) (width 0.5) (layer "F.Cu") (net 2) (tstamp 52ee041e-391d-486f-9b84-abdb5d15db1c))
  (segment (start 72.411634 -98.934701) (end 71.395635 -97.918702) (width 0.5) (layer "F.Cu") (net 2) (tstamp 53d290a8-b212-4513-90cb-06afc49296a0))
  (segment (start 44.079227 -79.593373) (end 44.079227 -82.93831) (width 0.5) (layer "F.Cu") (net 2) (tstamp 557bb52d-e17c-47df-b43b-bdb1b2282920))
  (segment (start 134.411087 -67.416483) (end 129.43854 -67.416483) (width 0.5) (layer "F.Cu") (net 2) (tstamp 5985ca3b-83e7-485c-a804-db4e4c6c7fcd))
  (segment (start 115.411087 -70.249816) (end 110.43854 -70.249816) (width 0.5) (layer "F.Cu") (net 2) (tstamp 62681247-dfee-4fe9-a797-fef33eb74a7f))
  (segment (start 64.754674 -43.614983) (end 63.738675 -42.598984) (width 0.5) (layer "F.Cu") (net 2) (tstamp 65aa075e-0a90-4483-be44-20b32e6afd08))
  (segment (start 129.43854 -101.416483) (end 126.136087 -104.718936) (width 0.5) (layer "F.Cu") (net 2) (tstamp 6b24a7a2-717b-4448-a40d-7886a2ed3d71))
  (segment (start 160.659192 -33.16001) (end 165.147585 -37.648403) (width 0.5) (layer "F.Cu") (net 2) (tstamp 747aec7c-69d3-480d-850e-7b5b9dac4015))
  (segment (start 73.105762 -64.435238) (end 68.490683 -69.050317) (width 0.5) (layer "F.Cu") (net 2) (tstamp 791c50b4-352a-490b-b0da-8762615e4520))
  (segment (start 110.43854 -87.249816) (end 107.136087 -90.552269) (width 0.5) (layer "F.Cu") (net 2) (tstamp 7e3ec80b-349f-44e5-80c4-bee974730225))
  (segment (start 160.659192 -28.489635) (end 160.659192 -33.16001) (width 0.5) (layer "F.Cu") (net 2) (tstamp 7ffe756e-7031-40a9-a22e-c934089443a6))
  (segment (start 144.4244 -46.032423) (end 147.137285 -48.745308) (width 0.5) (layer "F.Cu") (net 2) (tstamp 81049ca2-49e7-44ea-98ba-da99c1259c4b))
  (segment (start 148.041805 -36.250663) (end 144.4244 -39.868068) (width 0.5) (layer "F.Cu") (net 2) (tstamp 817cea77-3614-46eb-ac46-8f839c322ae1))
  (segment (start 129.43854 -84.416483) (end 126.136087 -87.718936) (width 0.5) (layer "F.Cu") (net 2) (tstamp 888c6fdf-c198-440a-97af-035b863dc875))
  (segment (start 62.586645 -102.538755) (end 62.586645 -107.001157) (width 0.5) (layer "F.Cu") (net 2) (tstamp 89418c64-83aa-43cf-af96-a0ed16e8498f))
  (segment (start 164.175313 -24.973514) (end 160.659192 -28.489635) (width 0.5) (layer "F.Cu") (net 2) (tstamp 8b487b8b-12fd-4cf3-8cdb-1ef50af640be))
  (segment (start 115.411087 -87.249816) (end 110.43854 -87.249816) (width 0.5) (layer "F.Cu") (net 2) (tstamp 8c109c3d-93c9-404b-9345-0aa37e8f5570))
  (segment (start 58.493016 -42.598984) (end 54.019865 -47.072135) (width 0.5) (layer "F.Cu") (net 2) (tstamp 8d16786c-5319-478d-aaa0-2b1265cd99b9))
  (segment (start 85.651298 -94.740864) (end 85.651298 -100.128683) (width 0.5) (layer "F.Cu") (net 2) (tstamp 979784e6-6813-4ec3-b827-3fde402e007b))
  (segment (start 107.136087 -90.552269) (end 107.136087 -96.899816) (width 0.5) (layer "F.Cu") (net 2) (tstamp 9a3d38bb-117d-4857-8c2d-115ecc4eb772))
  (segment (start 87.132946 -77.805554) (end 87.132946 -83.193373) (width 0.5) (layer "F.Cu") (net 2) (tstamp a86ebb7d-c08b-41a3-932e-4967a39ce5f9))
  (segment (start 78.315672 -65.451237) (end 77.299673 -64.435238) (width 0.5) (layer "F.Cu") (net 2) (tstamp afea6a16-f8f4-4ca1-a9fd-72414bb3f1f2))
  (segment (start 107.136087 -107.552269) (end 107.136087 -113.899816) (width 0.5) (layer "F.Cu") (net 2) (tstamp b39d7b4a-582f-449b-82fa-4a80df318fb1))
  (segment (start 129.43854 -67.416483) (end 126.136087 -70.718936) (width 0.5) (layer "F.Cu") (net 2) (tstamp b7c70258-e563-4ab0-a10c-bab04504f68f))
  (segment (start 125.807135 -46.860537) (end 125.807135 -53.741241) (width 0.5) (layer "F.Cu") (net 2) (tstamp bbbe638a-e56f-4270-af80-e1e96cce71e8))
  (segment (start 58.768356 -58.856165) (end 53.878684 -58.856165) (width 0.5) (layer "F.Cu") (net 2) (tstamp bcd658cb-5289-4019-8d06-04898f56833f))
  (segment (start 107.136087 -73.552269) (end 107.136087 -79.899816) (width 0.5) (layer "F.Cu") (net 2) (tstamp beb82a37-d3f9-4faf-8a12-3d7cff00e7e0))
  (segment (start 63.738675 -42.598984) (end 58.493016 -42.598984) (width 0.5) (layer "F.Cu") (net 2) (tstamp c6e87fd8-3786-4afc-bdfd-4fa8d3e76ad7))
  (segment (start 53.798037 -75.113346) (end 48.559254 -75.113346) (width 0.5) (layer "F.Cu") (net 2) (tstamp ce052e62-9895-4eaf-b763-02bb1f2f2fc0))
  (segment (start 48.559254 -75.113346) (end 44.079227 -79.593373) (width 0.5) (layer "F.Cu") (net 2) (tstamp cecc35a9-9205-4ae7-a0bd-74fd3ba1022e))
  (segment (start 134.411087 -101.416483) (end 129.43854 -101.416483) (width 0.5) (layer "F.Cu") (net 2) (tstamp cfc3b2fc-1257-4353-9902-85cb6291fba4))
  (segment (start 49.049546 -63.685303) (end 49.049546 -66.681129) (width 0.5) (layer "F.Cu") (net 2) (tstamp cffab4f5-85f3-407b-a649-74bb72009e9b))
  (segment (start 75.363653 -82.192969) (end 74.347654 -81.17697) (width 0.5) (layer "F.Cu") (net 2) (tstamp da9cac19-080a-44fc-94cf-8e4d6da93cd3))
  (segment (start 94.735862 -91.236618) (end 89.155544 -91.236618) (width 0.5) (layer "F.Cu") (net 2) (tstamp dad8a6e3-ca6f-4733-9963-045950c983e5))
  (segment (start 149.478645 -36.250663) (end 148.041805 -36.250663) (width 0.5) (layer "F.Cu") (net 2) (tstamp db3f768b-4ec7-4178-b70b-b4b036c84502))
  (segment (start 74.347654 -81.17697) (end 70.08003 -81.17697) (width 0.5) (layer "F.Cu") (net 2) (tstamp e1bb8278-8661-48b3-8c4a-2e2543ea53b5))
  (segment (start 54.814036 -76.129345) (end 53.798037 -75.113346) (width 0.5) (layer "F.Cu") (net 2) (tstamp eacb8113-e0ce-4580-bfb3-1a131027d34b))
  (segment (start 89.155544 -91.236618) (end 85.651298 -94.740864) (width 0.5) (layer "F.Cu") (net 2) (tstamp edaa690e-7366-4177-92ba-daa3f297ce1e))
  (segment (start 65.538664 -85.718336) (end 65.538664 -90.259425) (width 0.5) (layer "F.Cu") (net 2) (tstamp f0438862-6f0b-4bc2-aa8e-eb45642585c1))
  (segment (start 71.395635 -97.918702) (end 67.206698 -97.918702) (width 0.5) (layer "F.Cu") (net 2) (tstamp fde3844e-a48f-4ec9-a1ca-0d79508f5e3f))
  (segment (start 155.78352 -76.731541) (end 155.78352 -88.09252) (width 0.25) (layer "F.Cu") (net 3) (tstamp 0608391e-b202-4612-a73b-a670d65cd261))
  (segment (start 160.197483 -92.506483) (end 162.031087 -92.506483) (width 0.25) (layer "F.Cu") (net 3) (tstamp 33f9003b-cbe2-4dc7-9288-a0db021e45b1))
  (segment (start 59.451648 -67.842512) (end 63.951898 -63.342262) (width 0.25) (layer "F.Cu") (net 3) (tstamp 3487a00e-b4f8-4ca1-aade-63cba41672f2))
  (segment (start 155.78352 -88.09252) (end 160.197483 -92.506483) (width 0.25) (layer "F.Cu") (net 3) (tstamp 40e4c8e4-ced2-46d0-aa2b-5282eb7c7888))
  (segment (start 113.92668 -60.48508) (end 139.537059 -60.48508) (width 0.25) (layer "F.Cu") (net 3) (tstamp 979dfdfb-09df-4ef8-8877-b45054bb4d76))
  (segment (start 63.951898 -63.342262) (end 57.312568 -63.342262) (width 0.25) (layer "F.Cu") (net 3) (tstamp ac02b2f8-c056-4302-8a70-922401ce745e))
  (segment (start 57.312568 -63.342262) (end 54.388851 -60.418545) (width 0.25) (layer "F.Cu") (net 3) (tstamp ce5b66e8-b710-4452-b68c-9cd786041b99))
  (segment (start 139.537059 -60.48508) (end 155.78352 -76.731541) (width 0.25) (layer "F.Cu") (net 3) (tstamp d8d72014-a5d3-48df-95a7-29bc1ec9135c))
  (segment (start 70.55056 -56.7436) (end 110.1852 -56.7436) (width 0.25) (layer "F.Cu") (net 3) (tstamp eceaaa9a-bbbe-4f20-b1cf-e25b34c18103))
  (segment (start 110.1852 -56.7436) (end 113.92668 -60.48508) (width 0.25) (layer "F.Cu") (net 3) (tstamp f20d718c-f3b1-48ff-839d-f1ab3f75a3c4))
  (segment (start 59.451648 -72.161893) (end 59.451648 -67.842512) (width 0.25) (layer "F.Cu") (net 3) (tstamp f5825cc6-95a9-4e27-8336-4f8229fc1924))
  (segment (start 63.951898 -63.342262) (end 70.55056 -56.7436) (width 0.25) (layer "F.Cu") (net 3) (tstamp fd6c9792-9fbd-461e-8c10-40765aa8fc1a))
  (segment (start 53.187852 -70.246858) (end 54.388851 -69.045859) (width 0.25) (layer "B.Cu") (net 3) (tstamp 05e5aed7-fcfc-4948-924a-84068c260504))
  (segment (start 54.388851 -69.045859) (end 54.388851 -60.418545) (width 0.25) (layer "B.Cu") (net 3) (tstamp e469efab-02d9-481a-8ff9-667805ff02b0))
  (segment (start 58.981579 -79.599443) (end 52.342249 -79.599443) (width 0.25) (layer "F.Cu") (net 4) (tstamp 0b8ceece-c05d-4f0e-b938-e90c8b58ba81))
  (segment (start 54.481329 -88.419074) (end 54.481329 -84.099693) (width 0.25) (layer "F.Cu") (net 4) (tstamp 0e0f2da0-e61d-4dc5-bcff-5743a2af4d46))
  (segment (start 52.342249 -79.599443) (end 49.418532 -76.675726) (width 0.25) (layer "F.Cu") (net 4) (tstamp 15726e40-44c3-4dfd-b1e6-c5949c00a75b))
  (segment (start 54.481329 -84.099693) (end 58.981579 -79.599443) (width 0.25) (layer "F.Cu") (net 4) (tstamp 1c88bb54-d17f-4ae7-94df-1e365f367fbd))
  (segment (start 65.1764 -76.1238) (end 65.1764 -68.199) (width 0.25) (layer "F.Cu") (net 4) (tstamp 42a3b329-6794-4a92-b3a6-33c499795e5b))
  (segment (start 155.334 -90.2338) (end 160.146683 -95.046483) (width 0.25) (layer "F.Cu") (net 4) (tstamp 47683de5-61f0-4ee8-b7ab-3ad15501846a))
  (segment (start 160.146683 -95.046483) (end 162.031087 -95.046483) (width 0.25) (layer "F.Cu") (net 4) (tstamp 59e9eb83-6bfd-4a2e-aab5-14c1318b9ae9))
  (segment (start 65.1764 -68.199) (end 72.4408 -60.9346) (width 0.25) (layer "F.Cu") (net 4) (tstamp 90ee660f-a7be-4ed8-94a8-aa073d1b13fa))
  (segment (start 139.350862 -60.9346) (end 155.334 -76.91774) (width 0.25) (layer "F.Cu") (net 4) (tstamp 98b4e46f-6a34-4f3e-b3e0-eebd8fe9a617))
  (segment (start 61.700757 -79.599443) (end 65.1764 -76.1238) (width 0.25) (layer "F.Cu") (net 4) (tstamp a153b47c-ae73-43d8-ad75-44b044e9f1bb))
  (segment (start 72.4408 -60.9346) (end 139.350862 -60.9346) (width 0.25) (layer "F.Cu") (net 4) (tstamp bda8cab3-a5d5-4f8c-beef-e73c7e742bec))
  (segment (start 58.981579 -79.599443) (end 61.700757 -79.599443) (width 0.25) (layer "F.Cu") (net 4) (tstamp c7f47362-9f25-4e1f-88e0-7b62c501cb39))
  (segment (start 155.334 -76.91774) (end 155.334 -90.2338) (width 0.25) (layer "F.Cu") (net 4) (tstamp e4434c72-a770-4f1b-8ff6-cff25b249845))
  (segment (start 48.217533 -86.504039) (end 49.418532 -85.30304) (width 0.25) (layer "B.Cu") (net 4) (tstamp 58384b45-46e8-4700-a9e2-ec2006ff86bc))
  (segment (start 49.418532 -85.30304) (end 49.418532 -76.675726) (width 0.25) (layer "B.Cu") (net 4) (tstamp a9abde18-ebc3-4002-b722-2bc86dd4a3d7))
  (segment (start 104.908452 -68.26516) (end 108.060415 -65.1132) (width 0.25) (layer "F.Cu") (net 5) (tstamp 07b6bd82-78c8-426c-882e-ef3455cb97d9))
  (segment (start 126.399421 -61.42784) (end 139.208382 -61.42784) (width 0.25) (layer "F.Cu") (net 5) (tstamp 1879eb5c-7dde-4497-803a-d17126576366))
  (segment (start 144.935272 -67.154728) (end 154.88448 -77.103936) (width 0.25) (layer "F.Cu") (net 5) (tstamp 307d7eea-37f5-408d-8df4-29d797cc6b8b))
  (segment (start 122.71406 -65.1132) (end 126.399421 -61.42784) (width 0.25) (layer "F.Cu") (net 5) (tstamp 382789d5-f6cb-410e-8bb5-8710e1dfb3e8))
  (segment (start 79.483187 -71.779437) (end 82.87505 -68.387574) (width 0.25) (layer "F.Cu") (net 5) (tstamp 5a9cc8dc-b899-4016-9873-a99ec930a962))
  (segment (start 160.273683 -97.586483) (end 162.031087 -97.586483) (width 0.25) (layer "F.Cu") (net 5) (tstamp 5df319cd-d641-4afb-b792-c9016bc1e365))
  (segment (start 82.87505 -68.387574) (end 74.763453 -68.387574) (width 0.25) (layer "F.Cu") (net 5) (tstamp 82d48399-c872-4b06-bf66-0bc84bdbbc33))
  (segment (start 79.483187 -77.689907) (end 79.483187 -71.779437) (width 0.25) (layer "F.Cu") (net 5) (tstamp 8b6d23e1-36db-42f1-8a08-9f4ec1369434))
  (segment (start 139.208382 -61.42784) (end 144.935272 -67.154728) (width 0.25) (layer "F.Cu") (net 5) (tstamp 8d83b008-e6e3-47d0-ab70-01bb77675bc4))
  (segment (start 82.997464 -68.26516) (end 104.908452 -68.26516) (width 0.25) (layer "F.Cu") (net 5) (tstamp 91f1dc10-44d3-489e-952b-bf1be2aa4e4a))
  (segment (start 74.763453 -68.387574) (end 73.026972 -66.651093) (width 0.25) (layer "F.Cu") (net 5) (tstamp 93388e75-5aae-4c60-aafc-c00b24e05047))
  (segment (start 154.88448 -92.19728) (end 160.273683 -97.586483) (width 0.25) (layer "F.Cu") (net 5) (tstamp 97ce64a8-93d2-497c-a366-ccd3c9a7011d))
  (segment (start 108.060415 -65.1132) (end 122.71406 -65.1132) (width 0.25) (layer "F.Cu") (net 5) (tstamp c4719dc5-937e-488d-97a3-0254b689bf50))
  (segment (start 154.88448 -77.103936) (end 154.88448 -92.19728) (width 0.25) (layer "F.Cu") (net 5) (tstamp cf08016a-8e9c-4e0f-9ba5-039f4530f1d1))
  (segment (start 82.87505 -68.387574) (end 82.997464 -68.26516) (width 0.25) (layer "F.Cu") (net 5) (tstamp e65386ba-e9ad-44c1-88b4-76562fb2c27f))
  (segment (start 73.59045 -67.214571) (end 73.026972 -66.651093) (width 0.25) (layer "B.Cu") (net 5) (tstamp 0c063618-eac8-441c-8aa9-fa17b2f6c52c))
  (segment (start 73.032696 -76.552511) (end 73.59045 -75.994757) (width 0.25) (layer "B.Cu") (net 5) (tstamp 75ab8b51-2d15-471a-a9a4-eba49bbe99e8))
  (segment (start 73.59045 -75.994757) (end 73.59045 -67.214571) (width 0.25) (layer "B.Cu") (net 5) (tstamp 7d74f531-c792-4beb-b3ab-45711ef608ce))
  (segment (start 108.246612 -65.56272) (end 122.900257 -65.56272) (width 0.25) (layer "F.Cu") (net 6) (tstamp 0ad6c0d5-0e41-4439-8173-d1361ef47348))
  (segment (start 145.252413 -68.107587) (end 154.43496 -77.290134) (width 0.25) (layer "F.Cu") (net 6) (tstamp 0ce80ebd-c483-4b01-a819-bdd93fcc80ea))
  (segment (start 76.531168 -88.521169) (end 79.923031 -85.129306) (width 0.25) (layer "F.Cu") (net 6) (tstamp 14891ca4-c283-4a64-98dc-86c5d6e033a0))
  (segment (start 91.025203 -68.71468) (end 105.09465 -68.71468) (width 0.25) (layer "F.Cu") (net 6) (tstamp 16759701-037c-415e-912f-dbaa7a820e1c))
  (segment (start 76.531168 -94.431639) (end 76.531168 -88.521169) (width 0.25) (layer "F.Cu") (net 6) (tstamp 362755ad-ea41-482e-bb23-627c6eb15a40))
  (segment (start 84.38648 -75.353403) (end 91.025203 -68.71468) (width 0.25) (layer "F.Cu") (net 6) (tstamp 50fd7b79-dd2a-41bc-9160-3763b3802de7))
  (segment (start 154.43496 -94.49096) (end 160.070483 -100.126483) (width 0.25) (layer "F.Cu") (net 6) (tstamp 5108a850-5478-4af0-b258-0c339a1fa2d8))
  (segment (start 160.070483 -100.126483) (end 162.031087 -100.126483) (width 0.25) (layer "F.Cu") (net 6) (tstamp 6f419437-5df9-45fe-8ab8-436b9145be8f))
  (segment (start 105.09465 -68.71468) (end 108.246612 -65.56272) (width 0.25) (layer "F.Cu") (net 6) (tstamp 6f8a701b-23ab-44ad-ab7b-66decadd633d))
  (segment (start 139.022184 -61.87736) (end 145.252413 -68.107587) (width 0.25) (layer "F.Cu") (net 6) (tstamp 77c6ce96-5fe5-489f-9fe6-aa6837fc7bf7))
  (segment (start 122.900257 -65.56272) (end 126.585621 -61.87736) (width 0.25) (layer "F.Cu") (net 6) (tstamp 87712d96-fe96-4de5-8021-df0987524449))
  (segment (start 79.923031 -85.129306) (end 84.38648 -80.665857) (width 0.25) (layer "F.Cu") (net 6) (tstamp 8fbb1536-4be8-471e-b857-6a3b480be756))
  (segment (start 79.923031 -85.129306) (end 71.811434 -85.129306) (width 0.25) (layer "F.Cu") (net 6) (tstamp 98f7a6a3-ac69-4163-be23-0a2022dda0b0))
  (segment (start 154.43496 -77.290134) (end 154.43496 -94.49096) (width 0.25) (layer "F.Cu") (net 6) (tstamp a0f04bb3-fe0d-4611-99f8-0b5c93642bff))
  (segment (start 84.38648 -80.665857) (end 84.38648 -75.353403) (width 0.25) (layer "F.Cu") (net 6) (tstamp abaab016-bad8-42a8-8a75-69c9a114f110))
  (segment (start 71.811434 -85.129306) (end 70.074953 -83.392825) (width 0.25) (layer "F.Cu") (net 6) (tstamp db076b15-ed3c-497e-91a0-4c967b3f7f23))
  (segment (start 126.585621 -61.87736) (end 139.022184 -61.87736) (width 0.25) (layer "F.Cu") (net 6) (tstamp f5c4d0bb-30d4-4f83-87c6-2b746d48ffa9))
  (segment (start 70.638431 -83.956303) (end 70.074953 -83.392825) (width 0.25) (layer "B.Cu") (net 6) (tstamp 01473b40-a501-4b7d-9200-f7912f5aad08))
  (segment (start 70.638431 -92.736489) (end 70.638431 -83.956303) (width 0.25) (layer "B.Cu") (net 6) (tstamp 55294602-c4e4-487a-a338-ed7752769dfd))
  (segment (start 70.080677 -93.294243) (end 70.638431 -92.736489) (width 0.25) (layer "B.Cu") (net 6) (tstamp ea7b464b-d0cf-4813-9723-6442e8bfdf5d))
  (segment (start 68.859415 -101.871038) (end 67.122934 -100.134557) (width 0.25) (layer "F.Cu") (net 7) (tstamp 00036662-fa99-4284-af32-cf49578c390a))
  (segment (start 82.7532 -98.679) (end 82.7532 -88.011) (width 0.25) (layer "F.Cu") (net 7) (tstamp 2081b41d-bcc7-4dce-af2e-6ec83666e1ff))
  (segment (start 145.531454 -69.022346) (end 153.98544 -77.476332) (width 0.25) (layer "F.Cu") (net 7) (tstamp 2c3bef64-0896-4852-8564-b9423ae2dcb5))
  (segment (start 76.971012 -101.871038) (end 79.561162 -101.871038) (width 0.25) (layer "F.Cu") (net 7) (tstamp 30a6cd55-20ae-4080-be10-540d9d863c57))
  (segment (start 73.579149 -111.173371) (end 73.579149 -105.262901) (width 0.25) (layer "F.Cu") (net 7) (tstamp 32af351e-30db-43fd-8004-85c42f0661d4))
  (segment (start 153.98544 -77.476332) (end 153.98544 -101.83924) (width 0.25) (layer "F.Cu") (net 7) (tstamp 37b224c2-d782-4ba3-b41b-62c9dc4f021b))
  (segment (start 84.836 -75.5396) (end 91.2114 -69.1642) (width 0.25) (layer "F.Cu") (net 7) (tstamp 3e52b8be-522d-4642-9f36-96c3d2c6d0e2))
  (segment (start 126.771818 -62.32688) (end 138.835986 -62.32688) (width 0.25) (layer "F.Cu") (net 7) (tstamp 47946c2f-7c4e-469f-8084-6b485bbf9fbb))
  (segment (start 108.432809 -66.01224) (end 123.086454 -66.01224) (width 0.25) (layer "F.Cu") (net 7) (tstamp 503b0ac8-74fe-4e94-bd8a-3f35a70a2338))
  (segment (start 84.836 -85.9282) (end 84.836 -75.5396) (width 0.25) (layer "F.Cu") (net 7) (tstamp 54ed92ca-054f-4ff2-9f25-e16abee4e4f0))
  (segment (start 138.835986 -62.32688) (end 145.531454 -69.022346) (width 0.25) (layer "F.Cu") (net 7) (tstamp 55dbb0b0-0183-481a-8248-bc0d0cbe4961))
  (segment (start 82.7532 -88.011) (end 84.836 -85.9282) (width 0.25) (layer "F.Cu") (net 7) (tstamp 6d32de7f-8511-4acc-ae00-a355e28677f8))
  (segment (start 76.971012 -101.871038) (end 68.859415 -101.871038) (width 0.25) (layer "F.Cu") (net 7) (tstamp 7cb6b52f-a428-4a6e-b5b7-84f253789f4d))
  (segment (start 79.561162 -101.871038) (end 82.7532 -98.679) (width 0.25) (layer "F.Cu") (net 7) (tstamp 81e4f37a-b790-41ba-9afd-73216af3c771))
  (segment (start 124.851549 -64.247148) (end 126.771818 -62.32688) (width 0.25) (layer "F.Cu") (net 7) (tstamp a229bd93-3c4f-48ae-8497-6db5d6773df3))
  (segment (start 159.892683 -107.746483) (end 162.031087 -107.746483) (width 0.25) (layer "F.Cu") (net 7) (tstamp a253ad98-7bab-466f-9014-8f4418bf8082))
  (segment (start 153.98544 -101.83924) (end 159.892683 -107.746483) (width 0.25) (layer "F.Cu") (net 7) (tstamp c707f79a-fbda-46e6-8f4a-c065bb2e4ed7))
  (segment (start 73.579149 -105.262901) (end 76.971012 -101.871038) (width 0.25) (layer "F.Cu") (net 7) (tstamp cf03ad8f-66ef-45f9-8345-2635d0d3edd5))
  (segment (start 123.086454 -66.01224) (end 124.851549 -64.247148) (width 0.25) (layer "F.Cu") (net 7) (tstamp d42e47a9-7586-435f-b598-98d5dd3e39e4))
  (segment (start 105.280848 -69.1642) (end 108.432809 -66.01224) (width 0.25) (layer "F.Cu") (net 7) (tstamp e1aff53e-db65-4727-8d6f-96b63dcd16a3))
  (segment (start 91.2114 -69.1642) (end 105.280848 -69.1642) (width 0.25) (layer "F.Cu") (net 7) (tstamp fbac5ce7-6987-43b5-9d55-090687662ee0))
  (segment (start 67.686412 -100.698035) (end 67.122934 -100.134557) (width 0.25) (layer "B.Cu") (net 7) (tstamp 14dfd598-a72d-4fe1-aa24-f16a07e972b3))
  (segment (start 67.128658 -110.035975) (end 67.686412 -109.478221) (width 0.25) (layer "B.Cu") (net 7) (tstamp 3461eeb7-7801-4932-b532-6f5fec8d4434))
  (segment (start 67.686412 -109.478221) (end 67.686412 -100.698035) (width 0.25) (layer "B.Cu") (net 7) (tstamp b4169a8e-18b5-44ca-805a-3c8b3f7f3c21))
  (segment (start 108.619006 -66.46176) (end 123.272651 -66.46176) (width 0.25) (layer "F.Cu") (net 8) (tstamp 0c296bbc-3556-40e1-9fb7-cdbc391c98e5))
  (segment (start 91.925067 -76.829096) (end 91.053509 -75.957538) (width 0.25) (layer "F.Cu") (net 8) (tstamp 104e71da-dfca-45be-b72b-a07760a6df68))
  (segment (start 104.07916 -73.765392) (end 104.07916 -71.001606) (width 0.25) (layer "F.Cu") (net 8) (tstamp 1deac709-53fa-4ffe-946b-5640ec393289))
  (segment (start 126.958015 -62.7764) (end 138.649789 -62.7764) (width 0.25) (layer "F.Cu") (net 8) (tstamp 24b888f6-f2b2-4758-9e17-63b15f000807))
  (segment (start 101.015456 -76.829096) (end 98.447252 -79.3973) (width 0.25) (layer "F.Cu") (net 8) (tstamp 2a2cc351-81fa-4eec-82a4-da5c8f49a2a0))
  (segment (start 98.447252 -79.3973) (end 98.447252 -86.391651) (width 0.25) (layer "F.Cu") (net 8) (tstamp 2f1169f8-c2c3-4da6-89bb-0b203244fd3d))
  (segment (start 159.892683 -110.286483) (end 162.031087 -110.286483) (width 0.25) (layer "F.Cu") (net 8) (tstamp 49920b62-8f9d-4b6a-97e8-450916cbee00))
  (segment (start 101.015456 -76.829096) (end 104.07916 -73.765392) (width 0.25) (layer "F.Cu") (net 8) (tstamp 74051c02-fa88-4054-9732-77b1d13f5e7c))
  (segment (start 124.331208 -65.403205) (end 126.958015 -62.7764) (width 0.25) (layer "F.Cu") (net 8) (tstamp ac532920-c299-41a4-b0b4-7a9caba4a9c7))
  (segment (start 101.015456 -76.829096) (end 91.925067 -76.829096) (width 0.25) (layer "F.Cu") (net 8) (tstamp af3133d6-3567-4a5e-85de-7a388c670552))
  (segment (start 123.272651 -66.46176) (end 124.331208 -65.403205) (width 0.25) (layer "F.Cu") (net 8) (tstamp b0e495bb-1c13-4261-a0a8-81698cf11061))
  (segment (start 104.07916 -71.001606) (end 108.619006 -66.46176) (width 0.25) (layer "F.Cu") (net 8) (tstamp b0ed168b-0c9e-432b-856f-d609ab4e4755))
  (segment (start 138.649789 -62.7764) (end 153.53592 -77.662531) (width 0.25) (layer "F.Cu") (net 8) (tstamp e233c450-3d9e-467f-a46f-abdb2bf20bf6))
  (segment (start 153.53592 -77.662531) (end 153.53592 -103.92972) (width 0.25) (layer "F.Cu") (net 8) (tstamp e2bd8438-c32b-4c3d-ba25-ca5a4af06599))
  (segment (start 153.53592 -103.92972) (end 159.892683 -110.286483) (width 0.25) (layer "F.Cu") (net 8) (tstamp fe75c0ed-117a-4bd2-9ea1-b972af730a36))
  (segment (start 92.270004 -77.174033) (end 91.053509 -75.957538) (width 0.25) (layer "B.Cu") (net 8) (tstamp 08ce8577-efd1-4e27-befb-b8dbf3ece86e))
  (segment (start 91.922177 -85.82078) (end 92.270004 -85.472953) (width 0.25) (layer "B.Cu") (net 8) (tstamp dfe9e57c-b62e-4af1-bb1b-a03cd7a96f62))
  (segment (start 92.270004 -85.472953) (end 92.270004 -77.174033) (width 0.25) (layer "B.Cu") (net 8) (tstamp f8d012dd-63b9-47a5-958f-658194a808e3))
  (segment (start 138.463592 -63.22592) (end 153.0864 -77.848728) (width 0.25) (layer "F.Cu") (net 9) (tstamp 06724e8a-7778-4297-beca-632ebe3186f8))
  (segment (start 123.458849 -66.91128) (end 127.144212 -63.22592) (width 0.25) (layer "F.Cu") (net 9) (tstamp 07d5c73c-8fc0-4762-b96b-d67536f8bc5f))
  (segment (start 104.52868 -88.769534) (end 104.52868 -71.187803) (width 0.25) (layer "F.Cu") (net 9) (tstamp 1fceaec4-b06d-46c1-8099-89f5fd96d035))
  (segment (start 99.533808 -93.764406) (end 90.443419 -93.764406) (width 0.25) (layer "F.Cu") (net 9) (tstamp 4f0ad253-6758-4fab-a304-5619bb190326))
  (segment (start 96.965604 -96.33261) (end 99.533808 -93.764406) (width 0.25) (layer "F.Cu") (net 9) (tstamp 589039ca-2779-4520-b3e8-3f7f6261d041))
  (segment (start 108.805203 -66.91128) (end 123.458849 -66.91128) (width 0.25) (layer "F.Cu") (net 9) (tstamp 6063d219-ddd8-4a90-95c5-674c6b93b0f4))
  (segment (start 104.52868 -71.187803) (end 108.805203 -66.91128) (width 0.25) (layer "F.Cu") (net 9) (tstamp 71cae746-02f4-4a64-af81-a33defbc0f42))
  (segment (start 153.0864 -88.8486) (end 149.428517 -92.506483) (width 0.25) (layer "F.Cu") (net 9) (tstamp 7d0f45bf-d0a7-4540-831c-28ecefdf8dc6))
  (segment (start 99.533808 -93.764406) (end 104.52868 -88.769534) (width 0.25) (layer "F.Cu") (net 9) (tstamp a4968290-2cbc-44f6-aae8-ffd916b8a71f))
  (segment (start 153.0864 -77.848728) (end 153.0864 -88.8486) (width 0.25) (layer "F.Cu") (net 9) (tstamp b593c122-ae0e-425f-af8a-6132510380fb))
  (segment (start 96.965604 -103.326961) (end 96.965604 -96.33261) (width 0.25) (layer "F.Cu") (net 9) (tstamp b9fb1e52-5bfb-4074-afb5-c49d4199f8ba))
  (segment (start 127.144212 -63.22592) (end 138.463592 -63.22592) (width 0.25) (layer "F.Cu") (net 9) (tstamp ba31267d-79f6-4d63-a42c-6d6d73dbaeb6))
  (segment (start 149.428517 -92.506483) (end 146.791087 -92.506483) (width 0.25) (layer "F.Cu") (net 9) (tstamp c7b7a468-9d6f-46ff-90c1-3eca3762e225))
  (segment (start 90.443419 -93.764406) (end 89.571861 -92.892848) (width 0.25) (layer "F.Cu") (net 9) (tstamp ddcc8852-5683-4366-8128-1d6ff0a98b06))
  (segment (start 90.788356 -94.109343) (end 89.571861 -92.892848) (width 0.25) (layer "B.Cu") (net 9) (tstamp 1b521835-2349-436c-8ca1-0d0dfe01c54f))
  (segment (start 90.440529 -102.75609) (end 90.788356 -102.408263) (width 0.25) (layer "B.Cu") (net 9) (tstamp 8a65caab-d5ec-4c04-8e13-7d1155a5c38c))
  (segment (start 90.788356 -102.408263) (end 90.788356 -94.109343) (width 0.25) (layer "B.Cu") (net 9) (tstamp e6aafbb3-a8b6-4bac-b79c-e328c884cdff))
  (segment (start 108.9914 -67.3608) (end 123.645047 -67.3608) (width 0.25) (layer "F.Cu") (net 10) (tstamp 013a8155-601a-43ee-9eaf-091d52a0631b))
  (segment (start 152.63688 -86.70732) (end 149.377717 -89.966483) (width 0.25) (layer "F.Cu") (net 10) (tstamp 08622407-6d56-432f-adc5-3f7e07948fe0))
  (segment (start 149.377717 -89.966483) (end 146.791087 -89.966483) (width 0.25) (layer "F.Cu") (net 10) (tstamp 0dedfdff-4f57-4089-a6d5-07f079f19d37))
  (segment (start 127.330409 -63.67544) (end 138.277392 -63.67544) (width 0.25) (layer "F.Cu") (net 10) (tstamp 24927c51-2a27-4986-ad26-513b8b84b734))
  (segment (start 95.483957 -120.262271) (end 95.483957 -113.26792) (width 0.25) (layer "F.Cu") (net 10) (tstamp 27907456-675f-4372-8456-3255fdd1a95d))
  (segment (start 104.9782 -105.2576) (end 104.9782 -71.374) (width 0.25) (layer "F.Cu") (net 10) (tstamp 2b329d3b-5a9c-4f42-889a-fe77a21b17b8))
  (segment (start 138.277392 -63.67544) (end 152.63688 -78.034926) (width 0.25) (layer "F.Cu") (net 10) (tstamp 671d0fa9-11d9-44da-b43f-2a19ff0340e4))
  (segment (start 104.9782 -71.374) (end 108.9914 -67.3608) (width 0.25) (layer "F.Cu") (net 10) (tstamp 726a70ea-0d96-4e18-b23d-dd4760ad9077))
  (segment (start 88.961772 -110.699716) (end 88.090214 -109.828158) (width 0.25) (layer "F.Cu") (net 10) (tstamp 88070912-713c-4330-af62-557ab402d00d))
  (segment (start 123.645047 -67.3608) (end 127.330409 -63.67544) (width 0.25) (layer "F.Cu") (net 10) (tstamp 8a0184e1-dc9e-4c8a-8b5b-a9b5eb558310))
  (segment (start 152.63688 -78.034926) (end 152.63688 -86.70732) (width 0.25) (layer "F.Cu") (net 10) (tstamp 90086944-cefc-4611-91d8-4a25097ca817))
  (segment (start 99.536084 -110.699716) (end 104.9782 -105.2576) (width 0.25) (layer "F.Cu") (net 10) (tstamp becf7fd5-db0a-4011-bf2c-af62757a7ad0))
  (segment (start 98.052161 -110.699716) (end 88.961772 -110.699716) (width 0.25) (layer "F.Cu") (net 10) (tstamp c1081fbd-567b-4a0a-902e-d6bb89cf65dc))
  (segment (start 95.483957 -113.26792) (end 98.052161 -110.699716) (width 0.25) (layer "F.Cu") (net 10) (tstamp d50411b2-0b2f-41b7-bf8d-fb8f1d6295a1))
  (segment (start 98.052161 -110.699716) (end 99.536084 -110.699716) (width 0.25) (layer "F.Cu") (net 10) (tstamp dec866b0-4652-454a-8018-4b12345794dd))
  (segment (start 89.306709 -111.044653) (end 88.090214 -109.828158) (width 0.25) (layer "B.Cu") (net 10) (tstamp a8b41d3a-b15e-4c2e-b6b6-c2dcef71f675))
  (segment (start 89.306709 -119.343573) (end 89.306709 -111.044653) (width 0.25) (layer "B.Cu") (net 10) (tstamp abfff7e4-4e89-4e2d-816e-624233b98cb4))
  (segment (start 88.958882 -119.6914) (end 89.306709 -119.343573) (width 0.25) (layer "B.Cu") (net 10) (tstamp e3898bcd-ba25-495d-bce5-2258be9d151b))
  (segment (start 152.18736 -78.221125) (end 152.18736 -84.31204) (width 0.25) (layer "F.Cu") (net 11) (tstamp 0ccb9bfe-ab93-4bac-8f92-fb97104a22f7))
  (segment (start 152.18736 -84.31204) (end 149.072917 -87.426483) (width 0.25) (layer "F.Cu") (net 11) (tstamp 1a2bc6c4-799e-4765-a15b-3afbd6a27d2d))
  (segment (start 120.411087 -72.349816) (end 110.411087 -72.349816) (width 0.25) (layer "F.Cu") (net 11) (tstamp 3f494321-e87f-4a8e-bbe5-a937d805b012))
  (segment (start 118.536566 -81.950295) (end 118.536566 -74.224337) (width 0.25) (layer "F.Cu") (net 11) (tstamp 55cd752b-c945-4ee3-943d-9a764cf13c98))
  (segment (start 120.411087 -72.349816) (end 120.411087 -71.230479) (width 0.25) (layer "F.Cu") (net 11) (tstamp 756eba11-5691-4e76-9abe-07b9da5f86e0))
  (segment (start 127.516606 -64.12496) (end 138.091195 -64.12496) (width 0.25) (layer "F.Cu") (net 11) (tstamp 81b1a29f-fb2f-46fe-8c3f-a85676ff3a66))
  (segment (start 120.411087 -71.230479) (end 127.516606 -64.12496) (width 0.25) (layer "F.Cu") (net 11) (tstamp 89b3f087-47bd-4ecc-887f-dea1ae4f1a62))
  (segment (start 118.536566 -74.224337) (end 120.411087 -72.349816) (width 0.25) (layer "F.Cu") (net 11) (tstamp a52727ba-c795-46c8-abd8-04003e3b5d32))
  (segment (start 118.686087 -82.099816) (end 118.536566 -81.950295) (width 0.25) (layer "F.Cu") (net 11) (tstamp ae57a25c-90b2-489d-a892-baf3543d30b1))
  (segment (start 149.072917 -87.426483) (end 146.791087 -87.426483) (width 0.25) (layer "F.Cu") (net 11) (tstamp e4a5ac63-0276-4305-a028-ee0a028f77b2))
  (segment (start 138.091195 -64.12496) (end 152.18736 -78.221125) (width 0.25) (layer "F.Cu") (net 11) (tstamp e6acbf87-9f85-4618-a936-8acbf66a738a))
  (segment (start 112.136087 -82.099816) (end 112.285608 -81.950295) (width 0.25) (layer "B.Cu") (net 11) (tstamp 18d8abaa-19c1-45ff-b0a6-4a9fbd8b1327))
  (segment (start 112.285608 -74.224337) (end 110.411087 -72.349816) (width 0.25) (layer "B.Cu") (net 11) (tstamp 8e4d82fa-aa95-4d41-98ce-c8c301af382f))
  (segment (start 112.285608 -81.950295) (end 112.285608 -74.224337) (width 0.25) (layer "B.Cu") (net 11) (tstamp d30ff73b-7370-497f-aedd-a5bc68a9e258))
  (segment (start 123.65488 -68.622403) (end 125.247041 -67.030241) (width 0.25) (layer "F.Cu") (net 12) (tstamp 006be5c6-bc98-495b-8874-fc64e3dde90f))
  (segment (start 118.536566 -91.224337) (end 120.411087 -89.349816) (width 0.25) (layer "F.Cu") (net 12) (tstamp 169fbf9e-c683-4879-aed2-ef27f2a35b47))
  (segment (start 123.65488 -86.106023) (end 123.65488 -68.622403) (width 0.25) (layer "F.Cu") (net 12) (tstamp 242423c3-bcff-446c-926e-024b42a8df13))
  (segment (start 110.411087 -89.349816) (end 120.411087 -89.349816) (width 0.25) (layer "F.Cu") (net 12) (tstamp 2a093840-0bdf-41ea-a70e-7ac20376c639))
  (segment (start 151.73784 -78.407322) (end 151.73784 -81.76436) (width 0.25) (layer "F.Cu") (net 12) (tstamp 2a419547-fbe1-4e45-892d-f306410f3c9d))
  (segment (start 125.247041 -67.030241) (end 127.702803 -64.57448) (width 0.25) (layer "F.Cu") (net 12) (tstamp 4f19a2b5-c53b-41d5-a9fa-fe21ce685968))
  (segment (start 118.536566 -98.950295) (end 118.536566 -91.224337) (width 0.25) (layer "F.Cu") (net 12) (tstamp 5962fb65-4840-4342-83d8-ebe11a13a0c5))
  (segment (start 148.615717 -84.886483) (end 146.791087 -84.886483) (width 0.25) (layer "F.Cu") (net 12) (tstamp ccce0497-a389-44fa-9392-bed93e73a846))
  (segment (start 137.904998 -64.57448) (end 151.73784 -78.407322) (width 0.25) (layer "F.Cu") (net 12) (tstamp d59821e6-4030-4065-bd45-c327208bbd0c))
  (segment (start 151.73784 -81.76436) (end 148.615717 -84.886483) (width 0.25) (layer "F.Cu") (net 12) (tstamp d7a4b18e-bb1c-4ffe-b78f-a93fb2408a2e))
  (segment (start 120.411087 -89.349816) (end 123.65488 -86.106023) (width 0.25) (layer "F.Cu") (net 12) (tstamp dba74961-4152-47eb-a8d2-63d5b3cb4ee0))
  (segment (start 118.686087 -99.099816) (end 118.536566 -98.950295) (width 0.25) (layer "F.Cu") (net 12) (tstamp ebd0fc89-8e13-43bb-945a-2e8b75c613c1))
  (segment (start 127.702803 -64.57448) (end 137.904998 -64.57448) (width 0.25) (layer "F.Cu") (net 12) (tstamp ec6ac1a9-4b07-4159-bd51-0e36a18b720c))
  (segment (start 112.285608 -91.224337) (end 110.411087 -89.349816) (width 0.25) (layer "B.Cu") (net 12) (tstamp 18af1d88-91db-4163-9359-d7124e411ab6))
  (segment (start 112.285608 -98.950295) (end 112.285608 -91.224337) (width 0.25) (layer "B.Cu") (net 12) (tstamp 1c0d02da-5b5c-42ee-b683-56c0e59ebf5f))
  (segment (start 112.136087 -99.099816) (end 112.285608 -98.950295) (width 0.25) (layer "B.Cu") (net 12) (tstamp d768292d-7ad8-48cb-973b-82d3c96ed0e4))
  (segment (start 151.28832 -78.59352) (end 137.7188 -65.024) (width 0.25) (layer "F.Cu") (net 13) (tstamp 00dc52d2-3b24-41b4-9158-dfa6481f6762))
  (segment (start 118.536566 -115.950295) (end 118.536566 -108.224337) (width 0.25) (layer "F.Cu") (net 13) (tstamp 22ebd635-5838-472e-8b50-03affaba3376))
  (segment (start 120.411087 -106.349816) (end 110.411087 -106.349816) (width 0.25) (layer "F.Cu") (net 13) (tstamp 60af2486-27b0-4394-8b74-bf0b63a58ade))
  (segment (start 148.463317 -82.346483) (end 15
Download .txt
gitextract_4msa8ey3/

├── .github/
│   ├── actions/
│   │   ├── autoroute/
│   │   │   └── action.yml
│   │   ├── export-dsn/
│   │   │   └── action.yml
│   │   ├── export-gerbers/
│   │   │   └── action.yml
│   │   └── import-ses/
│   │       └── action.yml
│   └── workflows/
│       └── build.yml
├── .gitignore
├── .tool-versions
├── Makefile
├── README.org
├── build.sh
├── gen_images.sh
├── output/
│   └── pcbs/
│       ├── board-routed.kicad_pcb
│       ├── board-routed.kicad_prl
│       ├── board-routed.kicad_pro
│       ├── board.dsn
│       ├── board.kicad_pcb
│       ├── board.kicad_prl
│       ├── board.kicad_pro
│       └── board.pro
├── package.json
├── rae-dux.yaml
└── style.json
Condensed preview — 22 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,288K chars).
[
  {
    "path": ".github/actions/autoroute/action.yml",
    "chars": 467,
    "preview": "name: 'Autoroute'\ndescription: 'Autoroute a given DSN file to SES with FreeRouting'\ninputs:\n  dsn_file:\n    description:"
  },
  {
    "path": ".github/actions/export-dsn/action.yml",
    "chars": 679,
    "preview": "name: 'Export DSN'\ndescription: 'Export Specctra DSN from a Kicad PCB'\ninputs:\n  pcb_file:\n    description: 'Kicad input"
  },
  {
    "path": ".github/actions/export-gerbers/action.yml",
    "chars": 687,
    "preview": "name: 'Export Gerbers'\ndescription: 'Export Gerber files from a Kicad PCB'\ninputs:\n  pcb_file:\n    description: 'Kicad i"
  },
  {
    "path": ".github/actions/import-ses/action.yml",
    "chars": 806,
    "preview": "name: 'Import SES to Kicad'\ndescription: 'Import Specctra SES into a Kicad PCB'\ninputs:\n  pcb_input_file:\n    descriptio"
  },
  {
    "path": ".github/workflows/build.yml",
    "chars": 1381,
    "preview": "on: [push, pull_request, workflow_dispatch]\n\nname: Build\njobs:\n  generate:\n    runs-on: ubuntu-latest\n    name: Generate"
  },
  {
    "path": ".gitignore",
    "chars": 86,
    "preview": "node_modules\n/output/outlines/\n/output/pcbs/board-backups/\n/output/pcbs/fp-info-cache\n"
  },
  {
    "path": ".tool-versions",
    "chars": 14,
    "preview": "nodejs 17.1.0\n"
  },
  {
    "path": "Makefile",
    "chars": 2197,
    "preview": "# .DELETE_ON_ERROR:\n.SECONDARY:\n.PHONY: clean all setup\n.DEFAULT: all\n\ncontainer_cmd ?= docker\ncontainer_args ?= -w /boa"
  },
  {
    "path": "README.org",
    "chars": 2091,
    "preview": "* rae-dux\n| [[images/board-front.png]] | [[images/board-back.png]] |\n\nThe rae-dux is a 36-key (diodeless!), wireless key"
  },
  {
    "path": "build.sh",
    "chars": 1040,
    "preview": "#!/bin/sh\n\n# container_cmd=podman\ncontainer_cmd=docker\ncontainer_args=\"-w /board -v $(pwd):/board --rm\"\n\nrm -rf output\nn"
  },
  {
    "path": "gen_images.sh",
    "chars": 518,
    "preview": "#!/bin/sh\n\ncontainer_cmd=docker\ncontainer_args=\"-w /board -v $(pwd):/board --rm\"\n\n${container_cmd} run ${container_args}"
  },
  {
    "path": "output/pcbs/board-routed.kicad_pcb",
    "chars": 1082726,
    "preview": "(kicad_pcb (version 20211014) (generator pcbnew)\n\n  (general\n    (thickness 1.6)\n  )\n\n  (paper \"A3\")\n  (title_block\n    "
  },
  {
    "path": "output/pcbs/board-routed.kicad_prl",
    "chars": 1156,
    "preview": "{\n  \"board\": {\n    \"active_layer\": 0,\n    \"active_layer_preset\": \"All Layers\",\n    \"auto_track_width\": true,\n    \"hidden"
  },
  {
    "path": "output/pcbs/board-routed.kicad_pro",
    "chars": 5913,
    "preview": "{\n  \"board\": {\n    \"design_settings\": {\n      \"defaults\": {\n        \"board_outline_line_width\": 0.049999999999999996,\n  "
  },
  {
    "path": "output/pcbs/board.dsn",
    "chars": 27541,
    "preview": "(pcb /board/output/pcbs/board.dsn\n  (parser\n    (string_quote \")\n    (space_in_quoted_tokens on)\n    (host_cad \"KiCad's "
  },
  {
    "path": "output/pcbs/board.kicad_pcb",
    "chars": 107263,
    "preview": "\n            \n(kicad_pcb (version 20171130) (host pcbnew 5.1.6)\n\n  (page A3)\n  (title_block\n    (title board)\n    (rev v"
  },
  {
    "path": "output/pcbs/board.kicad_prl",
    "chars": 1140,
    "preview": "{\n  \"board\": {\n    \"active_layer\": 31,\n    \"active_layer_preset\": \"All Layers\",\n    \"auto_track_width\": true,\n    \"hidde"
  },
  {
    "path": "output/pcbs/board.kicad_pro",
    "chars": 5908,
    "preview": "{\n  \"board\": {\n    \"design_settings\": {\n      \"defaults\": {\n        \"board_outline_line_width\": 0.049999999999999996,\n  "
  },
  {
    "path": "output/pcbs/board.pro",
    "chars": 688,
    "preview": "update=22/05/2015 07:44:53\nversion=1\nlast_client=kicad\n[general]\nversion=1\nRootSch=\nBoardNm=\n[pcbnew]\nversion=1\nLastNetL"
  },
  {
    "path": "package.json",
    "chars": 149,
    "preview": "{\n    \"scripts\": {\n        \"gen\": \"ergogen rae-dux.yaml\"\n    },\n    \"dependencies\": {\n        \"ergogen\": \"github:andrewj"
  },
  {
    "path": "rae-dux.yaml",
    "chars": 6049,
    "preview": "units:\n  kx: cx\n  ky: cy\n  px: 2\n  py: 2\npoints:\n  key:\n    footprints:\n      choc_hotswap:\n        type: choc\n        n"
  },
  {
    "path": "style.json",
    "chars": 322,
    "preview": "{\n    \"board\": \"#202328\",\n    \"copper\": \"#3f444a\",\n    \"silk\": \"#d5dce4\",\n    \"pads\": \"#d39751\",\n    \"clad\": \"#72786c\",\n"
  }
]

About this extraction

This page contains the full source code of the andrewjrae/rae-dux GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 22 files (1.2 MB), approximately 523.9k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!