PM_K-1 hardware: per-block schematic SVGs (netlistsvg) so the design is viewable

Added Node.js + netlistsvg to the EDA container; make_svg.py renders a SKiDL block to a
schematic SVG. Generated hardware/eda/schematics/*.svg for 12 blocks (audio stages 1-4 +
integrated, power tree, RP2350 core, RTC, MIDI, indicator, speaker) -- open in a browser.
Auto-routed (functional, not pretty); per-block so they're readable. interconnect omitted
(netlistsvg layout engine errors on the 24-pin USB-C + headers; its mapping is in DESIGN.md
s7). Intermediates (.json/_skin.svg) git-ignored.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Me Here 2026-05-31 16:42:04 -05:00
parent f201892c9c
commit 39fe087b2c
16 changed files with 10810 additions and 0 deletions

View file

@ -27,6 +27,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
apt-get clean && rm -rf /var/lib/apt/lists/* && \ apt-get clean && rm -rf /var/lib/apt/lists/* && \
pip3 install --no-cache-dir --break-system-packages skidl pip3 install --no-cache-dir --break-system-packages skidl
# netlistsvg: render the SKiDL netlist as a (browsable) schematic SVG
RUN apt-get update && apt-get install -y --no-install-recommends nodejs npm && \
npm install -g netlistsvg && \
npm cache clean --force && apt-get clean && rm -rf /var/lib/apt/lists/*
# Point SKiDL / KiCad CLI at the installed libraries (reproducible, not ad-hoc). # Point SKiDL / KiCad CLI at the installed libraries (reproducible, not ad-hoc).
ENV KICAD9_SYMBOL_DIR=/usr/share/kicad/symbols \ ENV KICAD9_SYMBOL_DIR=/usr/share/kicad/symbols \
KICAD9_FOOTPRINT_DIR=/usr/share/kicad/footprints \ KICAD9_FOOTPRINT_DIR=/usr/share/kicad/footprints \

14
hardware/eda/make_svg.py Normal file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env python3
"""Render one SKiDL block as a schematic SVG (via netlistsvg).
Usage (inside the container): python3 make_svg.py <block.py> <out_basename>
Runs the block (so its circuit is built, with __file__ set via runpy), then calls
SKiDL generate_svg() on the resulting default circuit.
"""
import sys, runpy, os
from skidl import generate_svg
block, out = sys.argv[1], sys.argv[2]
runpy.run_path(block, run_name="__main__") # builds default_circuit (also runs its ERC/netlist)
generate_svg(file_=out) # netlistsvg -> <out>.svg
print("SVG ->", out + ".svg")

2
hardware/eda/schematics/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*.json
*_skin.svg

View file

@ -0,0 +1,34 @@
# Schematic views (auto-generated)
Per-block schematic images of the PM_K-1 core board, rendered from the SKiDL circuits with
**netlistsvg**. Open any `.svg` in a web browser.
**What these are:** functional, auto-routed schematics (boxes + wires) for *tracing
connections* — not hand-arranged, pretty EE drawings. Each file is one block, so it's
readable; the full 167-part board would be an unreadable hairball.
| File | Block |
|---|---|
| `stage1_input.svg` | balanced line receiver + protection |
| `stage1b_select.svg` | Hi-Z instrument DI buffer + select relay |
| `stage2_dac.svg` | PCM5102A DAC + reconstruction filter |
| `stage3_sum.svg` | summing node |
| `stage4_driver.svg` | balanced output driver + mute + ground-lift |
| `audio_chain.svg` | the five audio stages integrated (busier) |
| `power_tree.svg` | ±18 V switcher → ±15 V LDOs + 3V3 |
| `mcu_core.svg` | RP2350 + flash + crystal + USB + boot/SWD |
| `rtc.svg` | RV-8803 RTC + coin-cell backup |
| `midi.svg` | DNP opto IN + buffered OUT/THRU |
| `indicator.svg` | SIG/CLIP detector |
| `speaker.svg` | monitor speaker amp |
**`interconnect` is intentionally absent** — netlistsvg's layout engine errors on the
24-pin USB-C + many headers. Its connections are pure pin-to-net mapping, fully tabulated
in `hardware/DESIGN.md` §7 and `circuits/interconnect.py`.
**Regenerate** (inside the container): for each block,
`./run.sh python3 ../eda/make_svg.py circuits/<block>.py schematics/<block>` then
`netlistsvg schematics/<block>.json -o schematics/<block>.svg --skin schematics/<block>_skin.svg`.
For the authoritative, hand-written design intent see the `circuits/*.py` files and
`hardware/DESIGN.md` block diagrams; for the connection list see `hardware/kicad/board.net`.

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 356 KiB

View file

@ -0,0 +1,407 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:s="https://github.com/nturley/netlistsvg" width="733.5500000000001" height="472.572">
<style>svg {
stroke: #000;
fill: none;
stroke-linejoin: round;
stroke-linecap: round;
}
text {
fill: #000;
stroke: none;
font-size: 10px;
font-weight: bold;
font-family: "Courier New", monospace;
}
.skidl_text {
fill: #999;
stroke: none;
font-weight: bold;
font-family: consolas, "Courier New", monospace;
}
.pin_num_text {
fill: #840000;
}
.pin_name_text {
fill: #008484;
}
.net_name_text {
font-style: italic;
fill: #840084;
}
.part_text {
fill: #840000;
}
.part_ref_text {
fill: #008484;
}
.part_name_text {
fill: #008484;
}
.pen_fill {
fill: #840000;
}
.background_fill {
fill: #FFFFC2
}
.nodelabel {
text-anchor: middle;
}
.inputPortLabel {
text-anchor: end;
}
.splitjoinBody {
fill: #000;
}
.symbol {
stroke-linejoin: round;
stroke-linecap: round;
stroke: #840000;
}
.detail {
stroke-linejoin: round;
stroke-linecap: round;
fill: #000;
}</style>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(338.672,327.42)" id="cell_C1">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C1</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(599.618,307.42)" id="cell_C2">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C2</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(510.60400000000004,317.42)" id="cell_C3">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C3 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C3 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C3 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C3 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C3</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="D_Schottky_1_" s:width="109.728" s:height="56.083" transform="translate(41.754,14.342)" id="cell_D1">
<s:alias val="D_Schottky_1_"/>
<polyline points="18.288,21.946 18.288,15.850 24.384,15.850 24.384,40.234 30.480,40.234 30.480,34.138" style="stroke-width:2.438" class="cell_D1 symbol none"/>
<polyline points="48.768,15.850 48.768,40.234 24.384,28.042 48.768,15.850" style="stroke-width:2.438" class="cell_D1 symbol none"/>
<polyline points="48.768,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<polyline points="0.000,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<text class="pin_num_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="end">1</text>
<text class="pin_name_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">K</text>
<g s:x="0.000" s:y="28.042" s:pid="1" s:position="left"/>
<polyline points="73.152,28.042 48.768,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<text class="pin_num_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="start">2</text>
<text class="pin_name_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">A</text>
<g s:x="73.152" s:y="28.042" s:pid="2" s:position="right"/>
<text class="part_ref_text" x="36.576" y="3.658" transform="rotate(0 36.576 3.658)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">D1</text>
<text class="part_name_text" x="36.576" y="52.426" transform="rotate(0 36.576 52.426)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">BAT54</text>
</g>
<g s:type="D_Schottky_1_" s:width="109.728" s:height="56.083" transform="translate(447.44000000000005,219.99400000000003)" id="cell_D2">
<s:alias val="D_Schottky_1_"/>
<polyline points="18.288,21.946 18.288,15.850 24.384,15.850 24.384,40.234 30.480,40.234 30.480,34.138" style="stroke-width:2.438" class="cell_D2 symbol none"/>
<polyline points="48.768,15.850 48.768,40.234 24.384,28.042 48.768,15.850" style="stroke-width:2.438" class="cell_D2 symbol none"/>
<polyline points="48.768,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D2 symbol none"/>
<polyline points="0.000,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D2 symbol none"/>
<text class="pin_num_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="end">1</text>
<text class="pin_name_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">K</text>
<g s:x="0.000" s:y="28.042" s:pid="1" s:position="left"/>
<polyline points="73.152,28.042 48.768,28.042" style="stroke-width:0.960" class="cell_D2 symbol none"/>
<text class="pin_num_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="start">2</text>
<text class="pin_name_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">A</text>
<g s:x="73.152" s:y="28.042" s:pid="2" s:position="right"/>
<text class="part_ref_text" x="36.576" y="3.658" transform="rotate(0 36.576 3.658)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">D2</text>
<text class="part_name_text" x="36.576" y="52.426" transform="rotate(0 36.576 52.426)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">BAT54</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(22,91.768)" id="cell_R1">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R1 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R1</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(64.918,347.42)" id="cell_R2">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R2 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R2</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1Meg</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(12,357.42)" id="cell_R3">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R3 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R3</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">10k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(427.68600000000004,317.42)" id="cell_R4">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R4 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R4 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R4 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R4</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(255.75400000000002,327.42)" id="cell_R5">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R5 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R5 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R5 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R5</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(202.836,337.42)" id="cell_R6">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R6 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R6 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R6 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R6</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">68k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(688.6320000000001,367.42)" id="cell_R7">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R7 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R7 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R7 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R7</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">10k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(149.918,357.42)" id="cell_R8">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R8 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R8 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R8 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R8</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">10k</text>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(111.672,164.42000000000002)" id="cell_U11">
<text x="15" y="-4" class="nodelabel cell_U11" s:attribute="ref">LM393_1_</text>
<rect width="30" height="120" x="0" y="0" s:generic="body" class="cell_U11"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U11~2">
<text x="-3" y="-4" class="inputPortLabel cell_U11">2</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U11~3">
<text x="-3" y="-4" class="inputPortLabel cell_U11">3</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U11~4">
<text x="-3" y="-4" class="inputPortLabel cell_U11">4</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U11~5">
<text x="-3" y="-4" class="inputPortLabel cell_U11">5</text>
</g>
<g transform="translate(0,90)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U11~6">
<text x="-3" y="-4" class="inputPortLabel cell_U11">6</text>
</g>
<g transform="translate(0,110)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U11~8">
<text x="-3" y="-4" class="inputPortLabel cell_U11">8</text>
</g>
<g transform="translate(30,10)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U11~1">
<text x="5" y="-4" class="cell_U11">1</text>
</g>
<g transform="translate(30,30)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U11~7">
<text x="5" y="-4" class="cell_U11">7</text>
</g>
</g>
<line x1="111.672" x2="74.672" y1="274.92" y2="274.92" class="net_10"/>
<line x1="74.672" x2="74.672" y1="274.92" y2="317.42" class="net_10"/>
<line x1="74.672" x2="358.17900000000003" y1="317.42" y2="317.42" class="net_10"/>
<circle cx="74.672" cy="317.42" r="2" style="fill:#000" class="net_10"/>
<line x1="358.17900000000003" x2="358.17900000000003" y1="317.42" y2="327.42" class="net_10"/>
<line x1="111.672" x2="74.672" y1="274.92" y2="274.92" class="net_10"/>
<line x1="74.672" x2="74.672" y1="274.92" y2="347.42" class="net_10"/>
<line x1="111.672" x2="74.672" y1="274.92" y2="274.92" class="net_10"/>
<line x1="74.672" x2="74.672" y1="274.92" y2="317.42" class="net_10"/>
<line x1="74.672" x2="265.50800000000004" y1="317.42" y2="317.42" class="net_10"/>
<circle cx="265.50800000000004" cy="317.42" r="2" style="fill:#000" class="net_10"/>
<line x1="265.50800000000004" x2="265.50800000000004" y1="317.42" y2="327.42" class="net_10"/>
<line x1="41.754" x2="31.753999999999998" y1="42.384" y2="42.384" class="net_8"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="42.384" y2="81.768" class="net_8"/>
<line x1="31.753999999999998" x2="619.125" y1="81.768" y2="81.768" class="net_8"/>
<circle cx="31.753999999999998" cy="81.768" r="2" style="fill:#000" class="net_8"/>
<line x1="619.125" x2="619.125" y1="81.768" y2="307.42" class="net_8"/>
<line x1="41.754" x2="31.753999999999998" y1="42.384" y2="42.384" class="net_8"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="42.384" y2="91.768" class="net_8"/>
<line x1="111.672" x2="94.672" y1="194.92000000000002" y2="194.92000000000002" class="net_8"/>
<line x1="94.672" x2="94.672" y1="194.92000000000002" y2="297.42" class="net_8"/>
<line x1="94.672" x2="619.125" y1="297.42" y2="297.42" class="net_8"/>
<circle cx="619.125" cy="297.42" r="2" style="fill:#000" class="net_8"/>
<circle cx="94.672" cy="194.92000000000002" r="2" style="fill:#000" class="net_8"/>
<line x1="619.125" x2="619.125" y1="297.42" y2="307.42" class="net_8"/>
<line x1="111.672" x2="94.672" y1="194.92000000000002" y2="194.92000000000002" class="net_8"/>
<line x1="94.672" x2="94.672" y1="194.92000000000002" y2="81.768" class="net_8"/>
<line x1="94.672" x2="31.753999999999998" y1="81.768" y2="81.768" class="net_8"/>
<circle cx="94.672" cy="81.768" r="2" style="fill:#000" class="net_8"/>
<circle cx="94.672" cy="194.92000000000002" r="2" style="fill:#000" class="net_8"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="81.768" y2="91.768" class="net_8"/>
<line x1="447.44000000000005" x2="437.44000000000005" y1="248.03600000000003" y2="248.036" class="net_2"/>
<line x1="437.44000000000005" x2="437.44000000000005" y1="248.036" y2="307.42" class="net_2"/>
<line x1="437.44000000000005" x2="530.111" y1="307.42" y2="307.42" class="net_2"/>
<line x1="530.111" x2="530.111" y1="307.42" y2="317.42" class="net_2"/>
<line x1="447.44000000000005" x2="437.44000000000005" y1="248.03600000000003" y2="248.036" class="net_2"/>
<line x1="437.44000000000005" x2="437.44000000000005" y1="248.036" y2="317.42" class="net_2"/>
<line x1="111.672" x2="84.672" y1="234.92000000000002" y2="234.92000000000002" class="net_2"/>
<line x1="84.672" x2="84.672" y1="234.92000000000002" y2="307.42" class="net_2"/>
<line x1="84.672" x2="530.111" y1="307.42" y2="307.42" class="net_2"/>
<line x1="530.111" x2="530.111" y1="307.42" y2="317.42" class="net_2"/>
<line x1="111.672" x2="84.672" y1="234.92000000000002" y2="234.92000000000002" class="net_2"/>
<line x1="84.672" x2="84.672" y1="234.92000000000002" y2="307.42" class="net_2"/>
<line x1="84.672" x2="437.44000000000005" y1="307.42" y2="307.42" class="net_2"/>
<circle cx="437.44000000000005" cy="307.42" r="2" style="fill:#000" class="net_2"/>
<line x1="437.44000000000005" x2="437.44000000000005" y1="307.42" y2="317.42" class="net_2"/>
<line x1="74.672" x2="74.672" y1="420.572" y2="430.572" class="net_6"/>
<line x1="74.672" x2="54.918" y1="430.572" y2="430.572" class="net_6"/>
<line x1="54.918" x2="54.918" y1="430.572" y2="347.42" class="net_6"/>
<line x1="54.918" x2="21.753999999999998" y1="347.42" y2="347.42" class="net_6"/>
<line x1="21.753999999999998" x2="21.753999999999998" y1="347.42" y2="174.92000000000002" class="net_6"/>
<circle cx="21.753999999999998" cy="347.42" r="2" style="fill:#000" class="net_6"/>
<line x1="21.753999999999998" x2="111.672" y1="174.92000000000002" y2="174.92000000000002" class="net_6"/>
<line x1="111.672" x2="21.753999999999998" y1="174.92000000000002" y2="174.92000000000002" class="net_6"/>
<line x1="21.753999999999998" x2="21.753999999999998" y1="174.92000000000002" y2="357.42" class="net_6"/>
<line x1="265.50800000000004" x2="265.50800000000004" y1="400.572" y2="420.572" class="net_1"/>
<line x1="265.50800000000004" x2="245.75400000000002" y1="420.572" y2="420.572" class="net_1"/>
<line x1="245.75400000000002" x2="245.75400000000002" y1="420.572" y2="327.42" class="net_1"/>
<line x1="245.75400000000002" x2="41.754" y1="327.42" y2="327.42" class="net_1"/>
<line x1="41.754" x2="41.754" y1="327.42" y2="254.92000000000002" class="net_1"/>
<line x1="41.754" x2="111.672" y1="254.92000000000002" y2="254.92000000000002" class="net_1"/>
<line x1="111.672" x2="41.754" y1="254.92000000000002" y2="254.92000000000002" class="net_1"/>
<line x1="41.754" x2="41.754" y1="254.92000000000002" y2="327.42" class="net_1"/>
<line x1="41.754" x2="212.59" y1="327.42" y2="327.42" class="net_1"/>
<circle cx="212.59" cy="327.42" r="2" style="fill:#000" class="net_1"/>
<line x1="212.59" x2="212.59" y1="327.42" y2="337.42" class="net_1"/>
<line x1="142.672" x2="169.672" y1="174.92000000000002" y2="174.92000000000002" class="net_7"/>
<line x1="169.672" x2="169.672" y1="174.92000000000002" y2="287.42" class="net_7"/>
<line x1="169.672" x2="698.3860000000001" y1="287.42" y2="287.42" class="net_7"/>
<line x1="698.3860000000001" x2="698.3860000000001" y1="287.42" y2="367.42" class="net_7"/>
<line x1="142.672" x2="159.672" y1="194.92000000000002" y2="194.92000000000002" class="net_5"/>
<line x1="159.672" x2="159.672" y1="194.92000000000002" y2="357.42" class="net_5"/>
<line x1="358.17900000000003" x2="358.17900000000003" y1="400.572" y2="430.572" class="net_3"/>
<line x1="358.17900000000003" x2="192.836" y1="430.572" y2="430.572" class="net_3"/>
<line x1="192.836" x2="192.836" y1="430.572" y2="337.42" class="net_3"/>
<line x1="192.836" x2="31.753999999999998" y1="337.42" y2="337.42" class="net_3"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="337.42" y2="214.92000000000002" class="net_3"/>
<circle cx="358.17900000000003" cy="430.572" r="2" style="fill:#000" class="net_3"/>
<circle cx="31.753999999999998" cy="214.92000000000002" r="2" style="fill:#000" class="net_3"/>
<line x1="31.753999999999998" x2="111.672" y1="214.92000000000002" y2="214.92000000000002" class="net_3"/>
<line x1="619.125" x2="619.125" y1="380.572" y2="430.572" class="net_3"/>
<line x1="619.125" x2="192.836" y1="430.572" y2="430.572" class="net_3"/>
<line x1="192.836" x2="192.836" y1="430.572" y2="337.42" class="net_3"/>
<line x1="192.836" x2="31.753999999999998" y1="337.42" y2="337.42" class="net_3"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="337.42" y2="214.92000000000002" class="net_3"/>
<circle cx="31.753999999999998" cy="214.92000000000002" r="2" style="fill:#000" class="net_3"/>
<line x1="31.753999999999998" x2="111.672" y1="214.92000000000002" y2="214.92000000000002" class="net_3"/>
<line x1="530.111" x2="530.111" y1="390.572" y2="440.572" class="net_3"/>
<line x1="530.111" x2="107.836" y1="440.572" y2="440.572" class="net_3"/>
<line x1="107.836" x2="107.836" y1="440.572" y2="337.42" class="net_3"/>
<line x1="107.836" x2="31.753999999999998" y1="337.42" y2="337.42" class="net_3"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="337.42" y2="214.92000000000002" class="net_3"/>
<circle cx="31.753999999999998" cy="214.92000000000002" r="2" style="fill:#000" class="net_3"/>
<line x1="31.753999999999998" x2="111.672" y1="214.92000000000002" y2="214.92000000000002" class="net_3"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="164.92000000000002" y2="214.92000000000002" class="net_3"/>
<circle cx="31.753999999999998" cy="214.92000000000002" r="2" style="fill:#000" class="net_3"/>
<line x1="31.753999999999998" x2="111.672" y1="214.92000000000002" y2="214.92000000000002" class="net_3"/>
<line x1="21.753999999999998" x2="21.753999999999998" y1="430.572" y2="440.572" class="net_3"/>
<line x1="21.753999999999998" x2="107.836" y1="440.572" y2="440.572" class="net_3"/>
<line x1="107.836" x2="107.836" y1="440.572" y2="337.42" class="net_3"/>
<line x1="107.836" x2="31.753999999999998" y1="337.42" y2="337.42" class="net_3"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="337.42" y2="214.92000000000002" class="net_3"/>
<circle cx="107.836" cy="337.42" r="2" style="fill:#000" class="net_3"/>
<circle cx="107.836" cy="440.572" r="2" style="fill:#000" class="net_3"/>
<circle cx="31.753999999999998" cy="214.92000000000002" r="2" style="fill:#000" class="net_3"/>
<line x1="31.753999999999998" x2="111.672" y1="214.92000000000002" y2="214.92000000000002" class="net_3"/>
<line x1="437.44000000000005" x2="437.44000000000005" y1="390.572" y2="430.572" class="net_3"/>
<line x1="437.44000000000005" x2="192.836" y1="430.572" y2="430.572" class="net_3"/>
<line x1="192.836" x2="192.836" y1="430.572" y2="337.42" class="net_3"/>
<line x1="192.836" x2="31.753999999999998" y1="337.42" y2="337.42" class="net_3"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="337.42" y2="214.92000000000002" class="net_3"/>
<circle cx="437.44000000000005" cy="430.572" r="2" style="fill:#000" class="net_3"/>
<circle cx="31.753999999999998" cy="214.92000000000002" r="2" style="fill:#000" class="net_3"/>
<line x1="31.753999999999998" x2="111.672" y1="214.92000000000002" y2="214.92000000000002" class="net_3"/>
<line x1="212.59" x2="212.59" y1="410.572" y2="430.572" class="net_3"/>
<line x1="212.59" x2="192.836" y1="430.572" y2="430.572" class="net_3"/>
<line x1="192.836" x2="192.836" y1="430.572" y2="337.42" class="net_3"/>
<line x1="192.836" x2="31.753999999999998" y1="337.42" y2="337.42" class="net_3"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="337.42" y2="214.92000000000002" class="net_3"/>
<circle cx="212.59" cy="430.572" r="2" style="fill:#000" class="net_3"/>
<circle cx="31.753999999999998" cy="214.92000000000002" r="2" style="fill:#000" class="net_3"/>
<line x1="31.753999999999998" x2="111.672" y1="214.92000000000002" y2="214.92000000000002" class="net_3"/>
<line x1="698.3860000000001" x2="698.3860000000001" y1="440.572" y2="450.572" class="net_11"/>
<line x1="698.3860000000001" x2="159.672" y1="450.572" y2="450.572" class="net_11"/>
<line x1="159.672" x2="159.672" y1="430.572" y2="450.572" class="net_11"/>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 173 KiB

View file

@ -0,0 +1,373 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:s="https://github.com/nturley/netlistsvg" width="591.6800000000001" height="516.456">
<style>svg {
stroke: #000;
fill: none;
stroke-linejoin: round;
stroke-linecap: round;
}
text {
fill: #000;
stroke: none;
font-size: 10px;
font-weight: bold;
font-family: "Courier New", monospace;
}
.skidl_text {
fill: #999;
stroke: none;
font-weight: bold;
font-family: consolas, "Courier New", monospace;
}
.pin_num_text {
fill: #840000;
}
.pin_name_text {
fill: #008484;
}
.net_name_text {
font-style: italic;
fill: #840084;
}
.part_text {
fill: #840000;
}
.part_ref_text {
fill: #008484;
}
.part_name_text {
fill: #008484;
}
.pen_fill {
fill: #840000;
}
.background_fill {
fill: #FFFFC2
}
.nodelabel {
text-anchor: middle;
}
.inputPortLabel {
text-anchor: end;
}
.splitjoinBody {
fill: #000;
}
.symbol {
stroke-linejoin: round;
stroke-linecap: round;
stroke: #840000;
}
.detail {
stroke-linejoin: round;
stroke-linecap: round;
fill: #000;
}</style>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(130.768,105.152)" id="cell_C1">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C1</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(41.754,105.152)" id="cell_C2">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C2</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="D_1_" s:width="73.152" s:height="56.083" transform="translate(421.50800000000004,120.87800000000003)" id="cell_D1">
<s:alias val="D_1_"/>
<polyline points="24.384,15.850 24.384,40.234" style="stroke-width:2.438" class="cell_D1 symbol none"/>
<polyline points="48.768,15.850 48.768,40.234 24.384,28.042 48.768,15.850" style="stroke-width:2.438" class="cell_D1 symbol none"/>
<polyline points="48.768,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<polyline points="0.000,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<text class="pin_num_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="end">1</text>
<text class="pin_name_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">K</text>
<g s:x="0.000" s:y="28.042" s:pid="1" s:position="left"/>
<polyline points="73.152,28.042 48.768,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<text class="pin_num_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="start">2</text>
<text class="pin_name_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">A</text>
<g s:x="73.152" s:y="28.042" s:pid="2" s:position="right"/>
<text class="part_ref_text" x="36.576" y="3.658" transform="rotate(0 36.576 3.658)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">D1</text>
<text class="part_name_text" x="36.576" y="52.426" transform="rotate(0 36.576 52.426)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1N4148WS</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(401.754,12)" id="cell_R1">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R1 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R1</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">220</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(187.836,421.304)" id="cell_R2">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R2 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R2</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">10k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(288.836,421.304)" id="cell_R3">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R3 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R3</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">33</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(22,421.304)" id="cell_R4">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R4 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R4 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R4 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R4</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">33</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(371.754,421.304)" id="cell_R5">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R5 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R5 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R5 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R5</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">33</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(104.918,421.304)" id="cell_R6">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R6 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R6 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R6 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R6</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">33</text>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(531.6600000000001,137.80400000000006)" id="cell_U8">
<text x="15" y="-4" class="nodelabel cell_U8" s:attribute="ref">H11L1_1_</text>
<rect width="30" height="80" x="0" y="0" s:generic="body" class="cell_U8"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U8~1">
<text x="-3" y="-4" class="inputPortLabel cell_U8">1</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U8~2">
<text x="-3" y="-4" class="inputPortLabel cell_U8">2</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U8~4">
<text x="-3" y="-4" class="inputPortLabel cell_U8">4</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U8~6">
<text x="-3" y="-4" class="inputPortLabel cell_U8">6</text>
</g>
<g transform="translate(30,10)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U8~5">
<text x="5" y="-4" class="cell_U8">5</text>
</g>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(230.59,208.304)" id="cell_U9">
<text x="15" y="-4" class="nodelabel cell_U9" s:attribute="ref">74LVC14_1_</text>
<rect width="30" height="160" x="0" y="0" s:generic="body" class="cell_U9"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U9~1">
<text x="-3" y="-4" class="inputPortLabel cell_U9">1</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U9~3">
<text x="-3" y="-4" class="inputPortLabel cell_U9">3</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U9~5">
<text x="-3" y="-4" class="inputPortLabel cell_U9">5</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U9~7">
<text x="-3" y="-4" class="inputPortLabel cell_U9">7</text>
</g>
<g transform="translate(0,90)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U9~9">
<text x="-3" y="-4" class="inputPortLabel cell_U9">9</text>
</g>
<g transform="translate(0,110)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U9~11">
<text x="-3" y="-4" class="inputPortLabel cell_U9">11</text>
</g>
<g transform="translate(0,130)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U9~13">
<text x="-3" y="-4" class="inputPortLabel cell_U9">13</text>
</g>
<g transform="translate(0,150)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U9~14">
<text x="-3" y="-4" class="inputPortLabel cell_U9">14</text>
</g>
<g transform="translate(30,10)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U9~2">
<text x="5" y="-4" class="cell_U9">2</text>
</g>
<g transform="translate(30,30)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U9~4">
<text x="5" y="-4" class="cell_U9">4</text>
</g>
<g transform="translate(30,50)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U9~6">
<text x="5" y="-4" class="cell_U9">6</text>
</g>
<g transform="translate(30,70)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U9~8">
<text x="5" y="-4" class="cell_U9">8</text>
</g>
</g>
<line x1="197.59" x2="197.59" y1="494.45599999999996" y2="504.456" class="net_9"/>
<line x1="197.59" x2="414.672" y1="504.456" y2="504.456" class="net_9"/>
<line x1="414.672" x2="414.672" y1="504.456" y2="411.304" class="net_9"/>
<line x1="414.672" x2="401.50800000000004" y1="411.304" y2="411.304" class="net_9"/>
<line x1="401.50800000000004" x2="401.50800000000004" y1="411.304" y2="208.30400000000003" class="net_9"/>
<circle cx="401.50800000000004" cy="208.30400000000003" r="2" style="fill:#000" class="net_9"/>
<line x1="401.50800000000004" x2="531.6600000000001" y1="208.30400000000003" y2="208.30400000000006" class="net_9"/>
<line x1="197.59" x2="197.59" y1="494.45599999999996" y2="504.456" class="net_9"/>
<line x1="197.59" x2="12" y1="504.456" y2="504.456" class="net_9"/>
<line x1="12" x2="12" y1="504.456" y2="411.304" class="net_9"/>
<line x1="12" x2="31.753999999999998" y1="411.304" y2="411.304" class="net_9"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="411.304" y2="358.804" class="net_9"/>
<circle cx="197.59" cy="504.456" r="2" style="fill:#000" class="net_9"/>
<circle cx="31.753999999999998" cy="358.804" r="2" style="fill:#000" class="net_9"/>
<line x1="31.753999999999998" x2="230.59" y1="358.804" y2="358.804" class="net_9"/>
<line x1="531.6600000000001" x2="401.50800000000004" y1="208.30400000000006" y2="208.30400000000003" class="net_9"/>
<line x1="401.50800000000004" x2="401.50800000000004" y1="208.30400000000003" y2="95.152" class="net_9"/>
<line x1="401.50800000000004" x2="150.275" y1="95.152" y2="95.152" class="net_9"/>
<circle cx="150.275" cy="95.152" r="2" style="fill:#000" class="net_9"/>
<circle cx="401.50800000000004" cy="208.30400000000003" r="2" style="fill:#000" class="net_9"/>
<line x1="150.275" x2="150.275" y1="95.152" y2="105.152" class="net_9"/>
<line x1="531.6600000000001" x2="401.50800000000004" y1="208.30400000000006" y2="208.30400000000003" class="net_9"/>
<line x1="401.50800000000004" x2="401.50800000000004" y1="208.30400000000003" y2="95.152" class="net_9"/>
<line x1="401.50800000000004" x2="61.260999999999996" y1="95.152" y2="95.152" class="net_9"/>
<circle cx="61.260999999999996" cy="95.152" r="2" style="fill:#000" class="net_9"/>
<circle cx="401.50800000000004" cy="208.30400000000003" r="2" style="fill:#000" class="net_9"/>
<line x1="61.260999999999996" x2="61.260999999999996" y1="95.152" y2="105.152" class="net_9"/>
<line x1="531.6600000000001" x2="401.50800000000004" y1="208.30400000000006" y2="208.30400000000003" class="net_9"/>
<line x1="401.50800000000004" x2="401.50800000000004" y1="208.30400000000003" y2="411.304" class="net_9"/>
<line x1="401.50800000000004" x2="31.753999999999998" y1="411.304" y2="411.304" class="net_9"/>
<circle cx="401.50800000000004" cy="411.304" r="2" style="fill:#000" class="net_9"/>
<circle cx="401.50800000000004" cy="208.30400000000003" r="2" style="fill:#000" class="net_9"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="411.304" y2="421.304" class="net_9"/>
<line x1="531.6600000000001" x2="401.50800000000004" y1="208.30400000000006" y2="208.30400000000003" class="net_9"/>
<line x1="401.50800000000004" x2="401.50800000000004" y1="208.30400000000003" y2="411.304" class="net_9"/>
<line x1="401.50800000000004" x2="114.67200000000001" y1="411.304" y2="411.304" class="net_9"/>
<circle cx="401.50800000000004" cy="208.30400000000003" r="2" style="fill:#000" class="net_9"/>
<line x1="114.67200000000001" x2="114.67200000000001" y1="411.304" y2="421.304" class="net_9"/>
<line x1="230.59" x2="31.753999999999998" y1="358.804" y2="358.804" class="net_9"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="358.804" y2="95.152" class="net_9"/>
<line x1="31.753999999999998" x2="150.275" y1="95.152" y2="95.152" class="net_9"/>
<circle cx="31.753999999999998" cy="358.804" r="2" style="fill:#000" class="net_9"/>
<line x1="150.275" x2="150.275" y1="95.152" y2="105.152" class="net_9"/>
<line x1="230.59" x2="31.753999999999998" y1="358.804" y2="358.804" class="net_9"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="358.804" y2="95.152" class="net_9"/>
<line x1="31.753999999999998" x2="61.260999999999996" y1="95.152" y2="95.152" class="net_9"/>
<circle cx="31.753999999999998" cy="358.804" r="2" style="fill:#000" class="net_9"/>
<line x1="61.260999999999996" x2="61.260999999999996" y1="95.152" y2="105.152" class="net_9"/>
<line x1="230.59" x2="31.753999999999998" y1="358.804" y2="358.804" class="net_9"/>
<circle cx="31.753999999999998" cy="358.804" r="2" style="fill:#000" class="net_9"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="358.804" y2="421.304" class="net_9"/>
<line x1="230.59" x2="31.753999999999998" y1="358.804" y2="358.804" class="net_9"/>
<line x1="31.753999999999998" x2="31.753999999999998" y1="358.804" y2="411.304" class="net_9"/>
<line x1="31.753999999999998" x2="114.67200000000001" y1="411.304" y2="411.304" class="net_9"/>
<circle cx="31.753999999999998" cy="411.304" r="2" style="fill:#000" class="net_9"/>
<circle cx="114.67200000000001" cy="411.304" r="2" style="fill:#000" class="net_9"/>
<circle cx="31.753999999999998" cy="358.804" r="2" style="fill:#000" class="net_9"/>
<line x1="114.67200000000001" x2="114.67200000000001" y1="411.304" y2="421.304" class="net_9"/>
<line x1="562.6600000000001" x2="579.6600000000001" y1="148.30400000000006" y2="148.30400000000006" class="net_10"/>
<line x1="579.6600000000001" x2="579.6600000000001" y1="148.30400000000006" y2="401.304" class="net_10"/>
<line x1="579.6600000000001" x2="197.59" y1="401.304" y2="401.304" class="net_10"/>
<circle cx="197.59" cy="401.304" r="2" style="fill:#000" class="net_10"/>
<line x1="197.59" x2="197.59" y1="401.304" y2="421.304" class="net_10"/>
<line x1="230.59" x2="197.59" y1="258.804" y2="258.80400000000003" class="net_10"/>
<line x1="197.59" x2="197.59" y1="258.80400000000003" y2="421.304" class="net_10"/>
<line x1="261.59000000000003" x2="298.59000000000003" y1="238.804" y2="238.80400000000003" class="net_14"/>
<line x1="298.59000000000003" x2="298.59000000000003" y1="238.80400000000003" y2="421.304" class="net_14"/>
<line x1="261.59000000000003" x2="381.50800000000004" y1="278.804" y2="278.804" class="net_4"/>
<line x1="381.50800000000004" x2="381.50800000000004" y1="278.804" y2="421.304" class="net_4"/>
<line x1="150.275" x2="150.275" y1="178.304" y2="188.304" class="net_13"/>
<line x1="150.275" x2="391.50800000000004" y1="188.304" y2="188.304" class="net_13"/>
<line x1="391.50800000000004" x2="391.50800000000004" y1="188.304" y2="188.30400000000003" class="net_13"/>
<line x1="391.50800000000004" x2="531.6600000000001" y1="188.30400000000003" y2="188.30400000000006" class="net_13"/>
<line x1="150.275" x2="150.275" y1="178.304" y2="278.804" class="net_13"/>
<line x1="150.275" x2="230.59" y1="278.804" y2="278.804" class="net_13"/>
<line x1="150.275" x2="150.275" y1="178.304" y2="188.304" class="net_13"/>
<line x1="150.275" x2="61.260999999999996" y1="188.304" y2="188.304" class="net_13"/>
<line x1="61.260999999999996" x2="61.260999999999996" y1="188.304" y2="318.804" class="net_13"/>
<line x1="61.260999999999996" x2="230.59" y1="318.804" y2="318.804" class="net_13"/>
<line x1="150.275" x2="150.275" y1="178.304" y2="188.304" class="net_13"/>
<line x1="150.275" x2="51.260999999999996" y1="188.304" y2="188.304" class="net_13"/>
<line x1="51.260999999999996" x2="51.260999999999996" y1="188.304" y2="338.804" class="net_13"/>
<line x1="51.260999999999996" x2="230.59" y1="338.804" y2="338.804" class="net_13"/>
<line x1="61.260999999999996" x2="61.260999999999996" y1="178.304" y2="188.304" class="net_13"/>
<line x1="61.260999999999996" x2="391.50800000000004" y1="188.304" y2="188.304" class="net_13"/>
<line x1="391.50800000000004" x2="391.50800000000004" y1="188.304" y2="188.30400000000003" class="net_13"/>
<circle cx="61.260999999999996" cy="188.304" r="2" style="fill:#000" class="net_13"/>
<line x1="391.50800000000004" x2="531.6600000000001" y1="188.30400000000003" y2="188.30400000000006" class="net_13"/>
<line x1="61.260999999999996" x2="61.260999999999996" y1="178.304" y2="188.304" class="net_13"/>
<line x1="61.260999999999996" x2="150.275" y1="188.304" y2="188.304" class="net_13"/>
<line x1="150.275" x2="150.275" y1="188.304" y2="278.804" class="net_13"/>
<circle cx="150.275" cy="188.304" r="2" style="fill:#000" class="net_13"/>
<line x1="150.275" x2="230.59" y1="278.804" y2="278.804" class="net_13"/>
<line x1="61.260999999999996" x2="61.260999999999996" y1="178.304" y2="318.804" class="net_13"/>
<line x1="61.260999999999996" x2="230.59" y1="318.804" y2="318.804" class="net_13"/>
<line x1="61.260999999999996" x2="61.260999999999996" y1="178.304" y2="188.304" class="net_13"/>
<line x1="61.260999999999996" x2="51.260999999999996" y1="188.304" y2="188.304" class="net_13"/>
<line x1="51.260999999999996" x2="51.260999999999996" y1="188.304" y2="338.804" class="net_13"/>
<line x1="51.260999999999996" x2="230.59" y1="338.804" y2="338.804" class="net_13"/>
<line x1="411.50800000000004" x2="411.50800000000004" y1="85.152" y2="148.92000000000002" class="net_2"/>
<line x1="411.50800000000004" x2="421.50800000000004" y1="148.92000000000002" y2="148.92000000000002" class="net_2"/>
<line x1="411.50800000000004" x2="411.50800000000004" y1="85.152" y2="108.53600000000003" class="net_2"/>
<line x1="411.50800000000004" x2="514.6600000000001" y1="108.53600000000003" y2="108.53600000000003" class="net_2"/>
<line x1="514.6600000000001" x2="514.6600000000001" y1="108.53600000000003" y2="148.30400000000006" class="net_2"/>
<circle cx="411.50800000000004" cy="108.53600000000003" r="2" style="fill:#000" class="net_2"/>
<line x1="514.6600000000001" x2="531.6600000000001" y1="148.30400000000006" y2="148.30400000000006" class="net_2"/>
<line x1="494.66" x2="504.66" y1="148.92000000000002" y2="148.92000000000002" class="net_7"/>
<line x1="504.66" x2="504.66" y1="148.92000000000002" y2="168.30400000000003" class="net_7"/>
<line x1="504.66" x2="531.6600000000001" y1="168.30400000000003" y2="168.30400000000006" class="net_7"/>
<line x1="230.59" x2="160.275" y1="238.804" y2="238.80400000000003" class="net_3"/>
<line x1="160.275" x2="160.275" y1="238.80400000000003" y2="391.304" class="net_3"/>
<line x1="160.275" x2="288.59000000000003" y1="391.304" y2="391.304" class="net_3"/>
<line x1="288.59000000000003" x2="288.59000000000003" y1="391.304" y2="218.80400000000003" class="net_3"/>
<line x1="288.59000000000003" x2="261.59000000000003" y1="218.80400000000003" y2="218.804" class="net_3"/>
<line x1="230.59" x2="207.59" y1="298.804" y2="298.804" class="net_12"/>
<line x1="207.59" x2="207.59" y1="298.804" y2="381.304" class="net_12"/>
<line x1="207.59" x2="278.59000000000003" y1="381.304" y2="381.304" class="net_12"/>
<line x1="278.59000000000003" x2="278.59000000000003" y1="381.304" y2="258.80400000000003" class="net_12"/>
<line x1="278.59000000000003" x2="261.59000000000003" y1="258.80400000000003" y2="258.804" class="net_12"/>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 216 KiB

View file

@ -0,0 +1,269 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:s="https://github.com/nturley/netlistsvg" width="480.201" height="520.108">
<style>svg {
stroke: #000;
fill: none;
stroke-linejoin: round;
stroke-linecap: round;
}
text {
fill: #000;
stroke: none;
font-size: 10px;
font-weight: bold;
font-family: "Courier New", monospace;
}
.skidl_text {
fill: #999;
stroke: none;
font-weight: bold;
font-family: consolas, "Courier New", monospace;
}
.pin_num_text {
fill: #840000;
}
.pin_name_text {
fill: #008484;
}
.net_name_text {
font-style: italic;
fill: #840084;
}
.part_text {
fill: #840000;
}
.part_ref_text {
fill: #008484;
}
.part_name_text {
fill: #008484;
}
.pen_fill {
fill: #840000;
}
.background_fill {
fill: #FFFFC2
}
.nodelabel {
text-anchor: middle;
}
.inputPortLabel {
text-anchor: end;
}
.splitjoinBody {
fill: #000;
}
.symbol {
stroke-linejoin: round;
stroke-linecap: round;
stroke: #840000;
}
.detail {
stroke-linejoin: round;
stroke-linecap: round;
fill: #000;
}</style>
<g s:type="Battery_Cell_1_" s:width="134.112" s:height="73.152" transform="translate(12,91.768)" id="cell_BT1">
<s:alias val="Battery_Cell_1_"/>
<rect x="0.000" y="31.699" width="43.891" height="2.438" style="stroke-width:0.960" class="cell_BT1 symbol outline"/>
<rect x="7.315" y="39.014" width="29.261" height="4.877" style="stroke-width:0.960" class="cell_BT1 symbol outline"/>
<polyline points="21.946,31.699 21.946,24.384" style="stroke-width:0.960" class="cell_BT1 symbol none"/>
<polyline points="21.946,41.453 21.946,48.768" style="stroke-width:0.960" class="cell_BT1 symbol none"/>
<polyline points="29.261,19.507 39.014,19.507" style="stroke-width:2.438" class="cell_BT1 symbol none"/>
<polyline points="34.138,14.630 34.138,24.384" style="stroke-width:2.438" class="cell_BT1 symbol none"/>
<polyline points="21.946,0.000 21.946,24.384" style="stroke-width:0.960" class="cell_BT1 symbol none"/>
<text class="pin_num_text" x="21.946" y="24.384" transform="rotate(-90 21.946 24.384)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="21.946" y="24.384" transform="rotate(-90 21.946 24.384)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">+</text>
<g s:x="21.946" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="21.946,73.152 21.946,48.768" style="stroke-width:0.960" class="cell_BT1 symbol none"/>
<text class="pin_num_text" x="21.946" y="48.768" transform="rotate(-90 21.946 48.768)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="21.946" y="48.768" transform="rotate(-90 21.946 48.768)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">-</text>
<g s:x="21.946" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="46.330" y="24.384" transform="rotate(0 46.330 24.384)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">BT1</text>
<text class="part_name_text" x="46.330" y="48.768" transform="rotate(0 46.330 48.768)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">CR2032</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(33.946,424.956)" id="cell_C1">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C1</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="D_Schottky_1_" s:width="109.728" s:height="56.083" transform="translate(74.453,362.53)" id="cell_D1">
<s:alias val="D_Schottky_1_"/>
<polyline points="18.288,21.946 18.288,15.850 24.384,15.850 24.384,40.234 30.480,40.234 30.480,34.138" style="stroke-width:2.438" class="cell_D1 symbol none"/>
<polyline points="48.768,15.850 48.768,40.234 24.384,28.042 48.768,15.850" style="stroke-width:2.438" class="cell_D1 symbol none"/>
<polyline points="48.768,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<polyline points="0.000,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<text class="pin_num_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="end">1</text>
<text class="pin_name_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">K</text>
<g s:x="0.000" s:y="28.042" s:pid="1" s:position="left"/>
<polyline points="73.152,28.042 48.768,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<text class="pin_num_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="start">2</text>
<text class="pin_name_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">A</text>
<g s:x="73.152" s:y="28.042" s:pid="2" s:position="right"/>
<text class="part_ref_text" x="36.576" y="3.658" transform="rotate(0 36.576 3.658)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">D1</text>
<text class="part_name_text" x="36.576" y="52.426" transform="rotate(0 36.576 52.426)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">BAT54</text>
</g>
<g s:type="D_Schottky_1_" s:width="109.728" s:height="56.083" transform="translate(166.112,14.342)" id="cell_D2">
<s:alias val="D_Schottky_1_"/>
<polyline points="18.288,21.946 18.288,15.850 24.384,15.850 24.384,40.234 30.480,40.234 30.480,34.138" style="stroke-width:2.438" class="cell_D2 symbol none"/>
<polyline points="48.768,15.850 48.768,40.234 24.384,28.042 48.768,15.850" style="stroke-width:2.438" class="cell_D2 symbol none"/>
<polyline points="48.768,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D2 symbol none"/>
<polyline points="0.000,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D2 symbol none"/>
<text class="pin_num_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="end">1</text>
<text class="pin_name_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">K</text>
<g s:x="0.000" s:y="28.042" s:pid="1" s:position="left"/>
<polyline points="73.152,28.042 48.768,28.042" style="stroke-width:0.960" class="cell_D2 symbol none"/>
<text class="pin_num_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="start">2</text>
<text class="pin_name_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">A</text>
<g s:x="73.152" s:y="28.042" s:pid="2" s:position="right"/>
<text class="part_ref_text" x="36.576" y="3.658" transform="rotate(0 36.576 3.658)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">D2</text>
<text class="part_name_text" x="36.576" y="52.426" transform="rotate(0 36.576 52.426)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">BAT54</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(267.345,307.42)" id="cell_R1">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R1 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R1</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">4.7k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(184.42700000000002,282.036)" id="cell_R2">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R2 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R2</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">4.7k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(350.26300000000003,307.42)" id="cell_R3">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R3 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R3</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">10k</text>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(410.18100000000004,174.42000000000002)" id="cell_U7">
<text x="15" y="-4" class="nodelabel cell_U7" s:attribute="ref">RV-8803-C7_1_</text>
<rect width="30" height="100" x="0" y="0" s:generic="body" class="cell_U7"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U7~3">
<text x="-3" y="-4" class="inputPortLabel cell_U7">3</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U7~4">
<text x="-3" y="-4" class="inputPortLabel cell_U7">4</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U7~5">
<text x="-3" y="-4" class="inputPortLabel cell_U7">5</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U7~7">
<text x="-3" y="-4" class="inputPortLabel cell_U7">7</text>
</g>
<g transform="translate(0,90)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U7~8">
<text x="-3" y="-4" class="inputPortLabel cell_U7">8</text>
</g>
<g transform="translate(30,10)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U7~1">
<text x="5" y="-4" class="cell_U7">1</text>
</g>
<g transform="translate(30,30)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U7~6">
<text x="5" y="-4" class="cell_U7">6</text>
</g>
</g>
<line x1="239.264" x2="285.84000000000003" y1="42.384" y2="42.384" class="net_1"/>
<line x1="285.84000000000003" x2="285.84000000000003" y1="42.384" y2="81.768" class="net_1"/>
<line x1="285.84000000000003" x2="33.946" y1="81.768" y2="81.768" class="net_1"/>
<line x1="33.946" x2="33.946" y1="81.768" y2="91.768" class="net_1"/>
<line x1="74.453" x2="64.453" y1="390.572" y2="390.572" class="net_3"/>
<line x1="64.453" x2="64.453" y1="390.572" y2="414.956" class="net_3"/>
<line x1="64.453" x2="53.453" y1="414.956" y2="414.956" class="net_3"/>
<circle cx="53.453" cy="414.956" r="2" style="fill:#000" class="net_3"/>
<line x1="53.453" x2="53.453" y1="414.956" y2="424.956" class="net_3"/>
<line x1="166.112" x2="156.112" y1="42.384" y2="42.384" class="net_3"/>
<line x1="156.112" x2="156.112" y1="42.384" y2="350.188" class="net_3"/>
<line x1="156.112" x2="53.453" y1="350.188" y2="350.188" class="net_3"/>
<circle cx="53.453" cy="350.188" r="2" style="fill:#000" class="net_3"/>
<line x1="53.453" x2="53.453" y1="350.188" y2="424.956" class="net_3"/>
<line x1="410.18100000000004" x2="53.453" y1="184.92000000000002" y2="184.92000000000002" class="net_3"/>
<line x1="53.453" x2="53.453" y1="184.92000000000002" y2="424.956" class="net_3"/>
<line x1="441.18100000000004" x2="458.18100000000004" y1="184.92000000000002" y2="184.92000000000002" class="net_7"/>
<line x1="458.18100000000004" x2="458.18100000000004" y1="184.92000000000002" y2="287.42" class="net_7"/>
<line x1="458.18100000000004" x2="277.09900000000005" y1="287.42" y2="287.42" class="net_7"/>
<line x1="277.09900000000005" x2="277.09900000000005" y1="287.42" y2="307.42" class="net_7"/>
<line x1="410.18100000000004" x2="194.181" y1="264.92" y2="264.92" class="net_6"/>
<line x1="194.181" x2="194.181" y1="264.92" y2="282.036" class="net_6"/>
<line x1="441.18100000000004" x2="468.18100000000004" y1="204.92000000000002" y2="204.92000000000002" class="net_4"/>
<line x1="468.18100000000004" x2="468.18100000000004" y1="204.92000000000002" y2="297.42" class="net_4"/>
<line x1="468.18100000000004" x2="360.01700000000005" y1="297.42" y2="297.42" class="net_4"/>
<line x1="360.01700000000005" x2="360.01700000000005" y1="297.42" y2="307.42" class="net_4"/>
<line x1="33.946" x2="33.946" y1="164.92000000000002" y2="204.92000000000002" class="net_2"/>
<circle cx="33.946" cy="204.92000000000002" r="2" style="fill:#000" class="net_2"/>
<line x1="33.946" x2="410.18100000000004" y1="204.92000000000002" y2="204.92000000000002" class="net_2"/>
<line x1="33.946" x2="33.946" y1="164.92000000000002" y2="174.92000000000002" class="net_2"/>
<line x1="33.946" x2="393.18100000000004" y1="174.92000000000002" y2="174.92000000000002" class="net_2"/>
<line x1="393.18100000000004" x2="393.18100000000004" y1="174.92000000000002" y2="224.92000000000002" class="net_2"/>
<circle cx="33.946" cy="174.92000000000002" r="2" style="fill:#000" class="net_2"/>
<circle cx="393.18100000000004" cy="224.92000000000002" r="2" style="fill:#000" class="net_2"/>
<line x1="393.18100000000004" x2="410.18100000000004" y1="224.92000000000002" y2="224.92000000000002" class="net_2"/>
<line x1="33.946" x2="33.946" y1="164.92000000000002" y2="174.92000000000002" class="net_2"/>
<line x1="33.946" x2="23.946" y1="174.92000000000002" y2="174.92000000000002" class="net_2"/>
<line x1="23.946" x2="23.946" y1="174.92000000000002" y2="244.92000000000002" class="net_2"/>
<circle cx="23.946" cy="244.92000000000002" r="2" style="fill:#000" class="net_2"/>
<line x1="23.946" x2="410.18100000000004" y1="244.92000000000002" y2="244.92000000000002" class="net_2"/>
<line x1="53.453" x2="53.453" y1="498.108" y2="508.108" class="net_2"/>
<line x1="53.453" x2="23.946" y1="508.108" y2="508.108" class="net_2"/>
<line x1="23.946" x2="23.946" y1="508.108" y2="414.956" class="net_2"/>
<line x1="23.946" x2="33.946" y1="414.956" y2="414.956" class="net_2"/>
<line x1="33.946" x2="33.946" y1="414.956" y2="204.92000000000002" class="net_2"/>
<circle cx="23.946" cy="414.956" r="2" style="fill:#000" class="net_2"/>
<circle cx="33.946" cy="204.92000000000002" r="2" style="fill:#000" class="net_2"/>
<line x1="33.946" x2="410.18100000000004" y1="204.92000000000002" y2="204.92000000000002" class="net_2"/>
<line x1="53.453" x2="53.453" y1="498.108" y2="508.108" class="net_2"/>
<line x1="53.453" x2="393.18100000000004" y1="508.108" y2="508.108" class="net_2"/>
<line x1="393.18100000000004" x2="393.18100000000004" y1="508.108" y2="224.92000000000002" class="net_2"/>
<circle cx="393.18100000000004" cy="224.92000000000002" r="2" style="fill:#000" class="net_2"/>
<line x1="393.18100000000004" x2="410.18100000000004" y1="224.92000000000002" y2="224.92000000000002" class="net_2"/>
<line x1="53.453" x2="53.453" y1="498.108" y2="508.108" class="net_2"/>
<line x1="53.453" x2="23.946" y1="508.108" y2="508.108" class="net_2"/>
<line x1="23.946" x2="23.946" y1="508.108" y2="244.92000000000002" class="net_2"/>
<circle cx="53.453" cy="508.108" r="2" style="fill:#000" class="net_2"/>
<circle cx="23.946" cy="244.92000000000002" r="2" style="fill:#000" class="net_2"/>
<line x1="23.946" x2="410.18100000000004" y1="244.92000000000002" y2="244.92000000000002" class="net_2"/>
<line x1="277.09900000000005" x2="277.09900000000005" y1="380.572" y2="390.572" class="net_5"/>
<line x1="277.09900000000005" x2="194.181" y1="390.572" y2="390.572" class="net_5"/>
<line x1="194.181" x2="194.181" y1="390.572" y2="390.572" class="net_5"/>
<circle cx="277.09900000000005" cy="390.572" r="2" style="fill:#000" class="net_5"/>
<circle cx="194.181" cy="390.572" r="2" style="fill:#000" class="net_5"/>
<line x1="194.181" x2="147.60500000000002" y1="390.572" y2="390.572" class="net_5"/>
<line x1="194.181" x2="194.181" y1="355.188" y2="390.572" class="net_5"/>
<line x1="194.181" x2="147.60500000000002" y1="390.572" y2="390.572" class="net_5"/>
<line x1="360.01700000000005" x2="360.01700000000005" y1="380.572" y2="390.572" class="net_5"/>
<line x1="360.01700000000005" x2="194.181" y1="390.572" y2="390.572" class="net_5"/>
<line x1="194.181" x2="194.181" y1="390.572" y2="390.572" class="net_5"/>
<line x1="194.181" x2="147.60500000000002" y1="390.572" y2="390.572" class="net_5"/>
</svg>

After

Width:  |  Height:  |  Size: 22 KiB

View file

@ -0,0 +1,215 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:s="https://github.com/nturley/netlistsvg" width="260.47900000000004" height="391.456">
<style>svg {
stroke: #000;
fill: none;
stroke-linejoin: round;
stroke-linecap: round;
}
text {
fill: #000;
stroke: none;
font-size: 10px;
font-weight: bold;
font-family: "Courier New", monospace;
}
.skidl_text {
fill: #999;
stroke: none;
font-weight: bold;
font-family: consolas, "Courier New", monospace;
}
.pin_num_text {
fill: #840000;
}
.pin_name_text {
fill: #008484;
}
.net_name_text {
font-style: italic;
fill: #840084;
}
.part_text {
fill: #840000;
}
.part_ref_text {
fill: #008484;
}
.part_name_text {
fill: #008484;
}
.pen_fill {
fill: #840000;
}
.background_fill {
fill: #FFFFC2
}
.nodelabel {
text-anchor: middle;
}
.inputPortLabel {
text-anchor: end;
}
.splitjoinBody {
fill: #000;
}
.symbol {
stroke-linejoin: round;
stroke-linecap: round;
stroke: #840000;
}
.detail {
stroke-linejoin: round;
stroke-linecap: round;
fill: #000;
}</style>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(51.547000000000004,105.65200000000003)" id="cell_C1">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C1</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1uF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(22.04,258.8040000000001)" id="cell_C2">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C2</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(173.972,12)" id="cell_C3">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C3 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C3 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C3 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C3 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C3</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1uF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(163.972,286.304)" id="cell_C4">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C4 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C4 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C4 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C4 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C4</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1uF</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(81.054,278.804)" id="cell_R1">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R1 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R1</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(183.72500000000002,90.152)" id="cell_R2">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R2 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R2</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">68k</text>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(210.479,178.304)" id="cell_U12">
<text x="15" y="-4" class="nodelabel cell_U12" s:attribute="ref">PAM8302A_1_</text>
<rect width="30" height="100" x="0" y="0" s:generic="body" class="cell_U12"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U12~1">
<text x="-3" y="-4" class="inputPortLabel cell_U12">1</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U12~3">
<text x="-3" y="-4" class="inputPortLabel cell_U12">3</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U12~4">
<text x="-3" y="-4" class="inputPortLabel cell_U12">4</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U12~6">
<text x="-3" y="-4" class="inputPortLabel cell_U12">6</text>
</g>
<g transform="translate(0,90)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U12~7">
<text x="-3" y="-4" class="inputPortLabel cell_U12">7</text>
</g>
<g transform="translate(30,10)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U12~5">
<text x="5" y="-4" class="cell_U12">5</text>
</g>
<g transform="translate(30,30)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U12~8">
<text x="5" y="-4" class="cell_U12">8</text>
</g>
</g>
<line x1="90.808" x2="90.80800000000002" y1="351.95599999999996" y2="379.456" class="net_8"/>
<line x1="90.80800000000002" x2="12.04" y1="379.456" y2="379.456" class="net_8"/>
<line x1="12.04" x2="12.04" y1="379.456" y2="248.80400000000003" class="net_8"/>
<circle cx="12.04" cy="248.80400000000003" r="2" style="fill:#000" class="net_8"/>
<line x1="12.04" x2="210.479" y1="248.80400000000003" y2="248.804" class="net_8"/>
<line x1="210.479" x2="12.04" y1="248.804" y2="248.80400000000003" class="net_8"/>
<line x1="12.04" x2="12.04" y1="248.80400000000003" y2="95.65200000000003" class="net_8"/>
<line x1="12.04" x2="71.054" y1="95.65200000000003" y2="95.65200000000003" class="net_8"/>
<circle cx="12.04" cy="248.80400000000003" r="2" style="fill:#000" class="net_8"/>
<line x1="71.054" x2="71.054" y1="95.65200000000003" y2="105.65200000000003" class="net_8"/>
<line x1="210.479" x2="12.04" y1="248.804" y2="248.80400000000003" class="net_8"/>
<line x1="12.04" x2="12.04" y1="248.80400000000003" y2="248.80400000000006" class="net_8"/>
<line x1="12.04" x2="41.547" y1="248.80400000000006" y2="248.80400000000006" class="net_8"/>
<circle cx="12.04" cy="248.80400000000006" r="2" style="fill:#000" class="net_8"/>
<circle cx="12.04" cy="248.80400000000003" r="2" style="fill:#000" class="net_8"/>
<line x1="41.547" x2="41.547" y1="248.80400000000006" y2="258.8040000000001" class="net_8"/>
<line x1="210.479" x2="183.479" y1="228.804" y2="228.80400000000003" class="net_7"/>
<line x1="183.479" x2="183.479" y1="228.80400000000003" y2="286.304" class="net_7"/>
<line x1="210.479" x2="90.80800000000002" y1="188.804" y2="188.80400000000003" class="net_5"/>
<line x1="90.80800000000002" x2="90.808" y1="188.80400000000003" y2="278.804" class="net_5"/>
<line x1="193.479" x2="193.479" y1="85.152" y2="90.152" class="net_1"/>
<line x1="71.054" x2="71.054" y1="178.80400000000003" y2="268.804" class="net_9"/>
<circle cx="71.054" cy="268.804" r="2" style="fill:#000" class="net_9"/>
<line x1="71.054" x2="210.479" y1="268.804" y2="268.804" class="net_9"/>
<line x1="41.547" x2="41.547" y1="331.9560000000001" y2="369.456" class="net_9"/>
<line x1="41.547" x2="71.054" y1="369.456" y2="369.456" class="net_9"/>
<line x1="71.054" x2="71.054" y1="369.456" y2="268.804" class="net_9"/>
<circle cx="71.054" cy="369.456" r="2" style="fill:#000" class="net_9"/>
<circle cx="71.054" cy="268.804" r="2" style="fill:#000" class="net_9"/>
<line x1="71.054" x2="210.479" y1="268.804" y2="268.804" class="net_9"/>
<line x1="183.479" x2="183.479" y1="359.45599999999996" y2="369.456" class="net_9"/>
<line x1="183.479" x2="71.054" y1="369.456" y2="369.456" class="net_9"/>
<line x1="71.054" x2="71.054" y1="369.456" y2="268.804" class="net_9"/>
<circle cx="71.054" cy="268.804" r="2" style="fill:#000" class="net_9"/>
<line x1="71.054" x2="210.479" y1="268.804" y2="268.804" class="net_9"/>
<line x1="193.479" x2="193.479" y1="163.304" y2="208.80400000000003" class="net_6"/>
<line x1="193.479" x2="210.479" y1="208.80400000000003" y2="208.804" class="net_6"/>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View file

@ -0,0 +1,379 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:s="https://github.com/nturley/netlistsvg" width="571.4359999999999" height="613.876">
<style>svg {
stroke: #000;
fill: none;
stroke-linejoin: round;
stroke-linecap: round;
}
text {
fill: #000;
stroke: none;
font-size: 10px;
font-weight: bold;
font-family: "Courier New", monospace;
}
.skidl_text {
fill: #999;
stroke: none;
font-weight: bold;
font-family: consolas, "Courier New", monospace;
}
.pin_num_text {
fill: #840000;
}
.pin_name_text {
fill: #008484;
}
.net_name_text {
font-style: italic;
fill: #840084;
}
.part_text {
fill: #840000;
}
.part_ref_text {
fill: #008484;
}
.part_name_text {
fill: #008484;
}
.pen_fill {
fill: #840000;
}
.background_fill {
fill: #FFFFC2
}
.nodelabel {
text-anchor: middle;
}
.inputPortLabel {
text-anchor: end;
}
.splitjoinBody {
fill: #000;
}
.symbol {
stroke-linejoin: round;
stroke-linecap: round;
stroke: #840000;
}
.detail {
stroke-linejoin: round;
stroke-linecap: round;
fill: #000;
}</style>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(464.88899999999995,22)" id="cell_C1">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C1</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">2.2uF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(13.266999999999998,12)" id="cell_C2">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C2</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">2.2uF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(165.43300000000002,293.072)" id="cell_C3">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C3 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C3 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C3 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C3 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C3</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(106.419,293.072)" id="cell_C4">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C4 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C4 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C4 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C4 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C4</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="D_1_" s:width="73.152" s:height="56.083" transform="translate(401.24399999999997,205.64600000000002)" id="cell_D1">
<s:alias val="D_1_"/>
<polyline points="24.384,15.850 24.384,40.234" style="stroke-width:2.438" class="cell_D1 symbol none"/>
<polyline points="48.768,15.850 48.768,40.234 24.384,28.042 48.768,15.850" style="stroke-width:2.438" class="cell_D1 symbol none"/>
<polyline points="48.768,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<polyline points="0.000,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<text class="pin_num_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="end">1</text>
<text class="pin_name_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">K</text>
<g s:x="0.000" s:y="28.042" s:pid="1" s:position="left"/>
<polyline points="73.152,28.042 48.768,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<text class="pin_num_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="start">2</text>
<text class="pin_name_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">A</text>
<g s:x="73.152" s:y="28.042" s:pid="2" s:position="right"/>
<text class="part_ref_text" x="36.576" y="3.658" transform="rotate(0 36.576 3.658)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">D1</text>
<text class="part_name_text" x="36.576" y="52.426" transform="rotate(0 36.576 52.426)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1N4148WS</text>
</g>
<g s:type="D_1_" s:width="73.152" s:height="56.083" transform="translate(298.092,195.64600000000002)" id="cell_D2">
<s:alias val="D_1_"/>
<polyline points="24.384,15.850 24.384,40.234" style="stroke-width:2.438" class="cell_D2 symbol none"/>
<polyline points="48.768,15.850 48.768,40.234 24.384,28.042 48.768,15.850" style="stroke-width:2.438" class="cell_D2 symbol none"/>
<polyline points="48.768,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D2 symbol none"/>
<polyline points="0.000,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D2 symbol none"/>
<text class="pin_num_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="end">1</text>
<text class="pin_name_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">K</text>
<g s:x="0.000" s:y="28.042" s:pid="1" s:position="left"/>
<polyline points="73.152,28.042 48.768,28.042" style="stroke-width:0.960" class="cell_D2 symbol none"/>
<text class="pin_num_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="start">2</text>
<text class="pin_name_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">A</text>
<g s:x="73.152" s:y="28.042" s:pid="2" s:position="right"/>
<text class="part_ref_text" x="36.576" y="3.658" transform="rotate(0 36.576 3.658)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">D2</text>
<text class="part_name_text" x="36.576" y="52.426" transform="rotate(0 36.576 52.426)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1N4148WS</text>
</g>
<g s:type="D_1_" s:width="73.152" s:height="56.083" transform="translate(194.94000000000003,185.64600000000002)" id="cell_D3">
<s:alias val="D_1_"/>
<polyline points="24.384,15.850 24.384,40.234" style="stroke-width:2.438" class="cell_D3 symbol none"/>
<polyline points="48.768,15.850 48.768,40.234 24.384,28.042 48.768,15.850" style="stroke-width:2.438" class="cell_D3 symbol none"/>
<polyline points="48.768,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D3 symbol none"/>
<polyline points="0.000,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D3 symbol none"/>
<text class="pin_num_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="end">1</text>
<text class="pin_name_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">K</text>
<g s:x="0.000" s:y="28.042" s:pid="1" s:position="left"/>
<polyline points="73.152,28.042 48.768,28.042" style="stroke-width:0.960" class="cell_D3 symbol none"/>
<text class="pin_num_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="start">2</text>
<text class="pin_name_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">A</text>
<g s:x="73.152" s:y="28.042" s:pid="2" s:position="right"/>
<text class="part_ref_text" x="36.576" y="3.658" transform="rotate(0 36.576 3.658)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">D3</text>
<text class="part_name_text" x="36.576" y="52.426" transform="rotate(0 36.576 52.426)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1N4148WS</text>
</g>
<g s:type="D_1_" s:width="73.152" s:height="56.083" transform="translate(42.774,185.64600000000002)" id="cell_D4">
<s:alias val="D_1_"/>
<polyline points="24.384,15.850 24.384,40.234" style="stroke-width:2.438" class="cell_D4 symbol none"/>
<polyline points="48.768,15.850 48.768,40.234 24.384,28.042 48.768,15.850" style="stroke-width:2.438" class="cell_D4 symbol none"/>
<polyline points="48.768,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D4 symbol none"/>
<polyline points="0.000,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D4 symbol none"/>
<text class="pin_num_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="end">1</text>
<text class="pin_name_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">K</text>
<g s:x="0.000" s:y="28.042" s:pid="1" s:position="left"/>
<polyline points="73.152,28.042 48.768,28.042" style="stroke-width:0.960" class="cell_D4 symbol none"/>
<text class="pin_num_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="start">2</text>
<text class="pin_name_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">A</text>
<g s:x="73.152" s:y="28.042" s:pid="2" s:position="right"/>
<text class="part_ref_text" x="36.576" y="3.658" transform="rotate(0 36.576 3.658)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">D4</text>
<text class="part_name_text" x="36.576" y="52.426" transform="rotate(0 36.576 52.426)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1N4148WS</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(474.64199999999994,100.152)" id="cell_R1">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R1 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R1</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(474.64199999999994,518.7239999999999)" id="cell_R2">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R2 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R2</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1Meg</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(23.02,90.152)" id="cell_R3">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R3 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R3</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(23.02,293.072)" id="cell_R4">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R4 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R4 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R4 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R4</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1Meg</text>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(501.39599999999996,365.724)" id="cell_U1">
<text x="15" y="-4" class="nodelabel cell_U1" s:attribute="ref">THAT1240_1_</text>
<rect width="30" height="120" x="0" y="0" s:generic="body" class="cell_U1"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U1~1">
<text x="-3" y="-4" class="inputPortLabel cell_U1">1</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U1~2">
<text x="-3" y="-4" class="inputPortLabel cell_U1">2</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U1~3">
<text x="-3" y="-4" class="inputPortLabel cell_U1">3</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U1~4">
<text x="-3" y="-4" class="inputPortLabel cell_U1">4</text>
</g>
<g transform="translate(0,90)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U1~5">
<text x="-3" y="-4" class="inputPortLabel cell_U1">5</text>
</g>
<g transform="translate(0,110)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U1~7">
<text x="-3" y="-4" class="inputPortLabel cell_U1">7</text>
</g>
<g transform="translate(30,10)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U1~6">
<text x="5" y="-4" class="cell_U1">6</text>
</g>
</g>
<line x1="401.24399999999997" x2="391.24399999999997" y1="233.68800000000002" y2="233.68800000000002" class="net_6"/>
<line x1="391.24399999999997" x2="391.24399999999997" y1="233.68800000000002" y2="283.072" class="net_6"/>
<line x1="391.24399999999997" x2="184.94000000000003" y1="283.072" y2="283.072" class="net_6"/>
<line x1="184.94000000000003" x2="184.94000000000003" y1="283.072" y2="293.072" class="net_6"/>
<line x1="194.94000000000003" x2="184.94000000000003" y1="213.68800000000002" y2="213.68800000000002" class="net_6"/>
<line x1="184.94000000000003" x2="184.94000000000003" y1="213.68800000000002" y2="293.072" class="net_6"/>
<line x1="501.39599999999996" x2="214.44700000000003" y1="476.224" y2="476.224" class="net_6"/>
<line x1="214.44700000000003" x2="214.44700000000003" y1="476.224" y2="283.072" class="net_6"/>
<line x1="214.44700000000003" x2="184.94000000000003" y1="283.072" y2="283.072" class="net_6"/>
<circle cx="184.94000000000003" cy="283.072" r="2" style="fill:#000" class="net_6"/>
<circle cx="214.44700000000003" cy="283.072" r="2" style="fill:#000" class="net_6"/>
<line x1="184.94000000000003" x2="184.94000000000003" y1="283.072" y2="293.072" class="net_6"/>
<line x1="371.24399999999997" x2="381.24399999999997" y1="223.68800000000002" y2="223.68800000000002" class="net_5"/>
<line x1="381.24399999999997" x2="381.24399999999997" y1="223.68800000000002" y2="263.072" class="net_5"/>
<line x1="381.24399999999997" x2="125.926" y1="263.072" y2="263.072" class="net_5"/>
<line x1="125.926" x2="125.926" y1="263.072" y2="293.072" class="net_5"/>
<line x1="115.926" x2="125.926" y1="213.68800000000002" y2="213.68800000000002" class="net_5"/>
<line x1="125.926" x2="125.926" y1="213.68800000000002" y2="293.072" class="net_5"/>
<line x1="501.39599999999996" x2="155.43300000000002" y1="436.224" y2="436.224" class="net_5"/>
<line x1="155.43300000000002" x2="155.43300000000002" y1="436.224" y2="263.072" class="net_5"/>
<line x1="155.43300000000002" x2="125.926" y1="263.072" y2="263.072" class="net_5"/>
<circle cx="125.926" cy="263.072" r="2" style="fill:#000" class="net_5"/>
<circle cx="155.43300000000002" cy="263.072" r="2" style="fill:#000" class="net_5"/>
<line x1="125.926" x2="125.926" y1="263.072" y2="293.072" class="net_5"/>
<line x1="484.39599999999996" x2="484.39599999999996" y1="95.152" y2="100.152" class="net_7"/>
<line x1="484.39599999999996" x2="484.39599999999996" y1="173.304" y2="183.304" class="net_8"/>
<line x1="484.39599999999996" x2="559.396" y1="183.304" y2="183.304" class="net_8"/>
<line x1="559.396" x2="559.396" y1="183.304" y2="233.68800000000002" class="net_8"/>
<circle cx="484.39599999999996" cy="183.304" r="2" style="fill:#000" class="net_8"/>
<circle cx="559.396" cy="233.68800000000002" r="2" style="fill:#000" class="net_8"/>
<line x1="559.396" x2="474.39599999999996" y1="233.68800000000002" y2="233.68800000000002" class="net_8"/>
<line x1="484.39599999999996" x2="484.39599999999996" y1="173.304" y2="183.304" class="net_8"/>
<line x1="484.39599999999996" x2="288.092" y1="183.304" y2="183.304" class="net_8"/>
<line x1="288.092" x2="288.092" y1="183.304" y2="223.68800000000002" class="net_8"/>
<circle cx="288.092" cy="223.68800000000002" r="2" style="fill:#000" class="net_8"/>
<line x1="288.092" x2="298.092" y1="223.68800000000002" y2="223.68800000000002" class="net_8"/>
<line x1="484.39599999999996" x2="484.39599999999996" y1="173.304" y2="416.224" class="net_8"/>
<circle cx="484.39599999999996" cy="416.224" r="2" style="fill:#000" class="net_8"/>
<line x1="484.39599999999996" x2="501.39599999999996" y1="416.224" y2="416.224" class="net_8"/>
<line x1="474.39599999999996" x2="559.396" y1="233.68800000000002" y2="233.68800000000002" class="net_8"/>
<line x1="559.396" x2="559.396" y1="233.68800000000002" y2="508.724" class="net_8"/>
<line x1="559.396" x2="484.39599999999996" y1="508.724" y2="508.724" class="net_8"/>
<circle cx="559.396" cy="233.68800000000002" r="2" style="fill:#000" class="net_8"/>
<line x1="484.39599999999996" x2="484.39599999999996" y1="508.724" y2="518.7239999999999" class="net_8"/>
<line x1="298.092" x2="288.092" y1="223.68800000000002" y2="223.68800000000002" class="net_8"/>
<line x1="288.092" x2="288.092" y1="223.68800000000002" y2="273.072" class="net_8"/>
<line x1="288.092" x2="559.396" y1="273.072" y2="273.072" class="net_8"/>
<line x1="559.396" x2="559.396" y1="273.072" y2="508.724" class="net_8"/>
<line x1="559.396" x2="484.39599999999996" y1="508.724" y2="508.724" class="net_8"/>
<circle cx="559.396" cy="273.072" r="2" style="fill:#000" class="net_8"/>
<circle cx="484.39599999999996" cy="508.724" r="2" style="fill:#000" class="net_8"/>
<circle cx="288.092" cy="223.68800000000002" r="2" style="fill:#000" class="net_8"/>
<line x1="484.39599999999996" x2="484.39599999999996" y1="508.724" y2="518.7239999999999" class="net_8"/>
<line x1="501.39599999999996" x2="484.39599999999996" y1="416.224" y2="416.224" class="net_8"/>
<circle cx="484.39599999999996" cy="416.224" r="2" style="fill:#000" class="net_8"/>
<line x1="484.39599999999996" x2="484.39599999999996" y1="416.224" y2="518.7239999999999" class="net_8"/>
<line x1="32.774" x2="32.774" y1="85.152" y2="90.152" class="net_10"/>
<line x1="32.774" x2="32.774" y1="163.304" y2="173.304" class="net_4"/>
<line x1="32.774" x2="278.092" y1="173.304" y2="173.304" class="net_4"/>
<line x1="278.092" x2="278.092" y1="173.304" y2="213.68800000000002" class="net_4"/>
<circle cx="32.774" cy="173.304" r="2" style="fill:#000" class="net_4"/>
<circle cx="278.092" cy="213.68800000000002" r="2" style="fill:#000" class="net_4"/>
<line x1="278.092" x2="268.09200000000004" y1="213.68800000000002" y2="213.68800000000002" class="net_4"/>
<line x1="32.774" x2="32.774" y1="163.304" y2="213.68800000000002" class="net_4"/>
<circle cx="32.774" cy="213.68800000000002" r="2" style="fill:#000" class="net_4"/>
<line x1="32.774" x2="42.774" y1="213.68800000000002" y2="213.68800000000002" class="net_4"/>
<line x1="32.774" x2="32.774" y1="163.304" y2="173.304" class="net_4"/>
<line x1="32.774" x2="12.02" y1="173.304" y2="173.304" class="net_4"/>
<line x1="12.02" x2="12.02" y1="173.304" y2="396.224" class="net_4"/>
<line x1="12.02" x2="501.39599999999996" y1="396.224" y2="396.224" class="net_4"/>
<line x1="268.09200000000004" x2="278.092" y1="213.68800000000002" y2="213.68800000000002" class="net_4"/>
<line x1="278.092" x2="278.092" y1="213.68800000000002" y2="253.072" class="net_4"/>
<line x1="278.092" x2="32.774" y1="253.072" y2="253.072" class="net_4"/>
<circle cx="278.092" cy="213.68800000000002" r="2" style="fill:#000" class="net_4"/>
<line x1="32.774" x2="32.774" y1="253.072" y2="293.072" class="net_4"/>
<line x1="42.774" x2="32.774" y1="213.68800000000002" y2="213.68800000000002" class="net_4"/>
<circle cx="32.774" cy="213.68800000000002" r="2" style="fill:#000" class="net_4"/>
<line x1="32.774" x2="32.774" y1="213.68800000000002" y2="293.072" class="net_4"/>
<line x1="501.39599999999996" x2="12.02" y1="396.224" y2="396.224" class="net_4"/>
<line x1="12.02" x2="12.02" y1="396.224" y2="253.072" class="net_4"/>
<line x1="12.02" x2="32.774" y1="253.072" y2="253.072" class="net_4"/>
<circle cx="32.774" cy="253.072" r="2" style="fill:#000" class="net_4"/>
<circle cx="12.02" cy="253.072" r="2" style="fill:#000" class="net_4"/>
<line x1="32.774" x2="32.774" y1="253.072" y2="293.072" class="net_4"/>
<line x1="184.94000000000003" x2="184.94000000000003" y1="366.224" y2="376.224" class="net_3"/>
<line x1="184.94000000000003" x2="32.774" y1="376.224" y2="376.224" class="net_3"/>
<line x1="32.774" x2="32.774" y1="376.224" y2="376.224" class="net_3"/>
<circle cx="32.774" cy="376.224" r="2" style="fill:#000" class="net_3"/>
<circle cx="32.774" cy="376.224" r="2" style="fill:#000" class="net_3"/>
<line x1="32.774" x2="501.39599999999996" y1="376.224" y2="376.224" class="net_3"/>
<line x1="125.926" x2="125.926" y1="366.224" y2="376.224" class="net_3"/>
<line x1="125.926" x2="32.774" y1="376.224" y2="376.224" class="net_3"/>
<line x1="32.774" x2="32.774" y1="376.224" y2="376.224" class="net_3"/>
<circle cx="125.926" cy="376.224" r="2" style="fill:#000" class="net_3"/>
<circle cx="32.774" cy="376.224" r="2" style="fill:#000" class="net_3"/>
<line x1="32.774" x2="501.39599999999996" y1="376.224" y2="376.224" class="net_3"/>
<line x1="484.39599999999996" x2="484.39599999999996" y1="591.876" y2="601.876" class="net_3"/>
<line x1="484.39599999999996" x2="32.774" y1="601.876" y2="601.876" class="net_3"/>
<line x1="32.774" x2="32.774" y1="601.876" y2="376.224" class="net_3"/>
<circle cx="32.774" cy="376.224" r="2" style="fill:#000" class="net_3"/>
<line x1="32.774" x2="501.39599999999996" y1="376.224" y2="376.224" class="net_3"/>
<line x1="32.774" x2="32.774" y1="366.224" y2="376.224" class="net_3"/>
<circle cx="32.774" cy="376.224" r="2" style="fill:#000" class="net_3"/>
<line x1="32.774" x2="501.39599999999996" y1="376.224" y2="376.224" class="net_3"/>
<line x1="501.39599999999996" x2="165.43300000000002" y1="456.224" y2="456.224" class="net_2"/>
<line x1="165.43300000000002" x2="165.43300000000002" y1="456.224" y2="498.724" class="net_2"/>
<line x1="165.43300000000002" x2="549.396" y1="498.724" y2="498.724" class="net_2"/>
<line x1="549.396" x2="549.396" y1="498.724" y2="376.224" class="net_2"/>
<line x1="549.396" x2="532.396" y1="376.224" y2="376.224" class="net_2"/>
</svg>

After

Width:  |  Height:  |  Size: 33 KiB

View file

@ -0,0 +1,301 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:s="https://github.com/nturley/netlistsvg" width="549.681" height="531.304">
<style>svg {
stroke: #000;
fill: none;
stroke-linejoin: round;
stroke-linecap: round;
}
text {
fill: #000;
stroke: none;
font-size: 10px;
font-weight: bold;
font-family: "Courier New", monospace;
}
.skidl_text {
fill: #999;
stroke: none;
font-weight: bold;
font-family: consolas, "Courier New", monospace;
}
.pin_num_text {
fill: #840000;
}
.pin_name_text {
fill: #008484;
}
.net_name_text {
font-style: italic;
fill: #840084;
}
.part_text {
fill: #840000;
}
.part_ref_text {
fill: #008484;
}
.part_name_text {
fill: #008484;
}
.pen_fill {
fill: #840000;
}
.background_fill {
fill: #FFFFC2
}
.nodelabel {
text-anchor: middle;
}
.inputPortLabel {
text-anchor: end;
}
.splitjoinBody {
fill: #000;
}
.symbol {
stroke-linejoin: round;
stroke-linecap: round;
stroke: #840000;
}
.detail {
stroke-linejoin: round;
stroke-linecap: round;
fill: #000;
}</style>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(246.85000000000002,190)" id="cell_C1">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C1</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(147.836,416.152)" id="cell_C2">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C2</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(236.85000000000002,426.152)" id="cell_C3">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C3 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C3 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C3 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C3 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C3</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="D_1_" s:width="73.152" s:height="56.083" transform="translate(351.357,328.726)" id="cell_D1">
<s:alias val="D_1_"/>
<polyline points="24.384,15.850 24.384,40.234" style="stroke-width:2.438" class="cell_D1 symbol none"/>
<polyline points="48.768,15.850 48.768,40.234 24.384,28.042 48.768,15.850" style="stroke-width:2.438" class="cell_D1 symbol none"/>
<polyline points="48.768,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<polyline points="0.000,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<text class="pin_num_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="end">1</text>
<text class="pin_name_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">K</text>
<g s:x="0.000" s:y="28.042" s:pid="1" s:position="left"/>
<polyline points="73.152,28.042 48.768,28.042" style="stroke-width:0.960" class="cell_D1 symbol none"/>
<text class="pin_num_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="start">2</text>
<text class="pin_name_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">A</text>
<g s:x="73.152" s:y="28.042" s:pid="2" s:position="right"/>
<text class="part_ref_text" x="36.576" y="3.658" transform="rotate(0 36.576 3.658)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">D1</text>
<text class="part_name_text" x="36.576" y="52.426" transform="rotate(0 36.576 52.426)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1N4148WS</text>
</g>
<g s:type="D_1_" s:width="73.152" s:height="56.083" transform="translate(454.509,348.726)" id="cell_D2">
<s:alias val="D_1_"/>
<polyline points="24.384,15.850 24.384,40.234" style="stroke-width:2.438" class="cell_D2 symbol none"/>
<polyline points="48.768,15.850 48.768,40.234 24.384,28.042 48.768,15.850" style="stroke-width:2.438" class="cell_D2 symbol none"/>
<polyline points="48.768,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D2 symbol none"/>
<polyline points="0.000,28.042 24.384,28.042" style="stroke-width:0.960" class="cell_D2 symbol none"/>
<text class="pin_num_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="end">1</text>
<text class="pin_name_text" x="24.384" y="28.042" transform="rotate(0 24.384 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">K</text>
<g s:x="0.000" s:y="28.042" s:pid="1" s:position="left"/>
<polyline points="73.152,28.042 48.768,28.042" style="stroke-width:0.960" class="cell_D2 symbol none"/>
<text class="pin_num_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="" text-anchor="start">2</text>
<text class="pin_name_text" x="48.768" y="28.042" transform="rotate(0 48.768 28.042)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">A</text>
<g s:x="73.152" s:y="28.042" s:pid="2" s:position="right"/>
<text class="part_ref_text" x="36.576" y="3.658" transform="rotate(0 36.576 3.658)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">D2</text>
<text class="part_name_text" x="36.576" y="52.426" transform="rotate(0 36.576 52.426)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1N4148WS</text>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(289.357,22)" id="cell_K1">
<text x="15" y="-4" class="nodelabel cell_K1" s:attribute="ref">TQ2SA-5V_1_</text>
<rect width="30" height="160" x="0" y="0" s:generic="body" class="cell_K1"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K1~1">
<text x="-3" y="-4" class="inputPortLabel cell_K1">1</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K1~2">
<text x="-3" y="-4" class="inputPortLabel cell_K1">2</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K1~3">
<text x="-3" y="-4" class="inputPortLabel cell_K1">3</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K1~4">
<text x="-3" y="-4" class="inputPortLabel cell_K1">4</text>
</g>
<g transform="translate(0,90)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K1~7">
<text x="-3" y="-4" class="inputPortLabel cell_K1">7</text>
</g>
<g transform="translate(0,110)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K1~8">
<text x="-3" y="-4" class="inputPortLabel cell_K1">8</text>
</g>
<g transform="translate(0,130)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K1~9">
<text x="-3" y="-4" class="inputPortLabel cell_K1">9</text>
</g>
<g transform="translate(0,150)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K1~10">
<text x="-3" y="-4" class="inputPortLabel cell_K1">10</text>
</g>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(424.755,426.152)" id="cell_R1">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R1 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R1</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1Meg</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(12,396.152)" id="cell_R2">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R2 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R2</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">3k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(64.918,426.152)" id="cell_R3">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R3 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R3</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1k</text>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(283.357,293.152)" id="cell_U2">
<text x="15" y="-4" class="nodelabel cell_U2" s:attribute="ref">OPA1641_1_</text>
<rect width="30" height="80" x="0" y="0" s:generic="body" class="cell_U2"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U2~2">
<text x="-3" y="-4" class="inputPortLabel cell_U2">2</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U2~3">
<text x="-3" y="-4" class="inputPortLabel cell_U2">3</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U2~4">
<text x="-3" y="-4" class="inputPortLabel cell_U2">4</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U2~7">
<text x="-3" y="-4" class="inputPortLabel cell_U2">7</text>
</g>
<g transform="translate(30,10)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U2~6">
<text x="5" y="-4" class="cell_U2">6</text>
</g>
</g>
<line x1="289.357" x2="266.357" y1="52.5" y2="52.5" class="net_3"/>
<line x1="266.357" x2="266.357" y1="52.5" y2="190" class="net_3"/>
<line x1="351.357" x2="341.357" y1="356.76800000000003" y2="356.76800000000003" class="net_1"/>
<line x1="341.357" x2="341.357" y1="356.76800000000003" y2="406.152" class="net_1"/>
<line x1="341.357" x2="167.34300000000002" y1="406.152" y2="406.152" class="net_1"/>
<circle cx="167.34300000000002" cy="406.152" r="2" style="fill:#000" class="net_1"/>
<line x1="167.34300000000002" x2="167.34300000000002" y1="406.152" y2="416.152" class="net_1"/>
<line x1="283.357" x2="167.34300000000002" y1="363.652" y2="363.652" class="net_1"/>
<line x1="167.34300000000002" x2="167.34300000000002" y1="363.652" y2="416.152" class="net_1"/>
<line x1="527.6610000000001" x2="537.6610000000001" y1="376.76800000000003" y2="376.76800000000003" class="net_2"/>
<line x1="537.6610000000001" x2="537.6610000000001" y1="376.76800000000003" y2="416.152" class="net_2"/>
<line x1="537.6610000000001" x2="256.357" y1="416.152" y2="416.152" class="net_2"/>
<circle cx="256.357" cy="416.152" r="2" style="fill:#000" class="net_2"/>
<line x1="256.357" x2="256.357" y1="416.152" y2="426.152" class="net_2"/>
<line x1="283.357" x2="256.357" y1="343.652" y2="343.652" class="net_2"/>
<line x1="256.357" x2="256.357" y1="343.652" y2="426.152" class="net_2"/>
<line x1="266.357" x2="266.357" y1="263.152" y2="273.152" class="net_13"/>
<line x1="266.357" x2="434.509" y1="273.152" y2="273.152" class="net_13"/>
<line x1="434.509" x2="434.509" y1="273.152" y2="356.76800000000003" class="net_13"/>
<circle cx="266.357" cy="273.152" r="2" style="fill:#000" class="net_13"/>
<circle cx="434.509" cy="273.152" r="2" style="fill:#000" class="net_13"/>
<circle cx="434.509" cy="356.76800000000003" r="2" style="fill:#000" class="net_13"/>
<line x1="434.509" x2="424.509" y1="356.76800000000003" y2="356.76800000000003" class="net_13"/>
<line x1="266.357" x2="266.357" y1="263.152" y2="273.152" class="net_13"/>
<line x1="266.357" x2="444.509" y1="273.152" y2="273.152" class="net_13"/>
<line x1="444.509" x2="444.509" y1="273.152" y2="376.76800000000003" class="net_13"/>
<circle cx="444.509" cy="376.76800000000003" r="2" style="fill:#000" class="net_13"/>
<line x1="444.509" x2="454.509" y1="376.76800000000003" y2="376.76800000000003" class="net_13"/>
<line x1="266.357" x2="266.357" y1="263.152" y2="323.652" class="net_13"/>
<circle cx="266.357" cy="323.652" r="2" style="fill:#000" class="net_13"/>
<line x1="266.357" x2="283.357" y1="323.652" y2="323.652" class="net_13"/>
<line x1="424.509" x2="434.509" y1="356.76800000000003" y2="356.76800000000003" class="net_13"/>
<circle cx="434.509" cy="356.76800000000003" r="2" style="fill:#000" class="net_13"/>
<line x1="434.509" x2="434.509" y1="356.76800000000003" y2="426.152" class="net_13"/>
<line x1="454.509" x2="444.509" y1="376.76800000000003" y2="376.76800000000003" class="net_13"/>
<line x1="444.509" x2="444.509" y1="376.76800000000003" y2="396.152" class="net_13"/>
<line x1="444.509" x2="434.509" y1="396.152" y2="396.152" class="net_13"/>
<circle cx="444.509" cy="376.76800000000003" r="2" style="fill:#000" class="net_13"/>
<line x1="434.509" x2="434.509" y1="396.152" y2="426.152" class="net_13"/>
<line x1="283.357" x2="266.357" y1="323.652" y2="323.652" class="net_13"/>
<line x1="266.357" x2="266.357" y1="323.652" y2="396.152" class="net_13"/>
<line x1="266.357" x2="434.509" y1="396.152" y2="396.152" class="net_13"/>
<circle cx="434.509" cy="396.152" r="2" style="fill:#000" class="net_13"/>
<circle cx="266.357" cy="323.652" r="2" style="fill:#000" class="net_13"/>
<line x1="434.509" x2="434.509" y1="396.152" y2="426.152" class="net_13"/>
<line x1="289.357" x2="21.753999999999998" y1="152.5" y2="152.5" class="net_4"/>
<line x1="21.753999999999998" x2="21.753999999999998" y1="152.5" y2="396.152" class="net_4"/>
<line x1="314.357" x2="331.357" y1="303.652" y2="303.652" class="net_4"/>
<line x1="331.357" x2="331.357" y1="303.652" y2="386.152" class="net_4"/>
<line x1="331.357" x2="21.753999999999998" y1="386.152" y2="386.152" class="net_4"/>
<circle cx="21.753999999999998" cy="386.152" r="2" style="fill:#000" class="net_4"/>
<line x1="21.753999999999998" x2="21.753999999999998" y1="386.152" y2="396.152" class="net_4"/>
<line x1="21.753999999999998" x2="21.753999999999998" y1="469.304" y2="519.304" class="net_9"/>
<line x1="21.753999999999998" x2="54.918" y1="519.304" y2="519.304" class="net_9"/>
<line x1="54.918" x2="54.918" y1="519.304" y2="303.652" class="net_9"/>
<line x1="54.918" x2="283.357" y1="303.652" y2="303.652" class="net_9"/>
<line x1="283.357" x2="54.918" y1="303.652" y2="303.652" class="net_9"/>
<line x1="54.918" x2="54.918" y1="303.652" y2="416.152" class="net_9"/>
<line x1="54.918" x2="74.672" y1="416.152" y2="416.152" class="net_9"/>
<circle cx="54.918" cy="416.152" r="2" style="fill:#000" class="net_9"/>
<line x1="74.672" x2="74.672" y1="416.152" y2="426.152" class="net_9"/>
<line x1="167.34300000000002" x2="167.34300000000002" y1="489.304" y2="509.304" class="net_6"/>
<line x1="256.357" x2="256.357" y1="499.304" y2="509.304" class="net_6"/>
<circle cx="256.357" cy="509.304" r="2" style="fill:#000" class="net_6"/>
<line x1="256.357" x2="167.34300000000002" y1="509.304" y2="509.304" class="net_6"/>
<line x1="434.509" x2="434.509" y1="499.304" y2="509.304" class="net_6"/>
<line x1="434.509" x2="167.34300000000002" y1="509.304" y2="509.304" class="net_6"/>
<line x1="74.672" x2="74.672" y1="499.304" y2="509.304" class="net_6"/>
<circle cx="167.34300000000002" cy="509.304" r="2" style="fill:#000" class="net_6"/>
<line x1="74.672" x2="167.34300000000002" y1="509.304" y2="509.304" class="net_6"/>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View file

@ -0,0 +1,821 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:s="https://github.com/nturley/netlistsvg" width="1207.571" height="680.304">
<style>svg {
stroke: #000;
fill: none;
stroke-linejoin: round;
stroke-linecap: round;
}
text {
fill: #000;
stroke: none;
font-size: 10px;
font-weight: bold;
font-family: "Courier New", monospace;
}
.skidl_text {
fill: #999;
stroke: none;
font-weight: bold;
font-family: consolas, "Courier New", monospace;
}
.pin_num_text {
fill: #840000;
}
.pin_name_text {
fill: #008484;
}
.net_name_text {
font-style: italic;
fill: #840084;
}
.part_text {
fill: #840000;
}
.part_ref_text {
fill: #008484;
}
.part_name_text {
fill: #008484;
}
.pen_fill {
fill: #840000;
}
.background_fill {
fill: #FFFFC2
}
.nodelabel {
text-anchor: middle;
}
.inputPortLabel {
text-anchor: end;
}
.splitjoinBody {
fill: #000;
}
.symbol {
stroke-linejoin: round;
stroke-linecap: round;
stroke: #840000;
}
.detail {
stroke-linejoin: round;
stroke-linecap: round;
fill: #000;
}</style>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(235.95199999999977,82)" id="cell_C1">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C1</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(413.9799999999998,82)" id="cell_C10">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C10 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C10 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C10 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C10 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C10</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(502.9939999999998,82)" id="cell_C11">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C11 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C11 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C11 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C11 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C11</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(324.9659999999998,82)" id="cell_C2">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C2</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(829.0499999999998,82)" id="cell_C3">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C3 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C3 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C3 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C3 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C3</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(146.93799999999976,82)" id="cell_C4">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C4 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C4 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C4 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C4 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C4</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">10uF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(921.4749999999999,512.652)" id="cell_C5">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C5 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C5 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C5 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C5 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C5</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">2.2uF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(681.0219999999998,82)" id="cell_C6">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C6 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C6 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C6 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C6 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C6</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">2.2uF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(592.0079999999998,82)" id="cell_C7">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C7 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C7 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C7 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C7 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C7</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1uF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(1152.8999999999999,432.152)" id="cell_C8">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C8 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C8 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C8 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C8 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C8</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">2.2nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(770.0359999999998,82)" id="cell_C9">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C9 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C9 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C9 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C9 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C9</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1nF</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(888.0639999999999,92)" id="cell_R1">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R1 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R1</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">10k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(64.01999999999998,82)" id="cell_R2">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R2 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R2</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">2.2k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(1162.6529999999998,339)" id="cell_R3">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R3 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R3</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1.5k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(1069.982,432.152)" id="cell_R4">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R4 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R4 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R4 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R4</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">1.5k</text>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(973.9819999999999,164.652)" id="cell_U3">
<text x="15" y="-4" class="nodelabel cell_U3" s:attribute="ref">PCM5102A_1_</text>
<rect width="30" height="340" x="0" y="0" s:generic="body" class="cell_U3"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~1">
<text x="-3" y="-4" class="inputPortLabel cell_U3">1</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~2">
<text x="-3" y="-4" class="inputPortLabel cell_U3">2</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~3">
<text x="-3" y="-4" class="inputPortLabel cell_U3">3</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~4">
<text x="-3" y="-4" class="inputPortLabel cell_U3">4</text>
</g>
<g transform="translate(0,90)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~5">
<text x="-3" y="-4" class="inputPortLabel cell_U3">5</text>
</g>
<g transform="translate(0,110)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~8">
<text x="-3" y="-4" class="inputPortLabel cell_U3">8</text>
</g>
<g transform="translate(0,130)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~9">
<text x="-3" y="-4" class="inputPortLabel cell_U3">9</text>
</g>
<g transform="translate(0,150)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~10">
<text x="-3" y="-4" class="inputPortLabel cell_U3">10</text>
</g>
<g transform="translate(0,170)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~11">
<text x="-3" y="-4" class="inputPortLabel cell_U3">11</text>
</g>
<g transform="translate(0,190)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~12">
<text x="-3" y="-4" class="inputPortLabel cell_U3">12</text>
</g>
<g transform="translate(0,210)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~13">
<text x="-3" y="-4" class="inputPortLabel cell_U3">13</text>
</g>
<g transform="translate(0,230)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~14">
<text x="-3" y="-4" class="inputPortLabel cell_U3">14</text>
</g>
<g transform="translate(0,250)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~15">
<text x="-3" y="-4" class="inputPortLabel cell_U3">15</text>
</g>
<g transform="translate(0,270)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~16">
<text x="-3" y="-4" class="inputPortLabel cell_U3">16</text>
</g>
<g transform="translate(0,290)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~17">
<text x="-3" y="-4" class="inputPortLabel cell_U3">17</text>
</g>
<g transform="translate(0,310)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~19">
<text x="-3" y="-4" class="inputPortLabel cell_U3">19</text>
</g>
<g transform="translate(0,330)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U3~20">
<text x="-3" y="-4" class="inputPortLabel cell_U3">20</text>
</g>
<g transform="translate(30,10)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U3~6">
<text x="5" y="-4" class="cell_U3">6</text>
</g>
<g transform="translate(30,30)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U3~7">
<text x="5" y="-4" class="cell_U3">7</text>
</g>
<g transform="translate(30,50)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U3~18">
<text x="5" y="-4" class="cell_U3">18</text>
</g>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(1114.407,535.304)" id="cell_U4">
<text x="15" y="-4" class="nodelabel cell_U4" s:attribute="ref">OPA1612_1_</text>
<rect width="30" height="120" x="0" y="0" s:generic="body" class="cell_U4"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U4~2">
<text x="-3" y="-4" class="inputPortLabel cell_U4">2</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U4~3">
<text x="-3" y="-4" class="inputPortLabel cell_U4">3</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U4~4">
<text x="-3" y="-4" class="inputPortLabel cell_U4">4</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U4~5">
<text x="-3" y="-4" class="inputPortLabel cell_U4">5</text>
</g>
<g transform="translate(0,90)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U4~6">
<text x="-3" y="-4" class="inputPortLabel cell_U4">6</text>
</g>
<g transform="translate(0,110)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U4~8">
<text x="-3" y="-4" class="inputPortLabel cell_U4">8</text>
</g>
<g transform="translate(30,10)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U4~1">
<text x="5" y="-4" class="cell_U4">1</text>
</g>
<g transform="translate(30,30)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U4~7">
<text x="5" y="-4" class="cell_U4">7</text>
</g>
</g>
<line x1="897.8179999999999" x2="897.8179999999999" y1="165.152" y2="175.152" class="net_9"/>
<line x1="897.8179999999999" x2="502.50099999999975" y1="175.152" y2="175.152" class="net_9"/>
<line x1="502.50099999999975" x2="502.50099999999975" y1="175.152" y2="175.152" class="net_9"/>
<circle cx="897.8179999999999" cy="175.152" r="2" style="fill:#000" class="net_9"/>
<circle cx="502.50099999999975" cy="175.152" r="2" style="fill:#000" class="net_9"/>
<line x1="502.50099999999975" x2="973.9819999999999" y1="175.152" y2="175.152" class="net_9"/>
<line x1="897.8179999999999" x2="897.8179999999999" y1="165.152" y2="175.152" class="net_9"/>
<line x1="897.8179999999999" x2="54.01999999999998" y1="175.152" y2="175.152" class="net_9"/>
<line x1="54.01999999999998" x2="54.01999999999998" y1="175.152" y2="275.152" class="net_9"/>
<circle cx="54.01999999999998" cy="175.152" r="2" style="fill:#000" class="net_9"/>
<line x1="54.01999999999998" x2="973.9819999999999" y1="275.152" y2="275.152" class="net_9"/>
<line x1="897.8179999999999" x2="897.8179999999999" y1="165.152" y2="175.152" class="net_9"/>
<line x1="897.8179999999999" x2="930.9819999999999" y1="175.152" y2="175.152" class="net_9"/>
<line x1="930.9819999999999" x2="930.9819999999999" y1="175.152" y2="495.15200000000004" class="net_9"/>
<circle cx="930.9819999999999" cy="175.152" r="2" style="fill:#000" class="net_9"/>
<line x1="930.9819999999999" x2="973.9819999999999" y1="495.15200000000004" y2="495.152" class="net_9"/>
<line x1="973.9819999999999" x2="502.50099999999975" y1="175.152" y2="175.152" class="net_9"/>
<line x1="502.50099999999975" x2="502.50099999999975" y1="175.152" y2="175.152" class="net_9"/>
<line x1="502.50099999999975" x2="819.0499999999998" y1="175.152" y2="175.152" class="net_9"/>
<line x1="819.0499999999998" x2="819.0499999999998" y1="175.152" y2="72" class="net_9"/>
<line x1="819.0499999999998" x2="255.45899999999972" y1="72" y2="72" class="net_9"/>
<circle cx="255.45899999999972" cy="72" r="2" style="fill:#000" class="net_9"/>
<line x1="255.45899999999972" x2="255.45899999999978" y1="72" y2="82" class="net_9"/>
<line x1="973.9819999999999" x2="502.50099999999975" y1="175.152" y2="175.152" class="net_9"/>
<line x1="502.50099999999975" x2="502.50099999999975" y1="175.152" y2="175.152" class="net_9"/>
<line x1="502.50099999999975" x2="819.0499999999998" y1="175.152" y2="175.152" class="net_9"/>
<line x1="819.0499999999998" x2="819.0499999999998" y1="175.152" y2="72" class="net_9"/>
<line x1="819.0499999999998" x2="344.47299999999973" y1="72" y2="72" class="net_9"/>
<circle cx="344.47299999999973" cy="72" r="2" style="fill:#000" class="net_9"/>
<circle cx="819.0499999999998" cy="175.152" r="2" style="fill:#000" class="net_9"/>
<line x1="344.47299999999973" x2="344.4729999999998" y1="72" y2="82" class="net_9"/>
<line x1="973.9819999999999" x2="502.50099999999975" y1="175.152" y2="175.152" class="net_9"/>
<line x1="502.50099999999975" x2="502.50099999999975" y1="175.152" y2="175.152" class="net_9"/>
<line x1="502.50099999999975" x2="878.0639999999999" y1="175.152" y2="175.152" class="net_9"/>
<line x1="878.0639999999999" x2="878.0639999999999" y1="175.152" y2="72" class="net_9"/>
<line x1="878.0639999999999" x2="848.5569999999998" y1="72" y2="72" class="net_9"/>
<circle cx="848.5569999999998" cy="72" r="2" style="fill:#000" class="net_9"/>
<circle cx="878.0639999999999" cy="72" r="2" style="fill:#000" class="net_9"/>
<circle cx="878.0639999999999" cy="175.152" r="2" style="fill:#000" class="net_9"/>
<line x1="848.5569999999998" x2="848.5569999999998" y1="72" y2="82" class="net_9"/>
<line x1="973.9819999999999" x2="502.50099999999975" y1="175.152" y2="175.152" class="net_9"/>
<line x1="502.50099999999975" x2="502.50099999999975" y1="175.152" y2="175.152" class="net_9"/>
<line x1="502.50099999999975" x2="819.0499999999998" y1="175.152" y2="175.152" class="net_9"/>
<line x1="819.0499999999998" x2="819.0499999999998" y1="175.152" y2="72" class="net_9"/>
<line x1="819.0499999999998" x2="166.4449999999997" y1="72" y2="72" class="net_9"/>
<circle cx="166.4449999999997" cy="72" r="2" style="fill:#000" class="net_9"/>
<circle cx="819.0499999999998" cy="72" r="2" style="fill:#000" class="net_9"/>
<line x1="166.4449999999997" x2="166.44499999999977" y1="72" y2="82" class="net_9"/>
<line x1="973.9819999999999" x2="54.01999999999998" y1="275.152" y2="275.152" class="net_9"/>
<line x1="54.01999999999998" x2="54.01999999999998" y1="275.152" y2="72" class="net_9"/>
<line x1="54.01999999999998" x2="255.45899999999972" y1="72" y2="72" class="net_9"/>
<line x1="255.45899999999972" x2="255.45899999999978" y1="72" y2="82" class="net_9"/>
<line x1="973.9819999999999" x2="54.01999999999998" y1="275.152" y2="275.152" class="net_9"/>
<line x1="54.01999999999998" x2="54.01999999999998" y1="275.152" y2="72" class="net_9"/>
<line x1="54.01999999999998" x2="344.47299999999973" y1="72" y2="72" class="net_9"/>
<line x1="344.47299999999973" x2="344.4729999999998" y1="72" y2="82" class="net_9"/>
<line x1="973.9819999999999" x2="54.01999999999998" y1="275.152" y2="275.152" class="net_9"/>
<line x1="54.01999999999998" x2="54.01999999999998" y1="275.152" y2="72" class="net_9"/>
<line x1="54.01999999999998" x2="848.5569999999998" y1="72" y2="72" class="net_9"/>
<line x1="848.5569999999998" x2="848.5569999999998" y1="72" y2="82" class="net_9"/>
<line x1="973.9819999999999" x2="54.01999999999998" y1="275.152" y2="275.152" class="net_9"/>
<line x1="54.01999999999998" x2="54.01999999999998" y1="275.152" y2="72" class="net_9"/>
<line x1="54.01999999999998" x2="166.4449999999997" y1="72" y2="72" class="net_9"/>
<line x1="166.4449999999997" x2="166.44499999999977" y1="72" y2="82" class="net_9"/>
<line x1="973.9819999999999" x2="930.9819999999999" y1="495.152" y2="495.15200000000004" class="net_9"/>
<line x1="930.9819999999999" x2="930.9819999999999" y1="495.15200000000004" y2="72" class="net_9"/>
<line x1="930.9819999999999" x2="255.45899999999972" y1="72" y2="72" class="net_9"/>
<line x1="255.45899999999972" x2="255.45899999999978" y1="72" y2="82" class="net_9"/>
<line x1="973.9819999999999" x2="930.9819999999999" y1="495.152" y2="495.15200000000004" class="net_9"/>
<line x1="930.9819999999999" x2="930.9819999999999" y1="495.15200000000004" y2="72" class="net_9"/>
<line x1="930.9819999999999" x2="344.47299999999973" y1="72" y2="72" class="net_9"/>
<line x1="344.47299999999973" x2="344.4729999999998" y1="72" y2="82" class="net_9"/>
<line x1="973.9819999999999" x2="930.9819999999999" y1="495.152" y2="495.15200000000004" class="net_9"/>
<line x1="930.9819999999999" x2="930.9819999999999" y1="495.15200000000004" y2="72" class="net_9"/>
<line x1="930.9819999999999" x2="848.5569999999998" y1="72" y2="72" class="net_9"/>
<line x1="848.5569999999998" x2="848.5569999999998" y1="72" y2="82" class="net_9"/>
<line x1="973.9819999999999" x2="930.9819999999999" y1="495.152" y2="495.15200000000004" class="net_9"/>
<line x1="930.9819999999999" x2="930.9819999999999" y1="495.15200000000004" y2="72" class="net_9"/>
<line x1="930.9819999999999" x2="166.4449999999997" y1="72" y2="72" class="net_9"/>
<line x1="166.4449999999997" x2="166.44499999999977" y1="72" y2="82" class="net_9"/>
<line x1="1114.407" x2="22.019999999999982" y1="645.804" y2="645.804" class="net_2"/>
<line x1="22.019999999999982" x2="22.019999999999982" y1="645.804" y2="32" class="net_2"/>
<line x1="22.019999999999982" x2="433.48699999999974" y1="32" y2="32" class="net_2"/>
<line x1="433.48699999999974" x2="433.4869999999998" y1="32" y2="82" class="net_2"/>
<line x1="1114.407" x2="1047.982" y1="585.804" y2="585.804" class="net_4"/>
<line x1="1047.982" x2="1047.982" y1="585.804" y2="22" class="net_4"/>
<line x1="1047.982" x2="522.5009999999997" y1="22" y2="22" class="net_4"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="22" y2="82" class="net_4"/>
<line x1="973.9819999999999" x2="940.9819999999999" y1="195.152" y2="195.152" class="net_10"/>
<line x1="940.9819999999999" x2="940.9819999999999" y1="195.152" y2="512.652" class="net_10"/>
<line x1="973.9819999999999" x2="950.9819999999999" y1="255.152" y2="255.152" class="net_3"/>
<line x1="950.9819999999999" x2="950.9819999999999" y1="255.152" y2="62" class="net_3"/>
<line x1="950.9819999999999" x2="700.5289999999998" y1="62" y2="62" class="net_3"/>
<line x1="700.5289999999998" x2="700.5289999999998" y1="62" y2="82" class="net_3"/>
<line x1="1004.9819999999999" x2="1037.982" y1="215.152" y2="215.152" class="net_7"/>
<line x1="1037.982" x2="1037.982" y1="215.152" y2="52" class="net_7"/>
<line x1="1037.982" x2="611.5149999999998" y1="52" y2="52" class="net_7"/>
<line x1="611.5149999999998" x2="611.5149999999998" y1="52" y2="82" class="net_7"/>
<line x1="1172.4069999999997" x2="1172.407" y1="412.152" y2="432.152" class="net_15"/>
<line x1="1172.4069999999997" x2="1172.407" y1="412.152" y2="422.152" class="net_15"/>
<line x1="1172.407" x2="1079.7359999999999" y1="422.152" y2="422.152" class="net_15"/>
<circle cx="1172.407" cy="422.152" r="2" style="fill:#000" class="net_15"/>
<line x1="1079.7359999999999" x2="1079.7359999999999" y1="422.152" y2="432.152" class="net_15"/>
<line x1="1079.7359999999999" x2="1079.7359999999999" y1="505.304" y2="565.804" class="net_19"/>
<line x1="1079.7359999999999" x2="1114.407" y1="565.804" y2="565.804" class="net_19"/>
<line x1="1114.407" x2="1079.7359999999999" y1="565.804" y2="565.804" class="net_19"/>
<line x1="1079.7359999999999" x2="1079.7359999999999" y1="565.804" y2="565.804" class="net_19"/>
<line x1="1079.7359999999999" x2="1058.982" y1="565.804" y2="565.804" class="net_19"/>
<line x1="1058.982" x2="1058.982" y1="565.804" y2="32" class="net_19"/>
<line x1="1058.982" x2="789.5429999999999" y1="32" y2="32" class="net_19"/>
<circle cx="1079.7359999999999" cy="565.804" r="2" style="fill:#000" class="net_19"/>
<line x1="789.5429999999999" x2="789.5429999999998" y1="32" y2="82" class="net_19"/>
<line x1="973.9819999999999" x2="44.01999999999998" y1="455.152" y2="455.152" class="net_14"/>
<line x1="44.01999999999998" x2="44.01999999999998" y1="455.152" y2="42" class="net_14"/>
<line x1="44.01999999999998" x2="897.8179999999999" y1="42" y2="42" class="net_14"/>
<line x1="897.8179999999999" x2="897.8179999999999" y1="42" y2="92" class="net_14"/>
<line x1="1004.9819999999999" x2="1027.982" y1="195.152" y2="195.152" class="net_16"/>
<line x1="1027.982" x2="1027.982" y1="195.152" y2="12" class="net_16"/>
<line x1="1027.982" x2="73.77399999999989" y1="12" y2="12" class="net_16"/>
<line x1="73.77399999999989" x2="73.77399999999997" y1="12" y2="82" class="net_16"/>
<line x1="1004.9819999999999" x2="1172.407" y1="175.152" y2="175.152" class="net_8"/>
<line x1="1172.407" x2="1172.4069999999997" y1="175.152" y2="339" class="net_8"/>
<line x1="255.45899999999978" x2="255.45899999999972" y1="155.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="522.5009999999997" y1="165.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="165.152" y2="215.152" class="net_13"/>
<line x1="522.5009999999997" x2="973.9819999999999" y1="215.152" y2="215.152" class="net_13"/>
<line x1="255.45899999999978" x2="255.45899999999972" y1="155.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="433.48699999999974" y1="165.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="433.48699999999974" y1="165.152" y2="295.152" class="net_13"/>
<line x1="433.48699999999974" x2="973.9819999999999" y1="295.152" y2="295.152" class="net_13"/>
<line x1="255.45899999999978" x2="255.45899999999972" y1="155.152" y2="315.152" class="net_13"/>
<line x1="255.45899999999972" x2="973.9819999999999" y1="315.152" y2="315.152" class="net_13"/>
<line x1="255.45899999999978" x2="255.45899999999972" y1="155.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="224.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="224.45899999999972" x2="224.45899999999972" y1="165.152" y2="335.152" class="net_13"/>
<line x1="224.45899999999972" x2="973.9819999999999" y1="335.152" y2="335.152" class="net_13"/>
<line x1="255.45899999999978" x2="255.45899999999972" y1="155.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="214.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="214.45899999999972" x2="214.45899999999972" y1="165.152" y2="435.152" class="net_13"/>
<line x1="214.45899999999972" x2="973.9819999999999" y1="435.152" y2="435.152" class="net_13"/>
<line x1="255.45899999999978" x2="255.45899999999972" y1="155.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="245.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="245.45899999999972" x2="245.45899999999972" y1="165.152" y2="475.152" class="net_13"/>
<line x1="245.45899999999972" x2="973.9819999999999" y1="475.152" y2="475.152" class="net_13"/>
<line x1="255.45899999999978" x2="255.45899999999972" y1="155.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="33.01999999999998" y1="165.152" y2="165.152" class="net_13"/>
<line x1="33.01999999999998" x2="33.01999999999998" y1="165.152" y2="485.152" class="net_13"/>
<line x1="33.01999999999998" x2="234.45899999999972" y1="485.152" y2="485.152" class="net_13"/>
<line x1="234.45899999999972" x2="234.45899999999972" y1="485.152" y2="605.804" class="net_13"/>
<line x1="234.45899999999972" x2="1114.407" y1="605.804" y2="605.804" class="net_13"/>
<line x1="433.4869999999998" x2="433.48699999999974" y1="155.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="522.5009999999997" y1="165.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="165.152" y2="215.152" class="net_13"/>
<line x1="522.5009999999997" x2="973.9819999999999" y1="215.152" y2="215.152" class="net_13"/>
<line x1="433.4869999999998" x2="433.48699999999974" y1="155.152" y2="295.152" class="net_13"/>
<line x1="433.48699999999974" x2="973.9819999999999" y1="295.152" y2="295.152" class="net_13"/>
<line x1="433.4869999999998" x2="433.48699999999974" y1="155.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="255.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="255.45899999999972" y1="165.152" y2="315.152" class="net_13"/>
<line x1="255.45899999999972" x2="973.9819999999999" y1="315.152" y2="315.152" class="net_13"/>
<line x1="433.4869999999998" x2="433.48699999999974" y1="155.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="224.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="224.45899999999972" x2="224.45899999999972" y1="165.152" y2="335.152" class="net_13"/>
<line x1="224.45899999999972" x2="973.9819999999999" y1="335.152" y2="335.152" class="net_13"/>
<line x1="433.4869999999998" x2="433.48699999999974" y1="155.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="214.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="214.45899999999972" x2="214.45899999999972" y1="165.152" y2="435.152" class="net_13"/>
<line x1="214.45899999999972" x2="973.9819999999999" y1="435.152" y2="435.152" class="net_13"/>
<line x1="433.4869999999998" x2="433.48699999999974" y1="155.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="245.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="245.45899999999972" x2="245.45899999999972" y1="165.152" y2="475.152" class="net_13"/>
<line x1="245.45899999999972" x2="973.9819999999999" y1="475.152" y2="475.152" class="net_13"/>
<line x1="433.4869999999998" x2="433.48699999999974" y1="155.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="234.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="234.45899999999972" x2="234.45899999999972" y1="165.152" y2="605.804" class="net_13"/>
<circle cx="234.45899999999972" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="234.45899999999972" x2="1114.407" y1="605.804" y2="605.804" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="155.152" y2="215.152" class="net_13"/>
<line x1="522.5009999999997" x2="973.9819999999999" y1="215.152" y2="215.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="433.48699999999974" y1="165.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="433.48699999999974" y1="165.152" y2="295.152" class="net_13"/>
<line x1="433.48699999999974" x2="973.9819999999999" y1="295.152" y2="295.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="255.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="255.45899999999972" y1="165.152" y2="315.152" class="net_13"/>
<line x1="255.45899999999972" x2="973.9819999999999" y1="315.152" y2="315.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="224.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="224.45899999999972" x2="224.45899999999972" y1="165.152" y2="335.152" class="net_13"/>
<line x1="224.45899999999972" x2="973.9819999999999" y1="335.152" y2="335.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="214.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="214.45899999999972" x2="214.45899999999972" y1="165.152" y2="435.152" class="net_13"/>
<line x1="214.45899999999972" x2="973.9819999999999" y1="435.152" y2="435.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="245.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="245.45899999999972" x2="245.45899999999972" y1="165.152" y2="475.152" class="net_13"/>
<line x1="245.45899999999972" x2="973.9819999999999" y1="475.152" y2="475.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="234.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="234.45899999999972" x2="234.45899999999972" y1="165.152" y2="605.804" class="net_13"/>
<line x1="234.45899999999972" x2="1114.407" y1="605.804" y2="605.804" class="net_13"/>
<line x1="344.4729999999998" x2="344.47299999999973" y1="155.152" y2="165.152" class="net_13"/>
<line x1="344.47299999999973" x2="522.5009999999997" y1="165.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="165.152" y2="215.152" class="net_13"/>
<circle cx="344.47299999999973" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="522.5009999999997" x2="973.9819999999999" y1="215.152" y2="215.152" class="net_13"/>
<line x1="344.4729999999998" x2="344.47299999999973" y1="155.152" y2="165.152" class="net_13"/>
<line x1="344.47299999999973" x2="433.48699999999974" y1="165.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="433.48699999999974" y1="165.152" y2="295.152" class="net_13"/>
<line x1="433.48699999999974" x2="973.9819999999999" y1="295.152" y2="295.152" class="net_13"/>
<line x1="344.4729999999998" x2="344.47299999999973" y1="155.152" y2="165.152" class="net_13"/>
<line x1="344.47299999999973" x2="255.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="255.45899999999972" y1="165.152" y2="315.152" class="net_13"/>
<line x1="255.45899999999972" x2="973.9819999999999" y1="315.152" y2="315.152" class="net_13"/>
<line x1="344.4729999999998" x2="344.47299999999973" y1="155.152" y2="165.152" class="net_13"/>
<line x1="344.47299999999973" x2="224.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="224.45899999999972" x2="224.45899999999972" y1="165.152" y2="335.152" class="net_13"/>
<line x1="224.45899999999972" x2="973.9819999999999" y1="335.152" y2="335.152" class="net_13"/>
<line x1="344.4729999999998" x2="344.47299999999973" y1="155.152" y2="165.152" class="net_13"/>
<line x1="344.47299999999973" x2="214.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="214.45899999999972" x2="214.45899999999972" y1="165.152" y2="435.152" class="net_13"/>
<line x1="214.45899999999972" x2="973.9819999999999" y1="435.152" y2="435.152" class="net_13"/>
<line x1="344.4729999999998" x2="344.47299999999973" y1="155.152" y2="165.152" class="net_13"/>
<line x1="344.47299999999973" x2="245.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="245.45899999999972" x2="245.45899999999972" y1="165.152" y2="475.152" class="net_13"/>
<line x1="245.45899999999972" x2="973.9819999999999" y1="475.152" y2="475.152" class="net_13"/>
<line x1="344.4729999999998" x2="344.47299999999973" y1="155.152" y2="165.152" class="net_13"/>
<line x1="344.47299999999973" x2="33.01999999999998" y1="165.152" y2="165.152" class="net_13"/>
<line x1="33.01999999999998" x2="33.01999999999998" y1="165.152" y2="485.152" class="net_13"/>
<line x1="33.01999999999998" x2="234.45899999999972" y1="485.152" y2="485.152" class="net_13"/>
<line x1="234.45899999999972" x2="234.45899999999972" y1="485.152" y2="605.804" class="net_13"/>
<line x1="234.45899999999972" x2="1114.407" y1="605.804" y2="605.804" class="net_13"/>
<line x1="848.5569999999998" x2="848.5569999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="848.5569999999998" x2="522.5009999999997" y1="165.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="165.152" y2="215.152" class="net_13"/>
<circle cx="848.5569999999998" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="522.5009999999997" x2="973.9819999999999" y1="215.152" y2="215.152" class="net_13"/>
<line x1="848.5569999999998" x2="848.5569999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="848.5569999999998" x2="433.48699999999974" y1="165.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="433.48699999999974" y1="165.152" y2="295.152" class="net_13"/>
<line x1="433.48699999999974" x2="973.9819999999999" y1="295.152" y2="295.152" class="net_13"/>
<line x1="848.5569999999998" x2="848.5569999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="848.5569999999998" x2="255.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="255.45899999999972" y1="165.152" y2="315.152" class="net_13"/>
<line x1="255.45899999999972" x2="973.9819999999999" y1="315.152" y2="315.152" class="net_13"/>
<line x1="848.5569999999998" x2="848.5569999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="848.5569999999998" x2="224.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="224.45899999999972" x2="224.45899999999972" y1="165.152" y2="335.152" class="net_13"/>
<line x1="224.45899999999972" x2="973.9819999999999" y1="335.152" y2="335.152" class="net_13"/>
<line x1="848.5569999999998" x2="848.5569999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="848.5569999999998" x2="214.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="214.45899999999972" x2="214.45899999999972" y1="165.152" y2="435.152" class="net_13"/>
<line x1="214.45899999999972" x2="973.9819999999999" y1="435.152" y2="435.152" class="net_13"/>
<line x1="848.5569999999998" x2="848.5569999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="848.5569999999998" x2="245.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="245.45899999999972" x2="245.45899999999972" y1="165.152" y2="475.152" class="net_13"/>
<line x1="245.45899999999972" x2="973.9819999999999" y1="475.152" y2="475.152" class="net_13"/>
<line x1="848.5569999999998" x2="848.5569999999998" y1="155.152" y2="605.804" class="net_13"/>
<line x1="848.5569999999998" x2="234.45899999999972" y1="605.804" y2="605.804" class="net_13"/>
<line x1="234.45899999999972" x2="234.45899999999972" y1="605.804" y2="605.804" class="net_13"/>
<circle cx="234.45899999999972" cy="605.804" r="2" style="fill:#000" class="net_13"/>
<line x1="234.45899999999972" x2="1114.407" y1="605.804" y2="605.804" class="net_13"/>
<line x1="166.44499999999977" x2="166.4449999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="166.4449999999997" x2="522.5009999999997" y1="165.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="165.152" y2="215.152" class="net_13"/>
<circle cx="166.4449999999997" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="522.5009999999997" x2="973.9819999999999" y1="215.152" y2="215.152" class="net_13"/>
<line x1="166.44499999999977" x2="166.4449999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="166.4449999999997" x2="433.48699999999974" y1="165.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="433.48699999999974" y1="165.152" y2="295.152" class="net_13"/>
<line x1="433.48699999999974" x2="973.9819999999999" y1="295.152" y2="295.152" class="net_13"/>
<line x1="166.44499999999977" x2="166.4449999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="166.4449999999997" x2="255.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="255.45899999999972" y1="165.152" y2="315.152" class="net_13"/>
<line x1="255.45899999999972" x2="973.9819999999999" y1="315.152" y2="315.152" class="net_13"/>
<line x1="166.44499999999977" x2="166.4449999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="166.4449999999997" x2="224.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="224.45899999999972" x2="224.45899999999972" y1="165.152" y2="335.152" class="net_13"/>
<line x1="224.45899999999972" x2="973.9819999999999" y1="335.152" y2="335.152" class="net_13"/>
<line x1="166.44499999999977" x2="166.4449999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="166.4449999999997" x2="214.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="214.45899999999972" x2="214.45899999999972" y1="165.152" y2="435.152" class="net_13"/>
<line x1="214.45899999999972" x2="973.9819999999999" y1="435.152" y2="435.152" class="net_13"/>
<line x1="166.44499999999977" x2="166.4449999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="166.4449999999997" x2="245.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="245.45899999999972" x2="245.45899999999972" y1="165.152" y2="475.152" class="net_13"/>
<line x1="245.45899999999972" x2="973.9819999999999" y1="475.152" y2="475.152" class="net_13"/>
<line x1="166.44499999999977" x2="166.4449999999997" y1="155.152" y2="165.152" class="net_13"/>
<line x1="166.4449999999997" x2="33.01999999999998" y1="165.152" y2="165.152" class="net_13"/>
<line x1="33.01999999999998" x2="33.01999999999998" y1="165.152" y2="485.152" class="net_13"/>
<line x1="33.01999999999998" x2="234.45899999999972" y1="485.152" y2="485.152" class="net_13"/>
<line x1="234.45899999999972" x2="234.45899999999972" y1="485.152" y2="605.804" class="net_13"/>
<line x1="234.45899999999972" x2="1114.407" y1="605.804" y2="605.804" class="net_13"/>
<line x1="700.5289999999998" x2="700.5289999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="700.5289999999998" x2="522.5009999999997" y1="165.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="165.152" y2="215.152" class="net_13"/>
<circle cx="700.5289999999998" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="522.5009999999997" x2="973.9819999999999" y1="215.152" y2="215.152" class="net_13"/>
<line x1="700.5289999999998" x2="700.5289999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="700.5289999999998" x2="433.48699999999974" y1="165.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="433.48699999999974" y1="165.152" y2="295.152" class="net_13"/>
<line x1="433.48699999999974" x2="973.9819999999999" y1="295.152" y2="295.152" class="net_13"/>
<line x1="700.5289999999998" x2="700.5289999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="700.5289999999998" x2="255.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="255.45899999999972" y1="165.152" y2="315.152" class="net_13"/>
<line x1="255.45899999999972" x2="973.9819999999999" y1="315.152" y2="315.152" class="net_13"/>
<line x1="700.5289999999998" x2="700.5289999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="700.5289999999998" x2="224.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="224.45899999999972" x2="224.45899999999972" y1="165.152" y2="335.152" class="net_13"/>
<line x1="224.45899999999972" x2="973.9819999999999" y1="335.152" y2="335.152" class="net_13"/>
<line x1="700.5289999999998" x2="700.5289999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="700.5289999999998" x2="214.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="214.45899999999972" x2="214.45899999999972" y1="165.152" y2="435.152" class="net_13"/>
<line x1="214.45899999999972" x2="973.9819999999999" y1="435.152" y2="435.152" class="net_13"/>
<line x1="700.5289999999998" x2="700.5289999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="700.5289999999998" x2="245.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="245.45899999999972" x2="245.45899999999972" y1="165.152" y2="475.152" class="net_13"/>
<line x1="245.45899999999972" x2="973.9819999999999" y1="475.152" y2="475.152" class="net_13"/>
<line x1="700.5289999999998" x2="700.5289999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="700.5289999999998" x2="491.50099999999975" y1="165.152" y2="165.152" class="net_13"/>
<line x1="491.50099999999975" x2="491.50099999999975" y1="165.152" y2="485.152" class="net_13"/>
<line x1="491.50099999999975" x2="234.45899999999972" y1="485.152" y2="485.152" class="net_13"/>
<line x1="234.45899999999972" x2="234.45899999999972" y1="485.152" y2="605.804" class="net_13"/>
<circle cx="491.50099999999975" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="234.45899999999972" x2="1114.407" y1="605.804" y2="605.804" class="net_13"/>
<line x1="611.5149999999998" x2="611.5149999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="611.5149999999998" x2="522.5009999999997" y1="165.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="165.152" y2="215.152" class="net_13"/>
<circle cx="611.5149999999998" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="522.5009999999997" x2="973.9819999999999" y1="215.152" y2="215.152" class="net_13"/>
<line x1="611.5149999999998" x2="611.5149999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="611.5149999999998" x2="433.48699999999974" y1="165.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="433.48699999999974" y1="165.152" y2="295.152" class="net_13"/>
<line x1="433.48699999999974" x2="973.9819999999999" y1="295.152" y2="295.152" class="net_13"/>
<line x1="611.5149999999998" x2="611.5149999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="611.5149999999998" x2="255.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="255.45899999999972" y1="165.152" y2="315.152" class="net_13"/>
<line x1="255.45899999999972" x2="973.9819999999999" y1="315.152" y2="315.152" class="net_13"/>
<line x1="611.5149999999998" x2="611.5149999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="611.5149999999998" x2="224.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="224.45899999999972" x2="224.45899999999972" y1="165.152" y2="335.152" class="net_13"/>
<line x1="224.45899999999972" x2="973.9819999999999" y1="335.152" y2="335.152" class="net_13"/>
<line x1="611.5149999999998" x2="611.5149999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="611.5149999999998" x2="214.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="214.45899999999972" x2="214.45899999999972" y1="165.152" y2="435.152" class="net_13"/>
<line x1="214.45899999999972" x2="973.9819999999999" y1="435.152" y2="435.152" class="net_13"/>
<line x1="611.5149999999998" x2="611.5149999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="611.5149999999998" x2="245.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="245.45899999999972" x2="245.45899999999972" y1="165.152" y2="475.152" class="net_13"/>
<line x1="245.45899999999972" x2="973.9819999999999" y1="475.152" y2="475.152" class="net_13"/>
<line x1="611.5149999999998" x2="611.5149999999998" y1="155.152" y2="165.152" class="net_13"/>
<line x1="611.5149999999998" x2="491.50099999999975" y1="165.152" y2="165.152" class="net_13"/>
<line x1="491.50099999999975" x2="491.50099999999975" y1="165.152" y2="485.152" class="net_13"/>
<line x1="491.50099999999975" x2="234.45899999999972" y1="485.152" y2="485.152" class="net_13"/>
<line x1="234.45899999999972" x2="234.45899999999972" y1="485.152" y2="605.804" class="net_13"/>
<line x1="234.45899999999972" x2="1114.407" y1="605.804" y2="605.804" class="net_13"/>
<line x1="789.5429999999998" x2="789.5429999999999" y1="155.152" y2="165.152" class="net_13"/>
<line x1="789.5429999999999" x2="522.5009999999997" y1="165.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="165.152" y2="215.152" class="net_13"/>
<circle cx="789.5429999999999" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="522.5009999999997" x2="973.9819999999999" y1="215.152" y2="215.152" class="net_13"/>
<line x1="789.5429999999998" x2="789.5429999999999" y1="155.152" y2="165.152" class="net_13"/>
<line x1="789.5429999999999" x2="433.48699999999974" y1="165.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="433.48699999999974" y1="165.152" y2="295.152" class="net_13"/>
<line x1="433.48699999999974" x2="973.9819999999999" y1="295.152" y2="295.152" class="net_13"/>
<line x1="789.5429999999998" x2="789.5429999999999" y1="155.152" y2="165.152" class="net_13"/>
<line x1="789.5429999999999" x2="255.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="255.45899999999972" y1="165.152" y2="315.152" class="net_13"/>
<line x1="255.45899999999972" x2="973.9819999999999" y1="315.152" y2="315.152" class="net_13"/>
<line x1="789.5429999999998" x2="789.5429999999999" y1="155.152" y2="165.152" class="net_13"/>
<line x1="789.5429999999999" x2="224.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="224.45899999999972" x2="224.45899999999972" y1="165.152" y2="335.152" class="net_13"/>
<line x1="224.45899999999972" x2="973.9819999999999" y1="335.152" y2="335.152" class="net_13"/>
<line x1="789.5429999999998" x2="789.5429999999999" y1="155.152" y2="165.152" class="net_13"/>
<line x1="789.5429999999999" x2="214.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="214.45899999999972" x2="214.45899999999972" y1="165.152" y2="435.152" class="net_13"/>
<line x1="214.45899999999972" x2="973.9819999999999" y1="435.152" y2="435.152" class="net_13"/>
<line x1="789.5429999999998" x2="789.5429999999999" y1="155.152" y2="165.152" class="net_13"/>
<line x1="789.5429999999999" x2="245.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="245.45899999999972" x2="245.45899999999972" y1="165.152" y2="475.152" class="net_13"/>
<line x1="245.45899999999972" x2="973.9819999999999" y1="475.152" y2="475.152" class="net_13"/>
<line x1="789.5429999999998" x2="789.5429999999999" y1="155.152" y2="165.152" class="net_13"/>
<line x1="789.5429999999999" x2="491.50099999999975" y1="165.152" y2="165.152" class="net_13"/>
<line x1="491.50099999999975" x2="491.50099999999975" y1="165.152" y2="485.152" class="net_13"/>
<line x1="491.50099999999975" x2="234.45899999999972" y1="485.152" y2="485.152" class="net_13"/>
<line x1="234.45899999999972" x2="234.45899999999972" y1="485.152" y2="605.804" class="net_13"/>
<line x1="234.45899999999972" x2="1114.407" y1="605.804" y2="605.804" class="net_13"/>
<line x1="73.77399999999997" x2="73.77399999999989" y1="155.152" y2="165.152" class="net_13"/>
<line x1="73.77399999999989" x2="522.5009999999997" y1="165.152" y2="165.152" class="net_13"/>
<line x1="522.5009999999997" x2="522.5009999999997" y1="165.152" y2="215.152" class="net_13"/>
<circle cx="73.77399999999989" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<circle cx="522.5009999999997" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="522.5009999999997" x2="973.9819999999999" y1="215.152" y2="215.152" class="net_13"/>
<line x1="73.77399999999997" x2="73.77399999999989" y1="155.152" y2="165.152" class="net_13"/>
<line x1="73.77399999999989" x2="433.48699999999974" y1="165.152" y2="165.152" class="net_13"/>
<line x1="433.48699999999974" x2="433.48699999999974" y1="165.152" y2="295.152" class="net_13"/>
<circle cx="433.48699999999974" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="433.48699999999974" x2="973.9819999999999" y1="295.152" y2="295.152" class="net_13"/>
<line x1="73.77399999999997" x2="73.77399999999989" y1="155.152" y2="165.152" class="net_13"/>
<line x1="73.77399999999989" x2="255.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="255.45899999999972" x2="255.45899999999972" y1="165.152" y2="315.152" class="net_13"/>
<circle cx="255.45899999999972" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="255.45899999999972" x2="973.9819999999999" y1="315.152" y2="315.152" class="net_13"/>
<line x1="73.77399999999997" x2="73.77399999999989" y1="155.152" y2="165.152" class="net_13"/>
<line x1="73.77399999999989" x2="224.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="224.45899999999972" x2="224.45899999999972" y1="165.152" y2="335.152" class="net_13"/>
<circle cx="224.45899999999972" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="224.45899999999972" x2="973.9819999999999" y1="335.152" y2="335.152" class="net_13"/>
<line x1="73.77399999999997" x2="73.77399999999989" y1="155.152" y2="165.152" class="net_13"/>
<line x1="73.77399999999989" x2="214.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="214.45899999999972" x2="214.45899999999972" y1="165.152" y2="435.152" class="net_13"/>
<circle cx="214.45899999999972" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="214.45899999999972" x2="973.9819999999999" y1="435.152" y2="435.152" class="net_13"/>
<line x1="73.77399999999997" x2="73.77399999999989" y1="155.152" y2="165.152" class="net_13"/>
<line x1="73.77399999999989" x2="245.45899999999972" y1="165.152" y2="165.152" class="net_13"/>
<line x1="245.45899999999972" x2="245.45899999999972" y1="165.152" y2="475.152" class="net_13"/>
<circle cx="245.45899999999972" cy="165.152" r="2" style="fill:#000" class="net_13"/>
<line x1="245.45899999999972" x2="973.9819999999999" y1="475.152" y2="475.152" class="net_13"/>
<line x1="73.77399999999997" x2="73.77399999999989" y1="155.152" y2="165.152" class="net_13"/>
<line x1="73.77399999999989" x2="33.01999999999998" y1="165.152" y2="165.152" class="net_13"/>
<line x1="33.01999999999998" x2="33.01999999999998" y1="165.152" y2="485.152" class="net_13"/>
<line x1="33.01999999999998" x2="234.45899999999972" y1="485.152" y2="485.152" class="net_13"/>
<line x1="234.45899999999972" x2="234.45899999999972" y1="485.152" y2="605.804" class="net_13"/>
<circle cx="234.45899999999972" cy="485.152" r="2" style="fill:#000" class="net_13"/>
<line x1="234.45899999999972" x2="1114.407" y1="605.804" y2="605.804" class="net_13"/>
<line x1="940.9819999999999" x2="940.9819999999999" y1="585.804" y2="595.804" class="net_20"/>
<line x1="940.9819999999999" x2="512.5009999999997" y1="595.804" y2="595.804" class="net_20"/>
<line x1="512.5009999999997" x2="512.5009999999997" y1="595.804" y2="235.152" class="net_20"/>
<line x1="512.5009999999997" x2="973.9819999999999" y1="235.152" y2="235.152" class="net_20"/>
<line x1="1172.407" x2="1172.407" y1="505.304" y2="515.304" class="net_17"/>
<line x1="1172.407" x2="1097.407" y1="515.304" y2="515.304" class="net_17"/>
<line x1="1097.407" x2="1097.407" y1="515.304" y2="545.804" class="net_17"/>
<circle cx="1172.407" cy="515.304" r="2" style="fill:#000" class="net_17"/>
<line x1="1097.407" x2="1114.407" y1="545.804" y2="545.804" class="net_17"/>
<line x1="1172.407" x2="1172.407" y1="505.304" y2="545.804" class="net_17"/>
<line x1="1172.407" x2="1145.407" y1="545.804" y2="545.804" class="net_17"/>
<line x1="1114.407" x2="12.019999999999982" y1="625.804" y2="625.804" class="net_11"/>
<line x1="12.019999999999982" x2="12.019999999999982" y1="625.804" y2="668.304" class="net_11"/>
<line x1="12.019999999999982" x2="1162.407" y1="668.304" y2="668.304" class="net_11"/>
<line x1="1162.407" x2="1162.407" y1="668.304" y2="565.804" class="net_11"/>
<line x1="1162.407" x2="1145.407" y1="565.804" y2="565.804" class="net_11"/>
</svg>

After

Width:  |  Height:  |  Size: 73 KiB

View file

@ -0,0 +1,208 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:s="https://github.com/nturley/netlistsvg" width="412.92400000000004" height="332.80400000000003">
<style>svg {
stroke: #000;
fill: none;
stroke-linejoin: round;
stroke-linecap: round;
}
text {
fill: #000;
stroke: none;
font-size: 10px;
font-weight: bold;
font-family: "Courier New", monospace;
}
.skidl_text {
fill: #999;
stroke: none;
font-weight: bold;
font-family: consolas, "Courier New", monospace;
}
.pin_num_text {
fill: #840000;
}
.pin_name_text {
fill: #008484;
}
.net_name_text {
font-style: italic;
fill: #840084;
}
.part_text {
fill: #840000;
}
.part_ref_text {
fill: #008484;
}
.part_name_text {
fill: #008484;
}
.pen_fill {
fill: #840000;
}
.background_fill {
fill: #FFFFC2
}
.nodelabel {
text-anchor: middle;
}
.inputPortLabel {
text-anchor: end;
}
.splitjoinBody {
fill: #000;
}
.symbol {
stroke-linejoin: round;
stroke-linecap: round;
stroke: #840000;
}
.detail {
stroke-linejoin: round;
stroke-linecap: round;
fill: #000;
}</style>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(22.04,42)" id="cell_C1">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C1</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(111.054,42)" id="cell_C2">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C2</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(200.068,22)" id="cell_R1">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R1 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R1</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">10k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(282.98600000000005,22)" id="cell_R2">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R2 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R2</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">10k</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(200.068,237.65200000000004)" id="cell_R3">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R3 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R3</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">10k</text>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(342.90400000000005,94.65200000000002)" id="cell_U5">
<text x="15" y="-4" class="nodelabel cell_U5" s:attribute="ref">OPA1612_1_</text>
<rect width="30" height="120" x="0" y="0" s:generic="body" class="cell_U5"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U5~2">
<text x="-3" y="-4" class="inputPortLabel cell_U5">2</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U5~3">
<text x="-3" y="-4" class="inputPortLabel cell_U5">3</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U5~4">
<text x="-3" y="-4" class="inputPortLabel cell_U5">4</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U5~5">
<text x="-3" y="-4" class="inputPortLabel cell_U5">5</text>
</g>
<g transform="translate(0,90)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U5~6">
<text x="-3" y="-4" class="inputPortLabel cell_U5">6</text>
</g>
<g transform="translate(0,110)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U5~8">
<text x="-3" y="-4" class="inputPortLabel cell_U5">8</text>
</g>
<g transform="translate(30,10)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U5~1">
<text x="5" y="-4" class="cell_U5">1</text>
</g>
<g transform="translate(30,30)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U5~7">
<text x="5" y="-4" class="cell_U5">7</text>
</g>
</g>
<line x1="342.90400000000005" x2="12.04" y1="205.15200000000002" y2="205.152" class="net_2"/>
<line x1="12.04" x2="12.04" y1="205.152" y2="32" class="net_2"/>
<line x1="12.04" x2="41.547" y1="32" y2="32" class="net_2"/>
<line x1="41.547" x2="41.547" y1="32" y2="42" class="net_2"/>
<line x1="342.90400000000005" x2="325.90400000000005" y1="145.15200000000002" y2="145.152" class="net_7"/>
<line x1="325.90400000000005" x2="325.90400000000005" y1="145.152" y2="12" class="net_7"/>
<line x1="325.90400000000005" x2="130.561" y1="12" y2="12" class="net_7"/>
<line x1="130.561" x2="130.561" y1="12" y2="42" class="net_7"/>
<line x1="209.822" x2="209.822" y1="95.152" y2="105.152" class="net_4"/>
<circle cx="209.822" cy="105.152" r="2" style="fill:#000" class="net_4"/>
<line x1="209.822" x2="342.90400000000005" y1="105.152" y2="105.15200000000002" class="net_4"/>
<line x1="292.74000000000007" x2="292.74000000000007" y1="95.152" y2="105.152" class="net_4"/>
<line x1="292.74000000000007" x2="209.822" y1="105.152" y2="105.152" class="net_4"/>
<line x1="209.822" x2="209.822" y1="105.152" y2="105.152" class="net_4"/>
<circle cx="209.822" cy="105.152" r="2" style="fill:#000" class="net_4"/>
<circle cx="209.822" cy="105.152" r="2" style="fill:#000" class="net_4"/>
<line x1="209.822" x2="342.90400000000005" y1="105.152" y2="105.15200000000002" class="net_4"/>
<line x1="342.90400000000005" x2="209.822" y1="105.15200000000002" y2="105.152" class="net_4"/>
<circle cx="209.822" cy="105.152" r="2" style="fill:#000" class="net_4"/>
<line x1="209.822" x2="209.822" y1="105.152" y2="237.65200000000004" class="net_4"/>
<line x1="41.547" x2="41.547" y1="115.152" y2="125.152" class="net_8"/>
<line x1="41.547" x2="130.561" y1="125.152" y2="125.152" class="net_8"/>
<line x1="130.561" x2="130.561" y1="125.152" y2="125.152" class="net_8"/>
<circle cx="41.547" cy="125.152" r="2" style="fill:#000" class="net_8"/>
<circle cx="130.561" cy="125.152" r="2" style="fill:#000" class="net_8"/>
<line x1="130.561" x2="342.90400000000005" y1="125.152" y2="125.15200000000002" class="net_8"/>
<line x1="41.547" x2="41.547" y1="115.152" y2="165.152" class="net_8"/>
<line x1="41.547" x2="342.90400000000005" y1="165.152" y2="165.15200000000002" class="net_8"/>
<line x1="130.561" x2="130.561" y1="115.152" y2="125.152" class="net_8"/>
<line x1="130.561" x2="342.90400000000005" y1="125.152" y2="125.15200000000002" class="net_8"/>
<line x1="130.561" x2="130.561" y1="115.152" y2="125.152" class="net_8"/>
<line x1="130.561" x2="41.547" y1="125.152" y2="125.152" class="net_8"/>
<line x1="41.547" x2="41.547" y1="125.152" y2="165.152" class="net_8"/>
<line x1="41.547" x2="342.90400000000005" y1="165.152" y2="165.15200000000002" class="net_8"/>
<line x1="209.822" x2="209.822" y1="310.80400000000003" y2="320.80400000000003" class="net_3"/>
<line x1="209.822" x2="400.90400000000005" y1="320.80400000000003" y2="320.80400000000003" class="net_3"/>
<line x1="400.90400000000005" x2="400.90400000000005" y1="320.80400000000003" y2="105.152" class="net_3"/>
<line x1="400.90400000000005" x2="373.90400000000005" y1="105.152" y2="105.15200000000002" class="net_3"/>
<line x1="342.90400000000005" x2="219.822" y1="185.15200000000002" y2="185.152" class="net_9"/>
<line x1="219.822" x2="219.822" y1="185.152" y2="227.65200000000004" class="net_9"/>
<line x1="219.822" x2="390.90400000000005" y1="227.65200000000004" y2="227.65200000000004" class="net_9"/>
<line x1="390.90400000000005" x2="390.90400000000005" y1="227.65200000000004" y2="125.152" class="net_9"/>
<line x1="390.90400000000005" x2="373.90400000000005" y1="125.152" y2="125.15200000000002" class="net_9"/>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -0,0 +1,406 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:s="https://github.com/nturley/netlistsvg" width="532.7560000000001" height="691.956">
<style>svg {
stroke: #000;
fill: none;
stroke-linejoin: round;
stroke-linecap: round;
}
text {
fill: #000;
stroke: none;
font-size: 10px;
font-weight: bold;
font-family: "Courier New", monospace;
}
.skidl_text {
fill: #999;
stroke: none;
font-weight: bold;
font-family: consolas, "Courier New", monospace;
}
.pin_num_text {
fill: #840000;
}
.pin_name_text {
fill: #008484;
}
.net_name_text {
font-style: italic;
fill: #840084;
}
.part_text {
fill: #840000;
}
.part_ref_text {
fill: #008484;
}
.part_name_text {
fill: #008484;
}
.pen_fill {
fill: #840000;
}
.background_fill {
fill: #FFFFC2
}
.nodelabel {
text-anchor: middle;
}
.inputPortLabel {
text-anchor: end;
}
.splitjoinBody {
fill: #000;
}
.symbol {
stroke-linejoin: round;
stroke-linecap: round;
stroke: #840000;
}
.detail {
stroke-linejoin: round;
stroke-linecap: round;
fill: #000;
}</style>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(167.66000000000003,165)" id="cell_C1">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C1 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C1 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C1</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(260.66,165)" id="cell_C2">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C2 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C2 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C2</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100nF</text>
</g>
<g s:type="C_1_" s:width="39.014" s:height="73.152" transform="translate(167.66000000000003,431.152)" id="cell_C3">
<s:alias val="C_1_"/>
<polyline points="0.000,29.261 39.014,29.261" style="stroke-width:4.877" class="cell_C3 symbol none"/>
<polyline points="0.000,43.891 39.014,43.891" style="stroke-width:4.877" class="cell_C3 symbol none"/>
<polyline points="19.507,0.000 19.507,26.822" style="stroke-width:0.960" class="cell_C3 symbol none"/>
<text class="pin_num_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="19.507" y="26.822" transform="rotate(-90 19.507 26.822)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="19.507" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="19.507,73.152 19.507,46.330" style="stroke-width:0.960" class="cell_C3 symbol none"/>
<text class="pin_num_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="19.507" y="46.330" transform="rotate(-90 19.507 46.330)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="19.507" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="25.603" y="12.192" transform="rotate(0 25.603 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">C3</text>
<text class="part_name_text" x="25.603" y="60.960" transform="rotate(0 25.603 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">10nF</text>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(240.16700000000003,288.152)" id="cell_K2">
<text x="15" y="-4" class="nodelabel cell_K2" s:attribute="ref">TQ2SA-5V_1_</text>
<rect width="30" height="120" x="0" y="0" s:generic="body" class="cell_K2"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K2~1">
<text x="-3" y="-4" class="inputPortLabel cell_K2">1</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K2~3">
<text x="-3" y="-4" class="inputPortLabel cell_K2">3</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K2~4">
<text x="-3" y="-4" class="inputPortLabel cell_K2">4</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K2~7">
<text x="-3" y="-4" class="inputPortLabel cell_K2">7</text>
</g>
<g transform="translate(0,90)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K2~8">
<text x="-3" y="-4" class="inputPortLabel cell_K2">8</text>
</g>
<g transform="translate(0,110)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K2~10">
<text x="-3" y="-4" class="inputPortLabel cell_K2">10</text>
</g>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(269.67400000000004,483.804)" id="cell_K3">
<text x="15" y="-4" class="nodelabel cell_K3" s:attribute="ref">TQ2SA-5V_1_</text>
<rect width="30" height="80" x="0" y="0" s:generic="body" class="cell_K3"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K3~1">
<text x="-3" y="-4" class="inputPortLabel cell_K3">1</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K3~3">
<text x="-3" y="-4" class="inputPortLabel cell_K3">3</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K3~4">
<text x="-3" y="-4" class="inputPortLabel cell_K3">4</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_K3~10">
<text x="-3" y="-4" class="inputPortLabel cell_K3">10</text>
</g>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(487.838,165)" id="cell_R1">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R1 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R1 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R1</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">47</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(404.92,175)" id="cell_R2">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R2 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R2 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R2</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">47</text>
</g>
<g s:type="R_1_" s:width="32.918" s:height="73.152" transform="translate(135.906,586.804)" id="cell_R3">
<s:alias val="R_1_"/>
<rect x="0.000" y="12.192" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_R3 symbol none"/>
<polyline points="9.754,0.000 9.754,12.192" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="9.754" y="12.192" transform="rotate(-90 9.754 12.192)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">~</text>
<g s:x="9.754" s:y="0.000" s:pid="1" s:position="top"/>
<polyline points="9.754,73.152 9.754,60.960" style="stroke-width:0.960" class="cell_R3 symbol none"/>
<text class="pin_num_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="" text-anchor="end">2</text>
<text class="pin_name_text" x="9.754" y="60.960" transform="rotate(-90 9.754 60.960)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">~</text>
<g s:x="9.754" s:y="73.152" s:pid="2" s:position="bottom"/>
<text class="part_ref_text" x="29.261" y="36.576" transform="rotate(-90 29.261 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">R3</text>
<text class="part_name_text" x="9.754" y="36.576" transform="rotate(-90 9.754 36.576)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">100</text>
</g>
<g s:type="R_Potentiometer_1_" s:width="82.906" s:height="146.304" transform="translate(22,431.15200000000004)" id="cell_RV1">
<s:alias val="R_Potentiometer_1_"/>
<rect x="36.576" y="85.344" width="19.507" height="48.768" style="stroke-width:2.438" class="cell_RV1 symbol none"/>
<polyline points="57.302,109.728 68.275,104.851 68.275,114.605 57.302,109.728" style="stroke-width:0.960" class="cell_RV1 symbol outline"/>
<polyline points="70.714,109.728 60.960,109.728" style="stroke-width:0.960" class="cell_RV1 symbol none"/>
<polyline points="46.330,73.152 46.330,85.344" style="stroke-width:0.960" class="cell_RV1 symbol none"/>
<text class="pin_num_text" x="46.330" y="85.344" transform="rotate(-90 46.330 85.344)" style="font-size:12.192" dominant-baseline="" text-anchor="start">1</text>
<text class="pin_name_text" x="46.330" y="85.344" transform="rotate(-90 46.330 85.344)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">1</text>
<g s:x="46.330" s:y="73.152" s:pid="1" s:position="top"/>
<polyline points="46.330,146.304 46.330,134.112" style="stroke-width:0.960" class="cell_RV1 symbol none"/>
<text class="pin_num_text" x="46.330" y="134.112" transform="rotate(-90 46.330 134.112)" style="font-size:12.192" dominant-baseline="" text-anchor="end">3</text>
<text class="pin_name_text" x="46.330" y="134.112" transform="rotate(-90 46.330 134.112)" style="font-size:12.192" dominant-baseline="central" text-anchor="start">3</text>
<g s:x="46.330" s:y="146.304" s:pid="3" s:position="bottom"/>
<polyline points="82.906,109.728 70.714,109.728" style="stroke-width:0.960" class="cell_RV1 symbol none"/>
<text class="pin_num_text" x="70.714" y="109.728" transform="rotate(0 70.714 109.728)" style="font-size:12.192" dominant-baseline="" text-anchor="start">2</text>
<text class="pin_name_text" x="70.714" y="109.728" transform="rotate(0 70.714 109.728)" style="font-size:12.192" dominant-baseline="central" text-anchor="end">2</text>
<g s:x="82.906" s:y="109.728" s:pid="2" s:position="right"/>
<text class="part_ref_text" x="3.658" y="109.728" transform="rotate(-90 3.658 109.728)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="ref">RV1</text>
<text class="part_name_text" x="21.946" y="109.728" transform="rotate(-90 21.946 109.728)" style="font-size:12.192" dominant-baseline="central" text-anchor="start" s:attribute="value">10k</text>
</g>
<g s:type="generic" s:width="30" s:height="40" transform="translate(366.67400000000004,22)" id="cell_U6">
<text x="15" y="-4" class="nodelabel cell_U6" s:attribute="ref">THAT1646_1_</text>
<rect width="30" height="120" x="0" y="0" s:generic="body" class="cell_U6"/>
<g transform="translate(0,10)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U6~2">
<text x="-3" y="-4" class="inputPortLabel cell_U6">2</text>
</g>
<g transform="translate(0,30)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U6~3">
<text x="-3" y="-4" class="inputPortLabel cell_U6">3</text>
</g>
<g transform="translate(0,50)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U6~4">
<text x="-3" y="-4" class="inputPortLabel cell_U6">4</text>
</g>
<g transform="translate(0,70)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U6~5">
<text x="-3" y="-4" class="inputPortLabel cell_U6">5</text>
</g>
<g transform="translate(0,90)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U6~6">
<text x="-3" y="-4" class="inputPortLabel cell_U6">6</text>
</g>
<g transform="translate(0,110)" s:x="0" s:y="10" s:pid="in0" s:position="left" id="port_U6~7">
<text x="-3" y="-4" class="inputPortLabel cell_U6">7</text>
</g>
<g transform="translate(30,10)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U6~1">
<text x="5" y="-4" class="cell_U6">1</text>
</g>
<g transform="translate(30,30)" s:x="30" s:y="10" s:pid="out0" s:position="right" id="port_U6~8">
<text x="5" y="-4" class="cell_U6">8</text>
</g>
</g>
<line x1="366.67400000000004" x2="319.67400000000004" y1="112.5" y2="112.5" class="net_11"/>
<line x1="319.67400000000004" x2="319.67400000000004" y1="112.5" y2="145" class="net_11"/>
<line x1="319.67400000000004" x2="187.16700000000003" y1="145" y2="145" class="net_11"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="145" y2="165" class="net_11"/>
<line x1="366.67400000000004" x2="329.67400000000004" y1="92.5" y2="92.5" class="net_2"/>
<line x1="329.67400000000004" x2="329.67400000000004" y1="92.5" y2="155" class="net_2"/>
<line x1="329.67400000000004" x2="280.16700000000003" y1="155" y2="155" class="net_2"/>
<line x1="280.16700000000003" x2="280.16700000000003" y1="155" y2="165" class="net_2"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="238.152" y2="248.152" class="net_3"/>
<line x1="187.16700000000003" x2="177.16700000000003" y1="248.152" y2="248.152" class="net_3"/>
<line x1="177.16700000000003" x2="177.16700000000003" y1="248.152" y2="338.652" class="net_3"/>
<circle cx="177.16700000000003" cy="248.152" r="2" style="fill:#000" class="net_3"/>
<circle cx="177.16700000000003" cy="338.652" r="2" style="fill:#000" class="net_3"/>
<line x1="177.16700000000003" x2="240.16700000000003" y1="338.652" y2="338.652" class="net_3"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="238.152" y2="358.652" class="net_3"/>
<circle cx="187.16700000000003" cy="358.652" r="2" style="fill:#000" class="net_3"/>
<line x1="187.16700000000003" x2="240.16700000000003" y1="358.652" y2="358.652" class="net_3"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="238.152" y2="248.152" class="net_3"/>
<line x1="187.16700000000003" x2="156.66000000000003" y1="248.152" y2="248.152" class="net_3"/>
<line x1="156.66000000000003" x2="156.66000000000003" y1="248.152" y2="514.304" class="net_3"/>
<circle cx="156.66000000000003" cy="248.152" r="2" style="fill:#000" class="net_3"/>
<circle cx="156.66000000000003" cy="514.304" r="2" style="fill:#000" class="net_3"/>
<line x1="156.66000000000003" x2="269.67400000000004" y1="514.304" y2="514.304" class="net_3"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="238.152" y2="248.152" class="net_3"/>
<line x1="187.16700000000003" x2="145.66000000000003" y1="248.152" y2="248.152" class="net_3"/>
<line x1="145.66000000000003" x2="145.66000000000003" y1="248.152" y2="135" class="net_3"/>
<line x1="145.66000000000003" x2="309.67400000000004" y1="135" y2="135" class="net_3"/>
<line x1="309.67400000000004" x2="309.67400000000004" y1="135" y2="52.5" class="net_3"/>
<circle cx="145.66000000000003" cy="248.152" r="2" style="fill:#000" class="net_3"/>
<circle cx="187.16700000000003" cy="248.152" r="2" style="fill:#000" class="net_3"/>
<line x1="309.67400000000004" x2="366.67400000000004" y1="52.5" y2="52.5" class="net_3"/>
<line x1="280.16700000000003" x2="280.16700000000003" y1="238.152" y2="248.152" class="net_3"/>
<line x1="280.16700000000003" x2="177.16700000000003" y1="248.152" y2="248.152" class="net_3"/>
<line x1="177.16700000000003" x2="177.16700000000003" y1="248.152" y2="338.652" class="net_3"/>
<circle cx="280.16700000000003" cy="248.152" r="2" style="fill:#000" class="net_3"/>
<circle cx="177.16700000000003" cy="338.652" r="2" style="fill:#000" class="net_3"/>
<line x1="177.16700000000003" x2="240.16700000000003" y1="338.652" y2="338.652" class="net_3"/>
<line x1="280.16700000000003" x2="280.16700000000003" y1="238.152" y2="248.152" class="net_3"/>
<line x1="280.16700000000003" x2="187.16700000000003" y1="248.152" y2="248.152" class="net_3"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="248.152" y2="358.652" class="net_3"/>
<circle cx="187.16700000000003" cy="358.652" r="2" style="fill:#000" class="net_3"/>
<line x1="187.16700000000003" x2="240.16700000000003" y1="358.652" y2="358.652" class="net_3"/>
<line x1="280.16700000000003" x2="280.16700000000003" y1="238.152" y2="421.152" class="net_3"/>
<line x1="280.16700000000003" x2="156.66000000000003" y1="421.152" y2="421.152" class="net_3"/>
<line x1="156.66000000000003" x2="156.66000000000003" y1="421.152" y2="514.304" class="net_3"/>
<circle cx="280.16700000000003" cy="421.152" r="2" style="fill:#000" class="net_3"/>
<circle cx="156.66000000000003" cy="514.304" r="2" style="fill:#000" class="net_3"/>
<line x1="156.66000000000003" x2="269.67400000000004" y1="514.304" y2="514.304" class="net_3"/>
<line x1="280.16700000000003" x2="280.16700000000003" y1="238.152" y2="248.152" class="net_3"/>
<line x1="280.16700000000003" x2="250.66000000000003" y1="248.152" y2="248.152" class="net_3"/>
<line x1="250.66000000000003" x2="250.66000000000003" y1="248.152" y2="135" class="net_3"/>
<line x1="250.66000000000003" x2="309.67400000000004" y1="135" y2="135" class="net_3"/>
<line x1="309.67400000000004" x2="309.67400000000004" y1="135" y2="52.5" class="net_3"/>
<circle cx="250.66000000000003" cy="135" r="2" style="fill:#000" class="net_3"/>
<circle cx="250.66000000000003" cy="248.152" r="2" style="fill:#000" class="net_3"/>
<line x1="309.67400000000004" x2="366.67400000000004" y1="52.5" y2="52.5" class="net_3"/>
<line x1="240.16700000000003" x2="177.16700000000003" y1="338.652" y2="338.652" class="net_3"/>
<line x1="177.16700000000003" x2="177.16700000000003" y1="338.652" y2="421.152" class="net_3"/>
<line x1="177.16700000000003" x2="187.16700000000003" y1="421.152" y2="421.152" class="net_3"/>
<circle cx="177.16700000000003" cy="421.152" r="2" style="fill:#000" class="net_3"/>
<circle cx="177.16700000000003" cy="338.652" r="2" style="fill:#000" class="net_3"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="421.152" y2="431.152" class="net_3"/>
<line x1="240.16700000000003" x2="177.16700000000003" y1="338.652" y2="338.652" class="net_3"/>
<line x1="177.16700000000003" x2="177.16700000000003" y1="338.652" y2="421.152" class="net_3"/>
<line x1="177.16700000000003" x2="125.906" y1="421.152" y2="421.152" class="net_3"/>
<line x1="125.906" x2="125.906" y1="421.152" y2="576.804" class="net_3"/>
<line x1="125.906" x2="145.66000000000003" y1="576.804" y2="576.804" class="net_3"/>
<circle cx="125.906" cy="421.152" r="2" style="fill:#000" class="net_3"/>
<circle cx="125.906" cy="576.804" r="2" style="fill:#000" class="net_3"/>
<circle cx="145.66000000000003" cy="576.804" r="2" style="fill:#000" class="net_3"/>
<circle cx="177.16700000000003" cy="338.652" r="2" style="fill:#000" class="net_3"/>
<line x1="145.66000000000003" x2="145.66" y1="576.804" y2="586.804" class="net_3"/>
<line x1="240.16700000000003" x2="177.16700000000003" y1="338.652" y2="338.652" class="net_3"/>
<line x1="177.16700000000003" x2="177.16700000000003" y1="338.652" y2="421.152" class="net_3"/>
<line x1="177.16700000000003" x2="125.906" y1="421.152" y2="421.152" class="net_3"/>
<line x1="125.906" x2="125.906" y1="421.152" y2="679.956" class="net_3"/>
<line x1="125.906" x2="68.32999999999998" y1="679.956" y2="679.956" class="net_3"/>
<circle cx="125.906" cy="679.956" r="2" style="fill:#000" class="net_3"/>
<circle cx="177.16700000000003" cy="338.652" r="2" style="fill:#000" class="net_3"/>
<line x1="68.32999999999998" x2="68.33" y1="679.956" y2="577.456" class="net_3"/>
<line x1="240.16700000000003" x2="187.16700000000003" y1="358.652" y2="358.652" class="net_3"/>
<circle cx="187.16700000000003" cy="358.652" r="2" style="fill:#000" class="net_3"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="358.652" y2="431.152" class="net_3"/>
<line x1="240.16700000000003" x2="187.16700000000003" y1="358.652" y2="358.652" class="net_3"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="358.652" y2="421.152" class="net_3"/>
<line x1="187.16700000000003" x2="145.66000000000003" y1="421.152" y2="421.152" class="net_3"/>
<circle cx="187.16700000000003" cy="421.152" r="2" style="fill:#000" class="net_3"/>
<circle cx="145.66000000000003" cy="421.152" r="2" style="fill:#000" class="net_3"/>
<circle cx="187.16700000000003" cy="358.652" r="2" style="fill:#000" class="net_3"/>
<line x1="145.66000000000003" x2="145.66" y1="421.152" y2="586.804" class="net_3"/>
<line x1="240.16700000000003" x2="187.16700000000003" y1="358.652" y2="358.652" class="net_3"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="358.652" y2="421.152" class="net_3"/>
<line x1="187.16700000000003" x2="12" y1="421.152" y2="421.152" class="net_3"/>
<line x1="12" x2="12" y1="421.152" y2="679.956" class="net_3"/>
<line x1="12" x2="68.32999999999998" y1="679.956" y2="679.956" class="net_3"/>
<circle cx="68.32999999999998" cy="679.956" r="2" style="fill:#000" class="net_3"/>
<circle cx="187.16700000000003" cy="358.652" r="2" style="fill:#000" class="net_3"/>
<line x1="68.32999999999998" x2="68.33" y1="679.956" y2="577.456" class="net_3"/>
<line x1="269.67400000000004" x2="156.66000000000003" y1="514.304" y2="514.304" class="net_3"/>
<line x1="156.66000000000003" x2="156.66000000000003" y1="514.304" y2="421.152" class="net_3"/>
<line x1="156.66000000000003" x2="187.16700000000003" y1="421.152" y2="421.152" class="net_3"/>
<circle cx="156.66000000000003" cy="421.152" r="2" style="fill:#000" class="net_3"/>
<circle cx="156.66000000000003" cy="514.304" r="2" style="fill:#000" class="net_3"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="421.152" y2="431.152" class="net_3"/>
<line x1="269.67400000000004" x2="156.66000000000003" y1="514.304" y2="514.304" class="net_3"/>
<line x1="156.66000000000003" x2="156.66000000000003" y1="514.304" y2="576.804" class="net_3"/>
<line x1="156.66000000000003" x2="145.66000000000003" y1="576.804" y2="576.804" class="net_3"/>
<circle cx="156.66000000000003" cy="576.804" r="2" style="fill:#000" class="net_3"/>
<circle cx="156.66000000000003" cy="514.304" r="2" style="fill:#000" class="net_3"/>
<line x1="145.66000000000003" x2="145.66" y1="576.804" y2="586.804" class="net_3"/>
<line x1="269.67400000000004" x2="156.66000000000003" y1="514.304" y2="514.304" class="net_3"/>
<line x1="156.66000000000003" x2="156.66000000000003" y1="514.304" y2="576.804" class="net_3"/>
<line x1="156.66000000000003" x2="309.67400000000004" y1="576.804" y2="576.804" class="net_3"/>
<line x1="309.67400000000004" x2="309.67400000000004" y1="576.804" y2="679.956" class="net_3"/>
<line x1="309.67400000000004" x2="68.32999999999998" y1="679.956" y2="679.956" class="net_3"/>
<circle cx="309.67400000000004" cy="576.804" r="2" style="fill:#000" class="net_3"/>
<circle cx="156.66000000000003" cy="514.304" r="2" style="fill:#000" class="net_3"/>
<line x1="68.32999999999998" x2="68.33" y1="679.956" y2="577.456" class="net_3"/>
<line x1="366.67400000000004" x2="309.67400000000004" y1="52.5" y2="52.5" class="net_3"/>
<line x1="309.67400000000004" x2="309.67400000000004" y1="52.5" y2="421.152" class="net_3"/>
<line x1="309.67400000000004" x2="187.16700000000003" y1="421.152" y2="421.152" class="net_3"/>
<circle cx="309.67400000000004" cy="421.152" r="2" style="fill:#000" class="net_3"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="421.152" y2="431.152" class="net_3"/>
<line x1="366.67400000000004" x2="309.67400000000004" y1="52.5" y2="52.5" class="net_3"/>
<line x1="309.67400000000004" x2="309.67400000000004" y1="52.5" y2="135" class="net_3"/>
<line x1="309.67400000000004" x2="145.66000000000003" y1="135" y2="135" class="net_3"/>
<circle cx="309.67400000000004" cy="135" r="2" style="fill:#000" class="net_3"/>
<line x1="145.66000000000003" x2="145.66" y1="135" y2="586.804" class="net_3"/>
<line x1="366.67400000000004" x2="309.67400000000004" y1="52.5" y2="52.5" class="net_3"/>
<line x1="309.67400000000004" x2="309.67400000000004" y1="52.5" y2="679.956" class="net_3"/>
<line x1="309.67400000000004" x2="68.32999999999998" y1="679.956" y2="679.956" class="net_3"/>
<line x1="68.32999999999998" x2="68.33" y1="679.956" y2="577.456" class="net_3"/>
<line x1="366.67400000000004" x2="349.67400000000004" y1="32.5" y2="32.5" class="net_10"/>
<line x1="349.67400000000004" x2="349.67400000000004" y1="32.5" y2="155" class="net_10"/>
<line x1="349.67400000000004" x2="497.59200000000004" y1="155" y2="155" class="net_10"/>
<circle cx="497.59200000000004" cy="155" r="2" style="fill:#000" class="net_10"/>
<line x1="497.59200000000004" x2="497.59200000000004" y1="155" y2="165" class="net_10"/>
<line x1="397.67400000000004" x2="497.59200000000004" y1="32.5" y2="32.5" class="net_10"/>
<line x1="497.59200000000004" x2="497.59200000000004" y1="32.5" y2="165" class="net_10"/>
<line x1="366.67400000000004" x2="339.67400000000004" y1="132.5" y2="132.5" class="net_5"/>
<line x1="339.67400000000004" x2="339.67400000000004" y1="132.5" y2="165" class="net_5"/>
<line x1="339.67400000000004" x2="414.67400000000004" y1="165" y2="165" class="net_5"/>
<circle cx="414.67400000000004" cy="165" r="2" style="fill:#000" class="net_5"/>
<line x1="414.67400000000004" x2="414.67400000000004" y1="165" y2="175" class="net_5"/>
<line x1="397.67400000000004" x2="414.67400000000004" y1="52.5" y2="52.5" class="net_5"/>
<line x1="414.67400000000004" x2="414.67400000000004" y1="52.5" y2="175" class="net_5"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="504.304" y2="534.304" class="net_1"/>
<circle cx="187.16700000000003" cy="534.304" r="2" style="fill:#000" class="net_1"/>
<line x1="187.16700000000003" x2="269.67400000000004" y1="534.304" y2="534.304" class="net_1"/>
<line x1="145.66" x2="145.66000000000003" y1="659.956" y2="669.956" class="net_1"/>
<line x1="145.66000000000003" x2="187.16700000000003" y1="669.956" y2="669.956" class="net_1"/>
<line x1="187.16700000000003" x2="187.16700000000003" y1="669.956" y2="534.304" class="net_1"/>
<circle cx="187.16700000000003" cy="534.304" r="2" style="fill:#000" class="net_1"/>
<line x1="187.16700000000003" x2="269.67400000000004" y1="534.304" y2="534.304" class="net_1"/>
<line x1="497.59200000000004" x2="497.59200000000004" y1="238.152" y2="268.152" class="net_9"/>
<line x1="497.59200000000004" x2="207.16700000000003" y1="268.152" y2="268.152" class="net_9"/>
<line x1="207.16700000000003" x2="207.16700000000003" y1="268.152" y2="318.652" class="net_9"/>
<line x1="207.16700000000003" x2="240.16700000000003" y1="318.652" y2="318.652" class="net_9"/>
<line x1="414.67400000000004" x2="414.67400000000004" y1="248.152" y2="258.152" class="net_4"/>
<line x1="414.67400000000004" x2="197.16700000000003" y1="258.152" y2="258.152" class="net_4"/>
<line x1="197.16700000000003" x2="197.16700000000003" y1="258.152" y2="378.652" class="net_4"/>
<line x1="197.16700000000003" x2="240.16700000000003" y1="378.652" y2="378.652" class="net_4"/>
<line x1="240.16700000000003" x2="217.16700000000003" y1="298.652" y2="298.652" class="net_6"/>
<line x1="217.16700000000003" x2="217.16700000000003" y1="298.652" y2="494.304" class="net_6"/>
<line x1="217.16700000000003" x2="269.67400000000004" y1="494.304" y2="494.304" class="net_6"/>
<line x1="104.906" x2="114.906" y1="540.88" y2="540.8799999999999" class="net_8"/>
<line x1="114.906" x2="114.906" y1="540.8799999999999" y2="72.5" class="net_8"/>
<line x1="114.906" x2="366.67400000000004" y1="72.5" y2="72.5" class="net_8"/>
</svg>

After

Width:  |  Height:  |  Size: 33 KiB