@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="0.4,1.5 2.5,1.5" data-type="line" data-label="" points="339.77220956719816,237.08428246013665 473.71298405466973,237.08428246013665" fill="none" stroke="hsl(238, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.7,1.65 -1.7,1.3499999999999999" data-type="line" data-label="" points="205.83143507972665,227.51708428246013 205.83143507972665,246.65148063781322" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.7,1.65 -0.4,1.5" data-type="line" data-label="" points="205.83143507972665,227.51708428246013 288.74715261959,237.08428246013665" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.7,1.3499999999999999 -0.4,1.5" data-type="line" data-label="" points="205.83143507972665,246.65148063781322 288.74715261959,237.08428246013665" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.7,-1.35 -1.7,-1.65" data-type="line" data-label="" points="205.83143507972665,418.8610478359909 205.83143507972665,437.99544419134395" fill="none" stroke="hsl(124, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.7,-1.35 3.5,1.5" data-type="line" data-label="" points="205.83143507972665,418.8610478359909 537.49430523918,237.08428246013665" fill="none" stroke="hsl(124, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.7,-1.65 3.5,1.5" data-type="line" data-label="" points="205.83143507972665,437.99544419134395 537.49430523918,237.08428246013665" fill="none" stroke="hsl(124, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.4,1.5 2.5,1.5" data-type="line" data-label="" points="339.77220956719816,237.08428246013665 473.71298405466973,237.08428246013665" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.7,1.3499999999999999 -1.5,1.3499999999999999 -1.5,1.65" data-type="line" data-label="" points="205.83143507972665,246.65148063781322 218.5876993166287,246.65148063781322 218.5876993166287,227.51708428246013" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.7,-1.65 -1.5,-1.65 -1.5,-1.35" data-type="line" data-label="" points="205.83143507972665,437.99544419134395 218.5876993166287,437.99544419134395 218.5876993166287,418.8610478359909" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.5,1.5 3.7,1.5 3.7,-1.35 -1.5,-1.35" data-type="line" data-label="" points="537.49430523918,237.08428246013665 550.2505694760821,237.08428246013665 550.2505694760821,418.8610478359909 218.5876993166287,418.8610478359909" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,1.5 -0.4,1.5" data-type="line" data-label="" points="218.5876993166287,237.08428246013665 288.74715261959,237.08428246013665" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="J1" data-x="-3" data-y="0" x="40" y="205.19362186788152" width="165.83143507972665" height="255.12528473804105" fill="hsl(183, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="R1" data-x="0" data-y="1.5" x="288.74715261959" y="221.13895216400908" width="51.025056947608164" height="31.89066059225513" fill="hsl(71, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="D1" data-x="3" data-y="1.5" x="473.71298405466973" y="211.57175398633254" width="63.78132118451026" height="51.02505694760822" fill="hsl(357, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="J1 TYPE-C-31-M-12" data-x="-3" data-y="2.3" x="71.89066059225513" y="179.68109339407744" width="102.05011389521638" height="12.75626423690207" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="R1 1kΩ" data-x="0" data-y="1.95" x="301.50341685649204" y="202.004555808656" width="25.512528473804082" height="12.75626423690207" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="D1 white" data-x="3" data-y="2.15" x="489.6583143507973" y="189.24829157175398" width="31.89066059225513" height="12.756264236902041" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="netId: VBUS
|
|
3
|
+
<rect width="100%" height="100%" fill="white"/><g><polyline data-points="0.4,1.5 2.5,1.5" data-type="line" data-label="" points="339.77220956719816,237.08428246013665 473.71298405466973,237.08428246013665" fill="none" stroke="hsl(238, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.7,1.65 -1.7,1.3499999999999999" data-type="line" data-label="" points="205.83143507972665,227.51708428246013 205.83143507972665,246.65148063781322" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.7,1.65 -0.4,1.5" data-type="line" data-label="" points="205.83143507972665,227.51708428246013 288.74715261959,237.08428246013665" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.7,1.3499999999999999 -0.4,1.5" data-type="line" data-label="" points="205.83143507972665,246.65148063781322 288.74715261959,237.08428246013665" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.7,-1.35 -1.7,-1.65" data-type="line" data-label="" points="205.83143507972665,418.8610478359909 205.83143507972665,437.99544419134395" fill="none" stroke="hsl(124, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.7,-1.35 3.5,1.5" data-type="line" data-label="" points="205.83143507972665,418.8610478359909 537.49430523918,237.08428246013665" fill="none" stroke="hsl(124, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.7,-1.65 3.5,1.5" data-type="line" data-label="" points="205.83143507972665,437.99544419134395 537.49430523918,237.08428246013665" fill="none" stroke="hsl(124, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.4,1.5 2.5,1.5" data-type="line" data-label="" points="339.77220956719816,237.08428246013665 473.71298405466973,237.08428246013665" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.7,1.3499999999999999 -1.5,1.3499999999999999 -1.5,1.65 -1.7,1.65" data-type="line" data-label="" points="205.83143507972665,246.65148063781322 218.5876993166287,246.65148063781322 218.5876993166287,227.51708428246013 205.83143507972665,227.51708428246013" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.7,-1.65 -1.5,-1.65 -1.5,-1.35 -1.7,-1.35" data-type="line" data-label="" points="205.83143507972665,437.99544419134395 218.5876993166287,437.99544419134395 218.5876993166287,418.8610478359909 205.83143507972665,418.8610478359909" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.5,1.5 3.7,1.5 3.7,-1.35 -1.5,-1.35" data-type="line" data-label="" points="537.49430523918,237.08428246013665 550.2505694760821,237.08428246013665 550.2505694760821,418.8610478359909 218.5876993166287,418.8610478359909" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.5,1.5 -0.4,1.5" data-type="line" data-label="" points="218.5876993166287,237.08428246013665 288.74715261959,237.08428246013665" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="J1" data-x="-3" data-y="0" x="40" y="205.19362186788152" width="165.83143507972665" height="255.12528473804105" fill="hsl(183, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="R1" data-x="0" data-y="1.5" x="288.74715261959" y="221.13895216400908" width="51.025056947608164" height="31.89066059225513" fill="hsl(71, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="D1" data-x="3" data-y="1.5" x="473.71298405466973" y="211.57175398633254" width="63.78132118451026" height="51.02505694760822" fill="hsl(357, 100%, 50%, 0.8)" stroke="black" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="J1 TYPE-C-31-M-12" data-x="-3" data-y="2.3" x="71.89066059225513" y="179.68109339407744" width="102.05011389521638" height="12.75626423690207" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="R1 1kΩ" data-x="0" data-y="1.95" x="301.50341685649204" y="202.004555808656" width="25.512528473804082" height="12.75626423690207" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="D1 white" data-x="3" data-y="2.15" x="489.6583143507973" y="189.24829157175398" width="31.89066059225513" height="12.756264236902041" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="netId: VBUS
|
|
4
4
|
globalConnNetId: connectivity_net1" data-x="-0.95" data-y="1.74" x="238.3599088838269" y="206.46924829157177" width="30.615034168564904" height="30.615034168564904" fill="#ef444466" stroke="#ef4444" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="netId: J1_GND1
|
|
5
5
|
globalConnNetId: connectivity_net2" data-x="4.09" data-y="1.5" x="550.2505694760821" y="221.7767653758542" width="49.74943052391802" height="30.615034168564904" fill="#00000066" stroke="#000000" stroke-width="0.015678571428571427"/></g><g><rect data-type="rect" data-label="netId: VBUS_LED
|
|
6
6
|
globalConnNetId: connectivity_net0" data-x="1.45" data-y="1.725" x="400.3644646924829" y="208.38268792710704" width="12.756264236902098" height="28.701594533029606" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.015678571428571427"/></g><g><circle data-type="point" data-label="J1.VBUS1
|
|
@@ -79,7 +79,7 @@ orientation: y+" data-x="1.45" data-y="1.5" cx="406.74259681093395" cy="237.0842
|
|
|
79
79
|
.port-label { fill: rgb(0, 100, 100); }
|
|
80
80
|
.component-name { fill: rgb(0, 100, 100); }
|
|
81
81
|
|
|
82
|
-
</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 652.94942881962 243.67693232679997 L 905.4713073687001 243.67693232679997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.239762175168px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 652.94942881962 243.67693232679997 L 905.4713073687001 243.67693232679997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.404970271896px" 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 400.42755027054 261.71420936602 L 424.4772529895 261.71420936602 L 424.4772529895 225.63965528757998" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.239762175168px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 400.42755027054 261.71420936602 L 424.4772529895 261.71420936602 L 424.4772529895 225.63965528757998" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.404970271896px" 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 400.42755027054 622.45975015042 L 424.4772529895 622.45975015042 L 424.4772529895 586.38519607198" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.239762175168px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 400.42755027054 622.45975015042 L 424.4772529895 622.45975015042 L 424.4772529895 586.38519607198" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.404970271896px" 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 1025.7198209635 243.67693232679997 L 1049.76952368246 243.67693232679997 L 1049.76952368246 586.38519607198 L 424.4772529895 586.38519607198" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.239762175168px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1025.7198209635 243.67693232679997 L 1049.76952368246 243.67693232679997 L 1049.76952368246 586.38519607198 L 424.4772529895 586.38519607198" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.404970271896px" 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 424.4772529895 243.67693232679997 L 556.75061794378 243.67693232679997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.239762175168px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 424.4772529895 243.67693232679997 L 556.75061794378 243.67693232679997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.404970271896px" 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"/><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"><circle cx="424.4772529895" cy="586.38519607198" r="3.6074554078439998" 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_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"/><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="135.88082036198" y="183.55267552939998" width="216.44732447063996" height="480.99405437920007" stroke-width="2.404970271896px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="135.88082036198" y="183.55267552939998" width="216.44732447063996" height="480.99405437920007" fill="transparent"/><text class="sch-text" x="244.10448259729998" y="424.049702719" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="21.644732447064px" transform="rotate(0, 244.10448259729998, 424.049702719)">J1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="225.63965528757998" x2="400.42755027054" y2="225.63965528757998" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="398.022579998644" y="223.234685015684" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="223.234685015684" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="225.63965528757998" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">VBUS1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="261.71420936602" x2="400.42755027054" y2="261.71420936602" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="398.022579998644" y="259.309239094124" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="259.309239094124" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="261.71420936602" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">VBUS2</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="297.78876344446" x2="398.022579998644" y2="297.78876344446" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="297.78876344446" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="295.383793172564" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="295.38379317256397" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="297.78876344446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">CC1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="333.8633175229" x2="398.022579998644" y2="333.8633175229" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="333.8633175229" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="331.458347251004" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="331.45834725100394" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="333.8633175229" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">CC2</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="369.93787160133996" x2="398.022579998644" y2="369.93787160133996" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="369.93787160133996" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="367.532901329444" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="367.532901329444" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="369.93787160133996" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">DP1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="406.01242567978" x2="398.022579998644" y2="406.01242567978" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="406.01242567978" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="403.607455407884" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="403.607455407884" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="406.01242567978" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">DP2</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="442.08697975821997" x2="398.022579998644" y2="442.08697975821997" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="442.08697975821997" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="439.682009486324" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="439.682009486324" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="442.08697975821997" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">DM1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="478.16153383666" x2="398.022579998644" y2="478.16153383666" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_7__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="478.16153383666" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="475.756563564764" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="475.756563564764" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="478.16153383666" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">DM2</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="514.2360879151" x2="398.022579998644" y2="514.2360879151" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_8__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="514.2360879151" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="511.83111764320404" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="511.831117643204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="514.2360879151" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">SBU1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="550.31064199354" x2="398.022579998644" y2="550.31064199354" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_9__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="550.31064199354" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="547.905671721644" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="547.905671721644" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="550.31064199354" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">SBU2</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="586.38519607198" x2="400.42755027054" y2="586.38519607198" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_10__stack1"><rect x="398.022579998644" y="583.980225800084" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="583.980225800084" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="586.38519607198" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">GND1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="622.45975015042" x2="400.42755027054" y2="622.45975015042" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_11__stack1"><rect x="398.022579998644" y="620.054779878524" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="620.054779878524" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="622.45975015042" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">GND2</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="556.75061794378" y="230.8536308370505" width="96.19881087584008" height="25.646602979498937" fill="transparent"/><path class="sch-component-symbol-path" d="M 556.75061794378 243.67693232679997 L 572.7869597167826 243.67693232679997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 636.9130870466174 243.67693232679997 L 652.94942881962 243.67693232679997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 572.7869597167826 230.8536308370505 L 636.9130870466174 230.8536308370505 L 636.9130870466174 256.50023381654944 L 572.7869597167826 256.50023381654944 L 572.7869597167826 230.8536308370505" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="604.8500233817" y="218.02391609324263" stroke="rgb(245, 241, 237)" stroke-width="2.404970271896px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="21.644732447064px">R1</text><text class="sch-component-text" x="604.8500233817" y="269.3299485603573" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="21.644732447064px"></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="905.4713073687001" y="227.48963241980766" width="120.24851359479999" height="31.218364106342335" fill="transparent"/><path class="sch-component-symbol-path" d="M 981.7828640730924 243.67693232679997 L 951.7207356743924 258.70799652615" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 951.7207356743924 227.48963241980766 L 981.7828640730924 243.67693232679997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 951.7207356743924 258.70799652615 L 951.7207356743924 227.48963241980766" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 981.7828640730924 227.48963241980766 L 981.7828640730924 258.70799652615" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 951.7207356743924 243.67693232679997 L 905.4713073687001 243.67693232679997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1025.7198209635 243.67693232679997 L 982.9390997807346 243.67693232679997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="964.4393284584578" y="217.0835110510269" stroke="rgb(245, 241, 237)" stroke-width="2.404970271896px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="21.644732447064px">D1</text><text class="sch-component-text" x="965.5955641661001" y="279.5202392637115" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="21.644732447064px"></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="400.42755027054" cy="225.63965528757998" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="400.42755027054" cy="261.71420936602" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="400.42755027054" cy="297.78876344446" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="400.42755027054" cy="333.8633175229" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="400.42755027054" cy="369.93787160133996" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="400.42755027054" cy="406.01242567978" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="400.42755027054" cy="442.08697975821997" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_7__stack1"><circle cx="400.42755027054" cy="478.16153383666" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_8__stack1"><circle cx="400.42755027054" cy="514.2360879151" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_9__stack1"><circle cx="400.42755027054" cy="550.31064199354" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_10__stack1"><circle cx="400.42755027054" cy="586.38519607198" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_11__stack1"><circle cx="400.42755027054" cy="622.45975015042" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="568.77546930326" cy="243.67693232679997" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="664.9742801791" cy="243.67693232679997" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="903.066337096804" cy="243.49193461357723" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="1023.3148506916041" cy="243.49193461357723" r="4.809940543792" 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="
|
|
82
|
+
</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 652.94942881962 243.67693232679997 L 905.4713073687001 243.67693232679997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.239762175168px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 652.94942881962 243.67693232679997 L 905.4713073687001 243.67693232679997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.404970271896px" 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 400.42755027054 261.71420936602 L 424.4772529895 261.71420936602 L 424.4772529895 225.63965528757998 L 400.42755027054 225.63965528757998" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.239762175168px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 400.42755027054 261.71420936602 L 424.4772529895 261.71420936602 L 424.4772529895 225.63965528757998 L 400.42755027054 225.63965528757998" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.404970271896px" 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 400.42755027054 622.45975015042 L 424.4772529895 622.45975015042 L 424.4772529895 586.38519607198 L 400.42755027054 586.38519607198" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.239762175168px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 400.42755027054 622.45975015042 L 424.4772529895 622.45975015042 L 424.4772529895 586.38519607198 L 400.42755027054 586.38519607198" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.404970271896px" 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 1025.7198209635 243.67693232679997 L 1049.76952368246 243.67693232679997 L 1049.76952368246 586.38519607198 L 424.4772529895 586.38519607198" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.239762175168px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1025.7198209635 243.67693232679997 L 1049.76952368246 243.67693232679997 L 1049.76952368246 586.38519607198 L 424.4772529895 586.38519607198" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.404970271896px" 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 424.4772529895 243.67693232679997 L 556.75061794378 243.67693232679997" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.239762175168px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 424.4772529895 243.67693232679997 L 556.75061794378 243.67693232679997" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.404970271896px" 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"/><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"><circle cx="424.4772529895" cy="586.38519607198" r="3.6074554078439998" 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_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"/><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="135.88082036198" y="183.55267552939998" width="216.44732447063996" height="480.99405437920007" stroke-width="2.404970271896px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="135.88082036198" y="183.55267552939998" width="216.44732447063996" height="480.99405437920007" fill="transparent"/><text class="sch-text" x="244.10448259729998" y="424.049702719" fill="#0f172a" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="21.644732447064px" transform="rotate(0, 244.10448259729998, 424.049702719)">J1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="225.63965528757998" x2="400.42755027054" y2="225.63965528757998" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="398.022579998644" y="223.234685015684" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="223.234685015684" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="225.63965528757998" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">VBUS1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="261.71420936602" x2="400.42755027054" y2="261.71420936602" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="398.022579998644" y="259.309239094124" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="259.309239094124" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="261.71420936602" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">VBUS2</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="297.78876344446" x2="398.022579998644" y2="297.78876344446" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="297.78876344446" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="295.383793172564" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="295.38379317256397" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="297.78876344446" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">CC1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="333.8633175229" x2="398.022579998644" y2="333.8633175229" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="333.8633175229" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="331.458347251004" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="331.45834725100394" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="333.8633175229" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">CC2</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="369.93787160133996" x2="398.022579998644" y2="369.93787160133996" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="369.93787160133996" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="367.532901329444" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="367.532901329444" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="369.93787160133996" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">DP1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="406.01242567978" x2="398.022579998644" y2="406.01242567978" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="406.01242567978" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="403.607455407884" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="403.607455407884" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="406.01242567978" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">DP2</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="442.08697975821997" x2="398.022579998644" y2="442.08697975821997" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="442.08697975821997" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="439.682009486324" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="439.682009486324" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="442.08697975821997" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">DM1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="478.16153383666" x2="398.022579998644" y2="478.16153383666" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_7__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="478.16153383666" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="475.756563564764" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="475.756563564764" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="478.16153383666" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">DM2</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="514.2360879151" x2="398.022579998644" y2="514.2360879151" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_8__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="514.2360879151" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="511.83111764320404" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="511.831117643204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="514.2360879151" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">SBU1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="550.31064199354" x2="398.022579998644" y2="550.31064199354" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_9__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="400.42755027054" cy="550.31064199354" r="2.404970271896" stroke-width="2.404970271896px"/><rect x="398.022579998644" y="547.905671721644" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="547.905671721644" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="550.31064199354" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">SBU2</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="586.38519607198" x2="400.42755027054" y2="586.38519607198" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_10__stack1"><rect x="398.022579998644" y="583.980225800084" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="583.980225800084" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="586.38519607198" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">GND1</text><line class="component-pin sch-component-pin sch-port-line" x1="352.32814483261996" y1="622.45975015042" x2="400.42755027054" y2="622.45975015042" stroke-width="2.404970271896px"/><g class="sch-port" data-schematic-port-id="source_port_0_11__stack1"><rect x="398.022579998644" y="620.054779878524" width="4.809940543792" height="4.809940543792" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.37784755158" y="620.054779878524" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.03727703922px" transform=""></text><text class="pin-number sch-pin-label" x="340.30329347313995" y="622.45975015042" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="18.03727703922px" transform="">GND2</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="556.75061794378" y="230.8536308370505" width="96.19881087584008" height="25.646602979498937" fill="transparent"/><path class="sch-component-symbol-path" d="M 556.75061794378 243.67693232679997 L 572.7869597167826 243.67693232679997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 636.9130870466174 243.67693232679997 L 652.94942881962 243.67693232679997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 572.7869597167826 230.8536308370505 L 636.9130870466174 230.8536308370505 L 636.9130870466174 256.50023381654944 L 572.7869597167826 256.50023381654944 L 572.7869597167826 230.8536308370505" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="604.8500233817" y="218.02391609324263" stroke="rgb(245, 241, 237)" stroke-width="2.404970271896px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="21.644732447064px">R1</text><text class="sch-component-text" x="604.8500233817" y="269.3299485603573" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="21.644732447064px"></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="905.4713073687001" y="227.48963241980766" width="120.24851359479999" height="31.218364106342335" fill="transparent"/><path class="sch-component-symbol-path" d="M 981.7828640730924 243.67693232679997 L 951.7207356743924 258.70799652615" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 951.7207356743924 227.48963241980766 L 981.7828640730924 243.67693232679997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 951.7207356743924 258.70799652615 L 951.7207356743924 227.48963241980766" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 981.7828640730924 227.48963241980766 L 981.7828640730924 258.70799652615" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 951.7207356743924 243.67693232679997 L 905.4713073687001 243.67693232679997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><path class="sch-component-symbol-path" d="M 1025.7198209635 243.67693232679997 L 982.9390997807346 243.67693232679997" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.404970271896px" stroke-linecap="round"/><text class="sch-component-name sch-component-text" x="964.4393284584578" y="217.0835110510269" stroke="rgb(245, 241, 237)" stroke-width="2.404970271896px" paint-order="stroke" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="ideographic" font-size="21.644732447064px">D1</text><text class="sch-component-text" x="965.5955641661001" y="279.5202392637115" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="21.644732447064px"></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="400.42755027054" cy="225.63965528757998" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="400.42755027054" cy="261.71420936602" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="400.42755027054" cy="297.78876344446" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="400.42755027054" cy="333.8633175229" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="400.42755027054" cy="369.93787160133996" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="400.42755027054" cy="406.01242567978" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="400.42755027054" cy="442.08697975821997" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_7__stack1"><circle cx="400.42755027054" cy="478.16153383666" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_8__stack1"><circle cx="400.42755027054" cy="514.2360879151" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_9__stack1"><circle cx="400.42755027054" cy="550.31064199354" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_10__stack1"><circle cx="400.42755027054" cy="586.38519607198" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_11__stack1"><circle cx="400.42755027054" cy="622.45975015042" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="568.77546930326" cy="243.67693232679997" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="664.9742801791" cy="243.67693232679997" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="903.066337096804" cy="243.49193461357723" r="4.809940543792" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="1023.3148506916041" cy="243.49193461357723" r="4.809940543792" 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="
|
|
83
83
|
M 490.61393546664,243.67693232679997
|
|
84
84
|
L 478.58908410716,237.18351259268076
|
|
85
85
|
L 478.58908410716,181.82109693363486
|