@tscircuit/schematic-trace-solver 0.0.190 → 0.0.192
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -0
- package/dist/index.js +437 -211
- package/lib/solvers/InlineNetLabelSolver/getLocalTraceLabelShifts.ts +29 -0
- package/lib/solvers/LongDistancePairSolver/LongDistancePairSolver.ts +7 -0
- package/lib/solvers/LongDistancePairSolver/getParallelNetLabelPolicy.ts +98 -0
- package/lib/solvers/MspConnectionPairSolver/MspConnectionPairSolver.ts +24 -2
- package/lib/solvers/MspConnectionPairSolver/getParallelRailPairs.ts +178 -0
- package/lib/solvers/NetLabelToTraceSolver/NetLabelToTraceSolver.ts +13 -0
- package/lib/solvers/SameNetJunctionAlignmentSolver/collapseRedundantSharedEndpointStubs.ts +12 -6
- package/package.json +1 -1
- package/tests/bug-reports/bug-report-20260706T213649Z/__snapshots__/bug-report-20260706T213649Z.snap.svg +837 -799
- package/tests/bug-reports/bug-report-20260706T220324Z/__snapshots__/bug-report-20260706T220324Z.snap.svg +904 -866
- package/tests/bug-reports/bug-report-20260707T092615Z/__snapshots__/bug-report-20260707T092615Z.snap.svg +533 -524
- package/tests/bug-reports/bug-report-20260721T221026Z/__snapshots__/bug-report-20260721T221026Z.snap.svg +2 -2
- package/tests/bug-reports/bug-report-20260724T175257Z/__snapshots__/bug-report-20260724T175257Z.snap.svg +2 -2
- package/tests/bug-reports/bug-report-20260728T144234Z/__snapshots__/bug-report-20260728T144234Z.snap.svg +2 -2
- package/tests/bug-reports/bug-report-20260804T171919Z/__snapshots__/bug-report-20260804T171919Z.snap.svg +2 -2
- package/tests/bug-reports/bug-report-20260806T093501Z/__snapshots__/bug-report-20260806T093501Z.snap.svg +94 -94
- package/tests/bug-reports/bug-report-20260815T073240Z/__snapshots__/bug-report-20260815T073240Z.snap.svg +2 -2
- package/tests/bug-reports/bug-report-20260901T055358Z/__snapshots__/bug-report-20260901T055358Z.snap.svg +2 -2
- package/tests/bug-reports/bug-report-20260901T064117Z/bug-report-20260901T064117Z.test.ts +13 -2
- package/tests/bug-reports/bug-report-20260902T092425Z/__snapshots__/bug-report-20260902T092425Z.snap.svg +2 -2
- package/tests/bug-reports/bug-report-20260902T092425Z/bug-report-20260902T092425Z.test.ts +16 -2
- package/tests/bug-reports/bug-report-20260905T041712Z/__snapshots__/bug-report-20260905T041712Z.snap.svg +2 -2
- package/tests/bug-reports/bug-report-20260907T083336Z/__snapshots__/bug-report-20260907T083336Z.snap.svg +2 -2
- package/tests/bug-reports/bug-report-20260907T110144Z/__snapshots__/bug-report-20260907T110144Z.snap.svg +19 -58
- package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.test.ts +2 -2
- package/tests/bug-reports/bug-report-20260907T145640Z/__snapshots__/bug-report-20260907T145640Z.snap.svg +917 -933
- package/tests/examples/__snapshots__/example13.snap.svg +2 -2
- package/tests/examples/__snapshots__/example15.snap.svg +2 -2
- package/tests/examples/__snapshots__/example51.snap.svg +2 -2
- package/tests/repros/__snapshots__/board-1273-trace-overlap-cycle.snap.svg +2 -2
- package/tests/repros/__snapshots__/board-15984-same-net-junction.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-bq25895-cross-net-trace-overlap.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-cc2340r5.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-esp12f-section.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-example35-minimize-trace-crossing.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-hub-usb-sheet.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-isolated-rs485-isow7841.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-pga300-redundant-ground-traces.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-pmp11282-isolated-dcdc.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-powerbank-3v-system-power.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-repeated-power-rail-junctions.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-rp2040-gamepad-trace-alignment.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-smartwatch-power-sheet.snap.svg +111 -75
- package/tests/repros/__snapshots__/repro-tida00553-j4-cell-divider.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-tida010076-page02.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-type-c-vbus-led-ground-label.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro-usb-power-vbus-label-detour.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro130-bq27441-fuel-gauge-trace-through-c1.snap.svg +2 -2
- package/tests/repros/__snapshots__/repro161-power-section-autolayout.snap.svg +2 -2
- package/tests/repros/repro-trellis-core-decoupling-snake-traces.test.ts +66 -0
- package/tests/solvers/InlineNetLabelSolver/local-trace-label-shifts.test.ts +62 -0
- package/tests/solvers/LongDistancePairSolver/__snapshots__/decoupling-mixed-supplies.snap.svg +112 -0
- package/tests/solvers/LongDistancePairSolver/__snapshots__/horizontal-rails.snap.svg +79 -0
- package/tests/solvers/LongDistancePairSolver/__snapshots__/vertical-rails.snap.svg +86 -0
- package/tests/solvers/LongDistancePairSolver/parallel-decoupling-labels.test.ts +505 -0
- package/tests/solvers/SameNetJunctionAlignmentSolver/collapse-redundant-shared-endpoint-stubs.test.ts +45 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<svg width="1200" height="2016" viewBox="0 0 1200 2016" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Solver debug visualization on top and Circuit JSON schematic on the bottom">
|
|
2
2
|
<g transform="translate(0, 0) scale(1.875, 1.875) translate(0, 0)">
|
|
3
|
-
<rect width="100%" height="100%" fill="white"/><g><polyline data-points="-3.55,0 -1.15,1.125" data-type="line" data-label="" points="59.50087057457921,352.5014509576321 215.507835171213,279.37318630296" fill="none" stroke="hsl(40, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="3.435,3 -2.45,2" data-type="line" data-label="" points="513.5461404526988,157.49274521183986 131.00406268136967,222.49564712710392" fill="none" stroke="hsl(224, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.15,0.375 -2.45,0" data-type="line" data-label="" points="215.507835171213,328.12536273940805 131.00406268136967,352.5014509576321" fill="none" stroke="hsl(272, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.15,0.375 -3.55,-1.9999999999999998" data-type="line" data-label="" points="215.507835171213,328.12536273940805 59.50087057457921,482.5072547881602" fill="none" stroke="hsl(272, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.15,0.75 -1.15,-0.375" data-type="line" data-label="" points="365.01450957632034,303.749274521184 215.507835171213,376.8775391758561" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.15,0.75 -2.45,-1.9999999999999998" data-type="line" data-label="" points="365.01450957632034,303.749274521184 131.00406268136967,482.5072547881602" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.15,0.75 3.55,-1.5" data-type="line" data-label="" points="365.01450957632034,303.749274521184 521.0214741729542,450.0058038305282" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.15,0.75 3.55,0" data-type="line" data-label="" points="365.01450957632034,303.749274521184 521.0214741729542,352.5014509576321" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.15,0.75 4.5649999999999995,3" data-type="line" data-label="" points="365.01450957632034,303.749274521184 586.9994196169471,157.49274521183986" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,-0.375 -2.45,-1.9999999999999998" data-type="line" data-label="" points="215.507835171213,376.8775391758561 131.00406268136967,482.5072547881602" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,-0.375 3.55,-1.5" data-type="line" data-label="" points="215.507835171213,376.8775391758561 521.0214741729542,450.0058038305282" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,-0.375 3.55,0" data-type="line" data-label="" points="215.507835171213,376.8775391758561 521.0214741729542,352.5014509576321" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,-0.375 4.5649999999999995,3" data-type="line" data-label="" points="215.507835171213,376.8775391758561 586.9994196169471,157.49274521183986" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.45,-1.9999999999999998 3.55,-1.5" data-type="line" data-label="" points="131.00406268136967,482.5072547881602 521.0214741729542,450.0058038305282" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.45,-1.9999999999999998 3.55,0" data-type="line" data-label="" points="131.00406268136967,482.5072547881602 521.0214741729542,352.5014509576321" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.45,-1.9999999999999998 4.5649999999999995,3" data-type="line" data-label="" points="131.00406268136967,482.5072547881602 586.9994196169471,157.49274521183986" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.55,-1.5 3.55,0" data-type="line" data-label="" points="521.0214741729542,450.0058038305282 521.0214741729542,352.5014509576321" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.55,-1.5 4.5649999999999995,3" data-type="line" data-label="" points="521.0214741729542,450.0058038305282 586.9994196169471,157.49274521183986" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.55,0 4.5649999999999995,3" data-type="line" data-label="" points="521.0214741729542,352.5014509576321 586.9994196169471,157.49274521183986" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.15,0 -1.15,-1.125" data-type="line" data-label="" points="365.01450957632034,352.5014509576321 215.507835171213,425.62971561230415" fill="none" stroke="hsl(111, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.15,0 2.45,-1.5" data-type="line" data-label="" points="365.01450957632034,352.5014509576321 449.5182820661637,450.0058038305282" fill="none" stroke="hsl(111, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,-1.125 2.45,-1.5" data-type="line" data-label="" points="215.507835171213,425.62971561230415 449.5182820661637,450.0058038305282" fill="none" stroke="hsl(111, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,1.125 -3.55,0" data-type="line" data-label="" points="215.507835171213,279.37318630296 59.50087057457921,352.5014509576321" fill="none" stroke="hsl(105, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,1.125 -3.55,2" data-type="line" data-label="" points="215.507835171213,279.37318630296 59.50087057457921,222.49564712710392" fill="none" stroke="hsl(105, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,1.125 2.45,0" data-type="line" data-label="" points="215.507835171213,279.37318630296 449.5182820661637,352.5014509576321" fill="none" stroke="hsl(105, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.55,0 -3.55,2" data-type="line" data-label="" points="59.50087057457921,352.5014509576321 59.50087057457921,222.49564712710392" fill="none" stroke="hsl(105, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.55,0 2.45,0" data-type="line" data-label="" points="59.50087057457921,352.5014509576321 449.5182820661637,352.5014509576321" fill="none" stroke="hsl(105, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.55,2 2.45,0" data-type="line" data-label="" points="59.50087057457921,222.49564712710392 449.5182820661637,352.5014509576321" fill="none" stroke="hsl(105, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.55,2 -3.75,2 -3.75,1.125 -1.1500000000000004,1.125" data-type="line" data-label="" points="59.50087057457921,222.49564712710392 46.500290191526375,222.49564712710392 46.500290191526375,279.37318630296 215.50783517121295,279.37318630296" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.55,0 -3.75,0 -3.75,1.125" data-type="line" data-label="" points="59.50087057457921,352.5014509576321 46.500290191526375,352.5014509576321 46.500290191526375,279.37318630296" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.45,0 -1.8,0 -1.8,0.375 -1.15,0.375" data-type="line" data-label="" points="131.00406268136967,352.5014509576321 173.25594892629132,352.5014509576321 173.25594892629132,328.12536273940805 215.507835171213,328.12536273940805" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.55,-1.9999999999999998 -3.75,-1.9999999999999998 -3.75,-0.9999999999999999 -2.25,-0.9999999999999999 -2.25,0" data-type="line" data-label="" points="59.50087057457921,482.5072547881602 46.500290191526375,482.5072547881602 46.500290191526375,417.5043528728961 144.0046430644225,417.5043528728961 144.0046430644225,352.5014509576321" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.55,0 3.75,0 3.75,-1.5 3.55,-1.5" data-type="line" data-label="" points="521.0214741729542,352.5014509576321 534.022054556007,352.5014509576321 534.022054556007,450.0058038305282 521.0214741729542,450.0058038305282" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.15,0.75 3.75,0.75 3.75,0" data-type="line" data-label="" points="365.01450957632034,303.749274521184 534.022054556007,303.749274521184 534.022054556007,352.5014509576321" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.5649999999999995,3 4.765,3 4.765,0 3.55,0" data-type="line" data-label="" points="586.9994196169471,157.49274521183986 600,157.49274521183986 600,352.5014509576321 521.0214741729542,352.5014509576321" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.45,-1.9999999999999998 -1.8,-1.9999999999999998 -1.8,-0.375 -1.15,-0.375" data-type="line" data-label="" points="131.00406268136967,482.5072547881602 173.25594892629132,482.5072547881602 173.25594892629132,376.8775391758561 215.507835171213,376.8775391758561" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.15,0 1.8,0 1.8,-1.5 2.45,-1.5" data-type="line" data-label="" points="365.01450957632034,352.5014509576321 407.266395821242,352.5014509576321 407.266395821242,450.0058038305282 449.5182820661637,450.0058038305282" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.435,3 0.49249999999999994,3 0.49249999999999994,2 -2.45,2" data-type="line" data-label="" points="513.5461404526988,157.49274521183986 322.2751015670342,157.49274521183986 322.2751015670342,222.49564712710392 131.00406268136967,222.49564712710392" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.15,-1.125 -1.3499999999999999,-1.125 -1.3499999999999999,-2.39445535 1.8,-2.39445535 1.8,-1.5" data-type="line" data-label="" points="215.507835171213,425.62971561230415 202.5072547881602,425.62971561230415 202.5072547881602,508.14799721416136 407.266395821242,508.14799721416136 407.266395821242,450.0058038305282" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.45,0 2.2990000000000004,0 2.2990000000000004,0.051000000000000004" data-type="line" data-label="" points="449.5182820661637,352.5014509576321 439.7028438769588,352.5014509576321 439.7028438769588,349.1863029599536" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="0" data-y="0" x="215.507835171213" y="230.62100986651194" width="149.50667440510733" height="243.76088218224027" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="-3" data-y="0" x="59.500870574579224" y="339.86128891468377" width="71.50319210679046" height="25.28032408589661" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="-3" data-y="-2" x="59.500870574579224" y="469.86709274521195" width="71.50319210679046" height="25.280324085896666" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="-3" data-y="2" x="59.500870574579224" y="209.8554850841556" width="71.50319210679046" height="25.280324085896666" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="3" data-y="-1.5" x="449.51828206616364" y="422.7045850261173" width="71.5031921067905" height="54.60243760882179" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="3" data-y="0" x="449.51828206616364" y="325.2002321532212" width="71.5031921067905" height="54.60243760882179" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_6" data-x="4" data-y="3" x="513.5461404526989" y="136.366802089379" width="73.45327916424833" height="42.25188624492168" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="netId: gnd
|
|
3
|
+
<rect width="100%" height="100%" fill="white"/><g><polyline data-points="-3.55,0 -1.15,1.125" data-type="line" data-label="" points="59.50087057457921,352.5014509576321 215.507835171213,279.37318630296" fill="none" stroke="hsl(40, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="3.435,3 -2.45,2" data-type="line" data-label="" points="513.5461404526988,157.49274521183986 131.00406268136967,222.49564712710392" fill="none" stroke="hsl(224, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.15,0.375 -2.45,0" data-type="line" data-label="" points="215.507835171213,328.12536273940805 131.00406268136967,352.5014509576321" fill="none" stroke="hsl(272, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.15,0.375 -3.55,-1.9999999999999998" data-type="line" data-label="" points="215.507835171213,328.12536273940805 59.50087057457921,482.5072547881602" fill="none" stroke="hsl(272, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.15,0.75 -1.15,-0.375" data-type="line" data-label="" points="365.01450957632034,303.749274521184 215.507835171213,376.8775391758561" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.15,0.75 -2.45,-1.9999999999999998" data-type="line" data-label="" points="365.01450957632034,303.749274521184 131.00406268136967,482.5072547881602" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.15,0.75 3.55,-1.5" data-type="line" data-label="" points="365.01450957632034,303.749274521184 521.0214741729542,450.0058038305282" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.15,0.75 3.55,0" data-type="line" data-label="" points="365.01450957632034,303.749274521184 521.0214741729542,352.5014509576321" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.15,0.75 4.5649999999999995,3" data-type="line" data-label="" points="365.01450957632034,303.749274521184 586.9994196169471,157.49274521183986" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,-0.375 -2.45,-1.9999999999999998" data-type="line" data-label="" points="215.507835171213,376.8775391758561 131.00406268136967,482.5072547881602" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,-0.375 3.55,-1.5" data-type="line" data-label="" points="215.507835171213,376.8775391758561 521.0214741729542,450.0058038305282" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,-0.375 3.55,0" data-type="line" data-label="" points="215.507835171213,376.8775391758561 521.0214741729542,352.5014509576321" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,-0.375 4.5649999999999995,3" data-type="line" data-label="" points="215.507835171213,376.8775391758561 586.9994196169471,157.49274521183986" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.45,-1.9999999999999998 3.55,-1.5" data-type="line" data-label="" points="131.00406268136967,482.5072547881602 521.0214741729542,450.0058038305282" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.45,-1.9999999999999998 3.55,0" data-type="line" data-label="" points="131.00406268136967,482.5072547881602 521.0214741729542,352.5014509576321" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.45,-1.9999999999999998 4.5649999999999995,3" data-type="line" data-label="" points="131.00406268136967,482.5072547881602 586.9994196169471,157.49274521183986" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.55,-1.5 3.55,0" data-type="line" data-label="" points="521.0214741729542,450.0058038305282 521.0214741729542,352.5014509576321" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.55,-1.5 4.5649999999999995,3" data-type="line" data-label="" points="521.0214741729542,450.0058038305282 586.9994196169471,157.49274521183986" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.55,0 4.5649999999999995,3" data-type="line" data-label="" points="521.0214741729542,352.5014509576321 586.9994196169471,157.49274521183986" fill="none" stroke="hsl(253, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.15,0 -1.15,-1.125" data-type="line" data-label="" points="365.01450957632034,352.5014509576321 215.507835171213,425.62971561230415" fill="none" stroke="hsl(111, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.15,0 2.45,-1.5" data-type="line" data-label="" points="365.01450957632034,352.5014509576321 449.5182820661637,450.0058038305282" fill="none" stroke="hsl(111, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,-1.125 2.45,-1.5" data-type="line" data-label="" points="215.507835171213,425.62971561230415 449.5182820661637,450.0058038305282" fill="none" stroke="hsl(111, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,1.125 -3.55,0" data-type="line" data-label="" points="215.507835171213,279.37318630296 59.50087057457921,352.5014509576321" fill="none" stroke="hsl(105, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,1.125 -3.55,2" data-type="line" data-label="" points="215.507835171213,279.37318630296 59.50087057457921,222.49564712710392" fill="none" stroke="hsl(105, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.15,1.125 2.45,0" data-type="line" data-label="" points="215.507835171213,279.37318630296 449.5182820661637,352.5014509576321" fill="none" stroke="hsl(105, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.55,0 -3.55,2" data-type="line" data-label="" points="59.50087057457921,352.5014509576321 59.50087057457921,222.49564712710392" fill="none" stroke="hsl(105, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.55,0 2.45,0" data-type="line" data-label="" points="59.50087057457921,352.5014509576321 449.5182820661637,352.5014509576321" fill="none" stroke="hsl(105, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.55,2 2.45,0" data-type="line" data-label="" points="59.50087057457921,222.49564712710392 449.5182820661637,352.5014509576321" fill="none" stroke="hsl(105, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.55,2 -3.75,2 -3.75,1.125 -1.1500000000000004,1.125" data-type="line" data-label="" points="59.50087057457921,222.49564712710392 46.500290191526375,222.49564712710392 46.500290191526375,279.37318630296 215.50783517121295,279.37318630296" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.55,0 -3.75,0 -3.75,1.125" data-type="line" data-label="" points="59.50087057457921,352.5014509576321 46.500290191526375,352.5014509576321 46.500290191526375,279.37318630296" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.45,0 -1.8,0 -1.8,0.375 -1.15,0.375" data-type="line" data-label="" points="131.00406268136967,352.5014509576321 173.25594892629132,352.5014509576321 173.25594892629132,328.12536273940805 215.507835171213,328.12536273940805" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.55,-1.9999999999999998 -3.75,-1.9999999999999998 -3.75,-0.9999999999999999 -2.25,-0.9999999999999999 -2.25,0" data-type="line" data-label="" points="59.50087057457921,482.5072547881602 46.500290191526375,482.5072547881602 46.500290191526375,417.5043528728961 144.0046430644225,417.5043528728961 144.0046430644225,352.5014509576321" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.75,0 3.75,-1.5 3.55,-1.5" data-type="line" data-label="" points="534.022054556007,352.5014509576321 534.022054556007,450.0058038305282 521.0214741729542,450.0058038305282" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.15,0.75 3.75,0.75 3.75,0" data-type="line" data-label="" points="365.01450957632034,303.749274521184 534.022054556007,303.749274521184 534.022054556007,352.5014509576321" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.5649999999999995,3 4.765,3 4.765,0 3.55,0" data-type="line" data-label="" points="586.9994196169471,157.49274521183986 600,157.49274521183986 600,352.5014509576321 521.0214741729542,352.5014509576321" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.45,-1.9999999999999998 -1.8,-1.9999999999999998 -1.8,-0.375 -1.15,-0.375" data-type="line" data-label="" points="131.00406268136967,482.5072547881602 173.25594892629132,482.5072547881602 173.25594892629132,376.8775391758561 215.507835171213,376.8775391758561" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.15,0 1.8,0 1.8,-1.5 2.45,-1.5" data-type="line" data-label="" points="365.01450957632034,352.5014509576321 407.266395821242,352.5014509576321 407.266395821242,450.0058038305282 449.5182820661637,450.0058038305282" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.435,3 0.49249999999999994,3 0.49249999999999994,2 -2.45,2" data-type="line" data-label="" points="513.5461404526988,157.49274521183986 322.2751015670342,157.49274521183986 322.2751015670342,222.49564712710392 131.00406268136967,222.49564712710392" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.15,-1.125 -1.3499999999999999,-1.125 -1.3499999999999999,-2.39445535 1.8,-2.39445535 1.8,-1.5" data-type="line" data-label="" points="215.507835171213,425.62971561230415 202.5072547881602,425.62971561230415 202.5072547881602,508.14799721416136 407.266395821242,508.14799721416136 407.266395821242,450.0058038305282" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.45,0 2.2990000000000004,0 2.2990000000000004,0.051000000000000004" data-type="line" data-label="" points="449.5182820661637,352.5014509576321 439.7028438769588,352.5014509576321 439.7028438769588,349.1863029599536" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="0" data-y="0" x="215.507835171213" y="230.62100986651194" width="149.50667440510733" height="243.76088218224027" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="-3" data-y="0" x="59.500870574579224" y="339.86128891468377" width="71.50319210679046" height="25.28032408589661" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="-3" data-y="-2" x="59.500870574579224" y="469.86709274521195" width="71.50319210679046" height="25.280324085896666" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="-3" data-y="2" x="59.500870574579224" y="209.8554850841556" width="71.50319210679046" height="25.280324085896666" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="3" data-y="-1.5" x="449.51828206616364" y="422.7045850261173" width="71.5031921067905" height="54.60243760882179" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="3" data-y="0" x="449.51828206616364" y="325.2002321532212" width="71.5031921067905" height="54.60243760882179" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="schematic_component_6" data-x="4" data-y="3" x="513.5461404526989" y="136.366802089379" width="73.45327916424833" height="42.25188624492168" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="netId: gnd
|
|
4
4
|
globalConnNetId: connectivity_net3" data-x="3.75" data-y="-1.725" x="527.5217643644805" y="450.0058038305282" width="13.000580383052807" height="29.251305861868843" fill="#00000066" stroke="#000000" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="netId: gnd
|
|
5
5
|
globalConnNetId: connectivity_net3" data-x="-1.8" data-y="-2.2249999999999996" x="166.7556587347649" y="482.50725478816025" width="13.000580383052835" height="29.251305861868843" fill="#00000066" stroke="#000000" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="netId: v5
|
|
6
6
|
globalConnNetId: connectivity_net4" data-x="1.8" data-y="0.225" x="400.7661056297155" y="323.2501450957633" width="13.000580383052863" height="29.251305861868843" fill="#ef444466" stroke="#ef4444" stroke-width="0.015383928571428571"/></g><g><rect data-type="rect" data-label="netId: .PWR1 > .FB to .R6 > .pin2
|
|
@@ -90,7 +90,7 @@ orientation: y+" data-x="1.96375" data-y="3" cx="417.91062100986653" cy="157.492
|
|
|
90
90
|
.port-label { fill: rgb(0, 100, 100); }
|
|
91
91
|
.component-name { fill: rgb(0, 100, 100); }
|
|
92
92
|
|
|
93
|
-
</style><rect class="boundary" x="0" y="0" width="1200" height="800"/><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><path d="M 138.66614549310998 217.01663147149998 L 115.78535915674996 217.01663147149998 L 115.78535915674996 317.120071693075 L 413.23558152942996 317.120071693075" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 138.66614549310998 217.01663147149998 L 115.78535915674996 217.01663147149998 L 115.78535915674996 317.120071693075 L 413.23558152942996 317.120071693075" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><path d="M 138.66614549310998 445.8244948351 L 115.78535915674996 445.8244948351 L 115.78535915674996 317.120071693075" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 138.66614549310998 445.8244948351 L 115.78535915674996 445.8244948351 L 115.78535915674996 317.120071693075" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><path d="M 264.51047034308993 445.8244948351 L 338.87302593626 445.8244948351 L 338.87302593626 402.923020454425 L 413.23558152942996 402.923020454425" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 264.51047034308993 445.8244948351 L 338.87302593626 445.8244948351 L 338.87302593626 402.923020454425 L 413.23558152942996 402.923020454425" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><path d="M 138.66614549310998 674.6323581987 L 115.78535915674996 674.6323581987 L 115.78535915674996 560.2284265169 L 287.39125667944995 560.2284265169 L 287.39125667944995 445.8244948351" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 138.66614549310998 674.6323581987 L 115.78535915674996 674.6323581987 L 115.78535915674996 560.2284265169 L 287.39125667944995 560.2284265169 L 287.39125667944995 445.8244948351" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"><path d="M 950.93406043389 445.8244948351 L 973.8148467702499 445.8244948351 L 973.8148467702499 617.4303923578 L 950.93406043389 617.4303923578" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 950.93406043389 445.8244948351 L 973.8148467702499 445.8244948351 L 973.8148467702499 617.4303923578 L 950.93406043389 617.4303923578" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"><path d="M 676.36462439757 360.02154607374996 L 973.8148467702499 360.02154607374996 L 973.8148467702499 445.8244948351" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 676.36462439757 360.02154607374996 L 973.8148467702499 360.02154607374996 L 973.8148467702499 445.8244948351" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"><path d="M 1067.0540510909168 102.6126997897 L 1089.934837427277 102.6126997897 L 1089.934837427277 445.8244948351 L 950.93406043389 445.8244948351" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1067.0540510909168 102.6126997897 L 1089.934837427277 102.6126997897 L 1089.934837427277 445.8244948351 L 950.93406043389 445.8244948351" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"><path d="M 264.51047034308993 674.6323581987 L 338.87302593626 674.6323581987 L 338.87302593626 488.72596921577497 L 413.23558152942996 488.72596921577497" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 264.51047034308993 674.6323581987 L 338.87302593626 674.6323581987 L 338.87302593626 488.72596921577497 L 413.23558152942996 488.72596921577497" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"><path d="M 676.36462439757 445.8244948351 L 750.72717999074 445.8244948351 L 750.72717999074 617.4303923578 L 825.0897355839099 617.4303923578" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 676.36462439757 445.8244948351 L 750.72717999074 445.8244948351 L 750.72717999074 617.4303923578 L 825.0897355839099 617.4303923578" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_9__stack1"><path d="M 937.7776082904829 102.6126997897 L 601.1440393167865 102.6126997897 L 601.1440393167865 217.01663147149998 L 264.51047034308993 217.01663147149998" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 937.7776082904829 102.6126997897 L 601.1440393167865 102.6126997897 L 601.1440393167865 217.01663147149998 L 264.51047034308993 217.01663147149998" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_10__stack1"><path d="M 413.23558152942996 574.528917977125 L 390.35479519307 574.528917977125 L 390.35479519307 719.7596011116204 L 750.72717999074 719.7596011116204 L 750.72717999074 617.4303923578" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 413.23558152942996 574.528917977125 L 390.35479519307 574.528917977125 L 390.35479519307 719.7596011116204 L 750.72717999074 719.7596011116204 L 750.72717999074 617.4303923578" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_11__stack1"><path d="M 825.0897355839099 445.8244948351 L 807.8147418999582 445.8244948351 L 807.8147418999582 439.9898943193282" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 825.0897355839099 445.8244948351 L 807.8147418999582 445.8244948351 L 807.8147418999582 439.9898943193282" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><circle cx="115.78535915674996" cy="317.120071693075" r="3.432117950454" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"><circle cx="950.93406043389" cy="445.8244948351" r="3.432117950454" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="973.8148467702499" cy="445.8244948351" r="3.432117950454" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"><circle cx="750.72717999074" cy="617.4303923578" r="3.432117950454" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_9__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_10__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_11__stack1"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component chip sch-component-body" x="458.99715420215" y="231.31712293172498" width="171.60589752269993" height="429.01474380675006" stroke-width="2.288078633636px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="458.99715420215" y="231.31712293172498" width="171.60589752269993" height="429.01474380675006" fill="transparent"/><text class="sch-text" x="544.8001029635" y="445.8244948351" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="20.592707702724px" transform="rotate(0, 544.8001029635, 445.8244948351)">PWR1</text><line class="component-pin sch-component-pin sch-port-line" x1="630.6030517248499" y1="360.02154607374996" x2="676.36462439757" y2="360.02154607374996" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="674.076545763934" y="357.73346744011394" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="653.48383806121" y="357.733467440114" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">7</text><line class="component-pin sch-component-pin sch-port-line" x1="630.6030517248499" y1="445.8244948351" x2="676.36462439757" y2="445.8244948351" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="674.076545763934" y="443.53641620146396" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="653.48383806121" y="443.53641620146396" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">6</text><line class="component-pin sch-component-pin sch-port-line" x1="630.6030517248499" y1="531.62744359645" x2="674.076545763934" y2="531.62744359645" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="676.36462439757" cy="531.62744359645" r="2.288078633636" stroke-width="2.288078633636px"/><rect x="674.076545763934" y="529.339364962814" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="653.48383806121" y="529.339364962814" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">5</text><line class="component-pin sch-component-pin sch-port-line" x1="458.99715420215" y1="574.528917977125" x2="413.23558152942996" y2="574.528917977125" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="410.94750289579395" y="572.240839343489" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="436.11636786579" y="572.240839343489" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="458.99715420215" y1="488.72596921577497" x2="413.23558152942996" y2="488.72596921577497" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><rect x="410.94750289579395" y="486.43789058213895" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="436.11636786579" y="486.437890582139" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="458.99715420215" y1="402.923020454425" x2="413.23558152942996" y2="402.923020454425" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="410.94750289579395" y="400.634941820789" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="436.11636786579" y="400.634941820789" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="458.99715420215" y1="317.120071693075" x2="413.23558152942996" y2="317.120071693075" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><rect x="410.94750289579395" y="314.83199305943896" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="436.11636786579" y="314.831993059439" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">1</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component-overlay sch-component-overlay" x="138.66614549311" y="429.04944633259765" width="125.84432484997998" height="33.55009700500466" fill="transparent"/><path class="sch-component-symbol-path" d="M 138.66614549311 445.8244948351 L 159.64439444560168 445.8244948351" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 243.5322213905983 445.8244948351 L 264.51047034309 445.8244948351" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 159.64439444560168 429.04944633259765 L 243.5322213905983 429.04944633259765 L 243.5322213905983 462.5995433376023 L 159.64439444560168 462.5995433376023 L 159.64439444560168 429.04944633259765" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="201.58830791809999" y="412.2660082084387" stroke="rgb(245, 241, 237)" stroke-width="2.288078633636px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="20.592707702724px">R6</text><text class="sch-component-text" x="201.58830791809999" y="479.3829814617613" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="20.592707702724px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_2__stack1"><rect class="component-overlay sch-component-overlay" x="138.66614549311" y="657.8573096961977" width="125.84432484997998" height="33.550097005004545" fill="transparent"/><path class="sch-component-symbol-path" d="M 138.66614549311 674.6323581987 L 159.64439444560168 674.6323581987" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 243.5322213905983 674.6323581987 L 264.51047034309 674.6323581987" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 159.64439444560168 657.8573096961977 L 243.5322213905983 657.8573096961977 L 243.5322213905983 691.4074067012023 L 159.64439444560168 691.4074067012023 L 159.64439444560168 657.8573096961977" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="201.58830791809999" y="641.0738715720387" stroke="rgb(245, 241, 237)" stroke-width="2.288078633636px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="20.592707702724px">R7</text><text class="sch-component-text" x="201.58830791809999" y="708.1908448253613" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="20.592707702724px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component-overlay sch-component-overlay" x="138.66614549311" y="200.24158296899765" width="125.84432484997998" height="33.55009700500466" fill="transparent"/><path class="sch-component-symbol-path" d="M 138.66614549311 217.01663147149998 L 159.64439444560168 217.01663147149998" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 243.5322213905983 217.01663147149998 L 264.51047034309 217.01663147149998" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 159.64439444560168 200.24158296899765 L 243.5322213905983 200.24158296899765 L 243.5322213905983 233.7916799740023 L 159.64439444560168 233.7916799740023 L 159.64439444560168 200.24158296899765" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="201.58830791809999" y="183.45814484483864" stroke="rgb(245, 241, 237)" stroke-width="2.288078633636px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="20.592707702724px">R8</text><text class="sch-component-text" x="201.58830791809999" y="250.5751180981613" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="20.592707702724px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_4__stack1"><rect class="component-overlay sch-component-overlay" x="825.0897355839099" y="583.8677109203103" width="125.84432484998001" height="67.12536287497937" fill="transparent"/><path class="sch-component-symbol-path" d="M 950.93406043389 617.4303923578 L 900.596330493898 617.4303923578" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 875.4274655239019 617.4303923578 L 825.0897355839099 617.4303923578" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 900.596330493898 583.8677109203103 L 900.596330493898 650.9930737952897" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 875.4274655239019 583.8677109203103 L 875.4274655239019 650.9930737952897" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="888.0118980089" y="567.092662417808" stroke="rgb(245, 241, 237)" stroke-width="2.288078633636px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="20.592707702724px">C6</text><text class="sch-component-text" x="888.0118980089" y="667.7681222977919" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="20.592707702724px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_5__stack1"><rect class="component-overlay sch-component-overlay" x="825.0897355839099" y="412.26181339761035" width="125.84432484998001" height="67.12536287497926" fill="transparent"/><path class="sch-component-symbol-path" d="M 950.93406043389 445.8244948351 L 900.596330493898 445.8244948351" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 875.4274655239019 445.8244948351 L 825.0897355839099 445.8244948351" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 900.596330493898 412.26181339761035 L 900.596330493898 479.3871762725896" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 875.4274655239019 412.26181339761035 L 875.4274655239019 479.3871762725896" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="888.0118980089" y="395.48676489510797" stroke="rgb(245, 241, 237)" stroke-width="2.288078633636px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="20.592707702724px">C7</text><text class="sch-component-text" x="888.0118980089" y="496.162224775092" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="20.592707702724px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_6__stack1"><rect class="component-overlay sch-component-overlay" x="937.7776082904829" y="64.30856858957144" width="129.27644280043387" height="55.06218860018481" fill="transparent"/><path class="sch-component-symbol-path" d="M 1019.1738870907561 102.6126997897 L 986.8547763906477 119.37075718975625" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1017.9768829907521 102.6126997897 L 1067.0540510909168 102.6126997897" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 986.8547763906477 87.05164648964777 L 1019.1738870907561 102.6126997897" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 986.8547763906477 119.37075718975625 L 986.8547763906477 87.05164648964777" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1019.1738870907561 87.05164648964777 L 1019.1738870907561 119.37075718975625" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 986.8547763906477 102.6126997897 L 937.7776082904829 102.6126997897" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1021.5678952907641 67.89958088958349 L 1032.3409321908002 66.70257678957947 L 1028.7499198907883 77.47561368961563" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1011.991862490732 82.2636300896317 L 1013.188866590736 82.2636300896317 L 1027.5529157907843 70.29358908959152 L 1027.5529157907843 70.29358908959152" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1000.0218214906919 65.50557268957544 L 1011.991862490732 64.30856858957144 L 1007.203846090716 75.0816054896076" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 990.4457886906597 79.86962188962366 L 991.6427927906637 78.67261778961965 L 1007.203846090716 67.89958088958349 L 1007.203846090716 67.89958088958349" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><text class="sch-component-text" x="1002.4158296906999" y="127.74978588978438" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="20.592707702724px"></text><text class="sch-component-name sch-component-text" x="1002.4158296906999" y="53.535531689535276" stroke="rgb(245, 241, 237)" stroke-width="2.288078633636px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="20.592707702724px">LED1</text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="676.36462439757" cy="360.02154607374996" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="676.36462439757" cy="445.8244948351" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="676.36462439757" cy="531.62744359645" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="413.23558152942996" cy="574.528917977125" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="413.23558152942996" cy="488.72596921577497" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="413.23558152942996" cy="402.923020454425" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="413.23558152942996" cy="317.120071693075" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="167.26712841356" cy="445.8244948351" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="293.11145326353994" cy="445.8244948351" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="167.26712841356" cy="674.6323581987" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="293.11145326353994" cy="674.6323581987" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="167.26712841356" cy="217.01663147149998" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="293.11145326353994" cy="217.01663147149998" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="853.69071850436" cy="617.4303923578" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="979.5350433543399" cy="617.4303923578" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="853.69071850436" cy="445.8244948351" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="979.5350433543399" cy="445.8244948351" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_0__stack1"><circle cx="940.6377065825279" cy="102.6126997897" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_1__stack1"><circle cx="1069.914149382962" cy="102.6126997897" r="4.576157267272" fill="red" opacity="0"/></g><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="
|
|
93
|
+
</style><rect class="boundary" x="0" y="0" width="1200" height="800"/><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><path d="M 138.66614549310998 217.01663147149998 L 115.78535915674996 217.01663147149998 L 115.78535915674996 317.120071693075 L 413.23558152942996 317.120071693075" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 138.66614549310998 217.01663147149998 L 115.78535915674996 217.01663147149998 L 115.78535915674996 317.120071693075 L 413.23558152942996 317.120071693075" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><path d="M 138.66614549310998 445.8244948351 L 115.78535915674996 445.8244948351 L 115.78535915674996 317.120071693075" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 138.66614549310998 445.8244948351 L 115.78535915674996 445.8244948351 L 115.78535915674996 317.120071693075" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><path d="M 264.51047034308993 445.8244948351 L 338.87302593626 445.8244948351 L 338.87302593626 402.923020454425 L 413.23558152942996 402.923020454425" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 264.51047034308993 445.8244948351 L 338.87302593626 445.8244948351 L 338.87302593626 402.923020454425 L 413.23558152942996 402.923020454425" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><path d="M 138.66614549310998 674.6323581987 L 115.78535915674996 674.6323581987 L 115.78535915674996 560.2284265169 L 287.39125667944995 560.2284265169 L 287.39125667944995 445.8244948351" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 138.66614549310998 674.6323581987 L 115.78535915674996 674.6323581987 L 115.78535915674996 560.2284265169 L 287.39125667944995 560.2284265169 L 287.39125667944995 445.8244948351" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"><path d="M 973.8148467702499 445.8244948351 L 973.8148467702499 617.4303923578 L 950.93406043389 617.4303923578" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 973.8148467702499 445.8244948351 L 973.8148467702499 617.4303923578 L 950.93406043389 617.4303923578" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"><path d="M 676.36462439757 360.02154607374996 L 973.8148467702499 360.02154607374996 L 973.8148467702499 445.8244948351" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 676.36462439757 360.02154607374996 L 973.8148467702499 360.02154607374996 L 973.8148467702499 445.8244948351" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"><path d="M 1067.0540510909168 102.6126997897 L 1089.934837427277 102.6126997897 L 1089.934837427277 445.8244948351 L 950.93406043389 445.8244948351" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1067.0540510909168 102.6126997897 L 1089.934837427277 102.6126997897 L 1089.934837427277 445.8244948351 L 950.93406043389 445.8244948351" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"><path d="M 264.51047034308993 674.6323581987 L 338.87302593626 674.6323581987 L 338.87302593626 488.72596921577497 L 413.23558152942996 488.72596921577497" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 264.51047034308993 674.6323581987 L 338.87302593626 674.6323581987 L 338.87302593626 488.72596921577497 L 413.23558152942996 488.72596921577497" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"><path d="M 676.36462439757 445.8244948351 L 750.72717999074 445.8244948351 L 750.72717999074 617.4303923578 L 825.0897355839099 617.4303923578" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 676.36462439757 445.8244948351 L 750.72717999074 445.8244948351 L 750.72717999074 617.4303923578 L 825.0897355839099 617.4303923578" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_9__stack1"><path d="M 937.7776082904829 102.6126997897 L 601.1440393167865 102.6126997897 L 601.1440393167865 217.01663147149998 L 264.51047034308993 217.01663147149998" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 937.7776082904829 102.6126997897 L 601.1440393167865 102.6126997897 L 601.1440393167865 217.01663147149998 L 264.51047034308993 217.01663147149998" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_10__stack1"><path d="M 413.23558152942996 574.528917977125 L 390.35479519307 574.528917977125 L 390.35479519307 719.7596011116204 L 750.72717999074 719.7596011116204 L 750.72717999074 617.4303923578" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 413.23558152942996 574.528917977125 L 390.35479519307 574.528917977125 L 390.35479519307 719.7596011116204 L 750.72717999074 719.7596011116204 L 750.72717999074 617.4303923578" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_11__stack1"><path d="M 825.0897355839099 445.8244948351 L 807.8147418999582 445.8244948351 L 807.8147418999582 439.9898943193282" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="18.304629069088px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 825.0897355839099 445.8244948351 L 807.8147418999582 445.8244948351 L 807.8147418999582 439.9898943193282" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><circle cx="115.78535915674996" cy="317.120071693075" r="3.432117950454" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"><circle cx="973.8148467702499" cy="445.8244948351" r="3.432117950454" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"><circle cx="750.72717999074" cy="617.4303923578" r="3.432117950454" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_9__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_10__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_11__stack1"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component chip sch-component-body" x="458.99715420215" y="231.31712293172498" width="171.60589752269993" height="429.01474380675006" stroke-width="2.288078633636px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="458.99715420215" y="231.31712293172498" width="171.60589752269993" height="429.01474380675006" fill="transparent"/><text class="sch-text" x="544.8001029635" y="445.8244948351" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="20.592707702724px" transform="rotate(0, 544.8001029635, 445.8244948351)">PWR1</text><line class="component-pin sch-component-pin sch-port-line" x1="630.6030517248499" y1="360.02154607374996" x2="676.36462439757" y2="360.02154607374996" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="674.076545763934" y="357.73346744011394" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="653.48383806121" y="357.733467440114" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">7</text><line class="component-pin sch-component-pin sch-port-line" x1="630.6030517248499" y1="445.8244948351" x2="676.36462439757" y2="445.8244948351" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="674.076545763934" y="443.53641620146396" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="653.48383806121" y="443.53641620146396" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">6</text><line class="component-pin sch-component-pin sch-port-line" x1="630.6030517248499" y1="531.62744359645" x2="674.076545763934" y2="531.62744359645" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="676.36462439757" cy="531.62744359645" r="2.288078633636" stroke-width="2.288078633636px"/><rect x="674.076545763934" y="529.339364962814" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="653.48383806121" y="529.339364962814" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">5</text><line class="component-pin sch-component-pin sch-port-line" x1="458.99715420215" y1="574.528917977125" x2="413.23558152942996" y2="574.528917977125" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="410.94750289579395" y="572.240839343489" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="436.11636786579" y="572.240839343489" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="458.99715420215" y1="488.72596921577497" x2="413.23558152942996" y2="488.72596921577497" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><rect x="410.94750289579395" y="486.43789058213895" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="436.11636786579" y="486.437890582139" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="458.99715420215" y1="402.923020454425" x2="413.23558152942996" y2="402.923020454425" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="410.94750289579395" y="400.634941820789" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="436.11636786579" y="400.634941820789" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="458.99715420215" y1="317.120071693075" x2="413.23558152942996" y2="317.120071693075" stroke-width="2.288078633636px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><rect x="410.94750289579395" y="314.83199305943896" width="4.576157267272" height="4.576157267272" opacity="0"/></g><text class="pin-number sch-pin-number" x="436.11636786579" y="314.831993059439" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="17.16058975227px" transform="">1</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component-overlay sch-component-overlay" x="138.66614549311" y="429.04944633259765" width="125.84432484997998" height="33.55009700500466" fill="transparent"/><path class="sch-component-symbol-path" d="M 138.66614549311 445.8244948351 L 159.64439444560168 445.8244948351" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 243.5322213905983 445.8244948351 L 264.51047034309 445.8244948351" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 159.64439444560168 429.04944633259765 L 243.5322213905983 429.04944633259765 L 243.5322213905983 462.5995433376023 L 159.64439444560168 462.5995433376023 L 159.64439444560168 429.04944633259765" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="201.58830791809999" y="412.2660082084387" stroke="rgb(245, 241, 237)" stroke-width="2.288078633636px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="20.592707702724px">R6</text><text class="sch-component-text" x="201.58830791809999" y="479.3829814617613" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="20.592707702724px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_2__stack1"><rect class="component-overlay sch-component-overlay" x="138.66614549311" y="657.8573096961977" width="125.84432484997998" height="33.550097005004545" fill="transparent"/><path class="sch-component-symbol-path" d="M 138.66614549311 674.6323581987 L 159.64439444560168 674.6323581987" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 243.5322213905983 674.6323581987 L 264.51047034309 674.6323581987" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 159.64439444560168 657.8573096961977 L 243.5322213905983 657.8573096961977 L 243.5322213905983 691.4074067012023 L 159.64439444560168 691.4074067012023 L 159.64439444560168 657.8573096961977" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="201.58830791809999" y="641.0738715720387" stroke="rgb(245, 241, 237)" stroke-width="2.288078633636px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="20.592707702724px">R7</text><text class="sch-component-text" x="201.58830791809999" y="708.1908448253613" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="20.592707702724px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component-overlay sch-component-overlay" x="138.66614549311" y="200.24158296899765" width="125.84432484997998" height="33.55009700500466" fill="transparent"/><path class="sch-component-symbol-path" d="M 138.66614549311 217.01663147149998 L 159.64439444560168 217.01663147149998" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 243.5322213905983 217.01663147149998 L 264.51047034309 217.01663147149998" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 159.64439444560168 200.24158296899765 L 243.5322213905983 200.24158296899765 L 243.5322213905983 233.7916799740023 L 159.64439444560168 233.7916799740023 L 159.64439444560168 200.24158296899765" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="201.58830791809999" y="183.45814484483864" stroke="rgb(245, 241, 237)" stroke-width="2.288078633636px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="20.592707702724px">R8</text><text class="sch-component-text" x="201.58830791809999" y="250.5751180981613" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="20.592707702724px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_4__stack1"><rect class="component-overlay sch-component-overlay" x="825.0897355839099" y="583.8677109203103" width="125.84432484998001" height="67.12536287497937" fill="transparent"/><path class="sch-component-symbol-path" d="M 950.93406043389 617.4303923578 L 900.596330493898 617.4303923578" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 875.4274655239019 617.4303923578 L 825.0897355839099 617.4303923578" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 900.596330493898 583.8677109203103 L 900.596330493898 650.9930737952897" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 875.4274655239019 583.8677109203103 L 875.4274655239019 650.9930737952897" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="888.0118980089" y="567.092662417808" stroke="rgb(245, 241, 237)" stroke-width="2.288078633636px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="20.592707702724px">C6</text><text class="sch-component-text" x="888.0118980089" y="667.7681222977919" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="20.592707702724px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_5__stack1"><rect class="component-overlay sch-component-overlay" x="825.0897355839099" y="412.26181339761035" width="125.84432484998001" height="67.12536287497926" fill="transparent"/><path class="sch-component-symbol-path" d="M 950.93406043389 445.8244948351 L 900.596330493898 445.8244948351" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 875.4274655239019 445.8244948351 L 825.0897355839099 445.8244948351" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 900.596330493898 412.26181339761035 L 900.596330493898 479.3871762725896" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 875.4274655239019 412.26181339761035 L 875.4274655239019 479.3871762725896" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="888.0118980089" y="395.48676489510797" stroke="rgb(245, 241, 237)" stroke-width="2.288078633636px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="20.592707702724px">C7</text><text class="sch-component-text" x="888.0118980089" y="496.162224775092" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="20.592707702724px"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_6__stack1"><rect class="component-overlay sch-component-overlay" x="937.7776082904829" y="64.30856858957144" width="129.27644280043387" height="55.06218860018481" fill="transparent"/><path class="sch-component-symbol-path" d="M 1019.1738870907561 102.6126997897 L 986.8547763906477 119.37075718975625" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1017.9768829907521 102.6126997897 L 1067.0540510909168 102.6126997897" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 986.8547763906477 87.05164648964777 L 1019.1738870907561 102.6126997897" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 986.8547763906477 119.37075718975625 L 986.8547763906477 87.05164648964777" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1019.1738870907561 87.05164648964777 L 1019.1738870907561 119.37075718975625" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 986.8547763906477 102.6126997897 L 937.7776082904829 102.6126997897" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1021.5678952907641 67.89958088958349 L 1032.3409321908002 66.70257678957947 L 1028.7499198907883 77.47561368961563" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1011.991862490732 82.2636300896317 L 1013.188866590736 82.2636300896317 L 1027.5529157907843 70.29358908959152 L 1027.5529157907843 70.29358908959152" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1000.0218214906919 65.50557268957544 L 1011.991862490732 64.30856858957144 L 1007.203846090716 75.0816054896076" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 990.4457886906597 79.86962188962366 L 991.6427927906637 78.67261778961965 L 1007.203846090716 67.89958088958349 L 1007.203846090716 67.89958088958349" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.288078633636px" stroke-linecap="round"/><text class="sch-component-text" x="1002.4158296906999" y="127.74978588978438" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="20.592707702724px"></text><text class="sch-component-name sch-component-text" x="1002.4158296906999" y="53.535531689535276" stroke="rgb(245, 241, 237)" stroke-width="2.288078633636px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="20.592707702724px">LED1</text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="676.36462439757" cy="360.02154607374996" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="676.36462439757" cy="445.8244948351" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="676.36462439757" cy="531.62744359645" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="413.23558152942996" cy="574.528917977125" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="413.23558152942996" cy="488.72596921577497" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="413.23558152942996" cy="402.923020454425" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="413.23558152942996" cy="317.120071693075" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="167.26712841356" cy="445.8244948351" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="293.11145326353994" cy="445.8244948351" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="167.26712841356" cy="674.6323581987" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="293.11145326353994" cy="674.6323581987" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="167.26712841356" cy="217.01663147149998" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="293.11145326353994" cy="217.01663147149998" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="853.69071850436" cy="617.4303923578" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="979.5350433543399" cy="617.4303923578" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="853.69071850436" cy="445.8244948351" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="979.5350433543399" cy="445.8244948351" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_0__stack1"><circle cx="940.6377065825279" cy="102.6126997897" r="4.576157267272" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_1__stack1"><circle cx="1069.914149382962" cy="102.6126997897" r="4.576157267272" fill="red" opacity="0"/></g><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="
|
|
94
94
|
M 973.8148467702499,617.4303923578
|
|
95
95
|
L 985.2552399384299,623.6082046686172
|
|
96
96
|
L 985.2552399384299,662.8411263066957
|